├── .docker ├── docker-compose.yml ├── exec.sh ├── start.sh └── stop.sh ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── 1_feature_request.md │ ├── 2_bug.yml │ └── 4_lizmap_web_client.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── stale.yml │ ├── transifex.yml │ └── unstale.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── lizmap ├── LICENSE ├── __init__.py ├── definitions │ ├── __init__.py │ ├── atlas.py │ ├── attribute_table.py │ ├── base.py │ ├── dataviz.py │ ├── definitions.py │ ├── edition.py │ ├── filter_by_form.py │ ├── filter_by_login.py │ ├── filter_by_polygon.py │ ├── layouts.py │ ├── lizmap_cloud.py │ ├── locate_by_layer.py │ ├── online_help.py │ ├── qgis_settings.py │ ├── time_manager.py │ └── tooltip.py ├── dialogs │ ├── __init__.py │ ├── confirmation_text_box.py │ ├── dock_html_preview.py │ ├── html_editor.py │ ├── html_maptip.py │ ├── lizmap_popup.py │ ├── main.py │ ├── news.py │ ├── scroll_message_box.py │ ├── server_wizard.py │ └── wizard_group.py ├── drag_drop_dataviz_manager.py ├── forms │ ├── __init__.py │ ├── atlas_edition.py │ ├── attribute_table_edition.py │ ├── base_edition_dialog.py │ ├── dataviz_edition.py │ ├── edition_edition.py │ ├── filter_by_form_edition.py │ ├── filter_by_login.py │ ├── filter_by_polygon.py │ ├── layout_edition.py │ ├── locate_layer_edition.py │ ├── time_manager_edition.py │ ├── tooltip_edition.py │ └── trace_dataviz_edition.py ├── lizmap_api │ ├── __init__.py │ ├── commands.py │ └── config.py ├── log_panel.py ├── logger.py ├── metadata.txt ├── ogc_project_validity.py ├── plausible.py ├── plugin.py ├── plugin_manager.py ├── project_checker_tools.py ├── qt_style_sheets.py ├── resources │ ├── css │ │ └── log.css │ ├── html │ │ ├── dataviz.html │ │ ├── html_editor.html │ │ ├── maptip_preview.html │ │ └── trumbowyg │ │ │ ├── README.md │ │ │ ├── jquery.min.js │ │ │ ├── langs │ │ │ ├── ar.js │ │ │ ├── ar.min.js │ │ │ ├── bg.js │ │ │ ├── bg.min.js │ │ │ ├── bn.js │ │ │ ├── bn.min.js │ │ │ ├── by.js │ │ │ ├── by.min.js │ │ │ ├── ca.js │ │ │ ├── ca.min.js │ │ │ ├── cs.js │ │ │ ├── cs.min.js │ │ │ ├── da.js │ │ │ ├── da.min.js │ │ │ ├── de.js │ │ │ ├── de.min.js │ │ │ ├── el.js │ │ │ ├── el.min.js │ │ │ ├── es.js │ │ │ ├── es.min.js │ │ │ ├── es_ar.js │ │ │ ├── es_ar.min.js │ │ │ ├── et.js │ │ │ ├── et.min.js │ │ │ ├── fa.js │ │ │ ├── fa.min.js │ │ │ ├── fi.js │ │ │ ├── fi.min.js │ │ │ ├── fr.js │ │ │ ├── fr.min.js │ │ │ ├── he.js │ │ │ ├── he.min.js │ │ │ ├── hr.js │ │ │ ├── hr.min.js │ │ │ ├── hu.js │ │ │ ├── hu.min.js │ │ │ ├── id.js │ │ │ ├── id.min.js │ │ │ ├── it.js │ │ │ ├── it.min.js │ │ │ ├── ja.js │ │ │ ├── ja.min.js │ │ │ ├── ko.js │ │ │ ├── ko.min.js │ │ │ ├── lt.js │ │ │ ├── lt.min.js │ │ │ ├── mn.js │ │ │ ├── mn.min.js │ │ │ ├── my.js │ │ │ ├── my.min.js │ │ │ ├── nl.js │ │ │ ├── nl.min.js │ │ │ ├── no_nb.js │ │ │ ├── no_nb.min.js │ │ │ ├── ph.js │ │ │ ├── ph.min.js │ │ │ ├── pl.js │ │ │ ├── pl.min.js │ │ │ ├── pt.js │ │ │ ├── pt.min.js │ │ │ ├── pt_br.js │ │ │ ├── pt_br.min.js │ │ │ ├── ro.js │ │ │ ├── ro.min.js │ │ │ ├── rs.js │ │ │ ├── rs.min.js │ │ │ ├── rs_latin.js │ │ │ ├── rs_latin.min.js │ │ │ ├── ru.js │ │ │ ├── ru.min.js │ │ │ ├── sk.js │ │ │ ├── sk.min.js │ │ │ ├── sl.js │ │ │ ├── sl.min.js │ │ │ ├── sq.js │ │ │ ├── sq.min.js │ │ │ ├── sv.js │ │ │ ├── sv.min.js │ │ │ ├── th.js │ │ │ ├── th.min.js │ │ │ ├── tr.js │ │ │ ├── tr.min.js │ │ │ ├── ua.js │ │ │ ├── ua.min.js │ │ │ ├── vi.js │ │ │ ├── vi.min.js │ │ │ ├── zh_cn.js │ │ │ ├── zh_cn.min.js │ │ │ ├── zh_tw.js │ │ │ └── zh_tw.min.js │ │ │ ├── plugins │ │ │ ├── allowtagsfrompaste │ │ │ │ ├── trumbowyg.allowtagsfrompaste.js │ │ │ │ └── trumbowyg.allowtagsfrompaste.min.js │ │ │ ├── base64 │ │ │ │ ├── trumbowyg.base64.js │ │ │ │ └── trumbowyg.base64.min.js │ │ │ ├── cleanpaste │ │ │ │ ├── trumbowyg.cleanpaste.js │ │ │ │ └── trumbowyg.cleanpaste.min.js │ │ │ ├── colors │ │ │ │ ├── trumbowyg.colors.js │ │ │ │ ├── trumbowyg.colors.min.js │ │ │ │ └── ui │ │ │ │ │ ├── sass │ │ │ │ │ └── trumbowyg.colors.scss │ │ │ │ │ ├── trumbowyg.colors.css │ │ │ │ │ └── trumbowyg.colors.min.css │ │ │ ├── emoji │ │ │ │ ├── trumbowyg.emoji.js │ │ │ │ ├── trumbowyg.emoji.min.js │ │ │ │ └── ui │ │ │ │ │ ├── sass │ │ │ │ │ └── trumbowyg.emoji.scss │ │ │ │ │ ├── trumbowyg.emoji.css │ │ │ │ │ └── trumbowyg.emoji.min.css │ │ │ ├── fontfamily │ │ │ │ ├── trumbowyg.fontfamily.js │ │ │ │ └── trumbowyg.fontfamily.min.js │ │ │ ├── fontsize │ │ │ │ ├── trumbowyg.fontsize.js │ │ │ │ └── trumbowyg.fontsize.min.js │ │ │ ├── giphy │ │ │ │ ├── trumbowyg.giphy.js │ │ │ │ ├── trumbowyg.giphy.min.js │ │ │ │ └── ui │ │ │ │ │ ├── sass │ │ │ │ │ └── trumbowyg.giphy.scss │ │ │ │ │ ├── trumbowyg.giphy.css │ │ │ │ │ └── trumbowyg.giphy.min.css │ │ │ ├── highlight │ │ │ │ ├── trumbowyg.highlight.js │ │ │ │ ├── trumbowyg.highlight.min.js │ │ │ │ └── ui │ │ │ │ │ ├── sass │ │ │ │ │ └── trumbowyg.highlight.scss │ │ │ │ │ ├── trumbowyg.highlight.css │ │ │ │ │ └── trumbowyg.highlight.min.css │ │ │ ├── history │ │ │ │ ├── trumbowyg.history.js │ │ │ │ └── trumbowyg.history.min.js │ │ │ ├── indent │ │ │ │ ├── trumbowyg.indent.js │ │ │ │ └── trumbowyg.indent.min.js │ │ │ ├── insertaudio │ │ │ │ ├── trumbowyg.insertaudio.js │ │ │ │ └── trumbowyg.insertaudio.min.js │ │ │ ├── lineheight │ │ │ │ ├── trumbowyg.lineheight.js │ │ │ │ └── trumbowyg.lineheight.min.js │ │ │ ├── mathml │ │ │ │ ├── trumbowyg.mathml.js │ │ │ │ ├── trumbowyg.mathml.min.js │ │ │ │ └── ui │ │ │ │ │ ├── sass │ │ │ │ │ └── trumbowyg.mathml.scss │ │ │ │ │ ├── trumbowyg.mathml.css │ │ │ │ │ └── trumbowyg.mathml.min.css │ │ │ ├── mention │ │ │ │ ├── trumbowyg.mention.js │ │ │ │ ├── trumbowyg.mention.min.js │ │ │ │ └── ui │ │ │ │ │ ├── sass │ │ │ │ │ └── trumbowyg.mention.scss │ │ │ │ │ ├── trumbowyg.mention.css │ │ │ │ │ └── trumbowyg.mention.min.css │ │ │ ├── noembed │ │ │ │ ├── trumbowyg.noembed.js │ │ │ │ └── trumbowyg.noembed.min.js │ │ │ ├── pasteembed │ │ │ │ ├── trumbowyg.pasteembed.js │ │ │ │ └── trumbowyg.pasteembed.min.js │ │ │ ├── pasteimage │ │ │ │ ├── trumbowyg.pasteimage.js │ │ │ │ └── trumbowyg.pasteimage.min.js │ │ │ ├── preformatted │ │ │ │ ├── trumbowyg.preformatted.js │ │ │ │ └── trumbowyg.preformatted.min.js │ │ │ ├── resizimg │ │ │ │ ├── trumbowyg.resizimg.js │ │ │ │ └── trumbowyg.resizimg.min.js │ │ │ ├── ruby │ │ │ │ ├── trumbowyg.ruby.js │ │ │ │ └── trumbowyg.ruby.min.js │ │ │ ├── specialchars │ │ │ │ ├── trumbowyg.specialchars.js │ │ │ │ ├── trumbowyg.specialchars.min.js │ │ │ │ └── ui │ │ │ │ │ ├── sass │ │ │ │ │ └── trumbowyg.specialchars.scss │ │ │ │ │ ├── trumbowyg.specialchars.css │ │ │ │ │ └── trumbowyg.specialchars.min.css │ │ │ ├── table │ │ │ │ ├── trumbowyg.table.js │ │ │ │ ├── trumbowyg.table.min.js │ │ │ │ └── ui │ │ │ │ │ ├── sass │ │ │ │ │ └── trumbowyg.table.scss │ │ │ │ │ ├── trumbowyg.table.css │ │ │ │ │ └── trumbowyg.table.min.css │ │ │ ├── template │ │ │ │ ├── trumbowyg.template.js │ │ │ │ └── trumbowyg.template.min.js │ │ │ └── upload │ │ │ │ ├── trumbowyg.upload.js │ │ │ │ └── trumbowyg.upload.min.js │ │ │ ├── trumbowyg.js │ │ │ ├── trumbowyg.min.js │ │ │ └── ui │ │ │ ├── icons.svg │ │ │ ├── sass │ │ │ └── trumbowyg.scss │ │ │ ├── trumbowyg.css │ │ │ ├── trumbowyg.min.css │ │ │ └── trumbowyg.min.css.map │ ├── icons │ │ ├── 01-home-dark.png │ │ ├── 01-home-white.png │ │ ├── 02-switcher-dark.png │ │ ├── 02-switcher-white.png │ │ ├── 03-metadata-dark.png │ │ ├── 03-metadata-white.png │ │ ├── 04-locate-dark.png │ │ ├── 04-locate-white.png │ │ ├── 05-login-dark.png │ │ ├── 05-login-white.png │ │ ├── 06-measure-dark.png │ │ ├── 06-measure-white.png │ │ ├── 07-geolocation-dark.png │ │ ├── 07-geolocation-white.png │ │ ├── 08-print-dark.png │ │ ├── 08-print-white.png │ │ ├── 09-search-dark.png │ │ ├── 09-search-white.png │ │ ├── 10-edition-dark.png │ │ ├── 10-edition-white.png │ │ ├── 11-attribute-dark.png │ │ ├── 11-attribute-white.png │ │ ├── 12-user-dark.png │ │ ├── 12-user-white.png │ │ ├── 13-timemanager-dark.png │ │ ├── 13-timemanager-white.png │ │ ├── 14-permalink-dark.png │ │ ├── 14-permalink-white.png │ │ ├── 15-baselayer-dark.png │ │ ├── 15-baselayer-white.png │ │ ├── 16-tooltip-dark.png │ │ ├── 16-tooltip-white.png │ │ ├── 18-diary-icon-dark.png │ │ ├── 18-diary-icon-white.png │ │ ├── abc-block.png │ │ ├── actions-dark.svg │ │ ├── actions-white.svg │ │ ├── atlas-icon-dark.png │ │ ├── atlas-icon-white.png │ │ ├── dataviz-icon-dark.png │ │ ├── dataviz-icon-white.png │ │ ├── disabled.svg │ │ ├── filter-icon-dark.png │ │ ├── filter-icon-white.png │ │ ├── google.png │ │ ├── green-arrow.svg │ │ ├── help.png │ │ ├── icon.png │ │ ├── layer_filter_dark.png │ │ ├── layer_filter_dark.svg │ │ ├── layer_filter_light.png │ │ ├── loading.gif │ │ ├── logo-lizmap-cloud.png │ │ ├── logo.png │ │ ├── osm-32-32.png │ │ ├── plots │ │ │ ├── 2dhistogram.svg │ │ │ ├── barplot.svg │ │ │ ├── boxplot.svg │ │ │ ├── histogram.svg │ │ │ ├── html_template.png │ │ │ ├── pie.svg │ │ │ ├── polar.svg │ │ │ ├── scatterplot.svg │ │ │ └── sunburst.svg │ │ ├── upload.png │ │ ├── upload.svg │ │ ├── user.svg │ │ └── user_group.svg │ ├── images │ │ └── QGIS-version.png │ └── ui │ │ ├── ui_form_atlas.ui │ │ ├── ui_form_attribute_table.ui │ │ ├── ui_form_dataviz.ui │ │ ├── ui_form_edition.ui │ │ ├── ui_form_filter_by_form.ui │ │ ├── ui_form_filter_by_login.ui │ │ ├── ui_form_filter_by_polygon.ui │ │ ├── ui_form_layout.ui │ │ ├── ui_form_locate_layer.ui │ │ ├── ui_form_time_manager.ui │ │ ├── ui_form_tooltip.ui │ │ ├── ui_html_editor.ui │ │ ├── ui_html_maptip.ui │ │ ├── ui_lizmap.ui │ │ ├── ui_lizmap_popup.ui │ │ ├── ui_news.ui │ │ ├── ui_trace.ui │ │ └── ui_wizard_group.ui ├── saas.py ├── server_dav.py ├── server_lwc.py ├── table_manager │ ├── __init__.py │ ├── base.py │ ├── dataviz.py │ ├── layouts.py │ └── upload_files.py ├── toolbelt │ ├── __init__.py │ ├── convert.py │ ├── custom_logging.py │ ├── debug.py │ ├── git.py │ ├── i18n.py │ ├── layer.py │ ├── lizmap.py │ ├── plugin.py │ ├── resources.py │ ├── strings.py │ └── version.py ├── tooltip.py ├── version_checker.py └── widgets │ ├── __init__.py │ ├── check_project.py │ ├── html_editor.py │ ├── json_editor.py │ ├── list_fields_selection.py │ ├── list_layers_selection.py │ ├── project_tools.py │ ├── selectable_combobox.py │ ├── table_files.py │ └── warning_widget.py ├── requirements ├── dev.txt └── packaging.txt ├── setup.cfg └── setup.py /.docker/docker-compose.yml: -------------------------------------------------------------------------------- 1 | services: 2 | qgis: 3 | image: qgis/qgis:${QGIS_VERSION} 4 | container_name: qgis 5 | volumes: 6 | # - /tmp/.X11-unix:/tmp/.X11-unix 7 | - ../lizmap:/tests_directory/lizmap 8 | environment: 9 | # - DISPLAY=unix$DISPLAY 10 | - CI=True 11 | - DISPLAY=:99 12 | -------------------------------------------------------------------------------- /.docker/exec.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | docker exec -t qgis sh -c "cd /tests_directory/lizmap && qgis_testrunner.sh qgis_plugin_tools.infrastructure.test_runner.test_package" 4 | -------------------------------------------------------------------------------- /.docker/start.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | docker compose up -d --force-recreate 4 | echo 'Wait 10 seconds' 5 | sleep 10 6 | echo 'Installation of the plugin' 7 | docker exec -t qgis sh -c "qgis_setup.sh lizmap" 8 | docker exec -t qgis sh -c "pip3 install webdavclient3" 9 | docker exec -t qgis sh -c "pip3 install psycopg[binary]" 10 | echo 'Containers are running' 11 | -------------------------------------------------------------------------------- /.docker/stop.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo 'Stopping/killing containers' 4 | docker compose kill 5 | docker compose rm -f 6 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | lizmap/test export-ignore 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 🌟 Feature Request 3 | about: Suggest a feature idea for Lizmap QGIS plugin. 4 | labels: 'Feature Request' 5 | 6 | --- 7 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_bug.yml: -------------------------------------------------------------------------------- 1 | name: 🐞 Bug Report 2 | description: Report problems about the QGIS plugin only. 3 | title: "[Bug]: " 4 | labels: 'Needs Triage' 5 | body: 6 | 7 | - type: markdown 8 | attributes: 9 | value: | 10 | Thanks for taking the time to fill out this bug report! 11 | Tip: small projects and screenshots/gifs help a lot debugging ;) 12 | 13 | - type: textarea 14 | id: what 15 | attributes: 16 | label: What is the bug? 17 | placeholder: When clicking on button... 18 | validations: 19 | required: true 20 | 21 | - type: textarea 22 | id: versions 23 | attributes: 24 | label: Versions, safeguards, checks summary etc 25 | description: | 26 | Go in QGIS Desktop, then Lizmap plugin, right click on your server, then "Copy versions in the clipboard". Finally paste here. There isn't any personal data provided. 27 | Check any messages displayed by the plugin if any. Read https://docs.lizmap.com/current/en/publish/lizmap_plugin/information.html#request-for-support 28 | validations: 29 | required: true 30 | 31 | - type: checkboxes 32 | id: lizmap-plugin 33 | attributes: 34 | label: Check Lizmap plugin 35 | options: 36 | - label: I have done the step just before in the Lizmap QGIS desktop plugin before opening this ticket. Otherwise, my ticket is not considered valid and might get closed. 37 | # required: true 38 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4_lizmap_web_client.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 🛑 Lizmap Web Client bug report (webbrowser) 3 | about: ❗️ See https://github.com/3liz/lizmap-web-client/issues/new/choose instead 4 | 5 | --- 6 | 7 | 15 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 5 | 6 | * **Funded by**: 7 | * **Description**: 8 | * 9 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | 4 | - package-ecosystem: "pip" 5 | directory: "/requirements/" 6 | schedule: 7 | interval: "monthly" 8 | assignees: 9 | - "Gustry" 10 | 11 | - package-ecosystem: "github-actions" 12 | directory: "/" 13 | schedule: 14 | interval: "monthly" 15 | assignees: 16 | - "Gustry" 17 | -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- 1 | name: "🌀 Close stale issues" 2 | on: 3 | schedule: 4 | - cron: "0 4 * * 2,4" 5 | 6 | jobs: 7 | stale: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/stale@v9.1.0 11 | with: 12 | # repo-token: ${{ secrets.BOT_HUB_TOKEN }} 13 | days-before-stale: 60 14 | days-before-close: 14 15 | operations-per-run: 10 16 | stale-issue-message: | 17 | Hiya! 18 | This issue has gone quiet. 👻 19 | We get a few issues, so we currently close issues after 60 days of inactivity. 20 | If we missed this issue or if you want to keep it open, please reply here. 21 | As a friendly reminder: the best way to see this issue, or any other, fixed is to open a Pull Request. 22 | Thanks for being a part of the Lizmap community! 🦎 23 | stale-issue-label: 'Stale' 24 | exempt-issue-labels: 'Bug,Feature Request' 25 | -------------------------------------------------------------------------------- /.github/workflows/transifex.yml: -------------------------------------------------------------------------------- 1 | name: Transifex 🗺 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | # - dev 8 | paths: 9 | - '**.py' 10 | - '**.ui' 11 | 12 | jobs: 13 | build: 14 | runs-on: ubuntu-latest 15 | if: github.repository_owner == '3liz' 16 | steps: 17 | 18 | - uses: actions/checkout@v4 19 | 20 | - name: Set up Python 3.10 21 | uses: actions/setup-python@v5 22 | with: 23 | python-version: "3.10" 24 | cache: "pip" 25 | cache-dependency-path: "requirements/packaging.txt" 26 | 27 | - name: Install Python requirements 28 | run: pip install -r requirements/packaging.txt 29 | 30 | - name: Push to Transifex 31 | run: qgis-plugin-ci push-translation ${{ secrets.TRANSIFEX_TOKEN }} 32 | -------------------------------------------------------------------------------- /.github/workflows/unstale.yml: -------------------------------------------------------------------------------- 1 | name: Remove Labels 2 | 3 | on: [issue_comment] 4 | 5 | jobs: 6 | remove_labels: 7 | if: contains(github.event.issue.labels.*.name, 'stale') 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions-ecosystem/action-remove-labels@v1 11 | if: ${{ github.event.comment.user.url != 'https://github.com/apps/github-actions' }} 12 | with: 13 | github_token: ${{ secrets.BOT_HUB_TOKEN }} 14 | labels: | 15 | stale 16 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.orig 2 | *.rej 3 | *~ 4 | *.o 5 | *.swp 6 | *.pyc 7 | *.DS_Store 8 | 9 | lizmap.cfg 10 | 11 | # IDE 12 | .idea/ 13 | .vscode/ 14 | 15 | *.egg-info 16 | *.code-workspace 17 | 18 | # Python 19 | .venv/ 20 | 21 | build/ 22 | build2/ 23 | dist/ 24 | 25 | .local 26 | .cache 27 | .pytest_cache 28 | __output__ 29 | 30 | # Docker 31 | .docker/.env 32 | 33 | *.qgz 34 | *_attachments.zip 35 | *_bak.qgs 36 | *_bak.qgs.cfg 37 | 38 | # QGIS-Plugin-CI 39 | lizmap.*.zip 40 | lizmap/i18n/lizmap_qgis_plugin_*.ts 41 | lizmap/i18n/lizmap_qgis_plugin_*.qm 42 | 43 | unittest.qgs 44 | lizmap/test/data/unit_test_plugin_* 45 | lizmap/test/data/*.gpkg-shm 46 | lizmap/test/data/*.gpkg-wal 47 | test/server/data/*.gpkg-shm 48 | test/server/data/*.gpkg-wal 49 | lizmap/test/data/lizmap_3_3.qgs.cfg.back 50 | lizmap/test/data/shortnames.qgs.cfg 51 | lizmap/test/credentials.py.back 52 | lizmap/test/credentials.py 53 | **/symbology-style.db 54 | **/*.qgs.bak 55 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | variables: 2 | GIT_SUBMODULE_STRATEGY: recursive 3 | 4 | stages: 5 | - tests 🎳 6 | - package 📦 7 | - deploy 🚀 8 | 9 | version: 10 | only: 11 | - master 12 | except: 13 | - tags 14 | stage: tests 🎳 15 | image: 16 | name: $REGISTRY_URI/infra/ci-tools:latest 17 | script: 18 | - version-helper 19 | tags: 20 | - factory-plain 21 | artifacts: 22 | reports: 23 | dotenv: build.env 24 | 25 | package-zip: 26 | only: 27 | - master 28 | except: 29 | - tags 30 | dependencies: 31 | - version 32 | stage: package 📦 33 | image: $REGISTRY_URI/qgis-plugin-ci:latest 34 | script: 35 | - > 36 | qgis-plugin-ci 37 | -v 38 | package ${VERSION} 39 | --plugin-repo-url https://packages.3liz.org/pub/lizmap-qgis-plugin/${STATUS}/ 40 | --transifex-token ${TX_TOKEN} 41 | tags: 42 | - factory-plain 43 | artifacts: 44 | untracked: true 45 | expose_as: 'QGIS package' 46 | paths: 47 | - lizmap.${VERSION}.zip 48 | - plugins.xml 49 | 50 | push-zip: 51 | image: ${REGISTRY_URL}/factory-ci-runner:fabric-ci 52 | only: 53 | - master 54 | except: 55 | - tags 56 | dependencies: 57 | - version 58 | - package-zip 59 | stage: deploy 🚀 60 | script: 61 | # Upload into the plugin directory 62 | - upload_to_packages_server lizmap.${VERSION}.zip pub/lizmap-qgis-plugin/${STATUS}/ 63 | - upload_to_packages_server plugins.xml pub/lizmap-qgis-plugin/${STATUS}/ 64 | tags: 65 | - fabric 66 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "lizmap/qgis_plugin_tools"] 2 | path = lizmap/qgis_plugin_tools 3 | url = https://github.com/3liz/qgis_plugin_tools.git 4 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | # See https://pre-commit.com for more information 2 | # See https://pre-commit.com/hooks.html for more hooks 3 | repos: 4 | - repo: https://github.com/pre-commit/pre-commit-hooks 5 | rev: v3.2.0 6 | hooks: 7 | - id: trailing-whitespace 8 | exclude: | 9 | (?x)^( 10 | lizmap/resources/html/trumbowyg/(.*)| 11 | lizmap/test/test_tooltip.py 12 | )$ 13 | - id: end-of-file-fixer 14 | exclude: lizmap/resources/html/trumbowyg 15 | - id: check-yaml 16 | - id: check-added-large-files 17 | 18 | - repo: https://github.com/pycqa/flake8 19 | rev: 6.1.0 20 | hooks: 21 | - id: flake8 22 | exclude: lizmap/lizmap_api/ 23 | additional_dependencies: [ 24 | flake8-builtins, 25 | flake8-absolute-import 26 | ] 27 | 28 | - repo: https://github.com/pycqa/isort 29 | rev: 5.12.0 30 | hooks: 31 | - id: isort 32 | args: [ ] 33 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include setup.py MANIFEST.in metadata.txt 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | SHELL:=bash 2 | .ONESHELL: 3 | .PHONY: env 4 | 5 | QGIS_VERSION ?= release-3_28 6 | 7 | start_tests: 8 | @echo 'Start docker compose' 9 | @cd .docker && ./start.sh 10 | 11 | run_tests: 12 | @echo 'Running tests, containers must be running' 13 | @cd .docker && ./exec.sh 14 | @flake8 15 | 16 | stop_tests: 17 | @echo 'Stopping/killing containers' 18 | @cd .docker && ./stop.sh 19 | 20 | tests: start_tests run_tests stop_tests 21 | 22 | env: 23 | @echo "Creating environment file for Docker Compose" 24 | @cat <<-EOF > .docker/.env 25 | QGIS_VERSION=$(QGIS_VERSION) 26 | EOF 27 | @cat .docker/.env 28 | -------------------------------------------------------------------------------- /lizmap/__init__.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2023, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | 5 | try: 6 | # noinspection PyPep8Naming 7 | def classFactory(iface): 8 | from lizmap.plugin import Lizmap 9 | return Lizmap(iface) 10 | 11 | except ImportError: 12 | # We may not have this package when running on a server. 13 | pass 14 | -------------------------------------------------------------------------------- /lizmap/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2020, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | -------------------------------------------------------------------------------- /lizmap/definitions/lizmap_cloud.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2024, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | 5 | CLOUD_DOMAIN = 'lizmap.com' 6 | CLOUD_NAME = 'Lizmap Cloud' 7 | CLOUD_MAX_PARENT_FOLDER = 2 8 | 9 | CLOUD_ONLINE_URL = 'https://docs.lizmap.cloud' 10 | CLOUD_ONLINE_LANGUAGES = ('en', 'fr') 11 | 12 | # TODO Fixme, the minimum version recommended varies on the LWC version 13 | # When changed, check for occurrences about the date 14 | # It's used in tests in test_version_info_qgis_server_status 15 | CLOUD_QGIS_MIN_RECOMMENDED = (3, 34, 0) 16 | 17 | UPLOAD_EXTENSIONS = ('fgb', 'gpkg', 'xlsx', 'xls', 'csv', 'ods', 'kml', 'geojson') 18 | UPLOAD_MAX_SIZE = 11000000 # 11 Mb 19 | 20 | # Excluded domains from Plausible 21 | EXCLUDED_DOMAINS = ('demo.snap.lizmap.com', 'demo.lizmap.com', 'localhost:8130', ) 22 | # Domains which are designed for workshops 23 | # For the "Training" panel and excluded from Plausible as well 24 | WORKSHOP_DOMAINS = ( 25 | 'workshop.lizmap.com', 26 | 'formation.lizmap.com', 27 | 'openworkshop.fr', 28 | ) 29 | 30 | # When the folder for storing QGS files is already created before the workshop 31 | WORKSHOP_FOLDER_ID = 'themeurbanism' 32 | WORKSHOP_FOLDER_PATH = 'theme_urbanism' 33 | # Name of the ZIP in the "qgis/" folder in one of these servers 34 | TRAINING_ZIP = 'training.zip' 35 | TRAINING_PROJECT = "demo.qgs" 36 | 37 | 38 | class WorkshopType: 39 | IndividualQgsFile = 'IndividualQgsFile' 40 | ZipFile = 'ZipFile' 41 | -------------------------------------------------------------------------------- /lizmap/definitions/qgis_settings.py: -------------------------------------------------------------------------------- 1 | """Definitions for QgsSettings.""" 2 | 3 | # TODO, use the settings API from QGIS 3.30 etc 4 | # Mail QGIS-Dev 24/10/2023 5 | 6 | __copyright__ = 'Copyright 2023, 3Liz' 7 | __license__ = 'GPL version 3' 8 | __email__ = 'info@3liz.org' 9 | 10 | KEY = 'lizmap' 11 | 12 | 13 | class Settings: 14 | 15 | @classmethod 16 | def key(cls, key): 17 | return KEY + '/' + key 18 | 19 | # Safeguards 20 | PreventEcw = 'prevent_ecw' 21 | PreventPgAuthDb = 'prevent_pg_auth_db' 22 | PreventPgService = 'prevent_pg_service' 23 | ForcePgUserPass = 'force_pg_user_password' 24 | PreventDrive = 'prevent_drive' 25 | AllowParentFolder = 'allow_parent_folder' 26 | NumberParentFolder = 'number_parent_folder' 27 | BeginnerMode = 'beginner_mode' 28 | 29 | # Changelogs 30 | SeenChangelog = 'seen_changelogs' 31 | 32 | # Auto 33 | AutoSave = 'auto_save_project' 34 | AutoSend = 'auto_send_project' 35 | 36 | # Last Lizmap repository 37 | LizmapRepository = 'lizmap_repository' 38 | -------------------------------------------------------------------------------- /lizmap/dialogs/__init__.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2023, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | -------------------------------------------------------------------------------- /lizmap/dialogs/html_editor.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2023, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | 5 | import logging 6 | 7 | from qgis.core import QgsVectorLayer 8 | from qgis.PyQt.QtWidgets import QDialog, QDialogButtonBox, QVBoxLayout 9 | 10 | from lizmap.toolbelt.i18n import tr 11 | from lizmap.widgets.html_editor import HtmlEditorWidget 12 | 13 | LOGGER = logging.getLogger('Lizmap') 14 | 15 | 16 | class HtmlEditorDialog(QDialog): 17 | 18 | def __init__(self): 19 | # noinspection PyArgumentList 20 | QDialog.__init__(self) 21 | 22 | self.editor = HtmlEditorWidget(self) 23 | 24 | layout = QVBoxLayout() 25 | # noinspection PyArgumentList 26 | layout.addWidget(self.editor) 27 | 28 | self.button_box = QDialogButtonBox() 29 | self.button_box.setStandardButtons(QDialogButtonBox.StandardButton.Cancel | QDialogButtonBox.StandardButton.Ok) 30 | # noinspection PyArgumentList 31 | layout.addWidget(self.button_box) 32 | 33 | self.setLayout(layout) 34 | 35 | accept_button = self.button_box.button(QDialogButtonBox.StandardButton.Ok) 36 | accept_button.clicked.connect(self.accept) 37 | cancel_button = self.button_box.button(QDialogButtonBox.StandardButton.Cancel) 38 | cancel_button.clicked.connect(self.reject) 39 | 40 | def set_layer(self, layer: QgsVectorLayer): 41 | self.setWindowTitle(tr("HTML maptip for the layer '{}'").format(layer.name())) 42 | self.editor.set_layer(layer) 43 | -------------------------------------------------------------------------------- /lizmap/dialogs/lizmap_popup.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2023, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | 5 | from qgis.PyQt.QtWidgets import QDialog, QDialogButtonBox 6 | 7 | from lizmap.qt_style_sheets import COMPLETE_STYLE_SHEET 8 | from lizmap.toolbelt.resources import load_ui 9 | 10 | FORM_CLASS = load_ui('ui_lizmap_popup.ui') 11 | 12 | 13 | class LizmapPopupDialog(QDialog, FORM_CLASS): 14 | 15 | def __init__(self, content): 16 | QDialog.__init__(self) 17 | self.setupUi(self) 18 | 19 | accept_button = self.bbConfigurePopup.button(QDialogButtonBox.StandardButton.Ok) 20 | accept_button.clicked.connect(self.accept) 21 | cancel_button = self.bbConfigurePopup.button(QDialogButtonBox.StandardButton.Cancel) 22 | cancel_button.clicked.connect(self.reject) 23 | 24 | self.groupBox.setStyleSheet(COMPLETE_STYLE_SHEET) 25 | self.groupBox_2.setStyleSheet(COMPLETE_STYLE_SHEET) 26 | self.txtPopup.textChanged.connect(self.update_html) 27 | 28 | self.txtPopup.setText(content) 29 | self.htmlPopup.setHtml(content) 30 | 31 | def update_html(self): 32 | content = self.txtPopup.text() 33 | self.htmlPopup.setHtml(content) 34 | -------------------------------------------------------------------------------- /lizmap/dialogs/scroll_message_box.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2023, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | 5 | from qgis.PyQt.QtCore import Qt 6 | from qgis.PyQt.QtWidgets import ( 7 | QDialog, 8 | QGridLayout, 9 | QLabel, 10 | QMessageBox, 11 | QScrollArea, 12 | ) 13 | 14 | 15 | class ScrollMessageBox(QMessageBox): 16 | 17 | def __init__(self, parent: QDialog, *args, **kwargs): 18 | QMessageBox.__init__(self, *args, **kwargs) 19 | if parent: 20 | self.parent = parent 21 | children = self.children() 22 | scroll = QScrollArea(self) 23 | scroll.setWidgetResizable(True) 24 | grid = self.findChild(QGridLayout) 25 | label = QLabel(children[1].text(), self) 26 | label.setWordWrap(True) 27 | label.setTextInteractionFlags(Qt.TextInteractionFlag.TextSelectableByMouse) 28 | scroll.setWidget(label) 29 | scroll.setMinimumSize(400, 200) 30 | grid.addWidget(scroll, 0, 1) 31 | children[1].setText('') 32 | self.exec() 33 | -------------------------------------------------------------------------------- /lizmap/forms/__init__.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2020, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | -------------------------------------------------------------------------------- /lizmap/lizmap_api/__init__.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2020, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | -------------------------------------------------------------------------------- /lizmap/logger.py: -------------------------------------------------------------------------------- 1 | import functools 2 | import logging 3 | import time 4 | 5 | LOGGER = logging.getLogger('Lizmap') 6 | DEBUG = True 7 | 8 | 9 | def log_function(func): 10 | """ Decorator to log function. """ 11 | @functools.wraps(func) 12 | def log_function_core(*args, **kwargs): 13 | LOGGER.info(f"Calling function {func.__name__}") 14 | value = func(*args, **kwargs) 15 | LOGGER.info(f"End of function {func.__name__} with return : {str(value)}") 16 | return value 17 | 18 | return log_function_core 19 | 20 | 21 | def profiling(func): 22 | """ Decorator to make some profiling. """ 23 | 24 | @functools.wraps(func) 25 | def wrapper(*args, **kwargs): 26 | start = time.time() 27 | result = func(*args, **kwargs) 28 | end = time.time() 29 | LOGGER.info("{} ran in {}s".format(func.__name__, round(end - start, 2))) 30 | return result 31 | 32 | return wrapper 33 | 34 | 35 | def log_output_value(func): 36 | """ Decorator to log the output of the function. """ 37 | 38 | @functools.wraps(func) 39 | def wrapper(*args, **kwargs): 40 | result = func(*args, **kwargs) 41 | if DEBUG: 42 | LOGGER.info("{} output is {} for parameter {}".format(func.__name__, result, str(args))) 43 | else: 44 | LOGGER.info("{} output is {}… for parameter {}".format(func.__name__, result[0:200], str(args))) 45 | return result 46 | 47 | return wrapper 48 | -------------------------------------------------------------------------------- /lizmap/metadata.txt: -------------------------------------------------------------------------------- 1 | [general] 2 | name=Lizmap 3 | qgisMinimumVersion=3.28 4 | qgisMaximumVersion=3.99 5 | author=3Liz 6 | email=info@3liz.com 7 | description=Publish and share your QGIS maps on the Web via Lizmap Web Client, by 3liz.com 8 | about=With a few clicks, it's possible to publish and share your QGIS projects on the Web via Lizmap Web Client, by 3liz.com. QGIS Server is used in the background so all the symbology is kept. The edition forms in QGIS are also available. Demo : https://demo.lizmap.com and documentation : https://docs.lizmap.com and hosting solutions https://lizmap.com 9 | category=Web 10 | tags=online,server,web,webgis,webservice,webmapping,mobile,publication,wms,wfs,wps,internet,cloud 11 | 12 | homepage=https://docs.lizmap.com 13 | tracker=https://github.com/3liz/lizmap-plugin/issues 14 | repository=https://github.com/3liz/lizmap-plugin 15 | 16 | # Done automatically by qgis-plugin-ci 17 | version=master 18 | commitNumber= 19 | commitSha1= 20 | dateTime= 21 | changelog=changelog 22 | # End of qgis-plugin-ci 23 | 24 | icon=resources/icons/icon.png 25 | experimental=False 26 | deprecated=False 27 | server=False 28 | supportsQt6=true 29 | -------------------------------------------------------------------------------- /lizmap/qt_style_sheets.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2023, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | 5 | import sys 6 | 7 | # Both colors MUST be synchronized 8 | NEW_FEATURE_COLOR = '#aaffff' 9 | NEW_FEATURE_CSS = 'background-color:rgb(170, 255, 255);' 10 | 11 | STYLESHEET = ( 12 | ''' 13 | QGroupBox::title {{ 14 | background-color: transparent; 15 | subcontrol-origin: margin; 16 | margin-left: 6px; 17 | subcontrol-position: top left; 18 | }} 19 | QGroupBox {{ 20 | background-color: rgba({}, {}, {}, {}); 21 | border: 1px solid rgba(0,0,0,20%); 22 | border-radius: 5px; 23 | font-weight: bold; 24 | margin-top: {}ex; 25 | }} 26 | ''') 27 | 28 | if sys.platform.startswith('win'): 29 | style = ['0', '0', '0', '5%'] 30 | margin = '4.0' 31 | else: 32 | style = ['225', '225', '225', '90%'] 33 | margin = '2.5' 34 | 35 | COMPLETE_STYLE_SHEET = STYLESHEET.format(*style, margin) 36 | -------------------------------------------------------------------------------- /lizmap/resources/css/log.css: -------------------------------------------------------------------------------- 1 | .overview { 2 | font: 1.82em; 3 | font-weight: bold; 4 | } 5 | body{ 6 | background: white; 7 | color: black; 8 | font-family: 'Lato', 'Open Sans', 'Lucida Grande', 'Segoe UI', 'Arial', sans-serif; 9 | width: 100%; 10 | margin: 10px; 11 | } 12 | h1{ 13 | background-color: #F6F6F6; 14 | font-weight: normal; 15 | background: none; 16 | padding: 0.75em 0 0; 17 | margin: 0; 18 | line-height: 3em; 19 | } 20 | h2{ 21 | background-color: #F6F6F6; 22 | font-weight: normal; 23 | background: none; 24 | padding: 0.75em 0 0; 25 | margin: 0; 26 | line-height: 1.1em; 27 | } 28 | h3{ 29 | background-color: #F6F6F6; 30 | font-weight: bold; 31 | text-align: left; 32 | border-bottom: 5px solid #DCEB5C; 33 | } 34 | h4{ 35 | background-color: #F6F6F6; 36 | font-weight: bold; 37 | text-align: left; 38 | } 39 | h5{ 40 | background-color: #F6F6F6; 41 | font-weight: bold; 42 | text-align: left; 43 | } 44 | a{ 45 | color: #729FCF; 46 | font-family: arial,sans-serif; 47 | } 48 | label{ 49 | background-color: #FFFFCC; 50 | border: 1px solid black; 51 | margin: 1px; 52 | padding: 0px 3px; 53 | font-size: small; 54 | } 55 | th .strong { 56 | font-weight: bold; 57 | } 58 | hr { 59 | border: 0; 60 | height: 0; 61 | border-top: 1px solid black; 62 | } 63 | .list-view .highlight { 64 | text-align: left; 65 | border: 0px; 66 | width: 20%; 67 | padding-right: 15px; 68 | padding-left: 20px; 69 | font-weight: bold; 70 | } 71 | .tabular-view .odd-row { 72 | background-color: #f9f9f9; 73 | } 74 | .section { 75 | font-weight: bold; 76 | padding-top:25px; 77 | } 78 | 79 | table, th, td { 80 | border: 1px solid black; 81 | border-collapse: collapse; 82 | padding:2px; 83 | } 84 | -------------------------------------------------------------------------------- /lizmap/resources/html/dataviz.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 21 | 22 | 23 | 24 |
25 | 26 |
27 | 28 | -------------------------------------------------------------------------------- /lizmap/resources/html/maptip_preview.html: -------------------------------------------------------------------------------- 1 | 2 | {css} 3 | 4 | 5 | {maptip} 6 | 7 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/README.md: -------------------------------------------------------------------------------- 1 | # Trumbowyg 2 | 3 | * Trumbowyg v2.26.0 4 | * jQuery v3.3.1 5 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ar.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ar.js 3 | * Arabic translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Abo Mokh ahmed (abomokhahmed) 7 | * Github : https://github.com/abomokhahmed 8 | * Reviewed by : Abdellah Chadidi (chadidi) 9 | * Github : https://github.com/chadidi 10 | */ 11 | 12 | jQuery.trumbowyg.langs.ar = { 13 | _dir: 'rtl', 14 | 15 | viewHTML: 'إعرض-HTML', 16 | 17 | undo: 'تراجع', 18 | redo: 'إعادة', 19 | 20 | formatting: 'تنسيق', 21 | 22 | p: 'فقرة', 23 | blockquote: 'اقتباس', 24 | code: 'كود', 25 | header: 'رأس', 26 | 27 | bold: 'عريض', 28 | italic: 'مائل', 29 | strikethrough: 'مشطوب', 30 | underline: 'خطّ سفلي', 31 | 32 | strong: 'بارز', 33 | em: 'تغميق', 34 | del: 'حذف', 35 | 36 | superscript: 'الأس', 37 | subscript: 'أس سفلي', 38 | 39 | unorderedList: 'قائمة غير مرتّبة', 40 | orderedList: 'قائمة مرتّبة', 41 | 42 | insertImage: 'إدراج صورة', 43 | insertVideo: 'إدراج فيديو', 44 | link: 'رابط', 45 | createLink: 'انشاء رابط', 46 | unlink: 'حذف رابط', 47 | 48 | justifyLeft: 'تصحيح للشمال', 49 | justifyCenter: 'توسيط', 50 | justifyRight: 'تصحيح لليمين', 51 | justifyFull: 'تصحيح لكلا الإتّجاهين', 52 | 53 | horizontalRule: 'إدراج خطّ أفقي', 54 | 55 | fullscreen: 'ملء الشاشة', 56 | 57 | close: 'إغلاق', 58 | 59 | submit: 'إرسال', 60 | reset: 'إعادة تعيين', 61 | 62 | required: 'إلزامي', 63 | description: 'وصف', 64 | title: 'عنوان', 65 | text: 'نصّ', 66 | target: 'الهدف' 67 | }; 68 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ar.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ar.js 3 | * Arabic translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Abo Mokh ahmed (abomokhahmed) 7 | * Github : https://github.com/abomokhahmed 8 | * Reviewed by : Abdellah Chadidi (chadidi) 9 | * Github : https://github.com/chadidi 10 | */ 11 | jQuery.trumbowyg.langs.ar={_dir:"rtl",viewHTML:"إعرض-HTML",undo:"تراجع",redo:"إعادة",formatting:"تنسيق",p:"فقرة",blockquote:"اقتباس",code:"كود",header:"رأس",bold:"عريض",italic:"مائل",strikethrough:"مشطوب",underline:"خطّ سفلي",strong:"بارز",em:"تغميق",del:"حذف",superscript:"الأس",subscript:"أس سفلي",unorderedList:"قائمة غير مرتّبة",orderedList:"قائمة مرتّبة",insertImage:"إدراج صورة",insertVideo:"إدراج فيديو",link:"رابط",createLink:"انشاء رابط",unlink:"حذف رابط",justifyLeft:"تصحيح للشمال",justifyCenter:"توسيط",justifyRight:"تصحيح لليمين",justifyFull:"تصحيح لكلا الإتّجاهين",horizontalRule:"إدراج خطّ أفقي",fullscreen:"ملء الشاشة",close:"إغلاق",submit:"إرسال",reset:"إعادة تعيين",required:"إلزامي",description:"وصف",title:"عنوان",text:"نصّ",target:"الهدف"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/bg.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * bg.js 3 | * Bulgarian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Aleksandar Dimitrov 7 | */ 8 | 9 | jQuery.trumbowyg.langs.bg = { 10 | viewHTML: 'Прегледай HTML', 11 | 12 | formatting: 'Форматиране', 13 | p: 'Параграф', 14 | blockquote: 'Цитат', 15 | code: 'Код', 16 | header: 'Заглавие', 17 | 18 | bold: 'Удебелен', 19 | italic: 'Наклонен', 20 | strikethrough: 'Зачеркнат', 21 | underline: 'Подчертан', 22 | 23 | strong: 'Удебелен', 24 | em: 'Наклонен', 25 | del: 'Зачеркнат', 26 | 27 | unorderedList: 'Обикновен списък', 28 | orderedList: 'Номериран списък', 29 | 30 | insertImage: 'Добави изображение', 31 | insertVideo: 'Добави видео', 32 | link: 'Връзка', 33 | createLink: 'Създай връзка', 34 | unlink: 'Премахни връзката', 35 | 36 | justifyLeft: 'Подравни от ляво', 37 | justifyCenter: 'Центрирай', 38 | justifyRight: 'Подравни от дясно', 39 | justifyFull: 'Подравни по ширина', 40 | 41 | horizontalRule: 'Хоризонтална линия', 42 | 43 | fullscreen: 'На цял екран', 44 | 45 | close: 'Затвори', 46 | 47 | submit: 'Впиши', 48 | reset: 'Отмени', 49 | 50 | required: 'Задължително', 51 | description: 'Описание', 52 | title: 'Заглавие', 53 | text: 'Текст' 54 | }; 55 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/bg.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * bg.js 3 | * Bulgarian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Aleksandar Dimitrov 7 | */ 8 | jQuery.trumbowyg.langs.bg={viewHTML:"Прегледай HTML",formatting:"Форматиране",p:"Параграф",blockquote:"Цитат",code:"Код",header:"Заглавие",bold:"Удебелен",italic:"Наклонен",strikethrough:"Зачеркнат",underline:"Подчертан",strong:"Удебелен",em:"Наклонен",del:"Зачеркнат",unorderedList:"Обикновен списък",orderedList:"Номериран списък",insertImage:"Добави изображение",insertVideo:"Добави видео",link:"Връзка",createLink:"Създай връзка",unlink:"Премахни връзката",justifyLeft:"Подравни от ляво",justifyCenter:"Центрирай",justifyRight:"Подравни от дясно",justifyFull:"Подравни по ширина",horizontalRule:"Хоризонтална линия",fullscreen:"На цял екран",close:"Затвори",submit:"Впиши",reset:"Отмени",required:"Задължително",description:"Описание",title:"Заглавие",text:"Текст"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/bn.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * bn.js 3 | * Bangla translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Ahammad Naim 7 | * Website : https://github.com/AhammadNaim 8 | */ 9 | 10 | jQuery.trumbowyg.langs.bn = { 11 | viewHTML: 'HTML দেখান', 12 | 13 | undo: 'পূর্বাবস্থায় ফিরুন', 14 | redo: 'পুনরায় করুন', 15 | 16 | formatting: 'বিন্যাস', 17 | p: 'অনুচ্ছেদ', 18 | blockquote: 'উদ্ধৃতি', 19 | code: 'কোড', 20 | header: 'শিরোনাম', 21 | 22 | bold: 'বোল্ড', 23 | italic: 'ইটালিক', 24 | strikethrough: 'স্ট্রাইকথ্রু', 25 | underline: 'আন্ডারলাইন', 26 | 27 | strong: 'বোল্ড', 28 | em: 'ইটালিক', 29 | del: 'স্ট্রাইকথ্রু', 30 | 31 | superscript: 'সুপারস্ক্রিপ্ট', 32 | subscript: 'সাবস্ক্রিপ্ট', 33 | 34 | unorderedList: 'অসংখ্যায়িত তালিকা', 35 | orderedList: 'সাজানো তালিকা', 36 | 37 | insertImage: 'ছবি', 38 | link: 'লিংক', 39 | createLink: 'লিংক তৈরি করুন', 40 | unlink: 'লিংক মুছুন', 41 | 42 | justifyLeft: 'বামে জাস্টিফাইড', 43 | justifyCenter: 'কেন্দ্রীভূত', 44 | justifyRight: 'ডানে জাস্টিফাইড', 45 | justifyFull: 'জাস্টিফাইড', 46 | 47 | horizontalRule: 'আনুভূমিক দাগ', 48 | removeformat: 'বিন্যাস অপসারণ করুন', 49 | 50 | fullscreen: 'সম্পূর্ণ পর্দায় দেখুন', 51 | 52 | close: 'বন্ধ', 53 | 54 | submit: 'প্রেরণ', 55 | reset: 'বাতিল', 56 | 57 | required: 'আবশ্যক', 58 | description: 'বর্ননা', 59 | title: 'শিরোনাম', 60 | text: 'পাঠ্য', 61 | target: 'লক্ষ্য' 62 | }; 63 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/bn.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * bn.js 3 | * Bangla translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Ahammad Naim 7 | * Website : https://github.com/AhammadNaim 8 | */ 9 | jQuery.trumbowyg.langs.bn={viewHTML:"HTML দেখান",undo:"পূর্বাবস্থায় ফিরুন",redo:"পুনরায় করুন",formatting:"বিন্যাস",p:"অনুচ্ছেদ",blockquote:"উদ্ধৃতি",code:"কোড",header:"শিরোনাম",bold:"বোল্ড",italic:"ইটালিক",strikethrough:"স্ট্রাইকথ্রু",underline:"আন্ডারলাইন",strong:"বোল্ড",em:"ইটালিক",del:"স্ট্রাইকথ্রু",superscript:"সুপারস্ক্রিপ্ট",subscript:"সাবস্ক্রিপ্ট",unorderedList:"অসংখ্যায়িত তালিকা",orderedList:"সাজানো তালিকা",insertImage:"ছবি",link:"লিংক",createLink:"লিংক তৈরি করুন",unlink:"লিংক মুছুন",justifyLeft:"বামে জাস্টিফাইড",justifyCenter:"কেন্দ্রীভূত",justifyRight:"ডানে জাস্টিফাইড",justifyFull:"জাস্টিফাইড",horizontalRule:"আনুভূমিক দাগ",removeformat:"বিন্যাস অপসারণ করুন",fullscreen:"সম্পূর্ণ পর্দায় দেখুন",close:"বন্ধ",submit:"প্রেরণ",reset:"বাতিল",required:"আবশ্যক",description:"বর্ননা",title:"শিরোনাম",text:"পাঠ্য",target:"লক্ষ্য"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/by.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * by.js 3 | * Belarusian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Yury Karalkou 7 | */ 8 | 9 | jQuery.trumbowyg.langs.by = { 10 | viewHTML: 'Паглядзець HTML', 11 | 12 | undo: 'Скасаваць', 13 | redo: 'Паўтарыць', 14 | 15 | formatting: 'Фарматаванне', 16 | p: 'Звычайны', 17 | blockquote: 'Цытата', 18 | code: 'Код', 19 | header: 'Загаловак', 20 | 21 | bold: 'Паўтлусты', 22 | italic: 'Курсіў', 23 | strikethrough: 'Закрэслены', 24 | underline: 'Падкрэслены', 25 | 26 | strong: 'Паўтлусты', 27 | em: 'Курсіў', 28 | del: 'Закрэслены', 29 | 30 | superscript: 'Верхні індэкс', 31 | subscript: 'Індэкс', 32 | 33 | unorderedList: 'Звычайны спіс', 34 | orderedList: 'Нумараваны спіс', 35 | 36 | insertImage: 'Уставіць выяву', 37 | insertVideo: 'Уставіць відэа', 38 | link: 'Спасылка', 39 | createLink: 'Уставіць спасылку', 40 | unlink: 'Выдаліць спасылку', 41 | 42 | justifyLeft: 'Па леваму боку', 43 | justifyCenter: 'У цэнтры', 44 | justifyRight: 'Па праваму боку', 45 | justifyFull: 'Па шырыні', 46 | 47 | horizontalRule: 'Гарызантальная лінія', 48 | removeformat: 'Ачысціць фарматаванне', 49 | 50 | fullscreen: 'На ўвесь экран', 51 | 52 | close: 'Зачыніць', 53 | 54 | submit: 'Уставіць', 55 | reset: 'Скасаваць', 56 | 57 | required: 'Абавязкова', 58 | description: 'Апісанне', 59 | title: 'Падказка', 60 | text: 'Тэкст' 61 | }; 62 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/by.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * by.js 3 | * Belarusian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Yury Karalkou 7 | */ 8 | jQuery.trumbowyg.langs.by={viewHTML:"Паглядзець HTML",undo:"Скасаваць",redo:"Паўтарыць",formatting:"Фарматаванне",p:"Звычайны",blockquote:"Цытата",code:"Код",header:"Загаловак",bold:"Паўтлусты",italic:"Курсіў",strikethrough:"Закрэслены",underline:"Падкрэслены",strong:"Паўтлусты",em:"Курсіў",del:"Закрэслены",superscript:"Верхні індэкс",subscript:"Індэкс",unorderedList:"Звычайны спіс",orderedList:"Нумараваны спіс",insertImage:"Уставіць выяву",insertVideo:"Уставіць відэа",link:"Спасылка",createLink:"Уставіць спасылку",unlink:"Выдаліць спасылку",justifyLeft:"Па леваму боку",justifyCenter:"У цэнтры",justifyRight:"Па праваму боку",justifyFull:"Па шырыні",horizontalRule:"Гарызантальная лінія",removeformat:"Ачысціць фарматаванне",fullscreen:"На ўвесь экран",close:"Зачыніць",submit:"Уставіць",reset:"Скасаваць",required:"Абавязкова",description:"Апісанне",title:"Падказка",text:"Тэкст"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ca.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ca.js 3 | * Catalan translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Àlfons Sánchez (alsanan) 7 | * Twitter : @alsanan 8 | * Website : about.me/alsanan 9 | * Github : https://github.com/alsanan 10 | */ 11 | 12 | jQuery.trumbowyg.langs.ca = { 13 | viewHTML: 'Veure HTML', 14 | 15 | formatting: 'Formatar', 16 | p: 'Paragraf', 17 | blockquote: 'Citació', 18 | code: 'Codi', 19 | header: 'Títol', 20 | 21 | bold: 'Negreta', 22 | italic: 'Itàlica', 23 | strikethrough: 'Suprimir', 24 | underline: 'Subratllat', 25 | 26 | strong: 'Forta', 27 | em: 'Èmfasi', 28 | del: 'Apagar', 29 | 30 | unorderedList: 'Lista desordenada', 31 | orderedList: 'Lista ordenada', 32 | 33 | insertImage: 'Inserir imatge', 34 | insertVideo: 'Inserir vídeo', 35 | link: 'Enllaç', 36 | createLink: 'Crear un enllaç', 37 | unlink: 'Eliminar enllaç', 38 | 39 | justifyLeft: 'Alinear a esquerra', 40 | justifyCenter: 'Centrar', 41 | justifyRight: 'Alinear a dreta', 42 | justifyFull: 'Justificar', 43 | 44 | horizontalRule: 'Inserir separador horitzontal', 45 | 46 | fullscreen: 'Pantalla completa', 47 | 48 | close: 'Tancar', 49 | 50 | submit: 'Enviar', 51 | reset: 'Reiniciar', 52 | 53 | required: 'Obligatori', 54 | description: 'Descripció', 55 | title: 'Títol', 56 | text: 'Text' 57 | }; 58 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ca.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ca.js 3 | * Catalan translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Àlfons Sánchez (alsanan) 7 | * Twitter : @alsanan 8 | * Website : about.me/alsanan 9 | * Github : https://github.com/alsanan 10 | */ 11 | jQuery.trumbowyg.langs.ca={viewHTML:"Veure HTML",formatting:"Formatar",p:"Paragraf",blockquote:"Citació",code:"Codi",header:"Títol",bold:"Negreta",italic:"Itàlica",strikethrough:"Suprimir",underline:"Subratllat",strong:"Forta",em:"Èmfasi",del:"Apagar",unorderedList:"Lista desordenada",orderedList:"Lista ordenada",insertImage:"Inserir imatge",insertVideo:"Inserir vídeo",link:"Enllaç",createLink:"Crear un enllaç",unlink:"Eliminar enllaç",justifyLeft:"Alinear a esquerra",justifyCenter:"Centrar",justifyRight:"Alinear a dreta",justifyFull:"Justificar",horizontalRule:"Inserir separador horitzontal",fullscreen:"Pantalla completa",close:"Tancar",submit:"Enviar",reset:"Reiniciar",required:"Obligatori",description:"Descripció",title:"Títol",text:"Text"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/cs.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * cs.js 3 | * Czech translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Jan Svoboda (https://github.com/svoboda-jan) 7 | */ 8 | 9 | jQuery.trumbowyg.langs.cs = { 10 | viewHTML: 'Zobrazit HTML', 11 | 12 | redo: 'Vpřed', 13 | undo: 'Zpět', 14 | 15 | formatting: 'Formátování', 16 | p: 'Odstavec', 17 | blockquote: 'Citace', 18 | code: 'Kód', 19 | header: 'Nadpis', 20 | 21 | bold: 'Tučné', 22 | italic: 'Kurzíva', 23 | strikethrough: 'Přeškrtnuté', 24 | underline: 'Podtržené', 25 | 26 | strong: 'Tučné', 27 | em: 'Zvýraznit', 28 | del: 'Přeškrtnuté', 29 | 30 | superscript: 'Horní index', 31 | subscript: 'Dolní index', 32 | 33 | unorderedList: 'Netříděný seznam', 34 | orderedList: 'Tříděný seznam', 35 | 36 | insertImage: 'Vložit obrázek', 37 | insertVideo: 'Vložit video', 38 | link: 'Odkaz', 39 | createLink: 'Vložit odkaz', 40 | unlink: 'Smazat odkaz', 41 | 42 | justifyLeft: 'Zarovnat doleva', 43 | justifyCenter: 'Zarovnat na střed', 44 | justifyRight: 'Zarovnat doprava', 45 | justifyFull: 'Zarovnat do bloku', 46 | 47 | horizontalRule: 'Vložit vodorovnou čáru', 48 | 49 | 50 | removeformat: 'Vymazat formátování', 51 | fullscreen: 'Režim celé obrazovky', 52 | 53 | close: 'Zavřít', 54 | 55 | submit: 'Potvrdit', 56 | reset: 'Zrušit', 57 | 58 | required: 'Povinné', 59 | description: 'Popis', 60 | title: 'Nadpis', 61 | text: 'Text', 62 | target: 'Cíl' 63 | }; 64 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/cs.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * cs.js 3 | * Czech translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Jan Svoboda (https://github.com/svoboda-jan) 7 | */ 8 | jQuery.trumbowyg.langs.cs={viewHTML:"Zobrazit HTML",redo:"Vpřed",undo:"Zpět",formatting:"Formátování",p:"Odstavec",blockquote:"Citace",code:"Kód",header:"Nadpis",bold:"Tučné",italic:"Kurzíva",strikethrough:"Přeškrtnuté",underline:"Podtržené",strong:"Tučné",em:"Zvýraznit",del:"Přeškrtnuté",superscript:"Horní index",subscript:"Dolní index",unorderedList:"Netříděný seznam",orderedList:"Tříděný seznam",insertImage:"Vložit obrázek",insertVideo:"Vložit video",link:"Odkaz",createLink:"Vložit odkaz",unlink:"Smazat odkaz",justifyLeft:"Zarovnat doleva",justifyCenter:"Zarovnat na střed",justifyRight:"Zarovnat doprava",justifyFull:"Zarovnat do bloku",horizontalRule:"Vložit vodorovnou čáru",removeformat:"Vymazat formátování",fullscreen:"Režim celé obrazovky",close:"Zavřít",submit:"Potvrdit",reset:"Zrušit",required:"Povinné",description:"Popis",title:"Nadpis",text:"Text",target:"Cíl"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/da.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * da.js 3 | * Danish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Christian Pedersen 7 | * Github : https://github.com/chripede 8 | */ 9 | 10 | jQuery.trumbowyg.langs.da = { 11 | viewHTML: 'Vis HTML', 12 | 13 | undo: 'Fortryd', 14 | redo: 'Anuller fortryd', 15 | 16 | formatting: 'Formattering', 17 | p: 'Afsnit', 18 | blockquote: 'Citat', 19 | code: 'Kode', 20 | header: 'Overskrift', 21 | 22 | bold: 'Fed', 23 | italic: 'Kursiv', 24 | strikethrough: 'Gennemstreg', 25 | underline: 'Understreg', 26 | 27 | strong: 'Vigtig', 28 | em: 'Fremhæv', 29 | del: 'Slettet', 30 | 31 | superscript: 'Hævet skrift', 32 | subscript: 'Sænket skrift', 33 | 34 | unorderedList: 'Uordnet liste', 35 | orderedList: 'Ordnet liste', 36 | 37 | insertImage: 'Indsæt billede', 38 | insertVideo: 'Indsæt video', 39 | link: 'Link', 40 | createLink: 'Indsæt link', 41 | unlink: 'Fjern link', 42 | 43 | justifyLeft: 'Venstrestil', 44 | justifyCenter: 'Centrer', 45 | justifyRight: 'Højrestil', 46 | justifyFull: 'Lige margener', 47 | 48 | horizontalRule: 'Horisontal linie', 49 | removeformat: 'Ryd formattering', 50 | 51 | fullscreen: 'Fuld skærm', 52 | 53 | close: 'Luk', 54 | 55 | submit: 'Bekræft', 56 | reset: 'Annuller', 57 | 58 | required: 'Påkrævet', 59 | description: 'Beskrivelse', 60 | title: 'Titel', 61 | text: 'Tekst', 62 | target: 'Mål', 63 | width: 'Bredde' 64 | }; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/da.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * da.js 3 | * Danish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Christian Pedersen 7 | * Github : https://github.com/chripede 8 | */ 9 | jQuery.trumbowyg.langs.da={viewHTML:"Vis HTML",undo:"Fortryd",redo:"Anuller fortryd",formatting:"Formattering",p:"Afsnit",blockquote:"Citat",code:"Kode",header:"Overskrift",bold:"Fed",italic:"Kursiv",strikethrough:"Gennemstreg",underline:"Understreg",strong:"Vigtig",em:"Fremhæv",del:"Slettet",superscript:"Hævet skrift",subscript:"Sænket skrift",unorderedList:"Uordnet liste",orderedList:"Ordnet liste",insertImage:"Indsæt billede",insertVideo:"Indsæt video",link:"Link",createLink:"Indsæt link",unlink:"Fjern link",justifyLeft:"Venstrestil",justifyCenter:"Centrer",justifyRight:"Højrestil",justifyFull:"Lige margener",horizontalRule:"Horisontal linie",removeformat:"Ryd formattering",fullscreen:"Fuld skærm",close:"Luk",submit:"Bekræft",reset:"Annuller",required:"Påkrævet",description:"Beskrivelse",title:"Titel",text:"Tekst",target:"Mål",width:"Bredde"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/de.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * de.js 3 | * German translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Manfred Timm 7 | * Github : https://github.com/Manfred62 8 | */ 9 | 10 | jQuery.trumbowyg.langs.de = { 11 | viewHTML: 'HTML anzeigen', 12 | 13 | formatting: 'Formatierung', 14 | p: 'Absatz', 15 | blockquote: 'Zitat', 16 | code: 'Code', 17 | header: 'Überschrift', 18 | 19 | bold: 'Fett', 20 | italic: 'Kursiv', 21 | strikethrough: 'Durchgestrichen', 22 | underline: 'Unterstrichen', 23 | 24 | strong: 'Wichtig', 25 | em: 'Betont', 26 | del: 'Gelöscht', 27 | 28 | unorderedList: 'Ungeordnete Liste', 29 | orderedList: 'Geordnete Liste', 30 | 31 | image: 'Bild', 32 | insertImage: 'Bild einfügen', 33 | insertVideo: 'Video einfügen', 34 | link: 'Link', 35 | createLink: 'Link einfügen', 36 | unlink: 'Link entfernen', 37 | 38 | justifyLeft: 'Links ausrichten', 39 | justifyCenter: 'Zentrieren', 40 | justifyRight: 'Rechts ausrichten', 41 | justifyFull: 'Blocksatz', 42 | 43 | horizontalRule: 'Horizontale Linie einfügen', 44 | removeformat: 'Formatierung entfernen', 45 | 46 | fullscreen: 'Vollbild', 47 | 48 | close: 'Schließen', 49 | 50 | submit: 'Bestätigen', 51 | reset: 'Abbrechen', 52 | 53 | required: 'Erforderlich', 54 | description: 'Beschreibung', 55 | title: 'Titel', 56 | text: 'Text' 57 | }; 58 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/de.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * de.js 3 | * German translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Manfred Timm 7 | * Github : https://github.com/Manfred62 8 | */ 9 | jQuery.trumbowyg.langs.de={viewHTML:"HTML anzeigen",formatting:"Formatierung",p:"Absatz",blockquote:"Zitat",code:"Code",header:"Überschrift",bold:"Fett",italic:"Kursiv",strikethrough:"Durchgestrichen",underline:"Unterstrichen",strong:"Wichtig",em:"Betont",del:"Gelöscht",unorderedList:"Ungeordnete Liste",orderedList:"Geordnete Liste",image:"Bild",insertImage:"Bild einfügen",insertVideo:"Video einfügen",link:"Link",createLink:"Link einfügen",unlink:"Link entfernen",justifyLeft:"Links ausrichten",justifyCenter:"Zentrieren",justifyRight:"Rechts ausrichten",justifyFull:"Blocksatz",horizontalRule:"Horizontale Linie einfügen",removeformat:"Formatierung entfernen",fullscreen:"Vollbild",close:"Schließen",submit:"Bestätigen",reset:"Abbrechen",required:"Erforderlich",description:"Beschreibung",title:"Titel",text:"Text"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/el.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * el.js 3 | * Greek translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Merianos Nikos 7 | * Twitter : @_webresources 8 | * Website : http://www.wp-lion.com 9 | * LinkedIn: https://gr.linkedin.com/in/merianosnikos 10 | * Behance: https://www.behance.net/web_design_blog 11 | */ 12 | 13 | jQuery.trumbowyg.langs.el = { 14 | viewHTML: 'Προβολή κώδικα HTML', 15 | 16 | formatting: 'Μορφοποίηση', 17 | p: 'Παράγραφος', 18 | blockquote: 'Παράθεση', 19 | code: 'Κώδικας', 20 | header: 'Επικεφαλίδα', 21 | 22 | bold: 'Έντονα', 23 | italic: 'Πλάγια', 24 | strikethrough: 'Διαγραφή', 25 | underline: 'Υπογράμμιση', 26 | 27 | strong: 'Έντονα', 28 | em: 'Πλάγια', 29 | del: 'Διαγραφή', 30 | 31 | unorderedList: 'Αταξινόμητη λίστα', 32 | orderedList: 'Ταξινομημένη λίστα', 33 | 34 | insertImage: 'Εισαγωγή εικόνας', 35 | insertVideo: 'Εισαγωγή βίντεο', 36 | link: 'Σύνδεσμος', 37 | createLink: 'Δημιουργία συνδέσμου', 38 | unlink: 'Διαγραφή συνδέσμου', 39 | 40 | justifyLeft: 'Στοίχιση αριστερά', 41 | justifyCenter: 'Στοίχιση στο κέντρο', 42 | justifyRight: 'Στοίχιση δεξιά', 43 | justifyFull: 'Πλήρης στοίχιση', 44 | 45 | horizontalRule: 'Οριζόντια γραμμή', 46 | removeformat: 'Καθαρισμός μορφοποίησης', 47 | 48 | fullscreen: 'Πλήρης οθόνη', 49 | 50 | close: 'Κλείσιμο', 51 | 52 | submit: 'Υποβολή', 53 | reset: 'Επαναφορά', 54 | 55 | required: 'Απαραίτητο', 56 | description: 'Περιγραφή', 57 | title: 'Τίτλος', 58 | text: 'Κείμενο' 59 | }; 60 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/el.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * el.js 3 | * Greek translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Merianos Nikos 7 | * Twitter : @_webresources 8 | * Website : http://www.wp-lion.com 9 | * LinkedIn: https://gr.linkedin.com/in/merianosnikos 10 | * Behance: https://www.behance.net/web_design_blog 11 | */ 12 | jQuery.trumbowyg.langs.el={viewHTML:"Προβολή κώδικα HTML",formatting:"Μορφοποίηση",p:"Παράγραφος",blockquote:"Παράθεση",code:"Κώδικας",header:"Επικεφαλίδα",bold:"Έντονα",italic:"Πλάγια",strikethrough:"Διαγραφή",underline:"Υπογράμμιση",strong:"Έντονα",em:"Πλάγια",del:"Διαγραφή",unorderedList:"Αταξινόμητη λίστα",orderedList:"Ταξινομημένη λίστα",insertImage:"Εισαγωγή εικόνας",insertVideo:"Εισαγωγή βίντεο",link:"Σύνδεσμος",createLink:"Δημιουργία συνδέσμου",unlink:"Διαγραφή συνδέσμου",justifyLeft:"Στοίχιση αριστερά",justifyCenter:"Στοίχιση στο κέντρο",justifyRight:"Στοίχιση δεξιά",justifyFull:"Πλήρης στοίχιση",horizontalRule:"Οριζόντια γραμμή",removeformat:"Καθαρισμός μορφοποίησης",fullscreen:"Πλήρης οθόνη",close:"Κλείσιμο",submit:"Υποβολή",reset:"Επαναφορά",required:"Απαραίτητο",description:"Περιγραφή",title:"Τίτλος",text:"Κείμενο"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/es.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * es.js 3 | * Spanish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Moisés Márquez 7 | * Email : moises.marquez.g@gmail.com 8 | */ 9 | 10 | jQuery.trumbowyg.langs.es = { 11 | viewHTML: 'Ver HTML', 12 | 13 | undo: 'Deshacer', 14 | redo: 'Rehacer', 15 | 16 | formatting: 'Formato', 17 | p: 'Párrafo', 18 | blockquote: 'Cita', 19 | code: 'Código', 20 | header: 'Título', 21 | 22 | bold: 'Negrita', 23 | italic: 'Cursiva', 24 | strikethrough: 'Tachado', 25 | underline: 'Subrayado', 26 | 27 | strong: 'Negrita', 28 | em: 'Énfasis', 29 | del: 'Borrar', 30 | 31 | superscript: 'Sobrescrito', 32 | subscript: 'Subíndice', 33 | 34 | unorderedList: 'Lista Desordenada', 35 | orderedList: 'Lista Ordenada', 36 | 37 | insertImage: 'Insertar una imagen', 38 | insertVideo: 'Insertar un vídeo', 39 | link: 'Enlace', 40 | createLink: 'Insertar un enlace', 41 | unlink: 'Suprimir un enlace', 42 | 43 | justifyLeft: 'Izquierda', 44 | justifyCenter: 'Centrar', 45 | justifyRight: 'Derecha', 46 | justifyFull: 'Justificado', 47 | 48 | horizontalRule: 'Insertar separador horizontal', 49 | removeformat: 'Eliminar formato', 50 | 51 | fullscreen: 'Pantalla completa', 52 | 53 | close: 'Cerrar', 54 | 55 | submit: 'Enviar', 56 | reset: 'Cancelar', 57 | 58 | required: 'Obligatorio', 59 | description: 'Descripción', 60 | title: 'Título', 61 | text: 'Texto', 62 | target: 'Target' 63 | }; 64 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/es.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * es.js 3 | * Spanish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Moisés Márquez 7 | * Email : moises.marquez.g@gmail.com 8 | */ 9 | jQuery.trumbowyg.langs.es={viewHTML:"Ver HTML",undo:"Deshacer",redo:"Rehacer",formatting:"Formato",p:"Párrafo",blockquote:"Cita",code:"Código",header:"Título",bold:"Negrita",italic:"Cursiva",strikethrough:"Tachado",underline:"Subrayado",strong:"Negrita",em:"Énfasis",del:"Borrar",superscript:"Sobrescrito",subscript:"Subíndice",unorderedList:"Lista Desordenada",orderedList:"Lista Ordenada",insertImage:"Insertar una imagen",insertVideo:"Insertar un vídeo",link:"Enlace",createLink:"Insertar un enlace",unlink:"Suprimir un enlace",justifyLeft:"Izquierda",justifyCenter:"Centrar",justifyRight:"Derecha",justifyFull:"Justificado",horizontalRule:"Insertar separador horizontal",removeformat:"Eliminar formato",fullscreen:"Pantalla completa",close:"Cerrar",submit:"Enviar",reset:"Cancelar",required:"Obligatorio",description:"Descripción",title:"Título",text:"Texto",target:"Target"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/es_ar.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * es_ar.js 3 | * Spanish (Argentina) translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Félix Vera 7 | * Email : felix.vera@gmail.com 8 | */ 9 | 10 | // jshint camelcase:false 11 | jQuery.trumbowyg.langs.es_ar = { 12 | viewHTML: 'Ver HTML', 13 | 14 | formatting: 'Formato', 15 | p: 'Párrafo', 16 | blockquote: 'Cita', 17 | code: 'Código', 18 | header: 'Título', 19 | 20 | bold: 'Negrita', 21 | italic: 'Itálica', 22 | strikethrough: 'Tachado', 23 | underline: 'Subrayado', 24 | 25 | strong: 'Fuere', 26 | em: 'Énfasis', 27 | del: 'Borrar', 28 | 29 | unorderedList: 'Lista Desordenada', 30 | orderedList: 'Lista Ordenada', 31 | 32 | insertImage: 'Insertar una imagen', 33 | insertVideo: 'Insertar un video', 34 | link: 'Vínculo', 35 | createLink: 'Insertar un vínculo', 36 | unlink: 'Suprimir un vínculo', 37 | 38 | justifyLeft: 'Alinear a la Izquierda', 39 | justifyCenter: 'Centrar', 40 | justifyRight: 'Alinear a la Derecha', 41 | justifyFull: 'Justificado', 42 | 43 | horizontalRule: 'Insertar separado Horizontal', 44 | 45 | fullscreen: 'Pantalla Completa', 46 | 47 | close: 'Cerrar', 48 | 49 | submit: 'Enviar', 50 | reset: 'Cancelar', 51 | 52 | required: 'Obligatorio', 53 | description: 'Descripción', 54 | title: 'Título', 55 | text: 'Texto' 56 | }; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/es_ar.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * es_ar.js 3 | * Spanish (Argentina) translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Félix Vera 7 | * Email : felix.vera@gmail.com 8 | */ 9 | // jshint camelcase:false 10 | jQuery.trumbowyg.langs.es_ar={viewHTML:"Ver HTML",formatting:"Formato",p:"Párrafo",blockquote:"Cita",code:"Código",header:"Título",bold:"Negrita",italic:"Itálica",strikethrough:"Tachado",underline:"Subrayado",strong:"Fuere",em:"Énfasis",del:"Borrar",unorderedList:"Lista Desordenada",orderedList:"Lista Ordenada",insertImage:"Insertar una imagen",insertVideo:"Insertar un video",link:"Vínculo",createLink:"Insertar un vínculo",unlink:"Suprimir un vínculo",justifyLeft:"Alinear a la Izquierda",justifyCenter:"Centrar",justifyRight:"Alinear a la Derecha",justifyFull:"Justificado",horizontalRule:"Insertar separado Horizontal",fullscreen:"Pantalla Completa",close:"Cerrar",submit:"Enviar",reset:"Cancelar",required:"Obligatorio",description:"Descripción",title:"Título",text:"Texto"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/et.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * et.js 3 | * Estonian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Mart Leib 7 | * Web: https://voogle.ee 8 | */ 9 | 10 | jQuery.trumbowyg.langs.et = { 11 | viewHTML: 'HTML vaade', 12 | 13 | undo: 'Võta tagasi', 14 | redo: 'Tee uuesti', 15 | 16 | formatting: 'Vorming', 17 | p: 'Lõik', 18 | blockquote: 'Plokktsitaat', 19 | code: 'Kood', 20 | header: 'Pealkiri', 21 | 22 | bold: 'Paks', 23 | italic: 'Kaldkiri', 24 | strikethrough: 'Läbikriipsutatud', 25 | underline: 'Allakriipsutatud', 26 | 27 | strong: 'Tugev rõhutus', 28 | em: 'Rõhutus', 29 | del: 'Eemaldatud', 30 | 31 | superscript: 'Ülemine indeks', 32 | subscript: 'Alumine indeks', 33 | 34 | unorderedList: 'Järjestamata loend', 35 | orderedList: 'Järjestatud loend', 36 | 37 | insertImage: 'Lisa pilt', 38 | insertVideo: 'Lisa video', 39 | link: 'Link', 40 | createLink: 'Lisa link', 41 | unlink: 'Eemalda link', 42 | 43 | justifyLeft: 'Joonda vasakule', 44 | justifyCenter: 'Joonda keskele', 45 | justifyRight: 'Joonda paremale', 46 | justifyFull: 'Joonda rööpselt', 47 | 48 | horizontalRule: 'Horisontaaljoon', 49 | removeformat: 'Eemalda vorming', 50 | 51 | fullscreen: 'Täisekraan', 52 | 53 | close: 'Sulge', 54 | 55 | submit: 'Salvesta', 56 | reset: 'Tühista', 57 | 58 | required: 'Kohustuslik', 59 | description: 'Kirjeldus', 60 | title: 'Pealkiri', 61 | text: 'Tekst', 62 | target: 'Sihtmärk', 63 | width: 'Laius' 64 | 65 | }; 66 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/et.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * et.js 3 | * Estonian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Mart Leib 7 | * Web: https://voogle.ee 8 | */ 9 | jQuery.trumbowyg.langs.et={viewHTML:"HTML vaade",undo:"Võta tagasi",redo:"Tee uuesti",formatting:"Vorming",p:"Lõik",blockquote:"Plokktsitaat",code:"Kood",header:"Pealkiri",bold:"Paks",italic:"Kaldkiri",strikethrough:"Läbikriipsutatud",underline:"Allakriipsutatud",strong:"Tugev rõhutus",em:"Rõhutus",del:"Eemaldatud",superscript:"Ülemine indeks",subscript:"Alumine indeks",unorderedList:"Järjestamata loend",orderedList:"Järjestatud loend",insertImage:"Lisa pilt",insertVideo:"Lisa video",link:"Link",createLink:"Lisa link",unlink:"Eemalda link",justifyLeft:"Joonda vasakule",justifyCenter:"Joonda keskele",justifyRight:"Joonda paremale",justifyFull:"Joonda rööpselt",horizontalRule:"Horisontaaljoon",removeformat:"Eemalda vorming",fullscreen:"Täisekraan",close:"Sulge",submit:"Salvesta",reset:"Tühista",required:"Kohustuslik",description:"Kirjeldus",title:"Pealkiri",text:"Tekst",target:"Sihtmärk",width:"Laius"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/fa.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * fa.js 3 | * Persian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Kiarash Soleimanzadeh 7 | * Github : https://github.com/kiyarash 8 | * Email : kiarash.s@hotmail.com 9 | */ 10 | 11 | jQuery.trumbowyg.langs.fa = { 12 | _dir: 'rtl', 13 | 14 | viewHTML: 'نمایش کد اچ تی ام ال', 15 | 16 | formatting: 'قالب بندی', 17 | p: 'پاراگراف', 18 | blockquote: 'نقل قول', 19 | code: 'کد', 20 | header: 'سر تیتر', 21 | 22 | bold: 'ضخیم', 23 | italic: 'مورب', 24 | strikethrough: 'میان خط دار', 25 | underline: 'زیر خط دار', 26 | 27 | strong: 'برجسته', 28 | em: 'مورب', 29 | del: 'حذف شده', 30 | 31 | unorderedList: 'لیست نامرتب', 32 | orderedList: 'لیست مرتب', 33 | 34 | insertImage: 'درج تصویر', 35 | insertVideo: 'درج ویدئو', 36 | link: 'لینک', 37 | createLink: 'درج لینک', 38 | unlink: 'حذف لینک', 39 | 40 | justifyLeft: 'تراز به چپ', 41 | justifyCenter: 'تراز به وسط', 42 | justifyRight: 'تراز به راست', 43 | justifyFull: 'تراز به چپ و راست', 44 | 45 | horizontalRule: 'درج خط افقی', 46 | 47 | fullscreen: 'تمام صفحه', 48 | 49 | close: 'بستن', 50 | 51 | submit: 'تائید', 52 | reset: 'انصراف', 53 | 54 | required: 'اجباری', 55 | description: 'توضیحات', 56 | title: 'عنوان', 57 | text: 'متن' 58 | }; 59 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/fa.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * fa.js 3 | * Persian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Kiarash Soleimanzadeh 7 | * Github : https://github.com/kiyarash 8 | * Email : kiarash.s@hotmail.com 9 | */ 10 | jQuery.trumbowyg.langs.fa={_dir:"rtl",viewHTML:"نمایش کد اچ تی ام ال",formatting:"قالب بندی",p:"پاراگراف",blockquote:"نقل قول",code:"کد",header:"سر تیتر",bold:"ضخیم",italic:"مورب",strikethrough:"میان خط دار",underline:"زیر خط دار",strong:"برجسته",em:"مورب",del:"حذف شده",unorderedList:"لیست نامرتب",orderedList:"لیست مرتب",insertImage:"درج تصویر",insertVideo:"درج ویدئو",link:"لینک",createLink:"درج لینک",unlink:"حذف لینک",justifyLeft:"تراز به چپ",justifyCenter:"تراز به وسط",justifyRight:"تراز به راست",justifyFull:"تراز به چپ و راست",horizontalRule:"درج خط افقی",fullscreen:"تمام صفحه",close:"بستن",submit:"تائید",reset:"انصراف",required:"اجباری",description:"توضیحات",title:"عنوان",text:"متن"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/fi.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * fi.js 3 | * Finnish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Teppo Koivula (teppokoivula) 7 | * Github : https://github.com/teppokoivula 8 | */ 9 | 10 | jQuery.trumbowyg.langs.fi = { 11 | viewHTML: 'Näytä HTML', 12 | 13 | undo: 'Kumoa', 14 | redo: 'Tee uudelleen', 15 | 16 | formatting: 'Muotoilu', 17 | p: 'Kappale', 18 | blockquote: 'Lainaus', 19 | code: 'Koodi', 20 | header: 'Otsikko', 21 | 22 | bold: 'Lihavointi', 23 | italic: 'Kursivointi', 24 | strikethrough: 'Yliviivaus', 25 | underline: 'Allevivaus', 26 | 27 | strong: 'Vahvennus', 28 | em: 'Painotus', 29 | del: 'Poistettu', 30 | 31 | unorderedList: 'Luettelo', 32 | orderedList: 'Numeroitu luettelo', 33 | 34 | insertImage: 'Lisää kuva', 35 | insertVideo: 'Lisää video', 36 | link: 'Linkki', 37 | createLink: 'Luo linkki', 38 | unlink: 'Poista linkki', 39 | 40 | justifyLeft: 'Tasaa vasemmalle', 41 | justifyCenter: 'Keskitä', 42 | justifyRight: 'Tasaa oikealle', 43 | justifyFull: 'Tasaa', 44 | 45 | horizontalRule: 'Vaakaviiva', 46 | 47 | fullscreen: 'Kokoruutu', 48 | 49 | close: 'Sulje', 50 | 51 | submit: 'Lisää', 52 | reset: 'Palauta', 53 | 54 | required: 'Pakollinen', 55 | description: 'Kuvaus', 56 | title: 'Otsikko', 57 | text: 'Teksti' 58 | }; 59 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/fi.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * fi.js 3 | * Finnish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Teppo Koivula (teppokoivula) 7 | * Github : https://github.com/teppokoivula 8 | */ 9 | jQuery.trumbowyg.langs.fi={viewHTML:"Näytä HTML",undo:"Kumoa",redo:"Tee uudelleen",formatting:"Muotoilu",p:"Kappale",blockquote:"Lainaus",code:"Koodi",header:"Otsikko",bold:"Lihavointi",italic:"Kursivointi",strikethrough:"Yliviivaus",underline:"Allevivaus",strong:"Vahvennus",em:"Painotus",del:"Poistettu",unorderedList:"Luettelo",orderedList:"Numeroitu luettelo",insertImage:"Lisää kuva",insertVideo:"Lisää video",link:"Linkki",createLink:"Luo linkki",unlink:"Poista linkki",justifyLeft:"Tasaa vasemmalle",justifyCenter:"Keskitä",justifyRight:"Tasaa oikealle",justifyFull:"Tasaa",horizontalRule:"Vaakaviiva",fullscreen:"Kokoruutu",close:"Sulje",submit:"Lisää",reset:"Palauta",required:"Pakollinen",description:"Kuvaus",title:"Otsikko",text:"Teksti"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/fr.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * fr.js 3 | * French translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Alexandre Demode (Alex-D) 7 | * Twitter : @AlexandreDemode 8 | * Website : alex-d.fr 9 | * Reviewed by : Abdou Developer (test20091) 10 | * Github : https://github.com/test20091 11 | */ 12 | jQuery.trumbowyg.langs.fr={viewHTML:"Voir le HTML",undo:"Annuler",redo:"Refaire",formatting:"Format",p:"Paragraphe",blockquote:"Citation",code:"Code",header:"Titre",bold:"Gras",italic:"Italique",strikethrough:"Barré",underline:"Souligné",strong:"Fort",em:"Emphase",del:"Supprimé",superscript:"Exposant",subscript:"Indice",unorderedList:"Liste à puces",orderedList:"Liste ordonnée",insertImage:"Insérer une image",insertVideo:"Insérer une video",link:"Lien",createLink:"Insérer un lien",unlink:"Supprimer le lien",_self:"Même onglet (par défaut)",_blank:"Nouvel onglet",justifyLeft:"Aligner à gauche",justifyCenter:"Centrer",justifyRight:"Aligner à droite",justifyFull:"Justifier",horizontalRule:"Insérer un séparateur horizontal",removeformat:"Supprimer formatage",fullscreen:"Plein écran",close:"Fermer",submit:"Valider",reset:"Annuler",required:"Obligatoire",description:"Description",title:"Titre",text:"Texte",target:"Cible"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/he.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * he.js 3 | * Hebrew translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Udi Doron (udidoron) 7 | * Github : https://github.com/udidoron 8 | */ 9 | 10 | jQuery.trumbowyg.langs.he = { 11 | _dir: 'rtl', 12 | 13 | viewHTML: 'צפה ב-HTML', 14 | 15 | formatting: 'פורמט', 16 | p: 'פסקה', 17 | blockquote: 'ציטוט', 18 | code: 'קוד', 19 | header: 'ראשית', 20 | 21 | bold: 'מודגש', 22 | italic: 'נטוי', 23 | strikethrough: 'קו חוצה', 24 | underline: 'קו תחתון', 25 | 26 | strong: 'בולט', 27 | em: 'הדגשה', 28 | del: 'נמחק', 29 | 30 | unorderedList: 'רשימה ללא סדר', 31 | orderedList: 'רשימה מסודרת', 32 | 33 | insertImage: 'הכנס תמונה', 34 | insertVideo: 'הכנס סרטון', 35 | link: 'קישור', 36 | createLink: 'צור קישור', 37 | unlink: 'הסר קישור', 38 | 39 | justifyLeft: 'ישר לשמאל', 40 | justifyCenter: 'מרכז', 41 | justifyRight: 'ישר לימין', 42 | justifyFull: 'ישר לשני הצדדים', 43 | 44 | horizontalRule: 'הכנס קו אופקי', 45 | 46 | fullscreen: 'מסך מלא', 47 | 48 | close: 'סגור', 49 | 50 | submit: 'שלח', 51 | reset: 'אתחל מחדש', 52 | 53 | required: 'נחוץ', 54 | description: 'תיאור', 55 | title: 'כותרת', 56 | text: 'טקסט' 57 | }; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/he.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * he.js 3 | * Hebrew translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Udi Doron (udidoron) 7 | * Github : https://github.com/udidoron 8 | */ 9 | jQuery.trumbowyg.langs.he={_dir:"rtl",viewHTML:"צפה ב-HTML",formatting:"פורמט",p:"פסקה",blockquote:"ציטוט",code:"קוד",header:"ראשית",bold:"מודגש",italic:"נטוי",strikethrough:"קו חוצה",underline:"קו תחתון",strong:"בולט",em:"הדגשה",del:"נמחק",unorderedList:"רשימה ללא סדר",orderedList:"רשימה מסודרת",insertImage:"הכנס תמונה",insertVideo:"הכנס סרטון",link:"קישור",createLink:"צור קישור",unlink:"הסר קישור",justifyLeft:"ישר לשמאל",justifyCenter:"מרכז",justifyRight:"ישר לימין",justifyFull:"ישר לשני הצדדים",horizontalRule:"הכנס קו אופקי",fullscreen:"מסך מלא",close:"סגור",submit:"שלח",reset:"אתחל מחדש",required:"נחוץ",description:"תיאור",title:"כותרת",text:"טקסט"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/hr.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * hr.js 3 | * Croatian translation for Trumbowyg 4 | * https://www.github.com/Buda9 5 | * =========================================================== 6 | * Author : Davor Budimir (https://www.github.com/Buda9) 7 | */ 8 | 9 | // jshint camelcase:false 10 | jQuery.trumbowyg.langs.hr = { 11 | viewHTML: 'Poglеdaj HTML kód', 12 | 13 | formatting: 'Formatiranjе', 14 | p: 'Odlomak', 15 | blockquote: 'Citat', 16 | code: 'Kód', 17 | header: 'Zaglavlje', 18 | 19 | bold: 'Podеbljano', 20 | italic: 'Nakošeno', 21 | strikethrough: 'Prеcrtano', 22 | underline: 'Podvučеno', 23 | 24 | strong: 'Podеbljano', 25 | em: 'Istaknuto', 26 | del: 'Obrisano', 27 | 28 | unorderedList: 'Neuređen popis', 29 | orderedList: 'Uređen popis', 30 | insertImage: 'Dodaj sliku', 31 | insertVideo: 'Dodaj vidеo', 32 | link: 'Povezica', 33 | createLink: 'Dodaj povezicu', 34 | unlink: 'Ukloni povezicu', 35 | 36 | justifyLeft: 'Lijеvo poravnanjе', 37 | justifyCenter: 'Središnje poravnanjе', 38 | justifyRight: 'Dеsno poravnanjе', 39 | justifyFull: 'Obostrano poravnanjе', 40 | 41 | horizontalRule: 'Horizontalna crta', 42 | 43 | fullscreen: 'Puni zaslon', 44 | 45 | close: 'Zatvori', 46 | 47 | submit: 'Unеsi', 48 | reset: 'Otkaži', 49 | 50 | required: 'Obavеzno poljе', 51 | description: 'Opis', 52 | title: 'Naslov', 53 | text: 'Tеkst' 54 | }; 55 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/hr.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * hr.js 3 | * Croatian translation for Trumbowyg 4 | * https://www.github.com/Buda9 5 | * =========================================================== 6 | * Author : Davor Budimir (https://www.github.com/Buda9) 7 | */ 8 | // jshint camelcase:false 9 | jQuery.trumbowyg.langs.hr={viewHTML:"Poglеdaj HTML kód",formatting:"Formatiranjе",p:"Odlomak",blockquote:"Citat",code:"Kód",header:"Zaglavlje",bold:"Podеbljano",italic:"Nakošeno",strikethrough:"Prеcrtano",underline:"Podvučеno",strong:"Podеbljano",em:"Istaknuto",del:"Obrisano",unorderedList:"Neuređen popis",orderedList:"Uređen popis",insertImage:"Dodaj sliku",insertVideo:"Dodaj vidеo",link:"Povezica",createLink:"Dodaj povezicu",unlink:"Ukloni povezicu",justifyLeft:"Lijеvo poravnanjе",justifyCenter:"Središnje poravnanjе",justifyRight:"Dеsno poravnanjе",justifyFull:"Obostrano poravnanjе",horizontalRule:"Horizontalna crta",fullscreen:"Puni zaslon",close:"Zatvori",submit:"Unеsi",reset:"Otkaži",required:"Obavеzno poljе",description:"Opis",title:"Naslov",text:"Tеkst"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/hu.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * hu.js 3 | * Hungarian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Peter MATO 7 | * Web: http://fixme.hu 8 | * GitHub: https://github.com/matopeter 9 | */ 10 | 11 | jQuery.trumbowyg.langs.hu = { 12 | viewHTML: 'HTML nézet', 13 | 14 | formatting: 'Stílusok', 15 | 16 | p: 'Bekezdés', 17 | blockquote: 'Idézet', 18 | code: 'Kód', 19 | header: 'Címsor', 20 | 21 | bold: 'Félkövér', 22 | italic: 'Dőlt', 23 | strikethrough: 'Áthúzott', 24 | underline: 'Aláhúzott', 25 | 26 | strong: 'Vastag', 27 | em: 'Kiemelt', 28 | del: 'Törölt', 29 | 30 | unorderedList: 'Felsorolás', 31 | orderedList: 'Számozás', 32 | 33 | insertImage: 'Kép beszúrása', 34 | insertVideo: 'Video beszúrása', 35 | link: 'Link', 36 | createLink: 'Link létrehozása', 37 | unlink: 'Link eltávolítása', 38 | 39 | justifyLeft: 'Balra igazítás', 40 | justifyCenter: 'Középre igazítás', 41 | justifyRight: 'Jobbra igazítás', 42 | justifyFull: 'Sorkizárt', 43 | 44 | horizontalRule: 'Vízszintes vonal', 45 | 46 | fullscreen: 'Teljes képernyő', 47 | close: 'Bezár', 48 | 49 | submit: 'Beküldés', 50 | reset: 'Alaphelyzet', 51 | 52 | required: 'Kötelező', 53 | description: 'Leírás', 54 | title: 'Cím', 55 | text: 'Szöveg', 56 | 57 | removeformat: 'Formázás eltávolítása' 58 | }; 59 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/hu.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * hu.js 3 | * Hungarian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Peter MATO 7 | * Web: http://fixme.hu 8 | * GitHub: https://github.com/matopeter 9 | */ 10 | jQuery.trumbowyg.langs.hu={viewHTML:"HTML nézet",formatting:"Stílusok",p:"Bekezdés",blockquote:"Idézet",code:"Kód",header:"Címsor",bold:"Félkövér",italic:"Dőlt",strikethrough:"Áthúzott",underline:"Aláhúzott",strong:"Vastag",em:"Kiemelt",del:"Törölt",unorderedList:"Felsorolás",orderedList:"Számozás",insertImage:"Kép beszúrása",insertVideo:"Video beszúrása",link:"Link",createLink:"Link létrehozása",unlink:"Link eltávolítása",justifyLeft:"Balra igazítás",justifyCenter:"Középre igazítás",justifyRight:"Jobbra igazítás",justifyFull:"Sorkizárt",horizontalRule:"Vízszintes vonal",fullscreen:"Teljes képernyő",close:"Bezár",submit:"Beküldés",reset:"Alaphelyzet",required:"Kötelező",description:"Leírás",title:"Cím",text:"Szöveg",removeformat:"Formázás eltávolítása"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/id.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * id.js 3 | * Indonesian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Rezha Julio (kimiamania) 7 | * Twitter : @kimiamania 8 | * Website : http://rezhajulio.web.id 9 | * Github : https://github.com/kimiamania 10 | */ 11 | 12 | jQuery.trumbowyg.langs.id = { 13 | viewHTML: 'Lihat HTML', 14 | 15 | formatting: 'Penyusunan', 16 | p: 'Paragraf', 17 | blockquote: 'Kutipan', 18 | code: 'Kode', 19 | header: 'Kepala', 20 | 21 | bold: 'Tebal', 22 | italic: 'Miring', 23 | strikethrough: 'Coret', 24 | underline: 'Garis bawah', 25 | 26 | strong: 'Tebal', 27 | em: 'Miring', 28 | del: 'Dicoret', 29 | 30 | unorderedList: 'Daftar tak teratur', 31 | orderedList: 'Daftar teratur', 32 | 33 | insertImage: 'Sisipkan gambar', 34 | insertVideo: 'Sisipkan video', 35 | link: 'Tautan', 36 | createLink: 'Sisipkan Tautan', 37 | unlink: 'Singkirkan tautan', 38 | 39 | justifyLeft: 'Rata kiri', 40 | justifyCenter: 'Rata Tengah', 41 | justifyRight: 'Rata kanan', 42 | justifyFull: 'Rata kiri dan kanan', 43 | 44 | horizontalRule: 'Sisipkan garis mendatar', 45 | 46 | fullscreen: 'Layar penuh', 47 | 48 | close: 'Tutup', 49 | 50 | submit: 'Setuju', 51 | reset: 'Batal', 52 | 53 | required: 'Diperlukan', 54 | description: 'Deskripsi', 55 | title: 'Judul', 56 | text: 'Teks' 57 | }; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/id.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * id.js 3 | * Indonesian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Rezha Julio (kimiamania) 7 | * Twitter : @kimiamania 8 | * Website : http://rezhajulio.web.id 9 | * Github : https://github.com/kimiamania 10 | */ 11 | jQuery.trumbowyg.langs.id={viewHTML:"Lihat HTML",formatting:"Penyusunan",p:"Paragraf",blockquote:"Kutipan",code:"Kode",header:"Kepala",bold:"Tebal",italic:"Miring",strikethrough:"Coret",underline:"Garis bawah",strong:"Tebal",em:"Miring",del:"Dicoret",unorderedList:"Daftar tak teratur",orderedList:"Daftar teratur",insertImage:"Sisipkan gambar",insertVideo:"Sisipkan video",link:"Tautan",createLink:"Sisipkan Tautan",unlink:"Singkirkan tautan",justifyLeft:"Rata kiri",justifyCenter:"Rata Tengah",justifyRight:"Rata kanan",justifyFull:"Rata kiri dan kanan",horizontalRule:"Sisipkan garis mendatar",fullscreen:"Layar penuh",close:"Tutup",submit:"Setuju",reset:"Batal",required:"Diperlukan",description:"Deskripsi",title:"Judul",text:"Teks"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/it.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * it.js 3 | * Italian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Mirko Buffoni 7 | */ 8 | 9 | jQuery.trumbowyg.langs.it = { 10 | viewHTML: 'Mostra HTML', 11 | 12 | undo: 'Annulla', 13 | redo: 'Ripeti', 14 | 15 | formatting: 'Formattazione', 16 | p: 'Paragrafo', 17 | blockquote: 'Citazione', 18 | code: 'Codice', 19 | header: 'Intestazione', 20 | 21 | bold: 'Grassetto', 22 | italic: 'Italico', 23 | strikethrough: 'Barrato', 24 | underline: 'Sottolineato', 25 | 26 | strong: 'Rafforza', 27 | em: 'Enfatizza', 28 | del: 'Cancella', 29 | 30 | unorderedList: 'Elenco puntato', 31 | orderedList: 'Elenco numerato', 32 | 33 | insertImage: 'Inserisci immagine', 34 | insertVideo: 'Inserisci video', 35 | link: 'Collegamento', 36 | createLink: 'Crea un collegamento', 37 | unlink: 'Elimina collegamento', 38 | 39 | justifyLeft: 'Allinea a sinistra', 40 | justifyCenter: 'Centra', 41 | justifyRight: 'Allinea a destra', 42 | justifyFull: 'Giustifica', 43 | 44 | horizontalRule: 'Inserisci un separatore orizzontale', 45 | 46 | fullscreen: 'Schermo intero', 47 | 48 | close: 'Chiudi', 49 | 50 | submit: 'Invia', 51 | reset: 'Annulla', 52 | 53 | required: 'Obbligatorio', 54 | description: 'Descrizione', 55 | title: 'Titolo', 56 | text: 'Testo', 57 | 58 | removeformat: 'Rimuovi Formattazione', 59 | 60 | superscript: 'Apice', 61 | subscript: 'Pedice', 62 | }; 63 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/it.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * it.js 3 | * Italian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Mirko Buffoni 7 | */ 8 | jQuery.trumbowyg.langs.it={viewHTML:"Mostra HTML",undo:"Annulla",redo:"Ripeti",formatting:"Formattazione",p:"Paragrafo",blockquote:"Citazione",code:"Codice",header:"Intestazione",bold:"Grassetto",italic:"Italico",strikethrough:"Barrato",underline:"Sottolineato",strong:"Rafforza",em:"Enfatizza",del:"Cancella",unorderedList:"Elenco puntato",orderedList:"Elenco numerato",insertImage:"Inserisci immagine",insertVideo:"Inserisci video",link:"Collegamento",createLink:"Crea un collegamento",unlink:"Elimina collegamento",justifyLeft:"Allinea a sinistra",justifyCenter:"Centra",justifyRight:"Allinea a destra",justifyFull:"Giustifica",horizontalRule:"Inserisci un separatore orizzontale",fullscreen:"Schermo intero",close:"Chiudi",submit:"Invia",reset:"Annulla",required:"Obbligatorio",description:"Descrizione",title:"Titolo",text:"Testo",removeformat:"Rimuovi Formattazione",superscript:"Apice",subscript:"Pedice"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ja.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ja.js 3 | * Japanese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Kouta Fukuhara (foo9) 7 | * Twitter : @foo9 8 | * Website : https://github.com/foo9 9 | */ 10 | 11 | jQuery.trumbowyg.langs.ja = { 12 | viewHTML: 'HTML表示', 13 | 14 | undo: '元に戻す', 15 | redo: 'やり直す', 16 | 17 | formatting: 'フォーマット', 18 | p: '段落', 19 | blockquote: '引用', 20 | code: 'コード', 21 | header: '見出し', 22 | 23 | bold: '太字', 24 | italic: '斜体', 25 | strikethrough: '取り消し線', 26 | underline: '下線', 27 | 28 | strong: '太字', 29 | em: '斜体', 30 | del: '取り消し線', 31 | 32 | superscript: '上付き文字', 33 | subscript: '下付き文字', 34 | 35 | unorderedList: '順序なしリスト', 36 | orderedList: '順序ありリスト', 37 | 38 | insertImage: '画像の挿入', 39 | link: 'リンク', 40 | createLink: 'リンクの作成', 41 | unlink: 'リンクの削除', 42 | 43 | justifyLeft: '左揃え', 44 | justifyCenter: '中央揃え', 45 | justifyRight: '右揃え', 46 | justifyFull: '両端揃え', 47 | 48 | horizontalRule: '横罫線', 49 | removeformat: 'フォーマットの削除', 50 | 51 | fullscreen: '全画面表示', 52 | 53 | close: '閉じる', 54 | 55 | submit: '送信', 56 | reset: 'キャンセル', 57 | 58 | required: '必須', 59 | description: '説明', 60 | title: 'タイトル', 61 | text: 'テキスト', 62 | target: 'ターゲット' 63 | }; 64 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ja.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ja.js 3 | * Japanese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Kouta Fukuhara (foo9) 7 | * Twitter : @foo9 8 | * Website : https://github.com/foo9 9 | */ 10 | jQuery.trumbowyg.langs.ja={viewHTML:"HTML表示",undo:"元に戻す",redo:"やり直す",formatting:"フォーマット",p:"段落",blockquote:"引用",code:"コード",header:"見出し",bold:"太字",italic:"斜体",strikethrough:"取り消し線",underline:"下線",strong:"太字",em:"斜体",del:"取り消し線",superscript:"上付き文字",subscript:"下付き文字",unorderedList:"順序なしリスト",orderedList:"順序ありリスト",insertImage:"画像の挿入",link:"リンク",createLink:"リンクの作成",unlink:"リンクの削除",justifyLeft:"左揃え",justifyCenter:"中央揃え",justifyRight:"右揃え",justifyFull:"両端揃え",horizontalRule:"横罫線",removeformat:"フォーマットの削除",fullscreen:"全画面表示",close:"閉じる",submit:"送信",reset:"キャンセル",required:"必須",description:"説明",title:"タイトル",text:"テキスト",target:"ターゲット"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ko.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ko.js 3 | * Korean translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : SeungWoo Chae (SDuck4) 7 | * Github : https://github.com/SDuck4 8 | * Victor Chanil Park (opdev1004) 9 | * Github : https://github.com/opdev1004 10 | */ 11 | 12 | jQuery.trumbowyg.langs.ko = { 13 | viewHTML: 'HTML 보기', 14 | 15 | undo: '되돌리기', 16 | redo: '다시 실행', 17 | 18 | formatting: '스타일', 19 | p: '본문', 20 | blockquote: '인용문', 21 | code: '코드', 22 | header: '제목', 23 | 24 | bold: '진하게', 25 | italic: '기울임', 26 | strikethrough: '취소선', 27 | underline: '밑줄', 28 | 29 | strong: '중요', 30 | em: '강조', 31 | del: '삭제', 32 | 33 | superscript: '위 첨자', 34 | subscript: '아래 첨자', 35 | 36 | unorderedList: '기호 목록', 37 | orderedList: '번호 목록', 38 | 39 | insertImage: '이미지 넣기', 40 | insertVideo: '비디오 넣기', 41 | link: '링크', 42 | createLink: '링크 넣기', 43 | unlink: '링크 지우기', 44 | 45 | justifyLeft: '왼쪽 정렬', 46 | justifyCenter: '가운데 정렬', 47 | justifyRight: '오른쪽 정렬', 48 | justifyFull: '양쪽 정렬', 49 | 50 | horizontalRule: '구분선 넣기', 51 | removeformat: '글꼴 효과 지우기', 52 | 53 | fullscreen: '전체 화면', 54 | 55 | close: '닫기', 56 | 57 | submit: '확인', 58 | reset: '취소', 59 | 60 | required: '필수 입력', 61 | description: '설명', 62 | title: '툴팁', 63 | text: '내용', 64 | target: '타겟', 65 | width: '너비' 66 | }; 67 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ko.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ko.js 3 | * Korean translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : SeungWoo Chae (SDuck4) 7 | * Github : https://github.com/SDuck4 8 | * Victor Chanil Park (opdev1004) 9 | * Github : https://github.com/opdev1004 10 | */ 11 | jQuery.trumbowyg.langs.ko={viewHTML:"HTML 보기",undo:"되돌리기",redo:"다시 실행",formatting:"스타일",p:"본문",blockquote:"인용문",code:"코드",header:"제목",bold:"진하게",italic:"기울임",strikethrough:"취소선",underline:"밑줄",strong:"중요",em:"강조",del:"삭제",superscript:"위 첨자",subscript:"아래 첨자",unorderedList:"기호 목록",orderedList:"번호 목록",insertImage:"이미지 넣기",insertVideo:"비디오 넣기",link:"링크",createLink:"링크 넣기",unlink:"링크 지우기",justifyLeft:"왼쪽 정렬",justifyCenter:"가운데 정렬",justifyRight:"오른쪽 정렬",justifyFull:"양쪽 정렬",horizontalRule:"구분선 넣기",removeformat:"글꼴 효과 지우기",fullscreen:"전체 화면",close:"닫기",submit:"확인",reset:"취소",required:"필수 입력",description:"설명",title:"툴팁",text:"내용",target:"타겟",width:"너비"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/lt.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * lt.js 3 | * Lithuanian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Justas Brazauskas 7 | */ 8 | 9 | jQuery.trumbowyg.langs.lt = { 10 | viewHTML: 'Žiūrėti HTML', 11 | 12 | formatting: 'Formatuoti', 13 | p: 'Paragrafas', 14 | blockquote: 'Citata', 15 | code: 'Kodas', 16 | header: 'Antraštė', 17 | 18 | bold: 'Paryškinti', 19 | italic: 'Kursyvuoti', 20 | strikethrough: 'Perbraukti', 21 | underline: 'Pabrėžti', 22 | 23 | strong: 'Paryškinti', 24 | em: 'Pabrėžti', 25 | del: 'Trinti', 26 | 27 | unorderedList: 'Sąrašas', 28 | orderedList: 'Numeruotas sąrašas', 29 | 30 | insertImage: 'Pridėti vaizdą', 31 | insertVideo: 'Pridėti video', 32 | link: 'Nuoroda', 33 | createLink: 'Kurti nuorodą', 34 | unlink: 'Ištrinti nuorodą', 35 | 36 | justifyLeft: 'Lyginti kairėn', 37 | justifyCenter: 'Lygiuoti Centre', 38 | justifyRight: 'Lyginti dešinėn', 39 | justifyFull: 'Centruoti', 40 | 41 | horizontalRule: 'Horizontali linija', 42 | 43 | fullscreen: 'Pilnas ekranas', 44 | 45 | close: 'Uždaryti', 46 | 47 | submit: 'Siųsti', 48 | reset: 'Atšaukti', 49 | 50 | required: 'Privaloma', 51 | description: 'Aprašymas', 52 | title: 'Pavadinimas', 53 | text: 'Tekstas', 54 | 55 | removeformat: 'Pašalinti formatavimą', 56 | 57 | superscript: 'Viršutinis indeksas', 58 | subscript: 'Apatinis indeksas', 59 | }; 60 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/lt.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * lt.js 3 | * Lithuanian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Justas Brazauskas 7 | */ 8 | jQuery.trumbowyg.langs.lt={viewHTML:"Žiūrėti HTML",formatting:"Formatuoti",p:"Paragrafas",blockquote:"Citata",code:"Kodas",header:"Antraštė",bold:"Paryškinti",italic:"Kursyvuoti",strikethrough:"Perbraukti",underline:"Pabrėžti",strong:"Paryškinti",em:"Pabrėžti",del:"Trinti",unorderedList:"Sąrašas",orderedList:"Numeruotas sąrašas",insertImage:"Pridėti vaizdą",insertVideo:"Pridėti video",link:"Nuoroda",createLink:"Kurti nuorodą",unlink:"Ištrinti nuorodą",justifyLeft:"Lyginti kairėn",justifyCenter:"Lygiuoti Centre",justifyRight:"Lyginti dešinėn",justifyFull:"Centruoti",horizontalRule:"Horizontali linija",fullscreen:"Pilnas ekranas",close:"Uždaryti",submit:"Siųsti",reset:"Atšaukti",required:"Privaloma",description:"Aprašymas",title:"Pavadinimas",text:"Tekstas",removeformat:"Pašalinti formatavimą",superscript:"Viršutinis indeksas",subscript:"Apatinis indeksas"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/mn.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * mn.js 3 | * Mongolian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Ganbayar.B (ganbayar13) 7 | */ 8 | 9 | jQuery.trumbowyg.langs.mn = { 10 | viewHTML: 'HTML харах', 11 | undo: 'Буцаах', 12 | redo: 'Дахих', 13 | formatting: 'Формат', 14 | p: 'Догол мөр', 15 | blockquote: 'Ишлэл', 16 | code: 'Код', 17 | header: 'Гарчиг', 18 | bold: 'Тод', 19 | italic: 'Налуу', 20 | strikethrough: 'Дундуур зураас', 21 | underline: 'Доогуур зураас', 22 | strong: 'Тод', 23 | em: 'Налуу', 24 | del: 'Дундуур зураас', 25 | superscript: 'Дээд индекс', 26 | subscript: 'Доод индекс', 27 | unorderedList: 'Дугаарлаагүй жагсаалт', 28 | orderedList: 'Дугаарласан жагсаалт', 29 | insertImage: 'Зураг оруулах', 30 | insertVideo: 'Видео оруулах', 31 | link: 'Холбоос', 32 | createLink: 'Холбоос үүсгэх', 33 | unlink: 'Холбоос цуцлах', 34 | justifyLeft: 'Зүүн тийш шахах', 35 | justifyCenter: 'Голлуулах', 36 | justifyRight: 'Баруун Баруун тийш шахах', 37 | justifyFull: 'Тэгшитгэх', 38 | horizontalRule: 'Хөндлөн шугам', 39 | removeformat: 'Формат арилгах', 40 | fullscreen: 'Дэлгэц дүүргэх', 41 | close: 'Хаах', 42 | submit: 'Оруулах', 43 | reset: 'Цуцлах', 44 | required: 'Шаардлагатай', 45 | description: 'Тайлбар', 46 | title: 'Гарчиг', 47 | text: 'Текст', 48 | target: 'Бай' 49 | }; 50 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/mn.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * mn.js 3 | * Mongolian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Ganbayar.B (ganbayar13) 7 | */ 8 | jQuery.trumbowyg.langs.mn={viewHTML:"HTML харах",undo:"Буцаах",redo:"Дахих",formatting:"Формат",p:"Догол мөр",blockquote:"Ишлэл",code:"Код",header:"Гарчиг",bold:"Тод",italic:"Налуу",strikethrough:"Дундуур зураас",underline:"Доогуур зураас",strong:"Тод",em:"Налуу",del:"Дундуур зураас",superscript:"Дээд индекс",subscript:"Доод индекс",unorderedList:"Дугаарлаагүй жагсаалт",orderedList:"Дугаарласан жагсаалт",insertImage:"Зураг оруулах",insertVideo:"Видео оруулах",link:"Холбоос",createLink:"Холбоос үүсгэх",unlink:"Холбоос цуцлах",justifyLeft:"Зүүн тийш шахах",justifyCenter:"Голлуулах",justifyRight:"Баруун Баруун тийш шахах",justifyFull:"Тэгшитгэх",horizontalRule:"Хөндлөн шугам",removeformat:"Формат арилгах",fullscreen:"Дэлгэц дүүргэх",close:"Хаах",submit:"Оруулах",reset:"Цуцлах",required:"Шаардлагатай",description:"Тайлбар",title:"Гарчиг",text:"Текст",target:"Бай"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/my.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * my.js 3 | * Malaysian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : JohnPozy 7 | */ 8 | 9 | jQuery.trumbowyg.langs.id = { 10 | viewHTML: 'Lihat HTML', 11 | 12 | formatting: 'Pemformatan', 13 | p: 'Perenggan', 14 | blockquote: 'Blockquote', 15 | code: 'Kod', 16 | header: 'Pengepala', 17 | 18 | bold: 'Tebal', 19 | italic: 'Condong', 20 | strikethrough: 'Garis batal', 21 | underline: 'Garis bawah', 22 | 23 | strong: 'Kuat', 24 | em: 'Condong', 25 | del: 'Hapus', 26 | 27 | unorderedList: 'Senarai tidak tertib', 28 | orderedList: 'Senarai tertib', 29 | 30 | insertImage: 'Masukkan imej', 31 | insertVideo: 'Masukkan video', 32 | link: 'Pautan', 33 | createLink: 'Cipta pautan', 34 | unlink: 'Hapus pautan', 35 | 36 | justifyLeft: 'Mengimbangkan ke kiri', 37 | justifyCenter: 'Mengimbangkan ke tengah', 38 | justifyRight: 'Mengimbangkan ke kanan', 39 | justifyFull: 'Mengimbangkan ke kiri dan kanan', 40 | 41 | horizontalRule: 'Masukkan garis mendatar', 42 | 43 | fullscreen: 'Skrin penuh', 44 | 45 | close: 'Tutup', 46 | 47 | submit: 'Hantar', 48 | reset: 'Batal', 49 | 50 | required: 'Diperlukan', 51 | description: 'Perihal', 52 | title: 'Tajuk', 53 | text: 'Teks' 54 | }; 55 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/my.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * my.js 3 | * Malaysian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : JohnPozy 7 | */ 8 | jQuery.trumbowyg.langs.id={viewHTML:"Lihat HTML",formatting:"Pemformatan",p:"Perenggan",blockquote:"Blockquote",code:"Kod",header:"Pengepala",bold:"Tebal",italic:"Condong",strikethrough:"Garis batal",underline:"Garis bawah",strong:"Kuat",em:"Condong",del:"Hapus",unorderedList:"Senarai tidak tertib",orderedList:"Senarai tertib",insertImage:"Masukkan imej",insertVideo:"Masukkan video",link:"Pautan",createLink:"Cipta pautan",unlink:"Hapus pautan",justifyLeft:"Mengimbangkan ke kiri",justifyCenter:"Mengimbangkan ke tengah",justifyRight:"Mengimbangkan ke kanan",justifyFull:"Mengimbangkan ke kiri dan kanan",horizontalRule:"Masukkan garis mendatar",fullscreen:"Skrin penuh",close:"Tutup",submit:"Hantar",reset:"Batal",required:"Diperlukan",description:"Perihal",title:"Tajuk",text:"Teks"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/nl.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * nl.js 3 | * Dutch translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Danny Hiemstra 7 | * Github : https://github.com/dhiemstra 8 | */ 9 | 10 | jQuery.trumbowyg.langs.nl = { 11 | viewHTML: 'HTML bekijken', 12 | 13 | undo: 'Ongedaan maken', 14 | redo: 'Opnieuw', 15 | 16 | formatting: 'Opmaak', 17 | p: 'Paragraaf', 18 | blockquote: 'Citaat', 19 | code: 'Code', 20 | header: 'Kop', 21 | 22 | bold: 'Vet', 23 | italic: 'Cursief', 24 | strikethrough: 'Doorhalen', 25 | underline: 'Onderlijnen', 26 | 27 | strong: 'Sterk', 28 | em: 'Nadruk', 29 | del: 'Verwijderd', 30 | 31 | unorderedList: 'Ongenummerde lijst', 32 | orderedList: 'Genummerde lijst', 33 | 34 | insertImage: 'Afbeelding invoegen', 35 | insertVideo: 'Video invoegen', 36 | link: 'Link', 37 | createLink: 'Link maken', 38 | unlink: 'Link verwijderen', 39 | 40 | justifyLeft: 'Links uitlijnen', 41 | justifyCenter: 'Centreren', 42 | justifyRight: 'Rechts uitlijnen', 43 | justifyFull: 'Uitvullen', 44 | 45 | horizontalRule: 'Horizontale lijn', 46 | removeFormat: 'Opmaak verwijderen', 47 | 48 | fullscreen: 'Volledig scherm', 49 | 50 | close: 'Sluiten', 51 | 52 | submit: 'Opslaan', 53 | reset: 'Annuleren', 54 | 55 | required: 'Verplicht', 56 | description: 'Omschrijving', 57 | title: 'Titel', 58 | text: 'Tekst', 59 | target: 'Doel', 60 | width: 'Breedte' 61 | }; 62 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/nl.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * nl.js 3 | * Dutch translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Danny Hiemstra 7 | * Github : https://github.com/dhiemstra 8 | */ 9 | jQuery.trumbowyg.langs.nl={viewHTML:"HTML bekijken",undo:"Ongedaan maken",redo:"Opnieuw",formatting:"Opmaak",p:"Paragraaf",blockquote:"Citaat",code:"Code",header:"Kop",bold:"Vet",italic:"Cursief",strikethrough:"Doorhalen",underline:"Onderlijnen",strong:"Sterk",em:"Nadruk",del:"Verwijderd",unorderedList:"Ongenummerde lijst",orderedList:"Genummerde lijst",insertImage:"Afbeelding invoegen",insertVideo:"Video invoegen",link:"Link",createLink:"Link maken",unlink:"Link verwijderen",justifyLeft:"Links uitlijnen",justifyCenter:"Centreren",justifyRight:"Rechts uitlijnen",justifyFull:"Uitvullen",horizontalRule:"Horizontale lijn",removeFormat:"Opmaak verwijderen",fullscreen:"Volledig scherm",close:"Sluiten",submit:"Opslaan",reset:"Annuleren",required:"Verplicht",description:"Omschrijving",title:"Titel",text:"Tekst",target:"Doel",width:"Breedte"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/no_nb.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * no_nb.js 3 | * Norwegian Bokmål translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Jon Severin Eivik Jakobsen 7 | * Github : https://github.com/jsejakobsen 8 | */ 9 | 10 | // jshint camelcase:false 11 | jQuery.trumbowyg.langs.no_nb = { 12 | viewHTML: 'Vis HTML', 13 | 14 | formatting: 'Formater', 15 | p: 'Avsnitt', 16 | blockquote: 'Sitat', 17 | code: 'Kode', 18 | header: 'Overskrift', 19 | 20 | bold: 'Fet', 21 | italic: 'Kursiv', 22 | strikethrough: 'Gjennomstreking', 23 | underline: 'Understreking', 24 | 25 | strong: 'Viktig', 26 | em: 'Fremhevet', 27 | del: 'Slettet', 28 | 29 | unorderedList: 'Uordnet liste', 30 | orderedList: 'Ordnet liste', 31 | 32 | insertImage: 'Sett inn bilde', 33 | insertVideo: 'Sett inn video', 34 | link: 'Lenke', 35 | createLink: 'Sett inn lenke', 36 | unlink: 'Fjern lenke', 37 | 38 | justifyLeft: 'Venstrejuster', 39 | justifyCenter: 'Midtstill', 40 | justifyRight: 'Høyrejuster', 41 | justifyFull: 'Blokkjuster', 42 | 43 | horizontalRule: 'Horisontal linje', 44 | 45 | fullscreen: 'Full skjerm', 46 | 47 | close: 'Lukk', 48 | 49 | submit: 'Bekreft', 50 | reset: 'Avbryt', 51 | 52 | required: 'Påkrevd', 53 | description: 'Beskrivelse', 54 | title: 'Tittel', 55 | text: 'Tekst' 56 | }; 57 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/no_nb.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * no_nb.js 3 | * Norwegian Bokmål translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Jon Severin Eivik Jakobsen 7 | * Github : https://github.com/jsejakobsen 8 | */ 9 | // jshint camelcase:false 10 | jQuery.trumbowyg.langs.no_nb={viewHTML:"Vis HTML",formatting:"Formater",p:"Avsnitt",blockquote:"Sitat",code:"Kode",header:"Overskrift",bold:"Fet",italic:"Kursiv",strikethrough:"Gjennomstreking",underline:"Understreking",strong:"Viktig",em:"Fremhevet",del:"Slettet",unorderedList:"Uordnet liste",orderedList:"Ordnet liste",insertImage:"Sett inn bilde",insertVideo:"Sett inn video",link:"Lenke",createLink:"Sett inn lenke",unlink:"Fjern lenke",justifyLeft:"Venstrejuster",justifyCenter:"Midtstill",justifyRight:"Høyrejuster",justifyFull:"Blokkjuster",horizontalRule:"Horisontal linje",fullscreen:"Full skjerm",close:"Lukk",submit:"Bekreft",reset:"Avbryt",required:"Påkrevd",description:"Beskrivelse",title:"Tittel",text:"Tekst"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ph.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ph.js 3 | * Filipino translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : @leogono 7 | */ 8 | 9 | jQuery.trumbowyg.langs.ph = { 10 | viewHTML: 'Tumingin sa HTML', 11 | 12 | formatting: 'Formatting', 13 | p: 'Talata', 14 | blockquote: 'Blockquote', 15 | code: 'Kowd', 16 | header: 'Header', 17 | 18 | bold: 'Makapal', 19 | italic: 'Hilig', 20 | strikethrough: 'Strikethrough', 21 | underline: 'Salungguhit', 22 | 23 | strong: 'Malakas', 24 | em: 'Hilig', 25 | del: 'Tinanggal', 26 | 27 | unorderedList: 'Hindi nakahanay na listahan', 28 | orderedList: 'Nakahanay na listahan', 29 | 30 | insertImage: 'Ilagay ang larawan', 31 | insertVideo: 'Ilagay ang video', 32 | link: 'Koneksyon', 33 | createLink: 'Iugnay', 34 | unlink: 'Tanggalin ang koneksyon', 35 | 36 | justifyLeft: 'Ihanay sa kaliwa', 37 | justifyCenter: 'Ihanay sa gitna', 38 | justifyRight: 'Ihanay sa kanan', 39 | justifyFull: 'Ihanay sa kaliwa at kanan', 40 | 41 | horizontalRule: 'Pahalang na linya', 42 | 43 | fullscreen: 'Fullscreen', 44 | 45 | close: 'Isara', 46 | 47 | submit: 'Ipasa', 48 | reset: 'I-reset', 49 | 50 | required: 'Kailangan', 51 | description: 'Paglalarawan', 52 | title: 'Pamagat', 53 | text: 'Teksto' 54 | }; 55 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ph.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ph.js 3 | * Filipino translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : @leogono 7 | */ 8 | jQuery.trumbowyg.langs.ph={viewHTML:"Tumingin sa HTML",formatting:"Formatting",p:"Talata",blockquote:"Blockquote",code:"Kowd",header:"Header",bold:"Makapal",italic:"Hilig",strikethrough:"Strikethrough",underline:"Salungguhit",strong:"Malakas",em:"Hilig",del:"Tinanggal",unorderedList:"Hindi nakahanay na listahan",orderedList:"Nakahanay na listahan",insertImage:"Ilagay ang larawan",insertVideo:"Ilagay ang video",link:"Koneksyon",createLink:"Iugnay",unlink:"Tanggalin ang koneksyon",justifyLeft:"Ihanay sa kaliwa",justifyCenter:"Ihanay sa gitna",justifyRight:"Ihanay sa kanan",justifyFull:"Ihanay sa kaliwa at kanan",horizontalRule:"Pahalang na linya",fullscreen:"Fullscreen",close:"Isara",submit:"Ipasa",reset:"I-reset",required:"Kailangan",description:"Paglalarawan",title:"Pamagat",text:"Teksto"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/pl.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * pl.js 3 | * Polish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Paweł Abramowicz 7 | * Github : https://github.com/pawelabrams 8 | */ 9 | 10 | jQuery.trumbowyg.langs.pl = { 11 | viewHTML: 'Pokaż HTML', 12 | 13 | formatting: 'Format', 14 | p: 'Akapit', 15 | blockquote: 'Cytat', 16 | code: 'Kod', 17 | header: 'Nagłówek', 18 | 19 | bold: 'Pogrubienie', 20 | italic: 'Pochylenie', 21 | strikethrough: 'Przekreślenie', 22 | underline: 'Podkreślenie', 23 | 24 | strong: 'Wytłuszczenie', 25 | em: 'Uwydatnienie', 26 | del: 'Usunięte', 27 | 28 | unorderedList: 'Lista nieuporządkowana', 29 | orderedList: 'Lista uporządkowana', 30 | 31 | insertImage: 'Wstaw obraz', 32 | insertVideo: 'Wstaw film', 33 | link: 'Link', 34 | createLink: 'Wstaw link', 35 | unlink: 'Usuń link', 36 | 37 | justifyLeft: 'Wyrównaj do lewej', 38 | justifyCenter: 'Wyśrodkuj', 39 | justifyRight: 'Wyrównaj do prawej', 40 | justifyFull: 'Wyjustuj', 41 | 42 | horizontalRule: 'Odkreśl linią', 43 | 44 | fullscreen: 'Pełny ekran', 45 | 46 | close: 'Zamknij', 47 | 48 | submit: 'Zastosuj', 49 | reset: 'Przywróć', 50 | 51 | required: 'Wymagane', 52 | description: 'Opis', 53 | title: 'Tytuł', 54 | text: 'Tekst' 55 | }; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/pl.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * pl.js 3 | * Polish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Paweł Abramowicz 7 | * Github : https://github.com/pawelabrams 8 | */ 9 | jQuery.trumbowyg.langs.pl={viewHTML:"Pokaż HTML",formatting:"Format",p:"Akapit",blockquote:"Cytat",code:"Kod",header:"Nagłówek",bold:"Pogrubienie",italic:"Pochylenie",strikethrough:"Przekreślenie",underline:"Podkreślenie",strong:"Wytłuszczenie",em:"Uwydatnienie",del:"Usunięte",unorderedList:"Lista nieuporządkowana",orderedList:"Lista uporządkowana",insertImage:"Wstaw obraz",insertVideo:"Wstaw film",link:"Link",createLink:"Wstaw link",unlink:"Usuń link",justifyLeft:"Wyrównaj do lewej",justifyCenter:"Wyśrodkuj",justifyRight:"Wyrównaj do prawej",justifyFull:"Wyjustuj",horizontalRule:"Odkreśl linią",fullscreen:"Pełny ekran",close:"Zamknij",submit:"Zastosuj",reset:"Przywróć",required:"Wymagane",description:"Opis",title:"Tytuł",text:"Tekst"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/pt.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * pt.js 3 | * Portuguese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Ramiro Varandas Jr (ramirovjr) 7 | * Twitter : @ramirovjnr 8 | * Website : about.me/ramirovjnr 9 | * Github : https://github.com/ramirovjr 10 | */ 11 | 12 | jQuery.trumbowyg.langs.pt = { 13 | viewHTML: 'Ver HTML', 14 | 15 | undo: 'Desfazer', 16 | redo: 'Refazer', 17 | 18 | formatting: 'Formatar', 19 | p: 'Paragráfo', 20 | blockquote: 'Citação', 21 | code: 'Código', 22 | header: 'Título', 23 | 24 | bold: 'Negrito', 25 | italic: 'Itálico', 26 | strikethrough: 'Suprimir', 27 | underline: 'Sublinhado', 28 | 29 | strong: 'Negrito', 30 | em: 'Ênfase', 31 | del: 'Apagar', 32 | 33 | superscript: 'Sobrescrito', 34 | subscript: 'Subscrito', 35 | 36 | unorderedList: 'Lista não ordenada', 37 | orderedList: 'Lista ordenada', 38 | 39 | insertImage: 'Inserir imagem', 40 | insertVideo: 'Inserir vídeo', 41 | link: 'Link', 42 | createLink: 'Criar um link', 43 | unlink: 'Remover link', 44 | 45 | justifyLeft: 'Alinhar a esquerda', 46 | justifyCenter: 'Centralizar', 47 | justifyRight: 'Alinhar a direita', 48 | justifyFull: 'Justificar', 49 | 50 | horizontalRule: 'Inserir separador horizontal', 51 | removeformat: 'Remover formatação', 52 | 53 | fullscreen: 'Tela cheia', 54 | 55 | close: 'Fechar', 56 | 57 | submit: 'Enviar', 58 | reset: 'Limpar', 59 | 60 | required: 'Obrigatório', 61 | description: 'Descrição', 62 | title: 'Título', 63 | text: 'Texto', 64 | target: 'Target' 65 | }; 66 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/pt.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * pt.js 3 | * Portuguese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Ramiro Varandas Jr (ramirovjr) 7 | * Twitter : @ramirovjnr 8 | * Website : about.me/ramirovjnr 9 | * Github : https://github.com/ramirovjr 10 | */ 11 | jQuery.trumbowyg.langs.pt={viewHTML:"Ver HTML",undo:"Desfazer",redo:"Refazer",formatting:"Formatar",p:"Paragráfo",blockquote:"Citação",code:"Código",header:"Título",bold:"Negrito",italic:"Itálico",strikethrough:"Suprimir",underline:"Sublinhado",strong:"Negrito",em:"Ênfase",del:"Apagar",superscript:"Sobrescrito",subscript:"Subscrito",unorderedList:"Lista não ordenada",orderedList:"Lista ordenada",insertImage:"Inserir imagem",insertVideo:"Inserir vídeo",link:"Link",createLink:"Criar um link",unlink:"Remover link",justifyLeft:"Alinhar a esquerda",justifyCenter:"Centralizar",justifyRight:"Alinhar a direita",justifyFull:"Justificar",horizontalRule:"Inserir separador horizontal",removeformat:"Remover formatação",fullscreen:"Tela cheia",close:"Fechar",submit:"Enviar",reset:"Limpar",required:"Obrigatório",description:"Descrição",title:"Título",text:"Texto",target:"Target"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/pt_br.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * pt_br.js 3 | * Portuguese Brazilian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Alex Gotardi (alexgotardi) 7 | * Twitter : @alexgotardi 8 | * Github : https://github.com/alexgotardi 9 | */ 10 | // jshint camelcase:false 11 | jQuery.trumbowyg.langs.pt_br={viewHTML:"Ver HTML",undo:"Desfazer",redo:"Refazer",formatting:"Formatar",p:"Parágrafo",blockquote:"Citação",code:"Código",header:"Título",bold:"Negrito",italic:"Itálico",strikethrough:"Tachado",underline:"Sublinhado",strong:"Negrito",em:"Ênfase",del:"Apagar",superscript:"Sobrescrito",subscript:"Subscrito",unorderedList:"Lista não ordenada",orderedList:"Lista ordenada",insertImage:"Inserir imagem",insertVideo:"Inserir vídeo",link:"Link",createLink:"Criar um link",unlink:"Remover link",justifyLeft:"Alinhar a esquerda",justifyCenter:"Centralizar",justifyRight:"Alinhar a direita",justifyFull:"Justificar",horizontalRule:"Inserir separador horizontal",removeformat:"Remover formatação",fullscreen:"Tela cheia",close:"Fechar",submit:"Enviar",reset:"Limpar",required:"Obrigatório",description:"Descrição",title:"Título",text:"Texto",target:"Alvo"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ro.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ro.js 3 | * Romanian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Vladut Radulescu (pacMakaveli) 7 | * Email: pacMakaveli90@gmail.com 8 | * Twitter : @pacMakaveli90 9 | * Website : creative-studio51.co.uk 10 | * Github : https://github.com/pacMakaveli 11 | */ 12 | 13 | jQuery.trumbowyg.langs.ro = { 14 | viewHTML: 'Vizualizare HTML', 15 | 16 | formatting: 'Format', 17 | p: 'Paragraf', 18 | blockquote: 'Citație', 19 | code: 'Cod', 20 | header: 'Titlu', 21 | 22 | bold: 'Bold', 23 | italic: 'Italic', 24 | strikethrough: 'Tăiat', 25 | underline: 'Subliniat', 26 | 27 | strong: 'Puternic', 28 | em: 'Accentuat', 29 | del: 'Sterge', 30 | 31 | unorderedList: 'Lista dezordonată', 32 | orderedList: 'Liste ordonată', 33 | 34 | insertImage: 'Adăugare Imagine', 35 | insertVideo: 'Adăugare Video', 36 | link: 'Link', 37 | createLink: 'Crează link', 38 | unlink: 'Remover link', 39 | 40 | justifyLeft: 'Aliniază stânga', 41 | justifyCenter: 'Aliniază centru', 42 | justifyRight: 'Aliniază dreapta', 43 | justifyFull: 'Justificare', 44 | 45 | horizontalRule: 'Linie orizontală', 46 | 47 | fullscreen: 'Tot ecranul', 48 | 49 | close: 'Închide', 50 | 51 | submit: 'Procesează', 52 | reset: 'Resetează', 53 | 54 | required: 'Obligatoriu', 55 | description: 'Descriere', 56 | title: 'Titlu', 57 | text: 'Text' 58 | }; 59 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ro.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ro.js 3 | * Romanian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Vladut Radulescu (pacMakaveli) 7 | * Email: pacMakaveli90@gmail.com 8 | * Twitter : @pacMakaveli90 9 | * Website : creative-studio51.co.uk 10 | * Github : https://github.com/pacMakaveli 11 | */ 12 | jQuery.trumbowyg.langs.ro={viewHTML:"Vizualizare HTML",formatting:"Format",p:"Paragraf",blockquote:"Citație",code:"Cod",header:"Titlu",bold:"Bold",italic:"Italic",strikethrough:"Tăiat",underline:"Subliniat",strong:"Puternic",em:"Accentuat",del:"Sterge",unorderedList:"Lista dezordonată",orderedList:"Liste ordonată",insertImage:"Adăugare Imagine",insertVideo:"Adăugare Video",link:"Link",createLink:"Crează link",unlink:"Remover link",justifyLeft:"Aliniază stânga",justifyCenter:"Aliniază centru",justifyRight:"Aliniază dreapta",justifyFull:"Justificare",horizontalRule:"Linie orizontală",fullscreen:"Tot ecranul",close:"Închide",submit:"Procesează",reset:"Resetează",required:"Obligatoriu",description:"Descriere",title:"Titlu",text:"Text"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/rs.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * rs.js 3 | * Serbian (Cyrlic) translation for Trumbowyg 4 | * https://www.github.com/johonunu 5 | * =========================================================== 6 | * Author : Nikola Trifunovic (https://www.github.com/johonunu) 7 | */ 8 | 9 | jQuery.trumbowyg.langs.rs = { 10 | viewHTML: 'Погледај HTML кóд', 11 | 12 | formatting: 'Форматирање', 13 | p: 'Параграф', 14 | blockquote: 'Цитат', 15 | code: 'Кóд', 16 | header: 'Наслов', 17 | 18 | bold: 'Подебљано', 19 | italic: 'Курзив', 20 | strikethrough: 'Прецртано', 21 | underline: 'Подвучено', 22 | 23 | strong: 'Подебљано', 24 | em: 'Истакнуто', 25 | del: 'Обрисано', 26 | 27 | unorderedList: 'Ненабројива листа', 28 | orderedList: 'Набројива листа', 29 | insertImage: 'Унеси слику', 30 | insertVideo: 'Унеси видео', 31 | link: 'Линк', 32 | createLink: 'Унеси линк', 33 | unlink: 'Уклони линк', 34 | 35 | justifyLeft: 'Лево равнање', 36 | justifyCenter: 'Централно равнање', 37 | justifyRight: 'Десно равнање', 38 | justifyFull: 'Обострано равнање', 39 | 40 | horizontalRule: 'Хоризонтална линија', 41 | 42 | fullscreen: 'Режим читавог екрана', 43 | 44 | close: 'Затвори', 45 | 46 | submit: 'Унеси', 47 | reset: 'Откажи', 48 | 49 | required: 'Обавезно поље', 50 | description: 'Опис', 51 | title: 'Наслов', 52 | text: 'Текст' 53 | }; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/rs.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * rs.js 3 | * Serbian (Cyrlic) translation for Trumbowyg 4 | * https://www.github.com/johonunu 5 | * =========================================================== 6 | * Author : Nikola Trifunovic (https://www.github.com/johonunu) 7 | */ 8 | jQuery.trumbowyg.langs.rs={viewHTML:"Погледај HTML кóд",formatting:"Форматирање",p:"Параграф",blockquote:"Цитат",code:"Кóд",header:"Наслов",bold:"Подебљано",italic:"Курзив",strikethrough:"Прецртано",underline:"Подвучено",strong:"Подебљано",em:"Истакнуто",del:"Обрисано",unorderedList:"Ненабројива листа",orderedList:"Набројива листа",insertImage:"Унеси слику",insertVideo:"Унеси видео",link:"Линк",createLink:"Унеси линк",unlink:"Уклони линк",justifyLeft:"Лево равнање",justifyCenter:"Централно равнање",justifyRight:"Десно равнање",justifyFull:"Обострано равнање",horizontalRule:"Хоризонтална линија",fullscreen:"Режим читавог екрана",close:"Затвори",submit:"Унеси",reset:"Откажи",required:"Обавезно поље",description:"Опис",title:"Наслов",text:"Текст"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/rs_latin.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * rs_latin.js 3 | * Serbian (Latin) translation for Trumbowyg 4 | * https://www.github.com/johonunu 5 | * =========================================================== 6 | * Author : Nikola Trifunovic (https://www.github.com/johonunu) 7 | */ 8 | 9 | // jshint camelcase:false 10 | jQuery.trumbowyg.langs.rs_latin = { 11 | viewHTML: 'Poglеdaj HTML kód', 12 | 13 | formatting: 'Formatiranjе', 14 | p: 'Paragraf', 15 | blockquote: 'Citat', 16 | code: 'Kód', 17 | header: 'Naslov', 18 | 19 | bold: 'Podеbljano', 20 | italic: 'Kurziv', 21 | strikethrough: 'Prеcrtano', 22 | underline: 'Podvučеno', 23 | 24 | strong: 'Podеbljano', 25 | em: 'Istaknuto', 26 | del: 'Obrisano', 27 | 28 | unorderedList: 'Nеnabrojiva lista', 29 | orderedList: 'Nabrojiva lista', 30 | insertImage: 'Unеsi sliku', 31 | insertVideo: 'Unеsi vidеo', 32 | link: 'Link', 33 | createLink: 'Unеsi link', 34 | unlink: 'Ukloni link', 35 | 36 | justifyLeft: 'Lеvo ravnanjе', 37 | justifyCenter: 'Cеntralno ravnanjе', 38 | justifyRight: 'Dеsno ravnanjе', 39 | justifyFull: 'Obostrano ravnanjе', 40 | 41 | horizontalRule: 'Horizontalna linija', 42 | 43 | fullscreen: 'Rеžim čitavog еkrana', 44 | 45 | close: 'Zatvori', 46 | 47 | submit: 'Unеsi', 48 | reset: 'Otkaži', 49 | 50 | required: 'Obavеzno poljе', 51 | description: 'Opis', 52 | title: 'Naslov', 53 | text: 'Tеkst' 54 | }; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/rs_latin.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * rs_latin.js 3 | * Serbian (Latin) translation for Trumbowyg 4 | * https://www.github.com/johonunu 5 | * =========================================================== 6 | * Author : Nikola Trifunovic (https://www.github.com/johonunu) 7 | */ 8 | // jshint camelcase:false 9 | jQuery.trumbowyg.langs.rs_latin={viewHTML:"Poglеdaj HTML kód",formatting:"Formatiranjе",p:"Paragraf",blockquote:"Citat",code:"Kód",header:"Naslov",bold:"Podеbljano",italic:"Kurziv",strikethrough:"Prеcrtano",underline:"Podvučеno",strong:"Podеbljano",em:"Istaknuto",del:"Obrisano",unorderedList:"Nеnabrojiva lista",orderedList:"Nabrojiva lista",insertImage:"Unеsi sliku",insertVideo:"Unеsi vidеo",link:"Link",createLink:"Unеsi link",unlink:"Ukloni link",justifyLeft:"Lеvo ravnanjе",justifyCenter:"Cеntralno ravnanjе",justifyRight:"Dеsno ravnanjе",justifyFull:"Obostrano ravnanjе",horizontalRule:"Horizontalna linija",fullscreen:"Rеžim čitavog еkrana",close:"Zatvori",submit:"Unеsi",reset:"Otkaži",required:"Obavеzno poljе",description:"Opis",title:"Naslov",text:"Tеkst"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ru.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ru.js 3 | * Russian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Yuri Lya 7 | */ 8 | 9 | jQuery.trumbowyg.langs.ru = { 10 | viewHTML: 'Посмотреть HTML', 11 | 12 | undo: 'Отменить', 13 | redo: 'Повторить', 14 | 15 | formatting: 'Форматирование', 16 | p: 'Обычный', 17 | blockquote: 'Цитата', 18 | code: 'Код', 19 | header: 'Заголовок', 20 | 21 | bold: 'Полужирный', 22 | italic: 'Курсив', 23 | strikethrough: 'Зачеркнутый', 24 | underline: 'Подчеркнутый', 25 | 26 | strong: 'Полужирный', 27 | em: 'Курсив', 28 | del: 'Зачеркнутый', 29 | 30 | superscript: 'Надстрочный', 31 | subscript: 'Подстрочный', 32 | 33 | unorderedList: 'Обычный список', 34 | orderedList: 'Нумерованный список', 35 | 36 | insertImage: 'Вставить изображение', 37 | insertVideo: 'Вставить видео', 38 | link: 'Ссылка', 39 | createLink: 'Вставить ссылку', 40 | unlink: 'Удалить ссылку', 41 | 42 | justifyLeft: 'По левому краю', 43 | justifyCenter: 'По центру', 44 | justifyRight: 'По правому краю', 45 | justifyFull: 'По ширине', 46 | 47 | horizontalRule: 'Горизонтальная линия', 48 | removeformat: 'Очистить форматирование', 49 | 50 | fullscreen: 'Во весь экран', 51 | 52 | close: 'Закрыть', 53 | 54 | submit: 'Вставить', 55 | reset: 'Отменить', 56 | 57 | required: 'Обязательное', 58 | description: 'Описание', 59 | title: 'Подсказка', 60 | text: 'Текст' 61 | }; 62 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ru.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ru.js 3 | * Russian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Yuri Lya 7 | */ 8 | jQuery.trumbowyg.langs.ru={viewHTML:"Посмотреть HTML",undo:"Отменить",redo:"Повторить",formatting:"Форматирование",p:"Обычный",blockquote:"Цитата",code:"Код",header:"Заголовок",bold:"Полужирный",italic:"Курсив",strikethrough:"Зачеркнутый",underline:"Подчеркнутый",strong:"Полужирный",em:"Курсив",del:"Зачеркнутый",superscript:"Надстрочный",subscript:"Подстрочный",unorderedList:"Обычный список",orderedList:"Нумерованный список",insertImage:"Вставить изображение",insertVideo:"Вставить видео",link:"Ссылка",createLink:"Вставить ссылку",unlink:"Удалить ссылку",justifyLeft:"По левому краю",justifyCenter:"По центру",justifyRight:"По правому краю",justifyFull:"По ширине",horizontalRule:"Горизонтальная линия",removeformat:"Очистить форматирование",fullscreen:"Во весь экран",close:"Закрыть",submit:"Вставить",reset:"Отменить",required:"Обязательное",description:"Описание",title:"Подсказка",text:"Текст"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/sk.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * sk.js 3 | * Slovak translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : VeeeneX (https://github.com/VeeeneX) 7 | */ 8 | 9 | jQuery.trumbowyg.langs.sk = { 10 | viewHTML: 'Zobraziť HTML', 11 | 12 | formatting: 'Formátovanie', 13 | p: 'Paragraf', 14 | blockquote: 'Citácia', 15 | code: 'Kód', 16 | header: 'Nadpis', 17 | 18 | bold: 'Tučné', 19 | italic: 'Kurzíva', 20 | strikethrough: 'Preškrtnuté', 21 | underline: 'Podčiarknuté', 22 | 23 | strong: 'Tučné', 24 | em: 'Zvýrazniť', 25 | del: 'Zmazať', 26 | 27 | unorderedList: 'Netriedený zoznam', 28 | orderedList: 'Triedený zoznam', 29 | 30 | insertImage: 'Vložiť obrázok', 31 | insertVideo: 'Vložiť video', 32 | link: 'Odkaz', 33 | createLink: 'Vložiť odkaz', 34 | unlink: 'Zmazať odkaz', 35 | 36 | justifyLeft: 'Zarovnať doľava', 37 | justifyCenter: 'Zarovnať na stred', 38 | justifyRight: 'Zarovnať doprava', 39 | justifyFull: 'Zarovnať do bloku', 40 | 41 | horizontalRule: 'Vložit vodorovnú čiaru', 42 | 43 | fullscreen: 'Režim celej obrazovky', 44 | 45 | close: 'Zavrieť', 46 | 47 | submit: 'Potvrdiť', 48 | reset: 'Zrušiť', 49 | 50 | required: 'Povinné', 51 | description: 'Popis', 52 | title: 'Nadpis', 53 | text: 'Text' 54 | }; 55 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/sk.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * sk.js 3 | * Slovak translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : VeeeneX (https://github.com/VeeeneX) 7 | */ 8 | jQuery.trumbowyg.langs.sk={viewHTML:"Zobraziť HTML",formatting:"Formátovanie",p:"Paragraf",blockquote:"Citácia",code:"Kód",header:"Nadpis",bold:"Tučné",italic:"Kurzíva",strikethrough:"Preškrtnuté",underline:"Podčiarknuté",strong:"Tučné",em:"Zvýrazniť",del:"Zmazať",unorderedList:"Netriedený zoznam",orderedList:"Triedený zoznam",insertImage:"Vložiť obrázok",insertVideo:"Vložiť video",link:"Odkaz",createLink:"Vložiť odkaz",unlink:"Zmazať odkaz",justifyLeft:"Zarovnať doľava",justifyCenter:"Zarovnať na stred",justifyRight:"Zarovnať doprava",justifyFull:"Zarovnať do bloku",horizontalRule:"Vložit vodorovnú čiaru",fullscreen:"Režim celej obrazovky",close:"Zavrieť",submit:"Potvrdiť",reset:"Zrušiť",required:"Povinné",description:"Popis",title:"Nadpis",text:"Text"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/sl.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * sl.js 3 | * Slovenian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author: Matjaz Zavski (https://github.com/matjaz321) 7 | * Mod: Uros Gaber (uros@powercom.si) 8 | */ 9 | 10 | jQuery.trumbowyg.langs.sl = { 11 | viewHTML: 'Prikaži HTML', 12 | 13 | formatting: 'Oblika', 14 | p: 'Odstavek', 15 | blockquote: 'Citat', 16 | code: 'Koda', 17 | header: 'Glava', 18 | 19 | bold: 'Krepko', 20 | italic: 'Ležeče', 21 | strikethrough: 'Prečrtano', 22 | underline: 'Podčrtano', 23 | 24 | strong: 'Odebljeno', 25 | em: 'Poudarjeno', 26 | del: 'Izbrisano', 27 | 28 | unorderedList: 'Neoštevilčen seznam', 29 | orderedList: 'Oštevilčen seznam', 30 | 31 | image: 'Slika', 32 | insertImage: 'Vstavi sliko', 33 | insertVideo: 'Vstavi video', 34 | link: 'Povezava', 35 | createLink: 'Vstavi povezavo', 36 | unlink: 'Odstrani povezavo', 37 | 38 | justifyLeft: 'Poravnava levo', 39 | justifyCenter: 'Poravnaj na sredino', 40 | justifyRight: 'Poravnava desno', 41 | justifyFull: 'Obojestranska poravnava', 42 | 43 | horizontalRule: 'Vstavite vodoravno črto', 44 | removeformat: 'Odstrani format', 45 | 46 | fullscreen: 'Celozaslonski način', 47 | 48 | close: 'Zapri', 49 | 50 | submit: 'Potrdi', 51 | reset: 'Prekliči', 52 | 53 | required: 'Zahtevano', 54 | description: 'Opis', 55 | title: 'Naslov', 56 | text: 'Besedilo' 57 | }; 58 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/sl.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * sl.js 3 | * Slovenian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author: Matjaz Zavski (https://github.com/matjaz321) 7 | * Mod: Uros Gaber (uros@powercom.si) 8 | */ 9 | jQuery.trumbowyg.langs.sl={viewHTML:"Prikaži HTML",formatting:"Oblika",p:"Odstavek",blockquote:"Citat",code:"Koda",header:"Glava",bold:"Krepko",italic:"Ležeče",strikethrough:"Prečrtano",underline:"Podčrtano",strong:"Odebljeno",em:"Poudarjeno",del:"Izbrisano",unorderedList:"Neoštevilčen seznam",orderedList:"Oštevilčen seznam",image:"Slika",insertImage:"Vstavi sliko",insertVideo:"Vstavi video",link:"Povezava",createLink:"Vstavi povezavo",unlink:"Odstrani povezavo",justifyLeft:"Poravnava levo",justifyCenter:"Poravnaj na sredino",justifyRight:"Poravnava desno",justifyFull:"Obojestranska poravnava",horizontalRule:"Vstavite vodoravno črto",removeformat:"Odstrani format",fullscreen:"Celozaslonski način",close:"Zapri",submit:"Potrdi",reset:"Prekliči",required:"Zahtevano",description:"Opis",title:"Naslov",text:"Besedilo"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/sq.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * sq.js 3 | * Albanian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Adalen Vladi 7 | */ 8 | 9 | jQuery.trumbowyg.langs.sq = { 10 | 11 | viewHTML: 'Shfaq HTML', 12 | 13 | undo: 'Prish', 14 | redo: 'Ribej', 15 | 16 | formatting: 'Formatimi', 17 | p: 'Paragraf', 18 | blockquote: 'Citat', 19 | code: 'Kodi', 20 | header: 'Koka', 21 | 22 | bold: 'Spikatur', 23 | italic: 'Pjerret', 24 | strikethrough: 'Vize ne mes', 25 | underline: 'Nenvizo', 26 | 27 | strong: 'I trashe', 28 | em: 'I theksuar', 29 | del: 'I fshire', 30 | 31 | superscript: 'Indeks i sipërm', 32 | subscript: 'Indeks i poshtem', 33 | 34 | unorderedList: 'Liste e parenditur', 35 | orderedList: 'Liste e renditur', 36 | 37 | 38 | insertImage: 'Fut Foto', 39 | insertVideo: 'Fut Video', 40 | link: 'Link', 41 | createLink: 'Krijo Link', 42 | unlink: 'Hiq Link', 43 | 44 | justifyLeft: 'Drejto Majtas', 45 | justifyCenter: 'Drejto ne Qender', 46 | justifyRight: 'Drejto Djathtas', 47 | justifyFull: 'Drejto Vete', 48 | 49 | horizontalRule: 'Vendos rregulloren horizontale', 50 | removeformat: 'Hiq formatin', 51 | 52 | fullscreen: 'Ekran i plotë', 53 | 54 | close: 'Mbyll', 55 | 56 | submit: 'Konfirmo', 57 | reset: 'Anullo', 58 | 59 | required: 'I detyrueshem', 60 | description: 'Pershkrimi', 61 | title: 'Titulli', 62 | text: 'Tekst', 63 | target: 'Objektivi', 64 | width: 'Gjeresia' 65 | }; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/sq.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * sq.js 3 | * Albanian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Adalen Vladi 7 | */ 8 | jQuery.trumbowyg.langs.sq={viewHTML:"Shfaq HTML",undo:"Prish",redo:"Ribej",formatting:"Formatimi",p:"Paragraf",blockquote:"Citat",code:"Kodi",header:"Koka",bold:"Spikatur",italic:"Pjerret",strikethrough:"Vize ne mes",underline:"Nenvizo",strong:"I trashe",em:"I theksuar",del:"I fshire",superscript:"Indeks i sipërm",subscript:"Indeks i poshtem",unorderedList:"Liste e parenditur",orderedList:"Liste e renditur",insertImage:"Fut Foto",insertVideo:"Fut Video",link:"Link",createLink:"Krijo Link",unlink:"Hiq Link",justifyLeft:"Drejto Majtas",justifyCenter:"Drejto ne Qender",justifyRight:"Drejto Djathtas",justifyFull:"Drejto Vete",horizontalRule:"Vendos rregulloren horizontale",removeformat:"Hiq formatin",fullscreen:"Ekran i plotë",close:"Mbyll",submit:"Konfirmo",reset:"Anullo",required:"I detyrueshem",description:"Pershkrimi",title:"Titulli",text:"Tekst",target:"Objektivi",width:"Gjeresia"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/sv.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * sv.js 3 | * Swedish translation for Trumbowyg 4 | * http://www.tim-international.net 5 | * =========================================================== 6 | * Author : T. Almroth 7 | * Github : https://github.com/timint 8 | * 9 | * Review : M Hagberg 10 | * Github : https://github.com/pestbarn 11 | */ 12 | 13 | jQuery.trumbowyg.langs.sv = { 14 | viewHTML: 'Visa HTML', 15 | 16 | formatting: 'Formatering', 17 | p: 'Paragraf', 18 | blockquote: 'Citat', 19 | code: 'Kod', 20 | header: 'Rubrik', 21 | 22 | bold: 'Fet', 23 | italic: 'Kursiv', 24 | strikethrough: 'Genomstruken', 25 | underline: 'Understruken', 26 | 27 | strong: 'Fet', 28 | em: 'Kursiv', 29 | del: 'Rensa formatering', 30 | 31 | unorderedList: 'Punktlista', 32 | orderedList: 'Numrerad lista', 33 | 34 | insertImage: 'Infoga bild', 35 | insertVideo: 'Infoga video', 36 | link: 'Länk', 37 | createLink: 'Infoga länk', 38 | unlink: 'Ta bort länk', 39 | 40 | justifyLeft: 'Vänsterjustera', 41 | justifyCenter: 'Centrera', 42 | justifyRight: 'Högerjustera', 43 | justifyFull: 'Marginaljustera', 44 | 45 | horizontalRule: 'Horisontell linje', 46 | removeformat: 'Ta bort formatering', 47 | 48 | fullscreen: 'Fullskärm', 49 | 50 | close: 'Stäng', 51 | 52 | submit: 'Bekräfta', 53 | reset: 'Återställ', 54 | 55 | required: 'Obligatorisk', 56 | description: 'Beskrivning', 57 | title: 'Titel', 58 | text: 'Text' 59 | }; 60 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/sv.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * sv.js 3 | * Swedish translation for Trumbowyg 4 | * http://www.tim-international.net 5 | * =========================================================== 6 | * Author : T. Almroth 7 | * Github : https://github.com/timint 8 | * 9 | * Review : M Hagberg 10 | * Github : https://github.com/pestbarn 11 | */ 12 | jQuery.trumbowyg.langs.sv={viewHTML:"Visa HTML",formatting:"Formatering",p:"Paragraf",blockquote:"Citat",code:"Kod",header:"Rubrik",bold:"Fet",italic:"Kursiv",strikethrough:"Genomstruken",underline:"Understruken",strong:"Fet",em:"Kursiv",del:"Rensa formatering",unorderedList:"Punktlista",orderedList:"Numrerad lista",insertImage:"Infoga bild",insertVideo:"Infoga video",link:"Länk",createLink:"Infoga länk",unlink:"Ta bort länk",justifyLeft:"Vänsterjustera",justifyCenter:"Centrera",justifyRight:"Högerjustera",justifyFull:"Marginaljustera",horizontalRule:"Horisontell linje",removeformat:"Ta bort formatering",fullscreen:"Fullskärm",close:"Stäng",submit:"Bekräfta",reset:"Återställ",required:"Obligatorisk",description:"Beskrivning",title:"Titel",text:"Text"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/th.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * th.js 3 | * Thai translation for Trumbowyg 4 | * https://github.com/ionsoft/Trumbowyg 5 | * =========================================================== 6 | * Author : Gonatee Klanktong 7 | * Github : https://github.com/gonateek 8 | */ 9 | 10 | jQuery.trumbowyg.langs.th = { 11 | viewHTML: 'ดู HTML', 12 | 13 | formatting: 'จัดรูปแบบ', 14 | p: 'ย่อหน้า', 15 | blockquote: 'อ้างอิง', 16 | code: 'โค๊ด', 17 | header: 'ส่วนหัว', 18 | 19 | bold: 'หนา', 20 | italic: 'เอียง', 21 | strikethrough: 'ขีดทับ', 22 | underline: 'เส้นใต้', 23 | 24 | strong: 'สำคัญ', 25 | em: 'เน้น', 26 | del: 'ลบ', 27 | 28 | unorderedList: 'รายการ', 29 | orderedList: 'รายการ(ตัวเลข)', 30 | 31 | insertImage: 'ใส่รูป', 32 | insertVideo: 'ใส่วิดีโอ', 33 | link: 'ลิงค์', 34 | createLink: 'สร้างลิงค์', 35 | unlink: 'ยกเลิกลิงค์', 36 | 37 | justifyLeft: 'ชิดซ้าย', 38 | justifyCenter: 'กลาง', 39 | justifyRight: 'ชิดขวา', 40 | justifyFull: 'เต็มบรรทัด', 41 | 42 | horizontalRule: 'เส้นแนวนอน', 43 | 44 | fullscreen: 'เต็มหน้าจอ', 45 | 46 | close: 'ปิด', 47 | 48 | submit: 'ตกลง', 49 | reset: 'เริ่มใหม่', 50 | 51 | required: 'จำเป็น', 52 | description: 'คำอธิบาย', 53 | title: 'หัวเรื่อง', 54 | text: 'ข้อความ' 55 | }; 56 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/th.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * th.js 3 | * Thai translation for Trumbowyg 4 | * https://github.com/ionsoft/Trumbowyg 5 | * =========================================================== 6 | * Author : Gonatee Klanktong 7 | * Github : https://github.com/gonateek 8 | */ 9 | jQuery.trumbowyg.langs.th={viewHTML:"ดู HTML",formatting:"จัดรูปแบบ",p:"ย่อหน้า",blockquote:"อ้างอิง",code:"โค๊ด",header:"ส่วนหัว",bold:"หนา",italic:"เอียง",strikethrough:"ขีดทับ",underline:"เส้นใต้",strong:"สำคัญ",em:"เน้น",del:"ลบ",unorderedList:"รายการ",orderedList:"รายการ(ตัวเลข)",insertImage:"ใส่รูป",insertVideo:"ใส่วิดีโอ",link:"ลิงค์",createLink:"สร้างลิงค์",unlink:"ยกเลิกลิงค์",justifyLeft:"ชิดซ้าย",justifyCenter:"กลาง",justifyRight:"ชิดขวา",justifyFull:"เต็มบรรทัด",horizontalRule:"เส้นแนวนอน",fullscreen:"เต็มหน้าจอ",close:"ปิด",submit:"ตกลง",reset:"เริ่มใหม่",required:"จำเป็น",description:"คำอธิบาย",title:"หัวเรื่อง",text:"ข้อความ"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/tr.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * tr.js 3 | * Turkish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Emrah Bilbay (munzur) 7 | * Github : https://github.com/munzur 8 | * 9 | * Özgür Görgülü (ozgurg) 10 | * Github : https://github.com/ozgurg 11 | */ 12 | 13 | jQuery.trumbowyg.langs.tr = { 14 | viewHTML: 'HTML Kodu', 15 | 16 | formatting: 'Biçimlendirme', 17 | p: 'Paragraf', 18 | blockquote: 'Alıntı', 19 | code: 'Kod', 20 | header: 'Başlık', 21 | 22 | bold: 'Kalın', 23 | italic: 'İtalik', 24 | strikethrough: 'Üzeri çizgili', 25 | underline: 'Altı çizgili', 26 | 27 | strong: 'Koyu', 28 | em: 'Vurgulu', 29 | del: 'Üzeri çizgili', 30 | 31 | unorderedList: 'Simgeli liste', 32 | orderedList: 'Numaralı liste', 33 | 34 | insertImage: 'Resim yerleştir', 35 | insertVideo: 'Video yerleştir', 36 | link: 'Link', 37 | createLink: 'Link yerleştir', 38 | unlink: 'Linki sil', 39 | 40 | justifyLeft: 'Sola hizala', 41 | justifyCenter: 'Ortaya hizala', 42 | justifyRight: 'Sağa hizala', 43 | justifyFull: 'Yasla', 44 | 45 | horizontalRule: 'Yatay satır ekle', 46 | 47 | fullscreen: 'Tam ekran', 48 | 49 | close: 'Kapat', 50 | 51 | submit: 'Onayla', 52 | reset: 'Sıfırla', 53 | 54 | required: 'Gerekli', 55 | description: 'Açıklama', 56 | title: 'Başlık', 57 | text: 'Metin', 58 | 59 | undo: 'Geri al', 60 | redo: 'İleri al', 61 | 62 | removeformat: 'Biçimlendirmeyi temizle' 63 | }; 64 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/tr.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * tr.js 3 | * Turkish translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Emrah Bilbay (munzur) 7 | * Github : https://github.com/munzur 8 | * 9 | * Özgür Görgülü (ozgurg) 10 | * Github : https://github.com/ozgurg 11 | */ 12 | jQuery.trumbowyg.langs.tr={viewHTML:"HTML Kodu",formatting:"Biçimlendirme",p:"Paragraf",blockquote:"Alıntı",code:"Kod",header:"Başlık",bold:"Kalın",italic:"İtalik",strikethrough:"Üzeri çizgili",underline:"Altı çizgili",strong:"Koyu",em:"Vurgulu",del:"Üzeri çizgili",unorderedList:"Simgeli liste",orderedList:"Numaralı liste",insertImage:"Resim yerleştir",insertVideo:"Video yerleştir",link:"Link",createLink:"Link yerleştir",unlink:"Linki sil",justifyLeft:"Sola hizala",justifyCenter:"Ortaya hizala",justifyRight:"Sağa hizala",justifyFull:"Yasla",horizontalRule:"Yatay satır ekle",fullscreen:"Tam ekran",close:"Kapat",submit:"Onayla",reset:"Sıfırla",required:"Gerekli",description:"Açıklama",title:"Başlık",text:"Metin",undo:"Geri al",redo:"İleri al",removeformat:"Biçimlendirmeyi temizle"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ua.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ua.js 3 | * Ukrainian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Igor Buksha 7 | */ 8 | 9 | jQuery.trumbowyg.langs.ua = { 10 | viewHTML: 'Подивитись HTML', 11 | 12 | formatting: 'Форматування', 13 | p: 'Звичайний', 14 | blockquote: 'Витяг', 15 | code: 'Код', 16 | header: 'Заголовок', 17 | 18 | bold: 'Напівжирний', 19 | italic: 'Курсив', 20 | strikethrough: 'Закреслений', 21 | underline: 'Підкреслений', 22 | 23 | strong: 'Напівжирний', 24 | em: 'Курсив', 25 | del: 'Закреслений', 26 | 27 | unorderedList: 'Звичайний список', 28 | orderedList: 'Нумерований список', 29 | 30 | insertImage: 'Вставити зображення', 31 | insertVideo: 'Вставити відео', 32 | link: 'Посилання', 33 | createLink: 'Вставити посилання', 34 | unlink: 'Видалити посилання', 35 | 36 | justifyLeft: 'По лівому краю', 37 | justifyCenter: 'В центрі', 38 | justifyRight: 'По правому краю', 39 | justifyFull: 'По ширині', 40 | 41 | horizontalRule: 'Горизонтальна лінія', 42 | 43 | fullscreen: 'На весь екран', 44 | 45 | close: 'Закрити', 46 | 47 | submit: 'Вставити', 48 | reset: 'Скасувати', 49 | 50 | required: 'Обов\'язкове', 51 | description: 'Опис', 52 | title: 'Підказка', 53 | text: 'Текст' 54 | }; 55 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/ua.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * ua.js 3 | * Ukrainian translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Igor Buksha 7 | */ 8 | jQuery.trumbowyg.langs.ua={viewHTML:"Подивитись HTML",formatting:"Форматування",p:"Звичайний",blockquote:"Витяг",code:"Код",header:"Заголовок",bold:"Напівжирний",italic:"Курсив",strikethrough:"Закреслений",underline:"Підкреслений",strong:"Напівжирний",em:"Курсив",del:"Закреслений",unorderedList:"Звичайний список",orderedList:"Нумерований список",insertImage:"Вставити зображення",insertVideo:"Вставити відео",link:"Посилання",createLink:"Вставити посилання",unlink:"Видалити посилання",justifyLeft:"По лівому краю",justifyCenter:"В центрі",justifyRight:"По правому краю",justifyFull:"По ширині",horizontalRule:"Горизонтальна лінія",fullscreen:"На весь екран",close:"Закрити",submit:"Вставити",reset:"Скасувати",required:"Обов'язкове",description:"Опис",title:"Підказка",text:"Текст"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/vi.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * vi.js 3 | * Vietnamese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : heocoi 7 | * Github: https://github.com/heocoi 8 | */ 9 | 10 | jQuery.trumbowyg.langs.vi = { 11 | viewHTML: 'Hiển thị HTML', 12 | 13 | formatting: 'Định dạng', 14 | p: 'Đoạn', 15 | blockquote: 'Trích dẫn', 16 | code: 'Code', 17 | header: 'Đầu trang', 18 | 19 | bold: 'In đậm', 20 | italic: 'In nghiêng', 21 | strikethrough: 'Gạch ngang', 22 | underline: 'Gạch chân', 23 | 24 | strong: 'In đậm', 25 | em: 'In nghiêng', 26 | del: 'Gạch ngang', 27 | 28 | unorderedList: 'Danh sách không thứ tự', 29 | orderedList: 'Danh sách có thứ tự', 30 | 31 | insertImage: 'Chèn hình ảnh', 32 | insertVideo: 'Chèn video', 33 | link: 'Đường dẫn', 34 | createLink: 'Tạo đường dẫn', 35 | unlink: 'Hủy đường dẫn', 36 | 37 | justifyLeft: 'Canh lề trái', 38 | justifyCenter: 'Canh giữa', 39 | justifyRight: 'Canh lề phải', 40 | justifyFull: 'Canh đều', 41 | 42 | horizontalRule: 'Thêm đường kẻ ngang', 43 | 44 | fullscreen: 'Toàn màn hình', 45 | 46 | close: 'Đóng', 47 | 48 | submit: 'Đồng ý', 49 | reset: 'Hủy bỏ', 50 | 51 | required: 'Bắt buộc', 52 | description: 'Mô tả', 53 | title: 'Tiêu đề', 54 | text: 'Nội dung', 55 | target: 'Đối tượng' 56 | }; 57 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/vi.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * vi.js 3 | * Vietnamese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : heocoi 7 | * Github: https://github.com/heocoi 8 | */ 9 | jQuery.trumbowyg.langs.vi={viewHTML:"Hiển thị HTML",formatting:"Định dạng",p:"Đoạn",blockquote:"Trích dẫn",code:"Code",header:"Đầu trang",bold:"In đậm",italic:"In nghiêng",strikethrough:"Gạch ngang",underline:"Gạch chân",strong:"In đậm",em:"In nghiêng",del:"Gạch ngang",unorderedList:"Danh sách không thứ tự",orderedList:"Danh sách có thứ tự",insertImage:"Chèn hình ảnh",insertVideo:"Chèn video",link:"Đường dẫn",createLink:"Tạo đường dẫn",unlink:"Hủy đường dẫn",justifyLeft:"Canh lề trái",justifyCenter:"Canh giữa",justifyRight:"Canh lề phải",justifyFull:"Canh đều",horizontalRule:"Thêm đường kẻ ngang",fullscreen:"Toàn màn hình",close:"Đóng",submit:"Đồng ý",reset:"Hủy bỏ",required:"Bắt buộc",description:"Mô tả",title:"Tiêu đề",text:"Nội dung",target:"Đối tượng"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/zh_cn.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * zh_cn.js 3 | * Simplified Chinese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Liu Kai (akai) 7 | * Twitter : @akai404 8 | * Github : https://github.com/akai 9 | */ 10 | 11 | // jshint camelcase:false 12 | jQuery.trumbowyg.langs.zh_cn = { 13 | viewHTML: '源代码', 14 | 15 | formatting: '格式', 16 | p: '段落', 17 | blockquote: '引用', 18 | code: '代码', 19 | header: '标题', 20 | 21 | bold: '加粗', 22 | italic: '斜体', 23 | strikethrough: '删除线', 24 | underline: '下划线', 25 | 26 | strong: '加粗', 27 | em: '斜体', 28 | del: '删除线', 29 | 30 | unorderedList: '无序列表', 31 | orderedList: '有序列表', 32 | 33 | insertImage: '插入图片', 34 | insertVideo: '插入视频', 35 | link: '超链接', 36 | createLink: '插入链接', 37 | unlink: '取消链接', 38 | 39 | justifyLeft: '居左对齐', 40 | justifyCenter: '居中对齐', 41 | justifyRight: '居右对齐', 42 | justifyFull: '两端对齐', 43 | 44 | horizontalRule: '插入分隔线', 45 | 46 | fullscreen: '全屏', 47 | 48 | close: '关闭', 49 | 50 | submit: '确定', 51 | reset: '取消', 52 | 53 | required: '必需的', 54 | description: '描述', 55 | title: '标题', 56 | text: '文字' 57 | }; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/zh_cn.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * zh_cn.js 3 | * Simplified Chinese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Liu Kai (akai) 7 | * Twitter : @akai404 8 | * Github : https://github.com/akai 9 | */ 10 | // jshint camelcase:false 11 | jQuery.trumbowyg.langs.zh_cn={viewHTML:"源代码",formatting:"格式",p:"段落",blockquote:"引用",code:"代码",header:"标题",bold:"加粗",italic:"斜体",strikethrough:"删除线",underline:"下划线",strong:"加粗",em:"斜体",del:"删除线",unorderedList:"无序列表",orderedList:"有序列表",insertImage:"插入图片",insertVideo:"插入视频",link:"超链接",createLink:"插入链接",unlink:"取消链接",justifyLeft:"居左对齐",justifyCenter:"居中对齐",justifyRight:"居右对齐",justifyFull:"两端对齐",horizontalRule:"插入分隔线",fullscreen:"全屏",close:"关闭",submit:"确定",reset:"取消",required:"必需的",description:"描述",title:"标题",text:"文字"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/zh_tw.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * zh_tw.js 3 | * Traditional Chinese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Peter Dave Hello (PeterDaveHello) 7 | * Twitter : @PeterDaveHello 8 | * Github : https://github.com/PeterDaveHello 9 | */ 10 | 11 | // jshint camelcase:false 12 | jQuery.trumbowyg.langs.zh_tw = { 13 | viewHTML: '原始碼', 14 | 15 | undo: '復原', 16 | redo: '重做', 17 | 18 | formatting: '格式', 19 | p: '段落', 20 | blockquote: '引用', 21 | code: '代碼', 22 | header: '標題', 23 | 24 | bold: '加粗', 25 | italic: '斜體', 26 | strikethrough: '刪除線', 27 | underline: '底線', 28 | 29 | strong: '粗體', 30 | em: '斜體', 31 | del: '刪除線', 32 | 33 | superscript: '上標', 34 | subscript: '下標', 35 | 36 | unorderedList: '無序列表', 37 | orderedList: '有序列表', 38 | 39 | insertImage: '插入圖片', 40 | insertVideo: '插入影片', 41 | link: '超連結', 42 | createLink: '插入連結', 43 | unlink: '取消連結', 44 | 45 | justifyLeft: '靠左對齊', 46 | justifyCenter: '置中對齊', 47 | justifyRight: '靠右對齊', 48 | justifyFull: '左右對齊', 49 | 50 | horizontalRule: '插入分隔線', 51 | removeformat: '移除格式', 52 | 53 | fullscreen: '全螢幕', 54 | 55 | close: '關閉', 56 | 57 | submit: '確定', 58 | reset: '取消', 59 | 60 | required: '必需的', 61 | description: '描述', 62 | title: '標題', 63 | text: '文字', 64 | target: '目標', 65 | width: '寬度' 66 | }; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/langs/zh_tw.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * zh_tw.js 3 | * Traditional Chinese translation for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Peter Dave Hello (PeterDaveHello) 7 | * Twitter : @PeterDaveHello 8 | * Github : https://github.com/PeterDaveHello 9 | */ 10 | // jshint camelcase:false 11 | jQuery.trumbowyg.langs.zh_tw={viewHTML:"原始碼",undo:"復原",redo:"重做",formatting:"格式",p:"段落",blockquote:"引用",code:"代碼",header:"標題",bold:"加粗",italic:"斜體",strikethrough:"刪除線",underline:"底線",strong:"粗體",em:"斜體",del:"刪除線",superscript:"上標",subscript:"下標",unorderedList:"無序列表",orderedList:"有序列表",insertImage:"插入圖片",insertVideo:"插入影片",link:"超連結",createLink:"插入連結",unlink:"取消連結",justifyLeft:"靠左對齊",justifyCenter:"置中對齊",justifyRight:"靠右對齊",justifyFull:"左右對齊",horizontalRule:"插入分隔線",removeformat:"移除格式",fullscreen:"全螢幕",close:"關閉",submit:"確定",reset:"取消",required:"必需的",description:"描述",title:"標題",text:"文字",target:"目標",width:"寬度"}; -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/colors/ui/trumbowyg.colors.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | .trumbowyg-dropdown-backColor:not(.trumbowyg-dropdown--color-list),.trumbowyg-dropdown-foreColor:not(.trumbowyg-dropdown--color-list){max-width:276px;padding:7px 5px;overflow:initial}.trumbowyg-dropdown-backColor:not(.trumbowyg-dropdown--color-list) button,.trumbowyg-dropdown-foreColor:not(.trumbowyg-dropdown--color-list) button{display:block;position:relative;float:left;text-indent:-9999px;height:20px;width:20px;border:1px solid #333;padding:0;margin:2px}.trumbowyg-dropdown-backColor:not(.trumbowyg-dropdown--color-list) button:focus::after,.trumbowyg-dropdown-backColor:not(.trumbowyg-dropdown--color-list) button:hover::after,.trumbowyg-dropdown-foreColor:not(.trumbowyg-dropdown--color-list) button:focus::after,.trumbowyg-dropdown-foreColor:not(.trumbowyg-dropdown--color-list) button:hover::after{content:" ";display:block;position:absolute;top:-5px;left:-5px;width:27px;height:27px;background:inherit;border:1px solid #fff;-webkit-box-shadow:#000 0 0 2px;box-shadow:#000 0 0 2px;z-index:10}.trumbowyg-dropdown-backColor.trumbowyg-dropdown--color-list button:not(.trumbowyg-backColorRemove-dropdown-button){position:relative;color:#fff!important}.trumbowyg-dropdown-backColor.trumbowyg-dropdown--color-list button:not(.trumbowyg-backColorRemove-dropdown-button):focus::after,.trumbowyg-dropdown-backColor.trumbowyg-dropdown--color-list button:not(.trumbowyg-backColorRemove-dropdown-button):hover::after{content:" ";display:block;position:absolute;top:13px;left:0;width:0;height:0;border:5px solid transparent;border-left-color:#fff} -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/emoji/ui/sass/trumbowyg.emoji.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Default stylesheet for Trumbowyg editor plugin 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-dropdown-emoji { 13 | width: 265px; 14 | padding: 7px 0 7px 5px; 15 | } 16 | 17 | .trumbowyg-dropdown-emoji svg { 18 | display: none !important; 19 | } 20 | 21 | .trumbowyg-dropdown-emoji button { 22 | display: block; 23 | position: relative; 24 | float: left; 25 | height: 26px; 26 | width: 26px; 27 | padding: 0; 28 | margin: 2px; 29 | line-height: 24px; 30 | text-align: center; 31 | 32 | &:hover, 33 | &:focus { 34 | &::after { 35 | display: block; 36 | position: absolute; 37 | top: -5px; 38 | left: -5px; 39 | height: 27px; 40 | width: 27px; 41 | background: inherit; 42 | box-shadow: #000 0 0 2px; 43 | z-index: 10; 44 | background-color: transparent; 45 | } 46 | } 47 | } 48 | 49 | .trumbowyg .emoji { 50 | width: 22px; 51 | height: 22px; 52 | display: inline-block; 53 | } 54 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/emoji/ui/trumbowyg.emoji.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Trumbowyg plugin stylesheet 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-dropdown-emoji { 13 | width: 265px; 14 | padding: 7px 0 7px 5px; } 15 | 16 | .trumbowyg-dropdown-emoji svg { 17 | display: none !important; } 18 | 19 | .trumbowyg-dropdown-emoji button { 20 | display: block; 21 | position: relative; 22 | float: left; 23 | height: 26px; 24 | width: 26px; 25 | padding: 0; 26 | margin: 2px; 27 | line-height: 24px; 28 | text-align: center; } 29 | .trumbowyg-dropdown-emoji button:hover::after, .trumbowyg-dropdown-emoji button:focus::after { 30 | display: block; 31 | position: absolute; 32 | top: -5px; 33 | left: -5px; 34 | height: 27px; 35 | width: 27px; 36 | background: inherit; 37 | -webkit-box-shadow: #000 0 0 2px; 38 | box-shadow: #000 0 0 2px; 39 | z-index: 10; 40 | background-color: transparent; } 41 | 42 | .trumbowyg .emoji { 43 | width: 22px; 44 | height: 22px; 45 | display: inline-block; } 46 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/emoji/ui/trumbowyg.emoji.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | .trumbowyg-dropdown-emoji{width:265px;padding:7px 0 7px 5px}.trumbowyg-dropdown-emoji svg{display:none!important}.trumbowyg-dropdown-emoji button{display:block;position:relative;float:left;height:26px;width:26px;padding:0;margin:2px;line-height:24px;text-align:center}.trumbowyg-dropdown-emoji button:focus::after,.trumbowyg-dropdown-emoji button:hover::after{display:block;position:absolute;top:-5px;left:-5px;height:27px;width:27px;background:inherit;-webkit-box-shadow:#000 0 0 2px;box-shadow:#000 0 0 2px;z-index:10;background-color:transparent}.trumbowyg .emoji{width:22px;height:22px;display:inline-block} -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/fontfamily/trumbowyg.fontfamily.min.js: -------------------------------------------------------------------------------- 1 | !function(a){"use strict";a.extend(!0,a.trumbowyg,{langs:{en:{fontFamily:"Font"},sl:{fontFamily:"Pisava"},by:{fontFamily:"Шрыфт"},es:{fontFamily:"Fuente"},da:{fontFamily:"Skrifttype"},de:{fontFamily:"Schriftart"},et:{fontFamily:"Font"},fr:{fontFamily:"Police"},hu:{fontFamily:"Betűtípus"},ko:{fontFamily:"글꼴"},nl:{fontFamily:"Lettertype"},pt_br:{fontFamily:"Fonte"},ru:{fontFamily:"Шрифт"},tr:{fontFamily:"Yazı tipi"},zh_tw:{fontFamily:"字體"}}});var n={fontList:[{name:"Arial",family:"Arial, Helvetica, sans-serif"},{name:"Arial Black",family:"Arial Black, Gadget, sans-serif"},{name:"Comic Sans",family:"Comic Sans MS, Textile, cursive, sans-serif"},{name:"Courier New",family:"Courier New, Courier, monospace"},{name:"Georgia",family:"Georgia, serif"},{name:"Impact",family:"Impact, Charcoal, sans-serif"},{name:"Lucida Console",family:"Lucida Console, Monaco, monospace"},{name:"Lucida Sans",family:"Lucida Sans Uncide, Lucida Grande, sans-serif"},{name:"Palatino",family:"Palatino Linotype, Book Antiqua, Palatino, serif"},{name:"Tahoma",family:"Tahoma, Geneva, sans-serif"},{name:"Times New Roman",family:"Times New Roman, Times, serif"},{name:"Trebuchet",family:"Trebuchet MS, Helvetica, sans-serif"},{name:"Verdana",family:"Verdana, Geneva, sans-serif"}]};function i(n){var i=[];return a.each(n.o.plugins.fontfamily.fontList,(function(a,e){n.addBtnDef("fontfamily_"+a,{title:''+e.name+"",hasIcon:!1,fn:function(){n.execCmd("fontName",e.family,!0)}}),i.push("fontfamily_"+a)})),i}a.extend(!0,a.trumbowyg,{plugins:{fontfamily:{init:function(e){e.o.plugins.fontfamily=a.extend({},n,e.o.plugins.fontfamily||{}),e.addBtnDef("fontfamily",{dropdown:i(e),hasIcon:!1,text:e.lang.fontFamily})}}}})}(jQuery); -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/highlight/ui/sass/trumbowyg.highlight.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Default stylesheet for Trumbowyg editor plugin 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-highlight-form-group { 13 | margin: 15px 10px; 14 | 15 | .trumbowyg-highlight-form-control { 16 | width: 100%; 17 | border: 1px solid #DEDEDE; 18 | font-size: 14px; 19 | padding: 7px; 20 | 21 | &.code { 22 | height: 200px; 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/highlight/ui/trumbowyg.highlight.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Trumbowyg plugin stylesheet 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-highlight-form-group { 13 | margin: 15px 10px; } 14 | .trumbowyg-highlight-form-group .trumbowyg-highlight-form-control { 15 | width: 100%; 16 | border: 1px solid #DEDEDE; 17 | font-size: 14px; 18 | padding: 7px; } 19 | .trumbowyg-highlight-form-group .trumbowyg-highlight-form-control.code { 20 | height: 200px; } 21 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/highlight/ui/trumbowyg.highlight.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | .trumbowyg-highlight-form-group{margin:15px 10px}.trumbowyg-highlight-form-group .trumbowyg-highlight-form-control{width:100%;border:1px solid #DEDEDE;font-size:14px;padding:7px}.trumbowyg-highlight-form-group .trumbowyg-highlight-form-control.code{height:200px} -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/indent/trumbowyg.indent.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * trumbowyg.indent.js v1.0 3 | * Indent or Outdent plugin for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Fabacks 7 | * Website : https://github.com/Fabacks 8 | */ 9 | !function(n){"use strict";n.extend(!0,n.trumbowyg,{langs:{en:{indent:"Indent",outdent:"Outdent"},sl:{indent:"Povečaj zamik",outdent:"Zmanjšaj zamik"},by:{indent:"Водступ",outdent:"Выступ"},et:{indent:"Taande suurendamine",outdent:"Taande vähendamine"},fr:{indent:"Augmenter le retrait",outdent:"Diminuer le retrait"},pt_br:{indent:"Aumentar Recuo",outdent:"Diminuir Recuo"},ru:{indent:"Отступ",outdent:"Выступ"},tr:{indent:"Girinti",outdent:"Çıkıntı"}}}),n.extend(!0,n.trumbowyg,{plugins:{paragraph:{init:function(n){var t={fn:"indent",title:n.lang.indent,isSupported:function(){return!!document.queryCommandSupported&&!!document.queryCommandSupported("indent")},ico:"indent"},e={fn:"outdent",title:n.lang.outdent,isSupported:function(){return!!document.queryCommandSupported&&!!document.queryCommandSupported("outdent")},ico:"outdent"};n.addBtnDef("indent",t),n.addBtnDef("outdent",e)}}}})}(jQuery); -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/insertaudio/trumbowyg.insertaudio.min.js: -------------------------------------------------------------------------------- 1 | /*/* =========================================================== 2 | * trumbowyg.insertaudio.js v1.0 3 | * InsertAudio plugin for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Adam Hess (AdamHess) 7 | */ 8 | !function(e){"use strict";var r={src:{label:"URL",required:!0},autoplay:{label:"AutoPlay",required:!1,type:"checkbox"},muted:{label:"Muted",required:!1,type:"checkbox"},preload:{label:"preload options",required:!1}};e.extend(!0,e.trumbowyg,{langs:{en:{insertAudio:"Insert Audio"},sl:{insertAudio:"Vstavi zvočno datoteko"},by:{insertAudio:"Уставіць аўдыё"},da:{insertAudio:"Indsæt lyd"},et:{insertAudio:"Lisa helifail"},fr:{insertAudio:"Insérer un son"},hu:{insertAudio:"Audio beszúrás"},ja:{insertAudio:"音声の挿入"},ko:{insertAudio:"소리 넣기"},pt_br:{insertAudio:"Inserir áudio"},ru:{insertAudio:"Вставить аудио"},tr:{insertAudio:"Ses Ekle"}},plugins:{insertAudio:{init:function(i){var t={fn:function(){i.openModalInsert(i.lang.insertAudio,r,(function(r){var t="")[0];return i.range.deleteContents(),i.range.insertNode(o),!0}))}};i.addBtnDef("insertAudio",t)}}}})}(jQuery); -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/mathml/ui/sass/trumbowyg.mathml.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Default stylesheet for Trumbowyg editor plugin 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | [formulas] { 13 | position: relative; 14 | display: inline-block; 15 | pointer-events: none; 16 | 17 | &[inline="false"] { 18 | display: block; 19 | width: 100%; 20 | } 21 | 22 | &::after { 23 | content: '\270E'; 24 | position: absolute; 25 | top: 0; 26 | right: 0; 27 | bottom: 0; 28 | left: 0; 29 | opacity: 0; 30 | background-color: rgba(255, 255, 255, 0.83); 31 | box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.83); 32 | cursor: pointer; 33 | pointer-events: auto; 34 | } 35 | 36 | &:hover { 37 | &::after { 38 | opacity: 1; 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/mathml/ui/trumbowyg.mathml.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Trumbowyg plugin stylesheet 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | [formulas] { 13 | position: relative; 14 | display: inline-block; 15 | pointer-events: none; } 16 | [formulas][inline="false"] { 17 | display: block; 18 | width: 100%; } 19 | [formulas]::after { 20 | content: '\270E'; 21 | position: absolute; 22 | top: 0; 23 | right: 0; 24 | bottom: 0; 25 | left: 0; 26 | opacity: 0; 27 | background-color: rgba(255, 255, 255, 0.83); 28 | -webkit-box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.83); 29 | box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.83); 30 | cursor: pointer; 31 | pointer-events: auto; } 32 | [formulas]:hover::after { 33 | opacity: 1; } 34 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/mathml/ui/trumbowyg.mathml.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | [formulas]{position:relative;display:inline-block;pointer-events:none}[formulas][inline=false]{display:block;width:100%}[formulas]::after{content:'\270E';position:absolute;top:0;right:0;bottom:0;left:0;opacity:0;background-color:rgba(255,255,255,.83);-webkit-box-shadow:0 0 5px 5px rgba(255,255,255,.83);box-shadow:0 0 5px 5px rgba(255,255,255,.83);cursor:pointer;pointer-events:auto}[formulas]:hover::after{opacity:1} -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/mention/trumbowyg.mention.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * trumbowyg.mention.js v0.1 3 | * Mention plugin for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Viper 7 | * Github: https://github.com/Globulopolis 8 | * Website: http://киноархив.com 9 | */ 10 | !function(n){"use strict";var t={source:[],formatDropdownItem:function(n){return n.login},formatResult:function(n){return"@"+n.login+" "}};function o(t,o){var e=[];return n.each(t,(function(n,t){var i="mention-"+n,m={hasIcon:!1,text:o.o.plugins.mention.formatDropdownItem(t),fn:function(){return o.execCmd("insertHTML",o.o.plugins.mention.formatResult(t)),!0}};o.addBtnDef(i,m),e.push(i)})),e}n.extend(!0,n.trumbowyg,{langs:{en:{mention:"Mention"},sl:{mention:"Omeni"},by:{mention:"Згадаць"},da:{mention:"Nævn"},et:{mention:"Maini"},fr:{mention:"Mentionner"},hu:{mention:"Említ"},ko:{mention:"언급"},pt_br:{mention:"Menção"},ru:{mention:"Упомянуть"},tr:{mention:"Bahset"},zh_tw:{mention:"標記"}},plugins:{mention:{init:function(e){e.o.plugins.mention=n.extend(!0,{},t,e.o.plugins.mention||{});var i={dropdown:o(e.o.plugins.mention.source,e)};e.addBtnDef("mention",i)}}}})}(jQuery); -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/mention/ui/sass/trumbowyg.mention.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Default stylesheet for Trumbowyg editor plugin 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-dropdown-mention { 13 | button { 14 | position: relative; 15 | white-space: nowrap; 16 | 17 | &:after { 18 | content: ""; 19 | position: absolute; 20 | top: 0; 21 | right: 0; 22 | width: 15%; 23 | height: 100%; 24 | background-size: 100%; 25 | background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 80%, #ffffff 100%); 26 | pointer-events: none; 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/mention/ui/trumbowyg.mention.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Trumbowyg plugin stylesheet 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-dropdown-mention button { 13 | position: relative; 14 | white-space: nowrap; } 15 | .trumbowyg-dropdown-mention button:after { 16 | content: ""; 17 | position: absolute; 18 | top: 0; 19 | right: 0; 20 | width: 15%; 21 | height: 100%; 22 | -webkit-background-size: 100% 100%; 23 | background-size: 100%; 24 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, #ffffff), to(#ffffff)); 25 | background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 80%, #ffffff 100%); 26 | background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 80%, #ffffff 100%); 27 | background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 80%, #ffffff 100%); 28 | pointer-events: none; } 29 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/mention/ui/trumbowyg.mention.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | .trumbowyg-dropdown-mention button{position:relative;white-space:nowrap}.trumbowyg-dropdown-mention button:after{content:"";position:absolute;top:0;right:0;width:15%;height:100%;-webkit-background-size:100% 100%;background-size:100%;background-image:-webkit-gradient(linear,left top,right top,from(rgba(255,255,255,0)),color-stop(80%,#fff),to(#fff));background-image:-webkit-linear-gradient(left,rgba(255,255,255,0) 0,#fff 80%,#fff 100%);background-image:-o-linear-gradient(left,rgba(255,255,255,0) 0,#fff 80%,#fff 100%);background-image:linear-gradient(to right,rgba(255,255,255,0) 0,#fff 80%,#fff 100%);pointer-events:none} -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/noembed/trumbowyg.noembed.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * trumbowyg.noembed.js v1.0 3 | * noEmbed plugin for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Jake Johns (jakejohns) 7 | */ 8 | !function(e){"use strict";var r={proxy:"https://noembed.com/embed?nowrap=on",urlFiled:"url",data:[],success:void 0,error:void 0};e.extend(!0,e.trumbowyg,{langs:{en:{noembed:"Noembed",noembedError:"Error"},sl:{noembed:"Noembed",noembedError:"Napaka"},by:{noembedError:"Памылка"},cs:{noembedError:"Chyba"},da:{noembedError:"Fejl"},et:{noembed:"Noembed",noembedError:"Viga"},fr:{noembedError:"Erreur"},hu:{noembed:"Noembed",noembedError:"Hiba"},ja:{noembedError:"エラー"},ko:{noembed:"oEmbed 넣기",noembedError:"에러"},pt_br:{noembed:"Incorporar",noembedError:"Erro"},ru:{noembedError:"Ошибка"},sk:{noembedError:"Chyba"},tr:{noembedError:"Hata"},zh_tw:{noembed:"插入影片",noembedError:"錯誤"}},plugins:{noembed:{init:function(o){o.o.plugins.noembed=e.extend(!0,{},r,o.o.plugins.noembed||{});var n={fn:function(){var r=o.openModalInsert(o.lang.noembed,{url:{label:"URL",required:!0}},(function(n){e.ajax({url:o.o.plugins.noembed.proxy,type:"GET",data:n,cache:!1,dataType:"json",success:function(n){o.o.plugins.noembed.success?o.o.plugins.noembed.success(n,o,r):n.html?(o.execCmd("insertHTML",n.html),setTimeout((function(){o.closeModal()}),250)):o.addErrorOnModalField(e("input[type=text]",r),n.error)},error:o.o.plugins.noembed.error||function(){o.addErrorOnModalField(e("input[type=text]",r),o.lang.noembedError)}})}))}};o.addBtnDef("noembed",n)}}}})}(jQuery); -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/pasteembed/trumbowyg.pasteembed.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * trumbowyg.pasteembed.js v1.0 3 | * Url paste to iframe with noembed. Plugin for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Max Seelig 7 | * Facebook : https://facebook.com/maxse 8 | * Website : https://www.maxmade.nl/ 9 | */ 10 | !function(t){"use strict";var e={enabled:!0,endpoints:["https://noembed.com/embed?nowrap=on","https://api.maxmade.nl/url2iframe/embed"]};t.extend(!0,t.trumbowyg,{plugins:{pasteEmbed:{init:function(n){n.o.plugins.pasteEmbed=t.extend(!0,{},e,n.o.plugins.pasteEmbed||{}),n.o.plugins.pasteEmbed.enabled&&n.pasteHandlers.push((function(e){try{var a=(e.originalEvent||e).clipboardData.getData("Text"),r=n.o.plugins.pasteEmbed.endpoints,s=null;if(a.startsWith("http")){e.stopPropagation(),e.preventDefault();var i={url:a.trim()},o="",p=0;s&&s.transport&&s.transport.abort(),s=t.ajax({crossOrigin:!0,url:r[p],type:"GET",data:i,cache:!1,dataType:"jsonp",success:function(t){t.html?(p=0,o=t.html):p+=1},error:function(){p+=1},complete:function(){0===o.length&&p",{href:a,text:a}).prop("outerHTML")),o.length>0&&(p=0,n.execCmd("insertHTML",o))}})}}catch(t){}}))}}}})}(jQuery); -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/pasteimage/trumbowyg.pasteimage.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * trumbowyg.pasteimage.js v1.0 3 | * Basic base64 paste plugin for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Alexandre Demode (Alex-D) 7 | * Twitter : @AlexandreDemode 8 | * Website : alex-d.fr 9 | */ 10 | !function(e){"use strict";e.extend(!0,e.trumbowyg,{plugins:{pasteImage:{init:function(e){e.pasteHandlers.push((function(t){try{for(var a,n=(t.originalEvent||t).clipboardData.items,i=!1,r=n.length-1;r>=0;r-=1)n[r].type.match(/^image\//)&&((a=new FileReader).onloadend=function(t){e.execCmd("insertImage",t.target.result,!1,!0)},a.readAsDataURL(n[r].getAsFile()),i=!0);i&&(t.stopPropagation(),t.preventDefault())}catch(e){}}))}}}})}(jQuery); -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/specialchars/trumbowyg.specialchars.min.js: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * trumbowyg.specialchars.js v0.99 3 | * Unicode characters picker plugin for Trumbowyg 4 | * http://alex-d.github.com/Trumbowyg 5 | * =========================================================== 6 | * Author : Renaud Hoyoux (geektortoise) 7 | */ 8 | !function(a){"use strict";var s={symbolList:["0024","20AC","00A3","00A2","00A5","00A4","2030",null,"00A9","00AE","2122",null,"00A7","00B6","00C6","00E6","0152","0153",null,"2022","25CF","2023","25B6","2B29","25C6",null,"00B1","00D7","00F7","21D2","21D4","220F","2211","2243","2264","2265"]};function r(s){var r=[];return a.each(s.o.plugins.specialchars.symbolList,(function(a,e){var i="symbol-"+(e=null===e?" ":"&#x"+e).replace(/:/g,""),l={text:e,hasIcon:!1,fn:function(){var a=String.fromCodePoint(parseInt(e.replace("&#","0")));return s.execCmd("insertText",a),!0}};s.addBtnDef(i,l),r.push(i)})),r}a.extend(!0,a.trumbowyg,{langs:{en:{specialChars:"Special characters"},sl:{specialChars:"Posebni znaki"},by:{specialChars:"Спецыяльныя сімвалы"},et:{specialChars:"Erimärgid"},fr:{specialChars:"Caractères spéciaux"},hu:{specialChars:"Speciális karakterek"},ko:{specialChars:"특수문자"},ru:{specialChars:"Специальные символы"},tr:{specialChars:"Özel karakterler"}},plugins:{specialchars:{init:function(a){a.o.plugins.specialchars=a.o.plugins.specialchars||s;var e={dropdown:r(a)};a.addBtnDef("specialChars",e)}}}})}(jQuery); -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/specialchars/ui/sass/trumbowyg.specialchars.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Default stylesheet for Trumbowyg editor plugin 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-symbol-\ -dropdown-button { 13 | display: none !important; 14 | } 15 | .trumbowyg-symbol-\ -dropdown-button + button { 16 | clear: both; 17 | } 18 | 19 | .trumbowyg-dropdown-specialChars { 20 | width: 248px; 21 | padding: 5px 3px 3px; 22 | } 23 | 24 | .trumbowyg-dropdown-specialChars button { 25 | display: block; 26 | position: relative; 27 | float: left; 28 | height: 26px; 29 | width: 26px; 30 | padding: 0; 31 | margin: 2px; 32 | line-height: 24px; 33 | text-align: center; 34 | 35 | &:hover, 36 | &:focus { 37 | &::after { 38 | display: block; 39 | position: absolute; 40 | top: -5px; 41 | left: -5px; 42 | height: 27px; 43 | width: 27px; 44 | background: inherit; 45 | box-shadow: #000 0 0 2px; 46 | z-index: 10; 47 | background-color: transparent; 48 | } 49 | } 50 | } 51 | 52 | .trumbowyg .specialChars { 53 | width: 22px; 54 | height: 22px; 55 | display: inline-block; 56 | } 57 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/specialchars/ui/trumbowyg.specialchars.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Trumbowyg plugin stylesheet 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-symbol-\ -dropdown-button { 13 | display: none !important; } 14 | 15 | .trumbowyg-symbol-\ -dropdown-button + button { 16 | clear: both; } 17 | 18 | .trumbowyg-dropdown-specialChars { 19 | width: 248px; 20 | padding: 5px 3px 3px; } 21 | 22 | .trumbowyg-dropdown-specialChars button { 23 | display: block; 24 | position: relative; 25 | float: left; 26 | height: 26px; 27 | width: 26px; 28 | padding: 0; 29 | margin: 2px; 30 | line-height: 24px; 31 | text-align: center; } 32 | .trumbowyg-dropdown-specialChars button:hover::after, .trumbowyg-dropdown-specialChars button:focus::after { 33 | display: block; 34 | position: absolute; 35 | top: -5px; 36 | left: -5px; 37 | height: 27px; 38 | width: 27px; 39 | background: inherit; 40 | -webkit-box-shadow: #000 0 0 2px; 41 | box-shadow: #000 0 0 2px; 42 | z-index: 10; 43 | background-color: transparent; } 44 | 45 | .trumbowyg .specialChars { 46 | width: 22px; 47 | height: 22px; 48 | display: inline-block; } 49 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/specialchars/ui/trumbowyg.specialchars.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | .trumbowyg-symbol-\ -dropdown-button{display:none!important}.trumbowyg-symbol-\ -dropdown-button+button{clear:both}.trumbowyg-dropdown-specialChars{width:248px;padding:5px 3px 3px}.trumbowyg-dropdown-specialChars button{display:block;position:relative;float:left;height:26px;width:26px;padding:0;margin:2px;line-height:24px;text-align:center}.trumbowyg-dropdown-specialChars button:focus::after,.trumbowyg-dropdown-specialChars button:hover::after{display:block;position:absolute;top:-5px;left:-5px;height:27px;width:27px;background:inherit;-webkit-box-shadow:#000 0 0 2px;box-shadow:#000 0 0 2px;z-index:10;background-color:transparent}.trumbowyg .specialChars{width:22px;height:22px;display:inline-block} -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/table/ui/sass/trumbowyg.table.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Default stylesheet for Trumbowyg editor plugin 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-editor table { 13 | width: 100%; 14 | 15 | td { 16 | border: 1px dotted #e7eaec; 17 | padding: 8px; 18 | } 19 | } 20 | 21 | .trumbowyg-dropdown-table { 22 | table { 23 | margin: 10px; 24 | display: inline-block; 25 | } 26 | 27 | table td { 28 | display: inline-block; 29 | height: 20px; 30 | width: 20px; 31 | margin: 1px; 32 | padding: 0; 33 | background-color: #fff; 34 | box-shadow: 0 0 0 1px #cecece inset; 35 | 36 | &.active { 37 | background-color: #00b393; 38 | box-shadow: none; 39 | cursor: pointer; 40 | } 41 | } 42 | 43 | .trumbowyg-table-size { 44 | text-align: center; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/table/ui/trumbowyg.table.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor 3 | * Trumbowyg plugin stylesheet 4 | * ------------------------ 5 | * @link http://alex-d.github.io/Trumbowyg 6 | * @license MIT 7 | * @author Alexandre Demode (Alex-D) 8 | * Twitter : @AlexandreDemode 9 | * Website : alex-d.fr 10 | */ 11 | 12 | .trumbowyg-editor table { 13 | width: 100%; } 14 | .trumbowyg-editor table td { 15 | border: 1px dotted #e7eaec; 16 | padding: 8px; } 17 | 18 | .trumbowyg-dropdown-table table { 19 | margin: 10px; 20 | display: inline-block; } 21 | 22 | .trumbowyg-dropdown-table table td { 23 | display: inline-block; 24 | height: 20px; 25 | width: 20px; 26 | margin: 1px; 27 | padding: 0; 28 | background-color: #fff; 29 | -webkit-box-shadow: 0 0 0 1px #cecece inset; 30 | box-shadow: 0 0 0 1px #cecece inset; } 31 | .trumbowyg-dropdown-table table td.active { 32 | background-color: #00b393; 33 | -webkit-box-shadow: none; 34 | box-shadow: none; 35 | cursor: pointer; } 36 | 37 | .trumbowyg-dropdown-table .trumbowyg-table-size { 38 | text-align: center; } 39 | -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/table/ui/trumbowyg.table.min.css: -------------------------------------------------------------------------------- 1 | /** Trumbowyg v2.26.0 - A lightweight WYSIWYG editor - alex-d.github.io/Trumbowyg - License MIT - Author : Alexandre Demode (Alex-D) / alex-d.fr */ 2 | .trumbowyg-editor table{width:100%}.trumbowyg-editor table td{border:1px dotted #e7eaec;padding:8px}.trumbowyg-dropdown-table table{margin:10px;display:inline-block}.trumbowyg-dropdown-table table td{display:inline-block;height:20px;width:20px;margin:1px;padding:0;background-color:#fff;-webkit-box-shadow:0 0 0 1px #cecece inset;box-shadow:0 0 0 1px #cecece inset}.trumbowyg-dropdown-table table td.active{background-color:#00b393;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}.trumbowyg-dropdown-table .trumbowyg-table-size{text-align:center} -------------------------------------------------------------------------------- /lizmap/resources/html/trumbowyg/plugins/template/trumbowyg.template.min.js: -------------------------------------------------------------------------------- 1 | !function(t){"use strict";function e(e){var a=e.o.plugins.templates,l=[];return t.each(a,(function(t,a){e.addBtnDef("template_"+t,{fn:function(){e.html(a.html)},hasIcon:!1,title:a.name}),l.push("template_"+t)})),l}t.extend(!0,t.trumbowyg,{langs:{en:{template:"Template"},sl:{template:"Predloga"},by:{template:"Шаблон"},da:{template:"Skabelon"},de:{template:"Vorlage"},et:{template:"Mall"},fr:{template:"Patron"},hu:{template:"Sablon"},ja:{template:"テンプレート"},ko:{template:"서식"},nl:{template:"Sjabloon"},pt_br:{template:"Modelo"},ru:{template:"Шаблон"},tr:{template:"Şablon"},zh_tw:{template:"模板"}}}),t.extend(!0,t.trumbowyg,{plugins:{template:{shouldInit:function(t){return t.o.plugins.hasOwnProperty("templates")},init:function(t){t.addBtnDef("template",{dropdown:e(t),hasIcon:!1,text:t.lang.template})}}}})}(jQuery); -------------------------------------------------------------------------------- /lizmap/resources/icons/01-home-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/01-home-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/01-home-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/01-home-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/02-switcher-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/02-switcher-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/02-switcher-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/02-switcher-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/03-metadata-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/03-metadata-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/03-metadata-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/03-metadata-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/04-locate-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/04-locate-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/04-locate-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/04-locate-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/05-login-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/05-login-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/05-login-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/05-login-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/06-measure-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/06-measure-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/06-measure-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/06-measure-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/07-geolocation-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/07-geolocation-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/07-geolocation-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/07-geolocation-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/08-print-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/08-print-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/08-print-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/08-print-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/09-search-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/09-search-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/09-search-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/09-search-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/10-edition-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/10-edition-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/10-edition-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/10-edition-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/11-attribute-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/11-attribute-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/11-attribute-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/11-attribute-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/12-user-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/12-user-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/12-user-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/12-user-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/13-timemanager-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/13-timemanager-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/13-timemanager-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/13-timemanager-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/14-permalink-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/14-permalink-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/14-permalink-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/14-permalink-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/15-baselayer-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/15-baselayer-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/15-baselayer-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/15-baselayer-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/16-tooltip-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/16-tooltip-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/16-tooltip-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/16-tooltip-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/18-diary-icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/18-diary-icon-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/18-diary-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/18-diary-icon-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/abc-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/abc-block.png -------------------------------------------------------------------------------- /lizmap/resources/icons/actions-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lizmap/resources/icons/atlas-icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/atlas-icon-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/atlas-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/atlas-icon-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/dataviz-icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/dataviz-icon-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/dataviz-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/dataviz-icon-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/filter-icon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/filter-icon-dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/filter-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/filter-icon-white.png -------------------------------------------------------------------------------- /lizmap/resources/icons/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/google.png -------------------------------------------------------------------------------- /lizmap/resources/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/help.png -------------------------------------------------------------------------------- /lizmap/resources/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/icon.png -------------------------------------------------------------------------------- /lizmap/resources/icons/layer_filter_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/layer_filter_dark.png -------------------------------------------------------------------------------- /lizmap/resources/icons/layer_filter_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/layer_filter_light.png -------------------------------------------------------------------------------- /lizmap/resources/icons/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/loading.gif -------------------------------------------------------------------------------- /lizmap/resources/icons/logo-lizmap-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/logo-lizmap-cloud.png -------------------------------------------------------------------------------- /lizmap/resources/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/logo.png -------------------------------------------------------------------------------- /lizmap/resources/icons/osm-32-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/osm-32-32.png -------------------------------------------------------------------------------- /lizmap/resources/icons/plots/html_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/plots/html_template.png -------------------------------------------------------------------------------- /lizmap/resources/icons/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/icons/upload.png -------------------------------------------------------------------------------- /lizmap/resources/icons/upload.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | upload 4 | 5 | 6 | cloud,arrow,publish,public,post,share,sync,upload,form 7 | 8 | 9 | by 10 | 11 | 12 | hc2ugk 13 | -------------------------------------------------------------------------------- /lizmap/resources/icons/user.svg: -------------------------------------------------------------------------------- 1 | 2 | 13 | 15 | 33 | 37 | 41 | 45 | 46 | -------------------------------------------------------------------------------- /lizmap/resources/icons/user_group.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lizmap/resources/images/QGIS-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3liz/lizmap-plugin/a2e94419be9c7d757721610474766225118a08a8/lizmap/resources/images/QGIS-version.png -------------------------------------------------------------------------------- /lizmap/table_manager/__init__.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2023, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | -------------------------------------------------------------------------------- /lizmap/toolbelt/__init__.py: -------------------------------------------------------------------------------- 1 | __copyright__ = "Copyright 2024, 3Liz" 2 | __license__ = "GPL version 3" 3 | __email__ = "info@3liz.org" 4 | -------------------------------------------------------------------------------- /lizmap/toolbelt/convert.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2024, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | 5 | from typing import Union 6 | 7 | from qgis.core import QgsLayerTreeGroup, QgsLayerTreeLayer, QgsLayerTreeNode 8 | from qgis.PyQt import sip 9 | 10 | # SIP cast issues 11 | # Related to 12 | # https://github.com/3liz/lizmap-plugin/issues/299 13 | # https://github.com/3liz/lizmap-plugin/issues/528 14 | 15 | 16 | def cast_to_layer(node: QgsLayerTreeNode) -> QgsLayerTreeLayer: 17 | """ Cast a legend node to a layer. """ 18 | if isinstance(node, QgsLayerTreeLayer): 19 | return node 20 | 21 | # noinspection PyTypeChecker 22 | return sip.cast(node, QgsLayerTreeLayer) 23 | 24 | 25 | def cast_to_group(node: QgsLayerTreeNode) -> QgsLayerTreeGroup: 26 | """Cast a legend node to a group. """ 27 | if isinstance(node, QgsLayerTreeGroup): 28 | return node 29 | 30 | # noinspection PyTypeChecker 31 | return sip.cast(node, QgsLayerTreeGroup) 32 | 33 | 34 | def to_bool(val: Union[str, int, float, bool, None], default_value: bool = True) -> bool: 35 | """ Convert lizmap config value to boolean """ 36 | if isinstance(val, bool): 37 | return val 38 | 39 | if val is None or val == '': 40 | return default_value 41 | 42 | if isinstance(val, str): 43 | # For string, compare lower value to True string 44 | return val.lower() in ('yes', 'true', 't', '1') 45 | 46 | elif not val: 47 | # For value like False, 0, 0.0, None, empty list or dict returns False 48 | return False 49 | 50 | return default_value 51 | -------------------------------------------------------------------------------- /lizmap/toolbelt/debug.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2024, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | 5 | from qgis.PyQt.QtCore import Qt 6 | from qgis.PyQt.QtWidgets import QComboBox 7 | 8 | 9 | def _debug_combobox(combo: QComboBox, data_start: int = Qt.ItemDataRole.UserRole, data_max: int = 0): 10 | """ Debug a QComboBox. """ 11 | for i in range(combo.count()): 12 | print("=== NEW ITEM ===") 13 | print(combo.itemText(i)) 14 | for x in range(data_max): 15 | print(f"→ {data_start + x} : {combo.itemData(data_start + x)}") 16 | print("==== END ITEM ====") 17 | -------------------------------------------------------------------------------- /lizmap/toolbelt/i18n.py: -------------------------------------------------------------------------------- 1 | """ I18N tools.""" 2 | 3 | from os.path import join 4 | 5 | from qgis.core import QgsSettings 6 | from qgis.PyQt.QtCore import QFileInfo, QLocale 7 | from qgis.PyQt.QtWidgets import QApplication 8 | 9 | from lizmap.toolbelt.resources import resources_path 10 | 11 | __copyright__ = "Copyright 2024, 3Liz" 12 | __license__ = "GPL version 3" 13 | __email__ = "info@3liz.org" 14 | 15 | 16 | def setup_translation(file_pattern="{}.qm", folder=None): 17 | """Find the translation file according to locale. 18 | 19 | :param file_pattern: Custom file pattern to use to find QM files. 20 | :type file_pattern: basestring 21 | 22 | :param folder: Optional folder to look in if it's not the default. 23 | :type folder: basestring 24 | 25 | :return: The locale and the file path to the QM file, or None. 26 | :rtype: (basestring, basestring) 27 | """ 28 | locale = QgsSettings().value("locale/userLocale", QLocale().name()) 29 | 30 | if folder: 31 | ts_file = QFileInfo(join(folder, file_pattern.format(locale))) 32 | else: 33 | ts_file = QFileInfo(resources_path("i18n", file_pattern.format(locale))) 34 | if ts_file.exists(): 35 | return locale, ts_file.absoluteFilePath() 36 | 37 | if folder: 38 | ts_file = QFileInfo(join(folder, file_pattern.format(locale[0:2]))) 39 | else: 40 | ts_file = QFileInfo(resources_path("i18n", file_pattern.format(locale[0:2]))) 41 | if ts_file.exists(): 42 | return locale, ts_file.absoluteFilePath() 43 | 44 | return locale, None 45 | 46 | 47 | def tr(text, context="@default"): 48 | return QApplication.translate(context, text) 49 | -------------------------------------------------------------------------------- /lizmap/toolbelt/plugin.py: -------------------------------------------------------------------------------- 1 | from os.path import abspath, join 2 | from pathlib import Path 3 | 4 | from qgis.core import QgsApplication 5 | from qgis.PyQt.QtCore import QDateTime, QDir, Qt 6 | 7 | from lizmap.toolbelt.resources import metadata_config 8 | 9 | 10 | def lizmap_user_folder() -> Path: 11 | """ Get the Lizmap user folder. 12 | 13 | If the folder does not exist, it will create it. 14 | 15 | On Linux: .local/share/QGIS/QGIS3/profiles/default/Lizmap 16 | """ 17 | path = abspath(join(QgsApplication.qgisSettingsDirPath(), 'Lizmap')) 18 | 19 | if not QDir(path).exists(): 20 | QDir().mkdir(path) 21 | 22 | lizmap_path = Path(path) 23 | 24 | cache_dir = lizmap_path.joinpath("cache_server_metadata") 25 | if not cache_dir.exists(): 26 | QDir().mkdir(str(cache_dir)) 27 | 28 | return lizmap_path 29 | 30 | 31 | def user_settings() -> Path: 32 | """ Path to the user file configuration. """ 33 | return lizmap_user_folder().joinpath('user_servers.json') 34 | 35 | 36 | def plugin_date() -> QDateTime: 37 | """Return the version defined in metadata.txt.""" 38 | date = metadata_config()["general"]["dateTime"] 39 | return QDateTime().fromString(date, Qt.DateFormat.ISODate) 40 | -------------------------------------------------------------------------------- /lizmap/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2023, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | -------------------------------------------------------------------------------- /lizmap/widgets/json_editor.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2020, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | __revision__ = '$Format:%H$' 5 | 6 | from qgis.PyQt import Qsci 7 | 8 | 9 | class JsonEditor(Qsci.QsciScintilla): 10 | def __init__(self, parent=None): 11 | super().__init__(parent) 12 | self.setLexer(Qsci.QsciLexerJSON(self)) 13 | -------------------------------------------------------------------------------- /lizmap/widgets/project_tools.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2023, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | 5 | from qgis.core import QgsLayerTreeGroup, QgsProject 6 | 7 | 8 | def is_layer_wms_excluded(project: QgsProject, name: str) -> bool: 9 | """ Is the layer excluded from WMS. 10 | 11 | Project properties → QGIS server → WMS → Exclude layers 12 | """ 13 | server_wms_excluded_list, server_exclude = project.readListEntry('WMSRestrictedLayers', '') 14 | return server_exclude and name in server_wms_excluded_list 15 | 16 | 17 | def is_layer_published_wfs(project: QgsProject, layer_id: str) -> bool: 18 | """ Is the layer in the WFS service. 19 | 20 | Project properties → QGIS server → WFS → Checked for the layer ID 21 | """ 22 | server_wfs_included_list, server_exclude = project.readListEntry('WFSLayers', '') 23 | return server_exclude and layer_id in server_wfs_included_list 24 | 25 | 26 | def empty_baselayers(project: QgsProject) -> bool: 27 | """ Check if the "baselayers" group is empty or not. """ 28 | root_group = project.layerTreeRoot() 29 | groups = root_group.findGroups() 30 | for qgis_group in groups: 31 | qgis_group: QgsLayerTreeGroup 32 | if qgis_group.name() == 'baselayers': 33 | return len(qgis_group.children()) == 0 34 | return False 35 | -------------------------------------------------------------------------------- /lizmap/widgets/warning_widget.py: -------------------------------------------------------------------------------- 1 | __copyright__ = 'Copyright 2023, 3Liz' 2 | __license__ = 'GPL version 3' 3 | __email__ = 'info@3liz.org' 4 | 5 | from qgis.PyQt.QtGui import QPixmap 6 | from qgis.PyQt.QtWidgets import QHBoxLayout, QLabel, QSizePolicy, QWidget 7 | 8 | 9 | class WarningWidget(QWidget): 10 | 11 | """ Widget to show a warning sign with a text. """ 12 | 13 | def __init__(self, *args, **kwargs): 14 | """ Constructor. """ 15 | super().__init__(*args, **kwargs) 16 | 17 | layout = QHBoxLayout(self) 18 | image_widget = QLabel() 19 | warning_icon = QPixmap(":images/themes/default/mIconWarning.svg") 20 | image_widget.setPixmap(warning_icon) 21 | image_widget.setSizePolicy(QSizePolicy.Policy.Maximum, QSizePolicy.Policy.Preferred) 22 | 23 | # noinspection PyArgumentList 24 | layout.addWidget(image_widget) 25 | 26 | self.text_widget = QLabel() 27 | # self.text_widget.setText(text) 28 | self.text_widget.setWordWrap(True) 29 | 30 | # noinspection PyArgumentList 31 | layout.addWidget(self.text_widget) 32 | 33 | self.setLayout(layout) 34 | 35 | def set_text(self, text: str): 36 | """ Set text in the label. """ 37 | self.text_widget.setText(text) 38 | -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- 1 | flake8 2 | flake8-absolute-import 3 | # flake8-bugbear 4 | flake8-builtins 5 | flake8-isort 6 | # flake8-multiline-containers 7 | # flake8-mutable 8 | # flake8-pep3101 9 | flake8-print 10 | # flake8-variables-names 11 | isort 12 | pylint 13 | # pycodestyle 14 | # PyQt5 15 | # PyQt5-stubs 16 | pre-commit 17 | webdavclient3 18 | psycopg[binary] 19 | -------------------------------------------------------------------------------- /requirements/packaging.txt: -------------------------------------------------------------------------------- 1 | qgis-plugin-ci>=2.7.0 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 130 3 | ignore = 4 | # Closing bracket does not match visual indentation 5 | E123, 6 | E124, 7 | E125, 8 | E126, 9 | # Line length 10 | E501, 11 | # Bad double quotes 12 | Q000, 13 | Q001, 14 | Q003, 15 | # Line break before binary operator 16 | W503, 17 | 18 | per-file-ignores = 19 | lizmap/tooltip.py:E741 20 | lizmap/test/test_tooltip.py:W291,W293 21 | lizmap/toolbelt/debug.py:T201 22 | 23 | exclude = 24 | lizmap/lizmap_api, 25 | lizmap/qgis_plugin_tools, 26 | .venv/, 27 | 28 | [isort] 29 | multi_line_output = 3 30 | include_trailing_comma = True 31 | use_parentheses = True 32 | ensure_newline_before_comments = True 33 | lines_between_types = 1 34 | skip = 35 | .venv, 36 | ./lizmap/qgis_plugin_tools/, 37 | 38 | [qgis-plugin-ci] 39 | plugin_path = lizmap 40 | github_organization_slug = 3liz 41 | project_slug = lizmap-plugin 42 | transifex_organization = 3liz-1 43 | transifex_project = lizmap-locales 44 | transifex_resource = lizmap_qgis_plugin 45 | transifex_coordinator = etrimaille 46 | changelog_include = true 47 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | """ 2 | Install lizmap api as standard python package. 3 | """ 4 | 5 | import configparser 6 | 7 | from setuptools import setup 8 | 9 | kwargs = {} 10 | 11 | # Read tag from metadata 12 | metadata = configparser.ConfigParser() 13 | metadata.read('lizmap/metadata.txt') 14 | 15 | version_tag = metadata['general']['version'].replace("version", "").strip() 16 | 17 | with open('README.md') as f: 18 | kwargs['long_description'] = f.read() 19 | 20 | setup( 21 | name='lizmap-api', 22 | version=version_tag, 23 | author='3Liz', 24 | author_email='infos@3liz.org', 25 | maintainer='Michael Douchin', 26 | maintainer_email='mdouchin@3liz.org', 27 | description="Python API to create lizmap configuration", 28 | url='https://github.com/3liz/lizmap-plugin', 29 | packages=['lizmap_api'], 30 | entry_points={ 31 | 'console_scripts': [ 32 | 'lizmapcfg = lizmap_api.commands:create_config', 33 | ] 34 | }, 35 | classifiers=[ 36 | 'Environment :: Web Environment', 37 | 'Intended Audience :: Developers', 38 | 'Intended Audience :: Science/Research', 39 | "Programming Language :: Python :: 3.6", 40 | "Programming Language :: Python :: 3.5", 41 | "Programming Language :: Python :: 3", 42 | "Operating System :: POSIX :: Linux", 43 | "Topic :: Scientific/Engineering :: GIS", 44 | ], 45 | **kwargs 46 | ) 47 | --------------------------------------------------------------------------------