Repository: devaslanphp/help-desk Branch: master Commit: 120a8c8340d0 Files: 340 Total size: 2.6 MB Directory structure: gitextract_82am4k6c/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── Procfile ├── README.md ├── SECURITY.md ├── app/ │ ├── Console/ │ │ └── Kernel.php │ ├── Core/ │ │ ├── CrudDialogHelper.php │ │ ├── HasLogsActivity.php │ │ └── LogsActivity.php │ ├── Exceptions/ │ │ └── Handler.php │ ├── Http/ │ │ ├── Controllers/ │ │ │ ├── Auth/ │ │ │ │ └── LogoutController.php │ │ │ ├── Controller.php │ │ │ └── TicketNumberController.php │ │ ├── Kernel.php │ │ ├── Livewire/ │ │ │ ├── Administration/ │ │ │ │ ├── ActivityLogs.php │ │ │ │ ├── Companies.php │ │ │ │ ├── CompaniesDialog.php │ │ │ │ ├── Roles.php │ │ │ │ ├── RolesDialog.php │ │ │ │ ├── TicketPriorities.php │ │ │ │ ├── TicketPrioritiesDialog.php │ │ │ │ ├── TicketStatuses.php │ │ │ │ ├── TicketStatusesDialog.php │ │ │ │ ├── TicketTypes.php │ │ │ │ ├── TicketTypesDialog.php │ │ │ │ ├── Users.php │ │ │ │ └── UsersDialog.php │ │ │ ├── Analytics.php │ │ │ ├── Auth/ │ │ │ │ ├── ActivateAccount.php │ │ │ │ ├── ForgotPassword.php │ │ │ │ ├── Login.php │ │ │ │ └── RecoverPassword.php │ │ │ ├── Chat.php │ │ │ ├── Kanban.php │ │ │ ├── MyNotifications.php │ │ │ ├── MyProfile.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsDialog.php │ │ │ ├── TicketDetails/ │ │ │ │ ├── Content.php │ │ │ │ ├── Priority.php │ │ │ │ ├── Responsible.php │ │ │ │ ├── Status.php │ │ │ │ ├── Title.php │ │ │ │ └── Type.php │ │ │ ├── TicketDetails.php │ │ │ ├── TicketDetailsComments.php │ │ │ ├── TicketDetailsCommentsContent.php │ │ │ ├── Tickets.php │ │ │ └── TicketsDialog.php │ │ └── Middleware/ │ │ ├── Authenticate.php │ │ ├── CanAccessTicket.php │ │ ├── EncryptCookies.php │ │ ├── LocaleMiddleware.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ ├── Jobs/ │ │ ├── CommentCreatedJob.php │ │ ├── TicketCreatedJob.php │ │ └── TicketUpdatedJob.php │ ├── Models/ │ │ ├── Chat.php │ │ ├── Comment.php │ │ ├── Company.php │ │ ├── CompanyUser.php │ │ ├── FavoriteProject.php │ │ ├── Icon.php │ │ ├── Project.php │ │ ├── Ticket.php │ │ ├── TicketPriority.php │ │ ├── TicketStatus.php │ │ ├── TicketType.php │ │ └── User.php │ ├── Notifications/ │ │ ├── CommentCreateNotification.php │ │ ├── TicketCreatedNotification.php │ │ ├── TicketUpdatedNotification.php │ │ ├── UserActivatedNotification.php │ │ └── UserCreatedNotification.php │ ├── Providers/ │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Tables/ │ │ └── Columns/ │ │ └── UserColumn.php │ ├── View/ │ │ └── Components/ │ │ ├── BaseLayout.php │ │ ├── GuestLayout.php │ │ ├── Layout.php │ │ ├── MainMenu.php │ │ ├── NotificationType.php │ │ ├── PrioritySpan.php │ │ ├── RoleSpan.php │ │ ├── StatusSpan.php │ │ ├── TypeSpan.php │ │ └── UserAvatar.php │ └── helpers.php ├── artisan ├── bootstrap/ │ ├── app.php │ └── cache/ │ └── .gitignore ├── composer.json ├── config/ │ ├── activitylog.php │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── cors.php │ ├── database.php │ ├── filament-avatar.php │ ├── filament-kanban-board.php │ ├── filament.php │ ├── filesystems.php │ ├── hashing.php │ ├── larabug.php │ ├── laravel-translatable-string-exporter.php │ ├── logging.php │ ├── mail.php │ ├── permission.php │ ├── queue.php │ ├── sanctum.php │ ├── services.php │ ├── session.php │ ├── system.php │ ├── tables.php │ └── view.php ├── database/ │ ├── .gitignore │ ├── factories/ │ │ └── UserFactory.php │ ├── help_desk.pgsql.sql │ ├── help_desk.sql │ ├── migrations/ │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ │ ├── 2022_09_08_094911_create_icons_table.php │ │ ├── 2022_09_09_220749_create_tickets_table.php │ │ ├── 2022_09_10_205032_create_projects_table.php │ │ ├── 2022_09_10_205612_create_user_projects_table.php │ │ ├── 2022_09_10_205915_add_project_to_tickets.php │ │ ├── 2022_09_10_220736_add_role_to_users.php │ │ ├── 2022_09_11_142205_add_register_token_to_users.php │ │ ├── 2022_09_11_153059_add_soft_deletes_to_users.php │ │ ├── 2022_09_11_163751_create_favorite_projects_table.php │ │ ├── 2022_09_11_202013_add_type_to_tickets.php │ │ ├── 2022_09_12_090928_create_comments_table.php │ │ ├── 2022_09_12_095043_create_jobs_table.php │ │ ├── 2022_09_14_175349_create_notifications_table.php │ │ ├── 2022_09_15_142643_add_local_to_user.php │ │ ├── 2022_09_19_095513_create_ticket_statuses_table.php │ │ ├── 2022_09_19_111627_create_ticket_priorities_table.php │ │ ├── 2022_09_19_111633_create_ticket_types_table.php │ │ ├── 2022_09_19_122813_add_slug_to_ticket_statuses.php │ │ ├── 2022_09_19_122821_add_slug_to_ticket_types.php │ │ ├── 2022_09_19_122828_add_slug_to_ticket_priorities.php │ │ ├── 2022_09_19_143232_add_ticket_prefix_to_projects.php │ │ ├── 2022_09_19_144042_add_number_to_tickets.php │ │ ├── 2022_09_19_181148_create_activity_log_table.php │ │ ├── 2022_09_19_181149_add_event_column_to_activity_log_table.php │ │ ├── 2022_09_19_181150_add_batch_uuid_column_to_activity_log_table.php │ │ ├── 2022_09_19_181611_drop_user_projects.php │ │ ├── 2022_09_19_212320_create_chats_table.php │ │ ├── 2022_09_24_230950_create_companies_table.php │ │ ├── 2022_09_25_154331_create_permission_tables.php │ │ ├── 2022_09_25_163436_remove_role_from_users.php │ │ ├── 2022_09_25_165452_create_company_users_table.php │ │ └── 2022_09_30_133603_add_company_id_to_projects.php │ └── seeders/ │ ├── DatabaseSeeder.php │ ├── FontAwesomeFreeSeeder.php │ └── PermissionsSeeder.php ├── docker-compose.yml ├── docs/ │ ├── .nojekyll │ ├── README.md │ ├── _sidebar.md │ ├── changelog.md │ ├── configuration.md │ ├── getting-started.md │ ├── index.html │ ├── permissions.md │ └── screenshots.md ├── lang/ │ ├── en/ │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── fr/ │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── fr.json ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public/ │ ├── .htaccess │ ├── index.php │ ├── robots.txt │ └── vendor/ │ └── filament-forms-tinyeditor/ │ └── tinymce/ │ ├── langs/ │ │ ├── README.md │ │ ├── ar.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cs_CZ.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── es_419.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr_FR.js │ │ ├── he_IL.js │ │ ├── hr.js │ │ ├── hu_HU.js │ │ ├── id.js │ │ ├── it_IT.js │ │ ├── ja.js │ │ ├── kab.js │ │ ├── nb_NO.js │ │ ├── nl.js │ │ ├── nl_BE.js │ │ ├── pl.js │ │ ├── pt_BR.js │ │ ├── pt_PT.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── ru_RU.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sv_SE.js │ │ ├── ta.js │ │ ├── ta_IN.js │ │ ├── th_TH.js │ │ ├── tr.js │ │ ├── tr_TR.js │ │ ├── ug.js │ │ ├── zh_CN.js │ │ └── zh_TW.js │ ├── license.txt │ ├── plugins/ │ │ └── emoticons/ │ │ └── js/ │ │ ├── emojiimages.js │ │ └── emojis.js │ ├── skins/ │ │ └── ui/ │ │ ├── dark/ │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.mobile.css │ │ │ ├── skin.css │ │ │ └── skin.mobile.css │ │ └── light/ │ │ ├── content.css │ │ ├── content.inline.css │ │ ├── content.mobile.css │ │ ├── skin.css │ │ └── skin.mobile.css │ └── tinymce.d.ts ├── resources/ │ ├── css/ │ │ ├── app.scss │ │ └── media-queries.scss │ ├── js/ │ │ ├── app.js │ │ └── bootstrap.js │ └── views/ │ ├── administration/ │ │ ├── activity-logs.blade.php │ │ ├── companies.blade.php │ │ ├── roles.blade.php │ │ ├── ticket-priorities.blade.php │ │ ├── ticket-statuses.blade.php │ │ ├── ticket-types.blade.php │ │ └── users.blade.php │ ├── analytics.blade.php │ ├── auth/ │ │ ├── activate-account.blade.php │ │ ├── forgot-password.blade.php │ │ ├── login.blade.php │ │ └── recover-password.blade.php │ ├── components/ │ │ ├── base-layout.blade.php │ │ ├── guest-layout.blade.php │ │ ├── layout.blade.php │ │ ├── main-menu.blade.php │ │ ├── notification-type.blade.php │ │ ├── priority-span.blade.php │ │ ├── role-span.blade.php │ │ ├── status-span.blade.php │ │ ├── type-span.blade.php │ │ └── user-avatar.blade.php │ ├── kanban.blade.php │ ├── livewire/ │ │ ├── administration/ │ │ │ ├── activity-logs.blade.php │ │ │ ├── companies-dialog.blade.php │ │ │ ├── companies.blade.php │ │ │ ├── roles-dialog.blade.php │ │ │ ├── roles.blade.php │ │ │ ├── ticket-priorities-dialog.blade.php │ │ │ ├── ticket-priorities.blade.php │ │ │ ├── ticket-statuses-dialog.blade.php │ │ │ ├── ticket-statuses.blade.php │ │ │ ├── ticket-types-dialog.blade.php │ │ │ ├── ticket-types.blade.php │ │ │ ├── users-dialog.blade.php │ │ │ └── users.blade.php │ │ ├── analytics.blade.php │ │ ├── auth/ │ │ │ ├── activate-account.blade.php │ │ │ ├── forgot-password.blade.php │ │ │ ├── login.blade.php │ │ │ └── recover-password.blade.php │ │ ├── chat.blade.php │ │ ├── my-notifications.blade.php │ │ ├── my-profile.blade.php │ │ ├── projects-dialog.blade.php │ │ ├── projects.blade.php │ │ ├── ticket-details/ │ │ │ ├── content.blade.php │ │ │ ├── priority.blade.php │ │ │ ├── responsible.blade.php │ │ │ ├── status.blade.php │ │ │ ├── title.blade.php │ │ │ └── type.blade.php │ │ ├── ticket-details-comments-content.blade.php │ │ ├── ticket-details-comments.blade.php │ │ ├── ticket-details.blade.php │ │ ├── tickets-dialog.blade.php │ │ └── tickets.blade.php │ ├── my-profile.blade.php │ ├── notifications.blade.php │ ├── tables/ │ │ └── columns/ │ │ └── user-column.blade.php │ ├── ticket-details.blade.php │ ├── tickets.blade.php │ ├── vendor/ │ │ ├── filament-kanban-board/ │ │ │ ├── .gitkeep │ │ │ └── kanban-header.blade.php │ │ └── pagination/ │ │ └── tailwind.blade.php │ └── welcome.blade.php ├── routes/ │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── storage/ │ ├── app/ │ │ └── .gitignore │ ├── framework/ │ │ ├── .gitignore │ │ ├── cache/ │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ ├── testing/ │ │ │ └── .gitignore │ │ └── views/ │ │ └── .gitignore │ └── logs/ │ └── .gitignore ├── tailwind.config.js ├── tests/ │ ├── CreatesApplication.php │ ├── Feature/ │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit/ │ └── ExampleTest.php └── vite.config.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .editorconfig ================================================ root = true [*] charset = utf-8 end_of_line = lf insert_final_newline = true indent_style = space indent_size = 4 trim_trailing_whitespace = true [*.md] trim_trailing_whitespace = false [*.{yml,yaml}] indent_size = 2 [docker-compose.yml] indent_size = 4 ================================================ FILE: .gitattributes ================================================ * text=auto *.blade.php diff=html *.css diff=css *.html diff=html *.md diff=markdown *.php diff=php /.github export-ignore CHANGELOG.md export-ignore .styleci.yml export-ignore resources/* linguist-vendored=true *.scss liguist-vendored=true *.css liguist-vendored=true *.js liguist-vendored=true public/* linguist-vendored=true public/docs/* linguist-documentation=true ================================================ FILE: .github/FUNDING.yml ================================================ github: [heloufir] ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Create a report to help us improve title: '' labels: '' assignees: '' --- **Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] **Smartphone (please complete the following information):** - Device: [e.g. iPhone6] - OS: [e.g. iOS8.1] - Browser [e.g. stock browser, safari] - Version [e.g. 22] **Additional context** Add any other context about the problem here. ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project title: '' labels: '' assignees: '' --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .gitignore ================================================ /node_modules /public/build /public/hot /public/storage /storage/*.key /vendor .env .env.backup .phpunit.result.cache Homestead.json Homestead.yaml auth.json npm-debug.log yarn-error.log /.idea /.vscode ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. ## Our Standards Examples of behavior that contributes to a positive environment for our community include: * Demonstrating empathy and kindness toward other people * Being respectful of differing opinions, viewpoints, and experiences * Giving and gracefully accepting constructive feedback * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience * Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: * The use of sexualized language or imagery, and sexual attention or advances of any kind * Trolling, insulting or derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or email address, without their explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. ## Scope This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at . All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident. ## Enforcement Guidelines Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: ### 1. Correction **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. ### 2. Warning **Community Impact**: A violation through a single incident or series of actions. **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. ### 3. Temporary Ban **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the community. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. ================================================ FILE: LICENSE.md ================================================ The MIT License (MIT) Copyright (c) shuvroroy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: Procfile ================================================ web: vendor/bin/heroku-php-apache2 public/ ================================================ FILE: README.md ================================================ # Help Desk

Laravel v9.x Livewire v2.x Filament v2.x PHP 8.0
GitHub tag License issues - help-desk
view - Documentation
DeepScan grade

Help Desk is a Laravel based project, that let you manage your support tickets and communicate with your customers, with a beautiful and simple to use platform. Help Desk is based on the latest version of Laravel and any other Open Source packages and technologies.
# Version 2 Take a look to the a newer version containing the same options and more: [https://github.com/devaslanphp/project-management](https://github.com/devaslanphp/project-management)
[![SonarCloud](https://sonarcloud.io/images/project_badges/sonarcloud-white.svg)](https://sonarcloud.io/summary/new_code?id=devaslanphp_help-desk) Below are the analyzes reported by SonarCloud. > This project has just started so don't be afraid if there are big numbers :satisfied: [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=devaslanphp_help-desk&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=devaslanphp_help-desk) [![Bugs](https://sonarcloud.io/api/project_badges/measure?project=devaslanphp_help-desk&metric=bugs)](https://sonarcloud.io/summary/new_code?id=devaslanphp_help-desk) [![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=devaslanphp_help-desk&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=devaslanphp_help-desk) [![Duplicated Lines (%)](https://sonarcloud.io/api/project_badges/measure?project=devaslanphp_help-desk&metric=duplicated_lines_density)](https://sonarcloud.io/summary/new_code?id=devaslanphp_help-desk) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=devaslanphp_help-desk&metric=reliability_rating)](https://sonarcloud.io/summary/new_code?id=devaslanphp_help-desk) [![Technical Debt](https://sonarcloud.io/api/project_badges/measure?project=devaslanphp_help-desk&metric=sqale_index)](https://sonarcloud.io/summary/new_code?id=devaslanphp_help-desk) [![Lines of Code](https://sonarcloud.io/api/project_badges/measure?project=devaslanphp_help-desk&metric=ncloc)](https://sonarcloud.io/summary/new_code?id=devaslanphp_help-desk) [![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=devaslanphp_help-desk&metric=code_smells)](https://sonarcloud.io/summary/new_code?id=devaslanphp_help-desk) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=devaslanphp_help-desk&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=devaslanphp_help-desk)
## Screenshots
## Online demo You can check our online demo here: [Online demo](http://helpdesk.devaslan.com/) > **Use the following accounts to access demo:** > > *Important: The save / delete users functions are disabled only in demo instance* > > **Administrator** > - Email: darkvador@gmail.com > - Password: secret > > **Customer** > - Email: janedoe@gmail.com > - Password: secret > > **Employee** > - Email: johndoe@gmail.com > - Password: secret ## Documentation You can find a full documentation here: [Documentation](https://devaslanphp.github.io/help-desk/) ## Work in progress We are always working to make Help Desk a better application, to have more information about tasks and features in progress, you can see the [Help Desk project](https://github.com/orgs/devaslanphp/projects/1). ## Credits - [All Contributors](https://github.com/devaslanphp/help-desk/graphs/contributors) ## License The MIT License (MIT). Please see [License File](LICENSE.md) for more information. ## Support us Buy Me A Coffee ================================================ FILE: SECURITY.md ================================================ # Security Policy ## Supported Versions | Version | Supported | | ------- | ------------------ | | 1.x | :white_check_mark: | ## Reporting a Vulnerability If you discover a security vulnerability within Help Desk application, please email me via [eloufirhatim@gmail.com](mailto:eloufirhatim@gmail.com). All security vulnerabilities will be promptly addressed. ================================================ FILE: app/Console/Kernel.php ================================================ command('inspire')->hourly(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } } ================================================ FILE: app/Core/CrudDialogHelper.php ================================================ deleteConfirmationOpened = true; Notification::make() ->warning() ->title($title) ->body($body) ->actions([ Action::make('confirm') ->label(__('Confirm')) ->color('danger') ->button() ->close() ->emit($deleteEvent), Action::make('cancel') ->label(__('Cancel')) ->close() ->emit($cancelEvent) ]) ->persistent() ->send(); } } ================================================ FILE: app/Core/HasLogsActivity.php ================================================ logOnly($this->getFillable()) ->setDescriptionForEvent(fn(string $eventName) => new HtmlString( '
' . (auth()->user()->name ?? '') . " " . $eventName . " " . $this->fromCamelCase((new \ReflectionClass($this))->getShortName()) . " " . $this . ' ' . __('See details') . '' . '
' )); } /** * Transform a camel case to normal case * * @param $input * @return string */ private function fromCamelCase($input) { $pattern = '!([A-Z][A-Z0-9]*(?=$|[A-Z][a-z0-9])|[A-Za-z][a-z0-9]+)!'; preg_match_all($pattern, $input, $matches); $ret = $matches[0]; foreach ($ret as &$match) { $match = $match == strtoupper($match) ? strtolower($match) : lcfirst($match); } return implode(' ', $ret); } } ================================================ FILE: app/Exceptions/Handler.php ================================================ , \Psr\Log\LogLevel::*> */ protected $levels = [ // ]; /** * A list of the exception types that are not reported. * * @var array> */ protected $dontReport = [ // ]; /** * A list of the inputs that are never flashed to the session on validation exceptions. * * @var array */ protected $dontFlash = [ 'current_password', 'password', 'password_confirmation', ]; /** * Register the exception handling callbacks for the application. * * @return void */ public function register() { $this->reportable(function (Throwable $e) { // }); } } ================================================ FILE: app/Http/Controllers/Auth/LogoutController.php ================================================ session()->regenerateToken(); return redirect('/'); } } ================================================ FILE: app/Http/Controllers/Controller.php ================================================ whereHas('project', fn($query) => $query->where('ticket_prefix', $ticketPrefix)) ->first(); if ($ticket) { return redirect()->route('tickets.details', [ 'ticket' => $ticket, 'slug' => Str::slug($ticket->title) ]); } else { abort(404); } } } ================================================ FILE: app/Http/Kernel.php ================================================ */ protected $middleware = [ // \App\Http\Middleware\TrustHosts::class, \App\Http\Middleware\TrustProxies::class, \Illuminate\Http\Middleware\HandleCors::class, \App\Http\Middleware\PreventRequestsDuringMaintenance::class, \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class, \App\Http\Middleware\TrimStrings::class, \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class, ]; /** * The application's route middleware groups. * * @var array> */ protected $middlewareGroups = [ 'web' => [ \App\Http\Middleware\EncryptCookies::class, \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, \Illuminate\Session\Middleware\StartSession::class, \Illuminate\View\Middleware\ShareErrorsFromSession::class, \App\Http\Middleware\VerifyCsrfToken::class, \Illuminate\Routing\Middleware\SubstituteBindings::class, ], 'api' => [ // \Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class, 'throttle:api', \Illuminate\Routing\Middleware\SubstituteBindings::class, ], ]; /** * The application's route middleware. * * These middleware may be assigned to groups or used individually. * * @var array */ protected $routeMiddleware = [ 'auth' => \App\Http\Middleware\Authenticate::class, 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, 'auth.session' => \Illuminate\Session\Middleware\AuthenticateSession::class, 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, 'can' => \Illuminate\Auth\Middleware\Authorize::class, 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, 'signed' => \App\Http\Middleware\ValidateSignature::class, 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, 'can_access_ticket' => \App\Http\Middleware\CanAccessTicket::class, 'set_locale' => \App\Http\Middleware\LocaleMiddleware::class, ]; } ================================================ FILE: app/Http/Livewire/Administration/ActivityLogs.php ================================================ form->fill(); } public function render() { $query = Activity::query(); $query->orderby('created_at', 'desc'); if ($this->search) { $query->where('description', 'like', '%' . $this->search . '%'); } $logs = $query->paginate(); return view('livewire.administration.activity-logs', compact('logs')); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ Grid::make(1) ->schema([ TextInput::make('search') ->label(__('Search for activity logs')) ->disableLabel() ->type('search') ->placeholder(__('Search for activity logs')), ]), ]; } /** * Search for activity logs * * @return void */ public function search(): void { $data = $this->form->getState(); $this->search = $data['search'] ?? null; } } ================================================ FILE: app/Http/Livewire/Administration/Companies.php ================================================ user()->can('View own companies') && !auth()->user()->can('View all companies')) { $query->where('responsible_id', auth()->user()->id); } elseif (!auth()->user()->can('View all companies')) { // Get empty list $query->whereNull('id'); } return $query; } /** * Table definition * * @return array */ protected function getTableColumns(): array { return [ ImageColumn::make('logo') ->label(__('Logo')) ->height(30), TextColumn::make('name') ->label(__('Company name')) ->searchable() ->sortable(), UserColumn::make('responsible') ->label(__('Responsible')) ->searchable() ->sortable(), BooleanColumn::make('is_disabled') ->label(__('Company activated')) ->trueIcon('heroicon-o-x-circle') ->falseIcon('heroicon-o-check-circle') ->trueColor('danger') ->falseColor('success') ->searchable() ->sortable(), TagsColumn::make('users.name') ->label(__('Company users')) ->limit(1) ->searchable() ->sortable(), TextColumn::make('created_at') ->label(__('Created at')) ->sortable() ->searchable() ->dateTime(), ]; } /** * Table actions definition * * @return array */ protected function getTableActions(): array { return [ Action::make('edit') ->icon('heroicon-o-pencil') ->link() ->label(__('Edit company')) ->visible(fn () => auth()->user()->can('Update companies')) ->action(fn(Company $record) => $this->updateCompany($record->id)) ]; } /** * Table header actions definition * * @return array */ protected function getTableHeaderActions(): array { return [ ExportAction::make() ->label(__('Export')) ->color('success') ->icon('heroicon-o-document-download') ->exports([ ExcelExport::make() ->askForWriterType() ->withFilename('companies-export') ->withColumns([ Column::make('name') ->heading(__('Company name')), Column::make('responsible.name') ->heading(__('Responsible')), Column::make('is_disabled') ->heading(__('Company activated')) ->formatStateUsing(fn (bool $state) => $state ? __('No') : __('Yes')), Column::make('users') ->heading(__('Company users')) ->formatStateUsing(fn (Company $record) => $record->users->pluck('name')->join(', ')), Column::make('created_at') ->heading(__('Created at')) ->formatStateUsing(fn (Carbon $state) => $state->format(__('Y-m-d g:i A'))), ]) ]) ]; } /** * Table default sort column definition * * @return string|null */ protected function getDefaultTableSortColumn(): ?string { return 'created_at'; } /** * Table default sort direction definition * * @return string|null */ protected function getDefaultTableSortDirection(): ?string { return 'desc'; } /** * Show update company dialog * * @param $id * @return void */ public function updateCompany($id) { $this->selectedCompany = Company::find($id); $this->dispatchBrowserEvent('toggleCompanyModal'); } /** * Show create company dialog * * @return void */ public function createCompany() { $this->selectedCompany = new Company(); $this->dispatchBrowserEvent('toggleCompanyModal'); } /** * Cancel and close company create / update dialog * * @return void */ public function cancelCompany() { $this->selectedCompany = null; $this->dispatchBrowserEvent('toggleCompanyModal'); } /** * Event launched after a company is created / updated * * @return void */ public function companySaved() { $this->cancelCompany(); } /** * Event launched after a company is deleted * * @return void */ public function companyDeleted() { $this->companySaved(); } } ================================================ FILE: app/Http/Livewire/Administration/CompaniesDialog.php ================================================ form->fill([ 'name' => $this->company->name, 'logo' => $this->company->logo, 'description' => $this->company->description, 'is_disabled' => $this->company->is_disabled, 'responsible_id' => $this->company->responsible_id, 'users' => $this->company->users->pluck('id')->toArray() ]); } public function render() { return view('livewire.administration.companies-dialog'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ Grid::make(5) ->schema([ Grid::make(1) ->columnSpan(2) ->schema([ FileUpload::make('logo') ->image() ->maxSize(10240) ->label(__('Logo')), ]), Grid::make(1) ->columnSpan(3) ->schema([ TextInput::make('name') ->label(__('Company name')) ->maxLength(255) ->unique( table: Company::class, column: 'name', ignorable: fn() => $this->company, callback: fn (Unique $rule) => $rule->withoutTrashed() ) ->required(), Select::make('responsible_id') ->label(__('Responsible')) ->searchable() ->required() ->options(User::all()->pluck('name', 'id')->toArray()), ]), ]), RichEditor::make('description') ->label(__('Description')) ->fileAttachmentsDisk(config('filesystems.default')) ->fileAttachmentsDirectory('companies') ->fileAttachmentsVisibility('private'), Toggle::make('is_disabled') ->label(__('Disable access to this company')), MultiSelect::make('users') ->label(__('Company users')) ->options(User::all()->pluck('name', 'id')->toArray()) ]; } /** * Create / Update the company * * @return void */ public function save(): void { $data = $this->form->getState(); if (!$this->company?->id) { $company = Company::create([ 'name' => $data['name'], 'logo' => $data['logo'] ?? null, 'description' => $data['description'] ?? null, 'is_disabled' => $data['is_disabled'] ?? false, 'responsible_id' => $data['responsible_id'], ]); foreach ($data['users'] as $user) { CompanyUser::create([ 'company_id' => $company->id, 'user_id' => $user ]); } Notification::make() ->success() ->title(__('Company created')) ->body(__('The company has been created')) ->send(); } else { $this->company->name = $data['name']; $this->company->description = $data['description']; $this->company->logo = $data['logo']; $this->company->is_disabled = $data['is_disabled']; $this->company->responsible_id = $data['responsible_id']; $this->company->save(); CompanyUser::where('company_id', $this->company->id)->delete(); foreach ($data['users'] as $user) { CompanyUser::create([ 'company_id' => $this->company->id, 'user_id' => $user ]); } Notification::make() ->success() ->title(__('Company updated')) ->body(__("The company's details has been updated")) ->send(); } $this->emit('companySaved'); } /** * Delete an existing company * * @return void */ public function doDeleteCompany(): void { $this->company->delete(); $this->deleteConfirmationOpened = false; $this->emit('companyDeleted'); Notification::make() ->success() ->title(__('Company deleted')) ->body(__('The company has been deleted')) ->send(); } /** * Cancel the deletion of a company * * @return void */ public function cancelDeleteCompany(): void { $this->deleteConfirmationOpened = false; } /** * Show the delete company confirmation dialog * * @return void * @throws \Exception */ public function deleteCompany(): void { $this->deleteConfirmation( __('Company deletion'), __('Are you sure you want to delete this company?'), 'doDeleteCompany', 'cancelDeleteCompany' ); } } ================================================ FILE: app/Http/Livewire/Administration/Roles.php ================================================ orderBy('created_at', 'desc'); return $query; } /** * Table definition * * @return array */ protected function getTableColumns(): array { return [ TextColumn::make('name') ->label(__('Role name')) ->searchable() ->sortable(), TextColumn::make('created_at') ->label(__('Created at')) ->sortable() ->searchable() ->dateTime(), ]; } /** * Table actions definition * * @return array */ protected function getTableActions(): array { return [ Action::make('edit') ->icon('heroicon-o-pencil') ->link() ->label(__('Edit role')) ->visible(fn () => auth()->user()->can('Update user roles')) ->action(fn(Role $record) => $this->updateRole($record->id)) ]; } /** * Table header actions definition * * @return array */ protected function getTableHeaderActions(): array { return [ ExportAction::make() ->label(__('Export')) ->color('success') ->icon('heroicon-o-document-download') ->exports([ ExcelExport::make() ->askForWriterType() ->withFilename('user-roles-export') ->withColumns([ Column::make('name') ->heading(__('Role name')), Column::make('permissions') ->heading(__('Permissions')) ->formatStateUsing( fn (Role $record) => $record->permissions->pluck('name')->join(', ') ), Column::make('created_at') ->heading(__('Created at')) ->formatStateUsing(fn (Carbon $state) => $state->format(__('Y-m-d g:i A'))), ]) ]) ]; } /** * Table default sort column definition * * @return string|null */ protected function getDefaultTableSortColumn(): ?string { return 'created_at'; } /** * Table default sort direction definition * * @return string|null */ protected function getDefaultTableSortDirection(): ?string { return 'desc'; } /** * Show update role dialog * * @param $id * @return void */ public function updateRole($id) { $this->selectedRole = Role::find($id); $this->dispatchBrowserEvent('toggleRoleModal'); } /** * Show create role dialog * * @return void */ public function createRole() { $this->selectedRole = new Role(); $this->dispatchBrowserEvent('toggleRoleModal'); } /** * Cancel and close role create / update dialog * * @return void */ public function cancelRole() { $this->selectedRole = null; $this->dispatchBrowserEvent('toggleRoleModal'); } /** * Event launched after a role is created / updated * * @return void */ public function roleSaved() { $this->cancelRole(); } /** * Event launched after a role is deleted * * @return void */ public function roleDeleted() { $this->roleSaved(); } } ================================================ FILE: app/Http/Livewire/Administration/RolesDialog.php ================================================ form->fill([ 'name' => $this->role->name, 'permissions' => $this->role->permissions->pluck('id')->toArray(), ]); } public function render() { return view('livewire.administration.roles-dialog'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ TextInput::make('name') ->label(__('Role name')) ->maxLength(255) ->required(), CheckboxList::make('permissions') ->label(__('Permissions')) ->hint(new HtmlString('
|
')) ->columns(3) ->options(Permission::orderBy('name')->get()->pluck('name', 'id')->toArray()) ]; } /** * Assign all permissions * * @return void */ public function assignAllPermissions(): void { $this->permissions = Permission::all()->pluck('id')->toArray(); } /** * Remove all assigned permissions * * @return void */ public function removeAllPermissions(): void { $this->permissions = []; } /** * Create / Update the role * * @return void */ public function save(): void { $data = $this->form->getState(); if (!$this->role?->id) { $role = Role::create(['name' => $data['name']]); $role->syncPermissions($this->permissions); Notification::make() ->success() ->title(__('Role created')) ->body(__('The user role has been created')) ->send(); } else { $this->role->name = $data['name']; $this->role->save(); $this->role->syncPermissions($this->permissions); Notification::make() ->success() ->title(__('Role updated')) ->body(__('The role\'s details has been updated')) ->send(); } $this->emit('roleSaved'); } /** * Delete an existing role * * @return void */ public function doDeleteRole(): void { $this->role->delete(); $this->deleteConfirmationOpened = false; $this->emit('roleDeleted'); Notification::make() ->success() ->title(__('Role deleted')) ->body(__('The role has been deleted')) ->send(); } /** * Cancel the deletion of a role * * @return void */ public function cancelDeleteRole(): void { $this->deleteConfirmationOpened = false; } /** * Show the delete role confirmation dialog * * @return void * @throws \Exception */ public function deleteRole(): void { $this->deleteConfirmation( __('Role deletion'), __('Are you sure you want to delete this role?'), 'doDeleteRole', 'cancelDeleteRole' ); } } ================================================ FILE: app/Http/Livewire/Administration/TicketPriorities.php ================================================ label(__('Title')) ->searchable() ->sortable() ->formatStateUsing(fn(TicketPriority $record) => new HtmlString(' ' . $record->title . ' ')), TextColumn::make('created_at') ->label(__('Created at')) ->sortable() ->searchable() ->dateTime(), ]; } /** * Table actions definition * * @return array */ protected function getTableActions(): array { return [ Action::make('edit') ->icon('heroicon-o-pencil') ->link() ->label(__('Edit priority')) ->action(fn(TicketPriority $record) => $this->updatePriority($record->id)) ]; } /** * Table header actions definition * * @return array */ protected function getTableHeaderActions(): array { return [ ExportAction::make() ->label(__('Export')) ->color('success') ->icon('heroicon-o-document-download') ->exports([ ExcelExport::make() ->askForWriterType() ->withFilename('ticket-priorities-export') ->withColumns([ Column::make('title') ->heading(__('Title')), Column::make('created_at') ->heading(__('Created at')) ->formatStateUsing(fn(Carbon $state) => $state->format(__('Y-m-d g:i A'))), ]) ]) ]; } /** * Table default sort column definition * * @return string|null */ protected function getDefaultTableSortColumn(): ?string { return 'created_at'; } /** * Table default sort direction definition * * @return string|null */ protected function getDefaultTableSortDirection(): ?string { return 'desc'; } /** * Show update priority dialog * * @param $id * @return void */ public function updatePriority($id) { $this->selectedPriority = TicketPriority::find($id); $this->dispatchBrowserEvent('togglePriorityModal'); } /** * Show create priority dialog * * @return void */ public function createPriority() { $this->selectedPriority = new TicketPriority(); $this->dispatchBrowserEvent('togglePriorityModal'); } /** * Cancel and close priority create / update dialog * * @return void */ public function cancelPriority() { $this->selectedPriority = null; $this->dispatchBrowserEvent('togglePriorityModal'); } /** * Event launched after a priority is created / updated * * @return void */ public function prioritySaved() { $this->cancelPriority(); } /** * Event launched after a priority is deleted * * @return void */ public function priorityDeleted() { $this->prioritySaved(); } } ================================================ FILE: app/Http/Livewire/Administration/TicketPrioritiesDialog.php ================================================ form->fill([ 'title' => $this->priority->title, 'text_color' => $this->priority->text_color, 'bg_color' => $this->priority->bg_color, 'icon' => $this->priority->icon, ]); } public function render() { return view('livewire.administration.ticket-priorities-dialog'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ TextInput::make('title') ->label(__('Title')) ->maxLength(255) ->unique( table: TicketPriority::class, column: 'title', ignorable: fn () => $this->priority, callback: function (Unique $rule) { return $rule->withoutTrashed(); } ) ->required(), ColorPicker::make('text_color') ->label(__('Text color')) ->required(), ColorPicker::make('bg_color') ->label(__('Background color')) ->required(), Select::make('icon') ->label(__('Icon')) ->reactive() ->searchable() ->required() ->getSearchResultsUsing( fn (string $search) => Icon::where('icon', 'like', "%{$search}%") ->limit(50) ->pluck('icon', 'icon') ) ->getOptionLabelUsing(fn ($value): ?string => Icon::where('icon', $value)->first()?->icon) ->hint( fn (Closure $get) => $get('icon') ? new HtmlString( __('Selected icon:') . ' ' ) : '' ) ->helperText( new HtmlString( __("Check the fontawesome icons here to choose your right icon" ) ) ), ]; } /** * Create / Update the priority * * @return void */ public function save(): void { $data = $this->form->getState(); if (!$this->priority?->id) { TicketPriority::create([ 'title' => $data['title'], 'text_color' => $data['text_color'], 'bg_color' => $data['bg_color'], 'icon' => $data['icon'], 'slug' => Str::slug($data['title'], '_') ]); Notification::make() ->success() ->title(__('Priority created')) ->body(__('The priority has been created')) ->send(); } else { $this->priority->title = $data['title']; $this->priority->text_color = $data['text_color']; $this->priority->bg_color = $data['bg_color']; $this->priority->icon = $data['icon']; $this->priority->save(); Notification::make() ->success() ->title(__('Priority updated')) ->body(__('The priority\'s details has been updated')) ->send(); } $this->emit('prioritySaved'); } /** * Delete an existing priority * * @return void */ public function doDeletePriority(): void { $this->priority->delete(); $this->deleteConfirmationOpened = false; $this->emit('priorityDeleted'); Notification::make() ->success() ->title(__('Priority deleted')) ->body(__('The priority has been deleted')) ->send(); } /** * Cancel the deletion of a priority * * @return void */ public function cancelDeletePriority(): void { $this->deleteConfirmationOpened = false; } /** * Show the delete priority confirmation dialog * * @return void * @throws \Exception */ public function deletePriority(): void { $this->deleteConfirmation( __('Priority deletion'), __('Are you sure you want to delete this priority?'), 'doDeletePriority', 'cancelDeletePriority' ); } } ================================================ FILE: app/Http/Livewire/Administration/TicketStatuses.php ================================================ label(__('Title')) ->searchable() ->sortable() ->formatStateUsing(fn(TicketStatus $record) => new HtmlString(' ' . $record->title . ' ')), BooleanColumn::make('default') ->label(__('Default status')) ->sortable() ->searchable(), TextColumn::make('created_at') ->label(__('Created at')) ->sortable() ->searchable() ->dateTime(), ]; } /** * Table actions definition * * @return array */ protected function getTableActions(): array { return [ Action::make('edit') ->icon('heroicon-o-pencil') ->link() ->label(__('Edit status')) ->action(fn(TicketStatus $record) => $this->updateStatus($record->id)) ]; } /** * Table header actions definition * * @return array */ protected function getTableHeaderActions(): array { return [ ExportAction::make() ->label(__('Export')) ->color('success') ->icon('heroicon-o-document-download') ->exports([ ExcelExport::make() ->askForWriterType() ->withFilename('ticket-statuses-export') ->withColumns([ Column::make('title') ->heading(__('Title')), Column::make('created_at') ->heading(__('Created at')) ->formatStateUsing(fn(Carbon $state) => $state->format(__('Y-m-d g:i A'))), ]) ]) ]; } /** * Table default sort column definition * * @return string|null */ protected function getDefaultTableSortColumn(): ?string { return 'created_at'; } /** * Table default sort direction definition * * @return string|null */ protected function getDefaultTableSortDirection(): ?string { return 'desc'; } /** * Show update status dialog * * @param $id * @return void */ public function updateStatus($id) { $this->selectedStatus = TicketStatus::find($id); $this->dispatchBrowserEvent('toggleStatusModal'); } /** * Show create status dialog * * @return void */ public function createStatus() { $this->selectedStatus = new TicketStatus(); $this->dispatchBrowserEvent('toggleStatusModal'); } /** * Cancel and close status create / update dialog * * @return void */ public function cancelStatus() { $this->selectedStatus = null; $this->dispatchBrowserEvent('toggleStatusModal'); } /** * Event launched after a status is created / updated * * @return void */ public function statusSaved() { $this->cancelStatus(); } /** * Event launched after a status is deleted * * @return void */ public function statusDeleted() { $this->statusSaved(); } } ================================================ FILE: app/Http/Livewire/Administration/TicketStatusesDialog.php ================================================ form->fill([ 'title' => $this->status->title, 'text_color' => $this->status->text_color, 'bg_color' => $this->status->bg_color, 'default' => $this->status->default, ]); } public function render() { return view('livewire.administration.ticket-statuses-dialog'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ TextInput::make('title') ->label(__('Title')) ->maxLength(255) ->unique( table: TicketStatus::class, column: 'title', ignorable: fn() => $this->status, callback: function (Unique $rule) { return $rule->withoutTrashed(); } ) ->required(), ColorPicker::make('text_color') ->label(__('Text color')) ->required(), ColorPicker::make('bg_color') ->label(__('Background color')) ->required(), Checkbox::make('default') ->label(__('Default status')) ->helperText(__('Check this box if this status should be assigned by default to new tickets')), ]; } /** * Create / Update the status * * @return void */ public function save(): void { $data = $this->form->getState(); if (!$this->status?->id) { $status = TicketStatus::create([ 'title' => $data['title'], 'text_color' => $data['text_color'], 'bg_color' => $data['bg_color'], 'default' => $data['default'], 'slug' => Str::slug($data['title'], '_') ]); Notification::make() ->success() ->title(__('Status created')) ->body(__('The status has been created')) ->send(); if ($status->default) { TicketStatus::where('id', '<>', $status->id)->update(['default' => false]); } } else { $this->status->title = $data['title']; $this->status->text_color = $data['text_color']; $this->status->bg_color = $data['bg_color']; $this->status->default = $data['default']; $this->status->save(); Notification::make() ->success() ->title(__('Status updated')) ->body(__('The status\'s details has been updated')) ->send(); TicketStatus::where('id', '<>', $this->status->id)->update(['default' => false]); } if (TicketStatus::where('default', true)->count() === 0) { $first = TicketStatus::first(); $first->default = true; $first->save(); } $this->emit('statusSaved'); } /** * Delete an existing status * * @return void */ public function doDeleteStatus(): void { $this->status->delete(); $this->deleteConfirmationOpened = false; $this->emit('statusDeleted'); Notification::make() ->success() ->title(__('Status deleted')) ->body(__('The status has been deleted')) ->send(); } /** * Cancel the deletion of a status * * @return void */ public function cancelDeleteStatus(): void { $this->deleteConfirmationOpened = false; } /** * Show the delete status confirmation dialog * * @return void * @throws \Exception */ public function deleteStatus(): void { $this->deleteConfirmation( __('Status deletion'), __('Are you sure you want to delete this status?'), 'doDeleteStatus', 'cancelDeleteStatus' ); } } ================================================ FILE: app/Http/Livewire/Administration/TicketTypes.php ================================================ label(__('Title')) ->searchable() ->sortable() ->formatStateUsing(fn(TicketType $record) => new HtmlString(' ' . $record->title . ' ')), TextColumn::make('created_at') ->label(__('Created at')) ->sortable() ->searchable() ->dateTime(), ]; } /** * Table actions definition * * @return array */ protected function getTableActions(): array { return [ Action::make('edit') ->icon('heroicon-o-pencil') ->link() ->label(__('Edit type')) ->action(fn(TicketType $record) => $this->updateType($record->id)) ]; } /** * Table header actions definition * * @return array */ protected function getTableHeaderActions(): array { return [ ExportAction::make() ->label(__('Export')) ->color('success') ->icon('heroicon-o-document-download') ->exports([ ExcelExport::make() ->askForWriterType() ->withFilename('ticket-types-export') ->withColumns([ Column::make('title') ->heading(__('Title')), Column::make('created_at') ->heading(__('Created at')) ->formatStateUsing(fn(Carbon $state) => $state->format(__('Y-m-d g:i A'))), ]) ]) ]; } /** * Table default sort column definition * * @return string|null */ protected function getDefaultTableSortColumn(): ?string { return 'created_at'; } /** * Table default sort direction definition * * @return string|null */ protected function getDefaultTableSortDirection(): ?string { return 'desc'; } /** * Show update type dialog * * @param $id * @return void */ public function updateType($id) { $this->selectedType = TicketType::find($id); $this->dispatchBrowserEvent('toggleTypeModal'); } /** * Show create type dialog * * @return void */ public function createType() { $this->selectedType = new TicketType(); $this->dispatchBrowserEvent('toggleTypeModal'); } /** * Cancel and close type create / update dialog * * @return void */ public function cancelType() { $this->selectedType = null; $this->dispatchBrowserEvent('toggleTypeModal'); } /** * Event launched after a type is created / updated * * @return void */ public function typeSaved() { $this->cancelType(); } /** * Event launched after a type is deleted * * @return void */ public function typeDeleted() { $this->typeSaved(); } } ================================================ FILE: app/Http/Livewire/Administration/TicketTypesDialog.php ================================================ form->fill([ 'title' => $this->type->title, 'text_color' => $this->type->text_color, 'bg_color' => $this->type->bg_color, 'icon' => $this->type->icon, ]); } public function render() { return view('livewire.administration.ticket-types-dialog'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ TextInput::make('title') ->label(__('Title')) ->maxLength(255) ->unique( table: TicketType::class, column: 'title', ignorable: fn() => $this->type, callback: function (Unique $rule) { return $rule->withoutTrashed(); } ) ->required(), ColorPicker::make('text_color') ->label(__('Text color')) ->required(), ColorPicker::make('bg_color') ->label(__('Background color')) ->required(), Select::make('icon') ->label(__('Icon')) ->reactive() ->searchable() ->required() ->getSearchResultsUsing( fn(string $search) => Icon::where('icon', 'like', "%{$search}%") ->limit(50) ->pluck('icon', 'icon') ) ->getOptionLabelUsing(fn($value): ?string => Icon::where('icon', $value)->first()?->icon) ->hint( fn(Closure $get) => $get('icon') ? new HtmlString( __('Selected icon:') . ' ') : '' ) ->helperText( new HtmlString( __( "Check the fontawesome icons here to choose your right icon"))), ]; } /** * Create / Update the type * * @return void */ public function save(): void { $data = $this->form->getState(); if (!$this->type?->id) { TicketType::create([ 'title' => $data['title'], 'text_color' => $data['text_color'], 'bg_color' => $data['bg_color'], 'icon' => $data['icon'], 'slug' => Str::slug($data['title'], '_') ]); Notification::make() ->success() ->title(__('Type created')) ->body(__('The type has been created')) ->send(); } else { $this->type->title = $data['title']; $this->type->text_color = $data['text_color']; $this->type->bg_color = $data['bg_color']; $this->type->icon = $data['icon']; $this->type->save(); Notification::make() ->success() ->title(__('Type updated')) ->body(__('The type\'s details has been updated')) ->send(); } $this->emit('typeSaved'); } /** * Delete an existing type * * @return void */ public function doDeleteType(): void { $this->type->delete(); $this->deleteConfirmationOpened = false; $this->emit('typeDeleted'); Notification::make() ->success() ->title(__('Type deleted')) ->body(__('The type has been deleted')) ->send(); } /** * Cancel the deletion of a type * * @return void */ public function cancelDeleteType(): void { $this->deleteConfirmationOpened = false; } /** * Show the delete type confirmation dialog * * @return void * @throws \Exception */ public function deleteType(): void { $this->deleteConfirmation( __('Type deletion'), __('Are you sure you want to delete this type?'), 'doDeleteType', 'cancelDeleteType' ); } } ================================================ FILE: app/Http/Livewire/Administration/Users.php ================================================ user()->can('View company users') && !auth()->user()->can('View all users')) { $query->whereHas( 'companies', fn($query) => $query->whereIn( 'companies.id', auth()->user()->ownCompanies->pluck('id')->toArray() ) ); } elseif (!auth()->user()->can('View all users')) { // Get empty list $query->whereNull('id'); } return $query; } /** * Table definition * * @return array */ protected function getTableColumns(): array { return [ TextColumn::make('name') ->label(__('Full name')) ->searchable() ->sortable(), BooleanColumn::make('isAccountActivated') ->label(__('Account activated')), TagsColumn::make('roles.name') ->label(__('User roles')) ->limit(1) ->visible(fn() => auth()->user()->can('Assign permissions')) ->searchable() ->sortable(), TagsColumn::make('companies.name') ->label(__('Companies')) ->limit(1) ->searchable() ->sortable(), TextColumn::make('created_at') ->label(__('Created at')) ->sortable() ->searchable() ->dateTime(), ]; } /** * Table actions definition * * @return array */ protected function getTableActions(): array { return [ Action::make('resend_email_registration') ->icon('heroicon-o-at-symbol') ->link() ->color('warning') ->label(__('Resend activation email')) ->visible(fn(User $record) => $record->register_token && auth()->user()->can('Update users')) ->action(fn(User $record) => $this->resendActivationEmail($record->id)), Action::make('edit') ->icon('heroicon-o-pencil') ->link() ->label(__('Edit user')) ->visible(fn() => auth()->user()->can('Update users')) ->action(fn(User $record) => $this->updateUser($record->id)) ]; } /** * Table header actions definition * * @return array */ protected function getTableHeaderActions(): array { return [ ExportAction::make() ->label(__('Export')) ->color('success') ->icon('heroicon-o-document-download') ->exports([ ExcelExport::make() ->askForWriterType() ->withFilename('users-export') ->withColumns([ Column::make('name') ->heading(__('Full name')), Column::make('companies') ->heading(__('Companies')) ->formatStateUsing( fn(User $record) => $record->companies->pluck('name')->join(', ') ), Column::make('roles') ->heading(__('User roles')) ->formatStateUsing( fn(User $record) => $record->roles->pluck('name')->join(', ') ), Column::make('created_at') ->heading(__('Created at')) ->formatStateUsing(fn(Carbon $state) => $state->format(__('Y-m-d g:i A'))), ]) ]) ]; } /** * Table default sort column definition * * @return string|null */ protected function getDefaultTableSortColumn(): ?string { return 'created_at'; } /** * Table default sort direction definition * * @return string|null */ protected function getDefaultTableSortDirection(): ?string { return 'desc'; } /** * Table filters definition * * @return array */ protected function getTableFilters(): array { return [ SelectFilter::make('isAccountActivated') ->label(__('Account activated')) ->placeholder(__('All users')) ->options([ 'yes' => __('Yes'), 'no' => __('No'), ]) ->query(function ($state, $query) { if ($state['value'] === 'yes') { $query->whereNull('register_token'); } if ($state['value'] === 'no') { $query->whereNotNull('register_token'); } }) ]; } /** * Show update user dialog * * @param $id * @return void */ public function updateUser($id) { $this->selectedUser = User::find($id); $this->dispatchBrowserEvent('toggleUserModal'); } /** * Show create user dialog * * @return void */ public function createUser() { $this->selectedUser = new User(); $this->dispatchBrowserEvent('toggleUserModal'); } /** * Cancel and close user create / update dialog * * @return void */ public function cancelUser() { $this->selectedUser = null; $this->dispatchBrowserEvent('toggleUserModal'); } /** * Event launched after a user is created / updated * * @return void */ public function userSaved() { $this->cancelUser(); } /** * Event launched after a user is deleted * * @return void */ public function userDeleted() { $this->userSaved(); } /** * Resend the account activation email to a specific user * * @param int $userId * @return void */ public function resendActivationEmail(int $userId) { $user = User::find($userId); if ($user->register_token) { $user->notify(new UserCreatedNotification($user)); Notification::make() ->success() ->title(__('Success')) ->body(__('An email has been sent to the user')) ->send(); } } } ================================================ FILE: app/Http/Livewire/Administration/UsersDialog.php ================================================ form->fill([ 'name' => $this->user->name, 'email' => $this->user->email, 'locale' => $this->user->locale ?? config('app.locale'), 'roles' => $this->user->roles->pluck('id')->toArray(), ]); } public function render() { return view('livewire.administration.users-dialog'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ Grid::make() ->schema([ TextInput::make('name') ->label(__('Full name')) ->maxLength(255) ->required(), TextInput::make('email') ->label(__('Email address')) ->email() ->unique( table: User::class, column: 'email', ignorable: fn() => $this->user->id ? $this->user : null ) ->required(), ]), Grid::make(2) ->schema([ Radio::make('locale') ->label(__('Default language')) ->options(locales()) ->columnSpan(2) ->required(), Select::make('company') ->label(__('Company')) ->columnSpan(1) ->visible( fn() => !$this->user?->id && ( auth()->user()->can('View own companies') && !auth()->user()->can('View all companies') ) ) ->options(fn() => auth()->user()->ownCompanies->pluck('name', 'id')->toArray()), ]), CheckboxList::make('roles') ->label(__('User roles')) ->hint(new HtmlString('
|
')) ->options(Role::orderBy('name')->get()->pluck('name', 'id')->toArray()) ]; } /** * Assign all permissions * * @return void */ public function assignAllRoles(): void { $this->roles = Role::all()->pluck('id')->toArray(); } /** * Remove all assigned permissions * * @return void */ public function removeAllRoles(): void { $this->roles = []; } /** * Create / Update the user * * @return void */ public function save(): void { $data = $this->form->getState(); if (!$this->user?->id) { $user = User::create([ 'name' => $data['name'], 'email' => $data['email'], 'locale' => $data['locale'], 'password' => bcrypt(uniqid()), 'register_token' => Uuid::uuid4()->toString() ]); $user->syncRoles($this->roles); $user->notify(new UserCreatedNotification($user)); Notification::make() ->success() ->title(__('User created')) ->body(__('An email has been sent to the user')) ->send(); if (isset($data['company'])) { CompanyUser::create([ 'user_id' => $user->id, 'company_id' => $data['company'] ]); } } else { $this->user->name = $data['name']; $this->user->email = $data['email']; $this->user->locale = $data['locale']; $this->user->save(); $this->user->syncRoles($this->roles); Notification::make() ->success() ->title(__('User updated')) ->body(__('The user\'s details has been updated')) ->send(); if ($this->user->id == auth()->user()->id) { session()->put('locale', $this->user->locale); } if (isset($data['company'])) { CompanyUser::create([ 'user_id' => $this->user->id, 'company_id' => $data['company'] ]); } } $this->emit('userSaved'); } /** * Delete an existing user * * @return void */ public function doDeleteUser(): void { $this->user->delete(); $this->deleteConfirmationOpened = false; $this->emit('userDeleted'); Notification::make() ->success() ->title(__('User deleted')) ->body(__('The user has been deleted')) ->send(); } /** * Cancel the deletion of a user * * @return void */ public function cancelDeleteUser(): void { $this->deleteConfirmationOpened = false; } /** * Show the delete user confirmation dialog * * @return void * @throws \Exception */ public function deleteUser(): void { $this->deleteConfirmation( __('User deletion'), __('Are you sure you want to delete this user?'), 'doDeleteUser', 'cancelDeleteUser' ); } } ================================================ FILE: app/Http/Livewire/Analytics.php ================================================ loadAssignedTickets(); $this->loadNotAssignedTickets(); $this->loadTicketsAssignments(); $this->loadTicketsByStatuses(); } public function render() { return view('livewire.analytics'); } /** * Load authenticated user assigned tickets * * @return void */ private function loadAssignedTickets(): void { $this->assignedTickets = Ticket::where('responsible_id', auth()->user()->id)->get(); } /** * Load not assigned tickets * * @return void */ private function loadNotAssignedTickets(): void { $this->notAssignedTickets = Ticket::whereNull('responsible_id')->get(); } /** * Load tickets assignements * * @return void */ private function loadTicketsAssignments(): void { $query = Ticket::query(); if (auth()->user()->can('View own tickets') && !auth()->user()->can('View all tickets')) { $query->where(function ($query) { $query->where('owner_id', auth()->user()->id) ->orWhere('responsible_id', auth()->user()->id); }); } $tickets = $query->get()->groupBy('responsible_id')->sort(function ($a, $b) { return ($a->first()->responsible_id ?? 0) > ($b->first()->responsibe_id ?? 0); }); $this->ticketsAssignments = []; foreach ($tickets as $ticket) { $this->ticketsAssignments[$ticket->first()->responsible?->name ?? __('Unassigned')] = $ticket->count(); } } /** * Load tickets by statuses * * @return void */ private function loadTicketsByStatuses(): void { $query = Ticket::query(); if (auth()->user()->can('View own tickets') && !auth()->user()->can('View all tickets')) { $query->where(function ($query) { $query->where('owner_id', auth()->user()->id) ->orWhere('responsible_id', auth()->user()->id); }); } $tickets = $query->get()->groupBy('status'); $this->ticketsByStatuses = []; $statuses = TicketStatus::all(); foreach ($tickets as $ticket) { $status = $statuses->where('slug', $ticket->first()->status)->first(); if ($status) { $this->ticketsByStatuses[$status->title] = $ticket->count(); } } } } ================================================ FILE: app/Http/Livewire/Auth/ActivateAccount.php ================================================ form->fill(); } public function render() { return view('livewire.auth.activate-account'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ Password::make('password') ->label(__('Choose a password')) ->disableLabel() ->placeholder(__('Choose a password')) ->required() ->rule('confirmed'), Password::make('password_confirmation') ->label(__('Confirm your password')) ->disableLabel() ->placeholder(__('Confirm your password')) ->required() ->dehydrated(false), ]; } /** * Activate the user's account * * @return void */ public function activate(): void { $data = $this->form->getState(); $this->user->password = bcrypt($data['password']); $this->user->register_token = null; $this->user->save(); $this->user->notify(new UserActivatedNotification()); Auth::login($this->user); session()->put('locale', $this->user->locale); redirect()->to(route('home')); } } ================================================ FILE: app/Http/Livewire/Auth/ForgotPassword.php ================================================ form->fill([]); } public function render() { return view('livewire.auth.forgot-password'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ TextInput::make('email') ->label(__('Email address')) ->disableLabel() ->placeholder(__('Email address')) ->email() ->exists(table: User::class, column: 'email') ->required(), ]; } /** * Forgot password main function * * @return void * @throws ValidationException */ public function forgotPassword(): void { $data = $this->form->getState(); $status = PasswordFacade::sendResetLink([ 'email' => $data['email'] ]); if ($status === PasswordFacade::RESET_LINK_SENT) { Notification::make() ->success() ->title(__('Success')) ->body(__('A password recovery email has been sent')) ->send(); $this->form->fill(); } else { throw ValidationException::withMessages([ 'email' => __('These credentials do not match our records.'), ]); } } } ================================================ FILE: app/Http/Livewire/Auth/Login.php ================================================ form->fill([ 'email' => null, 'password' => null, 'remember' => false ]); } public function render() { if (session()->get('password_reset')) { Notification::make() ->success() ->title(__('Success')) ->body(__('Your password is now updated')) ->send(); } return view('livewire.auth.login'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ TextInput::make('email') ->label(__('Email address')) ->email() ->disableLabel() ->placeholder(__('Email address')) ->required(), Password::make('password') ->label(__('Password')) ->disableLabel() ->placeholder(__('Password')) ->required(), Checkbox::make('remember') ->label(__('Remember me')), ]; } /** * Login the user main function * * @return void * @throws ValidationException */ public function login(): void { try { $this->rateLimit(5); } catch (TooManyRequestsException $exception) { throw ValidationException::withMessages([ 'email' => __('Too many login attempts. Please try again in :seconds seconds.', [ 'seconds' => $exception->secondsUntilAvailable ]) ]); } $data = $this->form->getState(); if (!Auth::attempt([ 'email' => $data['email'], 'password' => $data['password'], ], $data['remember'])) { throw ValidationException::withMessages([ 'email' => __('These credentials do not match our records.'), ]); } session()->put('locale', auth()->user()->locale); redirect()->to(route('home')); } } ================================================ FILE: app/Http/Livewire/Auth/RecoverPassword.php ================================================ token = $token; $this->form->fill([ 'email' => request()->get('email') ?? null, 'password' => null, 'password_confirmation' => null ]); } public function render() { return view('livewire.auth.recover-password'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ TextInput::make('email') ->label(__('Email address')) ->disableLabel() ->placeholder(__('Email address')) ->email() ->exists(table: User::class, column: 'email') ->required(), Password::make('password') ->label(__('New password')) ->rule('confirmed') ->disableLabel() ->placeholder(__('New password')) ->required(), Password::make('password_confirmation') ->label(__('Password confirmation')) ->disableLabel() ->placeholder(__('Password confirmation')) ->required(), ]; } /** * Recover a password main function * * @return void * @throws ValidationException */ public function recoverPassword(): void { $data = $this->form->getState(); $status = PasswordFacade::reset([ 'email' => $data['email'], 'password' => $data['password'], 'password_confirmation' => $data['password_confirmation'], 'token' => $this->token ], function ($user, $password) { $user->forceFill([ 'password' => Hash::make($password) ])->setRememberToken(Str::random(60)); $user->save(); event(new PasswordReset($user)); }); if ($status === PasswordFacade::PASSWORD_RESET) { session()->flash('password_reset', true); redirect()->to(route('auth.login')); } else { throw ValidationException::withMessages([ 'email' => __('These credentials do not match our records.'), ]); } } } ================================================ FILE: app/Http/Livewire/Chat.php ================================================ form->fill(); } public function render() { $messages = Model::where('ticket_id', $this->ticket->id)->get(); return view('livewire.chat', compact('messages')); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ RichEditor::make('message') ->label(__('Type a message..')) ->disableLabel() ->placeholder(__('Type a message..')) ->required() ->fileAttachmentsDisk(config('filesystems.default')) ->fileAttachmentsDirectory('chat') ->fileAttachmentsVisibility('private'), ]; } /** * Send a message * * @return void */ public function send(): void { $data = $this->form->getState(); Model::create([ 'message' => $data['message'], 'user_id' => auth()->user()->id, 'ticket_id' => $this->ticket->id ]); $this->form->fill(); } } ================================================ FILE: app/Http/Livewire/Kanban.php ================================================ withCount('comments'); if (auth()->user()->can('View own tickets') && !auth()->user()->can('View all tickets')) { $query->where(function ($query) { $query->where('owner_id', auth()->user()->id) ->orWhere('responsible_id', auth()->user()->id) ->orWhereHas('project', function ($query) { $query->whereHas('company', function ($query) { $query->whereIn('companies.id', auth()->user()->ownCompanies->pluck('id')->toArray()); }); }); }); } return $query->get() ->map(function (Ticket $ticket) { $priority = TicketPriority::where('slug', $ticket->priority)->withTrashed()->first(); $type = TicketType::where('slug', $ticket->type)->withTrashed()->first(); return [ 'id' => $ticket->id, 'title' => new HtmlString('
' . ($type ? '
' : '') . ' ' . ($priority ? '
' : '') . ' ' . Str::limit($ticket->title, 15) . '
' . Str::limit(htmlspecialchars(strip_tags($ticket->content))) . '
' . ($ticket->responsible ? ' ' . $ticket->responsible->name . ' ' . $ticket->responsible->name . ' ' : ' ' . __('Not assigned yet!') . '') . '
' . $ticket->comments_count . '
'), 'status' => $ticket->status, ]; }); } /** * Customizing kanban board styles * * @return string[] */ protected function styles(): array { return [ 'wrapper' => 'w-full h-full flex space-x-4 overflow-x-auto', 'kanbanWrapper' => 'h-full flex-1', 'kanban' => 'border border-gray-150 flex flex-col h-full rounded', 'kanbanHeader' => 'px-3 py-3 font-bold text-xs w-full border-b border-gray-150', 'kanbanFooter' => '', 'kanbanRecords' => 'space-y-4 p-3 flex-1 overflow-y-auto w-64', 'record' => 'bg-white dark:bg-gray-800 p-4 border border-gray-150 rounded cursor-pointer w-62 hover:bg-gray-50 hover:shadow-lg', 'recordContent' => 'w-full', ]; } /** * Event launched when the record status is changed * * @param $recordId * @param $statusId * @param $fromOrderedIds * @param $toOrderedIds * @return void */ public function onStatusChanged($recordId, $statusId, $fromOrderedIds, $toOrderedIds): void { $ticket = Ticket::find($recordId); if ( ( auth()->user()->can('Update all tickets') || ( auth()->user()->can('Update own tickets') && ( $ticket->owner_id === auth()->user() || $ticket->responsible_id === auth()->user()->id) ) ) && auth()->user()->can('Change status tickets') ) { $before = __(config('system.statuses.' . $ticket->status . '.title')) ?? '-'; $ticket->status = $statusId; $ticket->save(); Notification::make() ->success() ->title(__('Status updated')) ->body(__('The ticket status has been successfully updated')) ->send(); TicketUpdatedJob::dispatch( $ticket, __('Status'), $before, __(config('system.statuses.' . $ticket->status . '.title') ?? '-'), auth()->user() ); } else { Notification::make() ->success() ->title(__('Oops!')) ->body(__("You don't have permissions to change this ticket status")) ->send(); } } /** * Event launched when the record is clicked * * @param $recordId * @return void */ public function onRecordClick($recordId): void { $ticket = Ticket::find($recordId); $url = route('tickets.details', ['ticket' => $ticket, 'slug' => Str::slug($ticket->title)]); $this->dispatchBrowserEvent('open-ticket', ['url' => $url]); } } ================================================ FILE: app/Http/Livewire/MyNotifications.php ================================================ user()->notifications()->orderBy('created_at', 'desc')->paginate(); return view('livewire.my-notifications', compact('notifications')); } /** * Mark a notification as read * * @param string $notification * @return void */ public function markRead(string $notification): void { auth()->user()->notifications()->where('id', $notification)->update([ 'read_at' => now() ]); Notification::make() ->success() ->title(__('Notification updated')) ->body(__('The notification is now marked as read')) ->send(); } /** * Mark all unread notifications as read * * @return void */ public function markAllRead(): void { auth()->user()->unreadNotifications()->update(['read_at' => now()]); Notification::make() ->success() ->title(__('Notifications updated')) ->body(__('All unread notifications is marked as read')) ->send(); } } ================================================ FILE: app/Http/Livewire/MyProfile.php ================================================ initProfile(); } public function render() { return view('livewire.my-profile'); } /** * Initialize form data * * @return void */ private function initProfile(): void { $this->user = User::where('id', auth()->user()->id)->first(); $this->form->fill([ 'name' => $this->user->name, 'email' => $this->user->email, 'locale' => $this->user->locale, ]); if (session()->has('profile_updated')) { Notification::make() ->success() ->title(__('Profile updated')) ->body(__('Your account details has been updated')) ->send(); } } /** * Form schema definiation * * @return array */ protected function getFormSchema(): array { return [ TextInput::make('name') ->label(__('Full name')) ->maxLength(255) ->required(), TextInput::make('email') ->label(__('Email address')) ->email() ->unique(table: User::class, column: 'email', ignorable: fn() => $this->user->id ? $this->user : null) ->required(), Password::make('current_password') ->label(__('Current password')) ->required(), Grid::make() ->schema([ Password::make('new_password') ->label(__('New password')) ->rule('confirmed'), Password::make('new_password_confirmation') ->label(__('Password confirmation')) ->dehydrated(false), ]), Grid::make(1) ->schema([ Radio::make('locale') ->label(__('Default language')) ->options(locales()) ->required() ]), ]; } public function save(): void { $data = $this->form->getState(); if (Hash::check($data['current_password'], $this->user->password)) { $this->user->name = $data['name']; $this->user->email = $data['email']; $this->user->locale = $data['locale']; if ($data['new_password']) { $this->user->password = bcrypt($data['new_password']); } $this->user->save(); session()->put('locale', $this->user->locale); session()->flash('profile_updated', true); redirect()->to(route('my-profile')); } else { throw ValidationException::withMessages([ 'current_password' => __('The password entered is incorrect.') ]); } } } ================================================ FILE: app/Http/Livewire/Projects.php ================================================ withCount('tickets'); if (auth()->user()->can('View own projects') && !auth()->user()->can('View all projects')) { $query->where(function ($query) { $query->where('owner_id', auth()->user()->id) ->orWhereHas('tickets', function ($query) { $query->where('responsible_id', auth()->user()->id); }); }); } return $query; } /** * Table definition * * @return array */ protected function getTableColumns(): array { return [ TextColumn::make('make_favorite') ->label('') ->formatStateUsing(function (Project $record) { $btnClass = $record->favoriteUsers() ->where('user_id', auth()->user()->id) ->count() ? 'text-warning-500' : 'text-gray-500'; $iconClass = $record->favoriteUsers() ->where('user_id', auth()->user()->id) ->count() ? 'fa-star' : 'fa-star-o'; return new HtmlString(' '); }), TextColumn::make('name') ->label(__('Project name')) ->searchable() ->sortable(), TextColumn::make('description') ->label(__('Description')) ->searchable() ->sortable() ->formatStateUsing( fn(string|null $state) => Str::limit(htmlspecialchars(strip_tags($state ?? '')), 50) ), UserColumn::make('owner') ->label(__('Owner')), TextColumn::make('company.name') ->label(__('Company')) ->sortable() ->searchable(), TextColumn::make('tickets_count') ->label(__('Tickets')) ->sortable(), TextColumn::make('created_at') ->label(__('Created at')) ->sortable() ->searchable() ->dateTime(), ]; } /** * Table actions definition * * @return array * @throws Exception */ protected function getTableActions(): array { return [ Action::make('edit') ->icon('heroicon-o-pencil') ->link() ->label(__('Edit project')) ->action(fn(Project $record) => $this->updateProject($record->id)) ]; } /** * Table header actions definition * * @return array */ protected function getTableHeaderActions(): array { return [ ExportAction::make() ->label(__('Export')) ->color('success') ->icon('heroicon-o-document-download') ->exports([ ExcelExport::make() ->askForWriterType() ->withFilename('projects-export') ->withColumns([ Column::make('name') ->heading(__('Project name')), Column::make('owner.name') ->heading(__('Owner')), Column::make('company.name') ->heading(__('Company')), Column::make('created_at') ->heading(__('Created at')) ->formatStateUsing(fn (Carbon $state) => $state->format(__('Y-m-d g:i A'))), ]) ]) ]; } /** * Table default sort column definition * * @return string|null */ protected function getDefaultTableSortColumn(): ?string { return 'created_at'; } /** * Table default sort direction definition * * @return string|null */ protected function getDefaultTableSortDirection(): ?string { return 'desc'; } /** * Show update project dialog * * @param $id * @return void */ public function updateProject($id) { $this->selectedProject = Project::find($id); $this->dispatchBrowserEvent('toggleProjectModal'); } /** * Show create project dialog * * @return void */ public function createProject() { $this->selectedProject = new Project(); $this->dispatchBrowserEvent('toggleProjectModal'); } /** * Cancel and close project create / update dialog * * @return void */ public function cancelProject() { $this->selectedProject = null; $this->dispatchBrowserEvent('toggleProjectModal'); } /** * Event launched after a project is created / updated * * @return void */ public function projectSaved() { $this->cancelProject(); } /** * Event launched after a project is deleted * * @return void */ public function projectDeleted() { $this->projectSaved(); } /** * Add / Remove project from authenticated user favorite projects * * @param int $projectId * @return void */ public function toggleFavoriteProject(int $projectId) { $project = Project::find($projectId); if (FavoriteProject::where('user_id', auth()->user()->id)->where('project_id', $project->id)->count()) { FavoriteProject::where('user_id', auth()->user()->id)->where('project_id', $project->id)->delete(); Notification::make() ->success() ->title(__('Favorite removed')) ->body(__('The project has been successfully remove from your favorite projects')) ->send(); } else { FavoriteProject::create([ 'user_id' => auth()->user()->id, 'project_id' => $project->id ]); Notification::make() ->success() ->title(__('Favorite added')) ->body(__('The project has been successfully added to your favorite projects')) ->send(); } } } ================================================ FILE: app/Http/Livewire/ProjectsDialog.php ================================================ form->fill([ 'name' => $this->project->name, 'ticket_prefix' => $this->project->ticket_prefix, 'description' => $this->project->description, 'owner_id' => $this->project->owner_id ?? auth()->user()->id, 'company_id' => $this->project->company_id ]); } public function render() { return view('livewire.projects-dialog'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ Grid::make() ->schema([ Select::make('owner_id') ->label(__('Owner')) ->required() ->searchable() ->reactive() ->options(function () { $query = User::query(); if (auth()->user()->can('View company users') && !auth()->user()->can('View all users')) { $query->whereHas( 'companies', fn($query) => $query->whereIn( 'companies.id', auth()->user()->ownCompanies->pluck('id')->toArray() ) )->orWhere('id', auth()->user()->id); } return $query->get()->pluck('name', 'id')->toArray(); }), Select::make('company_id') ->label(__('Company')) ->searchable() ->options(function (Closure $get) { $query = Company::query(); if ($get('owner_id')) { $query->where('responsible_id', $get('owner_id')); } elseif (auth()->user()->can('View own companies')) { $query->where('responsible_id', auth()->user()->id); } return $query->get()->pluck('name', 'id')->toArray(); }), ]), Grid::make(3) ->schema([ TextInput::make('ticket_prefix') ->label(__('Ticket prefix')) ->minLength(4) ->maxLength(4) ->columnSpan(1) ->helperText(__('Used to generate tickets numbers')) ->required(), TextInput::make('name') ->label(__('Full name')) ->maxLength(255) ->columnSpan(2) ->required(), ]), RichEditor::make('description') ->label(__('Description')) ->fileAttachmentsDisk(config('filesystems.default')) ->fileAttachmentsDirectory('projects') ->fileAttachmentsVisibility('private'), ]; } /** * Create / Update the project * * @return void */ public function save(): void { $data = $this->form->getState(); if (!$this->project?->id) { Project::create([ 'name' => $data['name'], 'description' => $data['description'], 'owner_id' => $data['owner_id'], 'ticket_prefix' => $data['ticket_prefix'], 'company_id' => $data['company_id'], ]); Notification::make() ->success() ->title(__('Project created')) ->body(__('The project has been successfully created')) ->send(); } else { $this->project->name = $data['name']; $this->project->description = $data['description']; $this->project->owner_id = $data['owner_id']; $this->project->company_id = $data['company_id']; $this->project->ticket_prefix = $data['ticket_prefix']; $this->project->save(); Notification::make() ->success() ->title(__('Project updated')) ->body(__('The project\'s details has been updated')) ->send(); } $this->emit('projectSaved'); } /** * Delete an existing project * * @return void */ public function doDeleteProject(): void { $this->project->delete(); $this->deleteConfirmationOpened = false; $this->emit('projectDeleted'); Notification::make() ->success() ->title(__('Project deleted')) ->body(__('The project has been deleted')) ->send(); } /** * Cancel the deletion of a project * * @return void */ public function cancelDeleteProject(): void { $this->deleteConfirmationOpened = false; } /** * Show the delete project confirmation dialog * * @return void * @throws \Exception */ public function deleteProject(): void { $this->deleteConfirmation( __('Project deletion'), __('Are you sure you want to delete this project?'), 'doDeleteProject', 'cancelDeleteProject' ); } } ================================================ FILE: app/Http/Livewire/TicketDetails/Content.php ================================================ form->fill([ 'content' => $this->ticket->content ]); } public function render() { return view('livewire.ticket-details.content'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ RichEditor::make('content') ->label(__('Content')) ->disableLabel() ->placeholder(__('Content')) ->fileAttachmentsDisk(config('filesystems.default')) ->fileAttachmentsDirectory('tickets') ->fileAttachmentsVisibility('private'), ]; } /** * Enable updating * * @return void */ public function update(): void { $this->updating = true; } /** * Save main function * * @return void */ public function save(): void { $data = $this->form->getState(); $before = $this->ticket->content; $this->ticket->content = $data['content']; $this->ticket->save(); Notification::make() ->success() ->title(__('Content updated')) ->body(__('The ticket content has been successfully updated')) ->send(); $this->form->fill([ 'content' => $this->ticket->content ]); $this->updating = false; $this->emit('ticketSaved'); TicketUpdatedJob::dispatch( $this->ticket, __('Content'), htmlspecialchars(strip_tags($before)), htmlspecialchars(strip_tags($this->ticket->content)), auth()->user() ); } } ================================================ FILE: app/Http/Livewire/TicketDetails/Priority.php ================================================ form->fill([ 'priority' => $this->ticket->priority ]); } public function render() { return view('livewire.ticket-details.priority'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ Select::make('priority') ->label(__('Priority')) ->required() ->searchable() ->disableLabel() ->placeholder(__('Priority')) ->options(priorities_list()), ]; } /** * Enable updating * * @return void */ public function update(): void { $this->updating = true; } /** * Save main function * * @return void */ public function save(): void { $data = $this->form->getState(); $before = __(config('system.priorities.' . $this->ticket->priority . '.title')) ?? '-'; $this->ticket->priority = $data['priority']; $this->ticket->save(); Notification::make() ->success() ->title(__('Priority updated')) ->body(__('The ticket priority has been successfully updated')) ->send(); $this->form->fill([ 'priority' => $this->ticket->priority ]); $this->updating = false; $this->emit('ticketSaved'); TicketUpdatedJob::dispatch( $this->ticket, __('Priority'), $before, __(config('system.priorities.' . $this->ticket->priority . '.title') ?? '-'), auth()->user() ); } } ================================================ FILE: app/Http/Livewire/TicketDetails/Responsible.php ================================================ form->fill([ 'responsible_id' => $this->ticket->responsible_id ]); } public function render() { return view('livewire.ticket-details.responsible'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ Select::make('responsible_id') ->label(__('Responsible')) ->disableLabel() ->placeholder(__('Responsible')) ->options(User::all()->pluck('name', 'id')->toArray()) ->required() ]; } /** * Enable updating * * @return void */ public function update(): void { $this->updating = true; } /** * Save main function * * @return void */ public function save(): void { $data = $this->form->getState(); $before = $this->ticket->responsible?->name ?? '-'; $this->ticket->responsible_id = $data['responsible_id']; $this->ticket->save(); Notification::make() ->success() ->title(__('Responsible updated')) ->body(__('The ticket responsible has been successfully updated')) ->send(); $this->form->fill([ 'responsible_id' => $this->ticket->responsible_id ]); $this->updating = false; $this->ticket = $this->ticket->refresh(); $this->emit('ticketSaved'); TicketUpdatedJob::dispatch( $this->ticket, __('Responsible'), $before, ($this->ticket->responsible?->name ?? '-'), auth()->user() ); } /** * Assign ticket to the authenticated user * * @return void */ public function assignToMe(): void { $this->form->fill([ 'responsible_id' => auth()->user()->id ]); $this->save(); } } ================================================ FILE: app/Http/Livewire/TicketDetails/Status.php ================================================ form->fill([ 'status' => $this->ticket->status ]); } public function render() { return view('livewire.ticket-details.status'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ Select::make('status') ->label(__('Status')) ->disableLabel() ->placeholder(__('Status')) ->required() ->searchable() ->options(statuses_list()), ]; } /** * Enable updating * * @return void */ public function update(): void { $this->updating = true; } /** * Save main function * * @return void */ public function save(): void { $data = $this->form->getState(); $before = __(config('system.statuses.' . $this->ticket->status . '.title')) ?? '-'; $this->ticket->status = $data['status']; $this->ticket->save(); Notification::make() ->success() ->title(__('Status updated')) ->body(__('The ticket status has been successfully updated')) ->send(); $this->form->fill([ 'status' => $this->ticket->status ]); $this->updating = false; $this->emit('ticketSaved'); TicketUpdatedJob::dispatch( $this->ticket, __('Status'), $before, __(config('system.statuses.' . $this->ticket->status . '.title') ?? '-'), auth()->user() ); } } ================================================ FILE: app/Http/Livewire/TicketDetails/Title.php ================================================ form->fill([ 'title' => $this->ticket->title ]); } public function render() { return view('livewire.ticket-details.title'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ TextInput::make('title') ->label(__('Title')) ->disableLabel() ->placeholder(__('Title')) ->maxLength(255) ->required() ]; } /** * Enable updating * * @return void */ public function update(): void { $this->updating = true; } /** * Save main function * * @return void */ public function save(): void { $data = $this->form->getState(); $before = $this->ticket->title; $this->ticket->title = $data['title']; $this->ticket->save(); Notification::make() ->success() ->title(__('Title updated')) ->body(__('The ticket title has been successfully updated')) ->send(); $this->form->fill([ 'title' => $this->ticket->title ]); $this->updating = false; $this->emit('ticketSaved'); TicketUpdatedJob::dispatch($this->ticket, __('Title'), $before, $this->ticket->title, auth()->user()); } } ================================================ FILE: app/Http/Livewire/TicketDetails/Type.php ================================================ form->fill([ 'type' => $this->ticket->type ]); } public function render() { return view('livewire.ticket-details.type'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ Select::make('type') ->label(__('Type')) ->disableLabel() ->placeholder(__('Type')) ->required() ->searchable() ->options(types_list()), ]; } /** * Enable updating * * @return void */ public function update(): void { $this->updating = true; } /** * Save main function * * @return void */ public function save(): void { $data = $this->form->getState(); $before = __(config('system.types.' . $this->ticket->type . '.title')) ?? '-'; $this->ticket->type = $data['type']; $this->ticket->save(); Notification::make() ->success() ->title(__('Type updated')) ->body(__('The ticket type has been successfully updated')) ->send(); $this->form->fill([ 'type' => $this->ticket->type ]); $this->updating = false; $this->emit('ticketSaved'); TicketUpdatedJob::dispatch( $this->ticket, __('Type'), $before, __(config('system.types.' . $this->ticket->type . '.title') ?? '-'), auth()->user() ); } } ================================================ FILE: app/Http/Livewire/TicketDetails.php ================================================ menu = [ 'Comments', 'Chat', ]; $this->activeMenu = $this->menu[0]; } public function render() { return view('livewire.ticket-details'); } /** * Change a menu (tab) * * @param $item * @return void */ public function selectMenu($item) { $this->activeMenu = $item; $this->dispatchBrowserEvent('initMagnificPopupOnTicketComments'); } /** * Event launched after the ticket is updated * * @return void */ public function ticketSaved(): void { $this->ticket = $this->ticket->refresh(); } /** * Copy a ticket url * * @param int $ticketId * @return void */ public function copyTicketUrl(int $ticketId): void { $ticket = Ticket::where('id', $ticketId)->first(); Notification::make() ->success() ->title(__('Ticket url copied')) ->body(__('The ticket url successfully copied to your clipboard')) ->send(); $this->dispatchBrowserEvent('ticketUrlCopied', [ 'url' => route('tickets.number', [ 'number' => $ticket->ticket_number ]) ]); } } ================================================ FILE: app/Http/Livewire/TicketDetailsComments.php ================================================ form->fill(); } public function render() { return view('livewire.ticket-details-comments'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ RichEditor::make('content') ->label(__('Type a new comment...')) ->disableLabel() ->placeholder(__('Type a new comment...')) ->required() ->fileAttachmentsDisk(config('filesystems.default')) ->fileAttachmentsDirectory('comments') ->fileAttachmentsVisibility('private'), ]; } /** * Event launched after a comment is deleted * * @return void */ public function commentDeleted(): void { $this->commentCreated(); } /** * Event launched after a comment is created * * @return void */ public function commentCreated(): void { $this->ticket = $this->ticket->refresh(); } /** * Event launched after a comment is updated * * @return void */ public function commentSaved(): void { $this->commentCreated(); } /** * Comment main function * * @return void */ public function comment(): void { $data = $this->form->getState(); $comment = Comment::create([ 'content' => $data['content'], 'owner_id' => auth()->user()->id, 'ticket_id' => $this->ticket->id ]); Notification::make() ->success() ->title(__('Comment created')) ->body(__('Your comment has been successfully added to the ticket')) ->send(); $this->form->fill(); $this->emit('commentCreated'); CommentCreatedJob::dispatch($comment); } } ================================================ FILE: app/Http/Livewire/TicketDetailsCommentsContent.php ================================================ selectedComment = null; $this->form->fill([ 'content' => $this->selectedComment?->content ]); } public function render() { return view('livewire.ticket-details-comments-content'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ RichEditor::make('content') ->label(__('Update your comment...')) ->disableLabel() ->placeholder(__('Update your comment...')) ->required() ->fileAttachmentsDisk(config('filesystems.default')) ->fileAttachmentsDirectory('comments') ->fileAttachmentsVisibility('private'), ]; } /** * Launch the update function * * @param int $comment * @return void */ public function updateComment(int $comment): void { $this->selectedComment = Comment::where('id', $comment)->first(); $this->form->fill([ 'content' => $this->selectedComment->content ]); $this->updating = true; } /** * Comment main function * * @return void */ public function save(): void { $data = $this->form->getState(); $this->selectedComment->content = $data['content']; $this->selectedComment->save(); $this->form->fill([ 'content' => $this->selectedComment->content ]); $this->emit('commentSaved'); $this->updating = false; Notification::make() ->success() ->title(__('Comment updated')) ->body(__('The comment has been updated')) ->send(); } /** * Delete an existing comment * * @param int $commentId * @return void */ public function doDeleteComment(int $commentId): void { if ($commentId === $this->selectedComment->id) { $this->selectedComment->delete(); $this->deleteConfirmationOpened = false; $this->emit('commentDeleted'); Notification::make() ->success() ->title(__('Comment deleted')) ->body(__('The comment has been deleted')) ->send(); } } /** * Cancel the deletion of a comment * * @return void */ public function cancelDeleteComment(): void { $this->deleteConfirmationOpened = false; } /** * Show the delete comment confirmation dialog * * @param Comment $comment * @return void * @throws \Exception */ public function deleteComment(Comment $comment): void { $this->selectedComment = $comment; $this->deleteConfirmationOpened = true; Notification::make() ->warning() ->title(__('Comment deletion')) ->body(__('Are you sure you want to delete this comment?')) ->actions([ Action::make('confirm') ->label(__('Confirm')) ->color('danger') ->button() ->close() ->emit('doDeleteComment', ['comment' => $comment->id]), Action::make('cancel') ->label(__('Cancel')) ->close() ->emit('cancelDeleteComment') ]) ->persistent() ->send(); } /** * Event launched after a comment is deleted * * @return void */ public function commentDeleted(): void { $this->commentCreated(); } /** * Event launched after a comment is created * * @return void */ public function commentCreated(): void { $this->ticket = $this->ticket->refresh(); } /** * Event launched after a comment is updated * * @return void */ public function commentSaved(): void { $this->commentCreated(); } } ================================================ FILE: app/Http/Livewire/Tickets.php ================================================ menu = [ 'All tickets', 'Unassigned', 'Assigned to me', 'Created by me', ]; $this->activeMenu = $this->menu[0]; $data = []; if (request()->get('project')) { $data['projects'] = [request()->get('project')]; } $this->form->fill($data); } public function render() { $query = Ticket::query(); $query->withCount('comments'); if (auth()->user()->can('View own tickets') && !auth()->user()->can('View all tickets')) { $query->where(function ($query) { $query->where('owner_id', auth()->user()->id) ->orWhere('responsible_id', auth()->user()->id) ->orWhereHas('project', function ($query) { $query->whereHas('company', function ($query) { $query->whereIn('companies.id', auth()->user()->ownCompanies->pluck('id')->toArray()); }); }); }); } if ($this->activeMenu === 'Unassigned') { $query->whereNull('responsible_id'); } if ($this->activeMenu === 'Assigned to me') { $query->where('responsible_id', auth()->user()->id); } if ($this->activeMenu === 'Created by me') { $query->where('owner_id', auth()->user()->id); } if ($this->search) { $query->where(function ($query) { $query->where('title', 'like', '%' . $this->search . '%') ->orWhere('content', 'like', '%' . $this->search . '%'); }); } if ($this->projects && sizeof($this->projects)) { $query->whereIn('project_id', $this->projects); } if ($this->priorities && sizeof($this->priorities)) { $query->whereIn('priority', $this->priorities); } if ($this->statuses && sizeof($this->statuses)) { $query->whereIn('status', $this->statuses); } if ($this->types && sizeof($this->types)) { $query->whereIn('type', $this->types); } if ($this->statuses && sizeof($this->responsible)) { $query->whereIn('responsible_id', $this->responsible); } $tickets = $query->paginate(); return view('livewire.tickets', compact('tickets')); } /** * Change a menu (tab) * * @param $item * @return void */ public function selectMenu($item) { $this->activeMenu = $item; $this->search(); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ Grid::make(6) ->schema([ MultiSelect::make('projects') ->label(__('Project')) ->disableLabel() ->searchable() ->placeholder(__('Project')) ->options(function () { $query = Project::query(); if (auth()->user()->can('View own projects') && !auth()->user()->can('View all projects')) { $query->where('owner_id', auth()->user()->id); } return $query->get()->pluck('name', 'id'); }), MultiSelect::make('priorities') ->label(__('Priorities')) ->disableLabel() ->searchable() ->placeholder(__('Priorities')) ->options(priorities_list()), MultiSelect::make('statuses') ->label(__('Statuses')) ->disableLabel() ->searchable() ->placeholder(__('Statuses')) ->options(statuses_list()), MultiSelect::make('types') ->label(__('Types')) ->disableLabel() ->searchable() ->placeholder(__('Types')) ->options(types_list()), MultiSelect::make('responsible') ->label(__('Responsible')) ->disableLabel() ->searchable() ->placeholder(__('Responsible')) ->options(User::all()->pluck('name', 'id')), TextInput::make('search') ->label(__('Search for tickets')) ->disableLabel() ->type('search') ->placeholder(__('Search for tickets')) ]), ]; } /** * Search for tickets * * @return void */ public function search(): void { $data = $this->form->getState(); $this->search = $data['search'] ?? null; $this->projects = $data['projects'] ?? null; $this->priorities = $data['priorities'] ?? null; $this->statuses = $data['statuses'] ?? null; $this->types = $data['types'] ?? null; $this->responsible = $data['responsible'] ?? null; } public function resetFilters(): void { $this->search = null; $this->projects = null; $this->priorities = null; $this->statuses = null; $this->types = null; $this->responsible = null; } /** * Show create ticket dialog * * @return void */ public function createTicket() { $this->selectedTicket = new Ticket(); $this->dispatchBrowserEvent('toggleTicketModal'); } /** * Cancel and close ticket create / update dialog * * @return void */ public function cancelTicket() { $this->selectedTicket = null; $this->dispatchBrowserEvent('toggleTicketModal'); } /** * Event launched after a ticket is created / updated * * @return void */ public function ticketSaved() { $this->search(); $this->cancelTicket(); } /** * Event launched after a ticket is deleted * * @return void */ public function ticketDeleted() { $this->ticketSaved(); } /** * Copy a ticket url * * @param int $ticketId * @return void */ public function copyTicketUrl(int $ticketId): void { $ticket = Ticket::where('id', $ticketId)->first(); Notification::make() ->success() ->title(__('Ticket url copied')) ->body(__('The ticket url successfully copied to your clipboard')) ->send(); $this->dispatchBrowserEvent('ticketUrlCopied', [ 'url' => route('tickets.number', [ 'number' => $ticket->ticket_number ]) ]); } } ================================================ FILE: app/Http/Livewire/TicketsDialog.php ================================================ form->fill([ 'title' => $this->ticket->title, 'content' => $this->ticket->content, 'priority' => $this->ticket->priority, 'project_id' => $this->ticket->project_id, ]); } public function render() { return view('livewire.tickets-dialog'); } /** * Form schema definition * * @return array */ protected function getFormSchema(): array { return [ Select::make('project_id') ->label(__('Project')) ->required() ->searchable() ->options(function () { $query = Project::query(); if (auth()->user()->can('View own projects') && !auth()->user()->can('View all projects')) { $query->where('owner_id', auth()->user()->id); } return $query->get()->pluck('name', 'id'); }), Grid::make() ->schema([ Select::make('type') ->label(__('Type')) ->required() ->searchable() ->options(types_list()), Select::make('priority') ->label(__('Priority')) ->required() ->searchable() ->options(priorities_list()), ]), TextInput::make('title') ->label(__('Ticket title')) ->maxLength(255) ->required(), RichEditor::make('content') ->label(__('Content')) ->required() ->fileAttachmentsDisk(config('filesystems.default')) ->fileAttachmentsDirectory('tickets') ->fileAttachmentsVisibility('private'), ]; } /** * Create / Update the ticket * * @return void */ public function save(): void { $data = $this->form->getState(); $ticket = Ticket::create([ 'project_id' => $data['project_id'], 'title' => $data['title'], 'content' => $data['content'], 'owner_id' => auth()->user()->id, 'priority' => $data['priority'], 'type' => $data['type'], 'status' => default_ticket_status() ]); Notification::make() ->success() ->title(__('Ticket created')) ->body(__('The ticket has been successfully created')) ->actions([ Action::make('redirect') ->label(__('See details')) ->color('success') ->button() ->close() ->url(fn() => route('tickets.details', [ 'ticket' => $ticket, 'slug' => Str::slug($ticket->title) ])) ]) ->send(); $this->emit('ticketSaved'); TicketCreatedJob::dispatch($ticket); } } ================================================ FILE: app/Http/Middleware/Authenticate.php ================================================ expectsJson()) { return route('auth.login'); } } } ================================================ FILE: app/Http/Middleware/CanAccessTicket.php ================================================ route('ticket'); if (!( auth()->user()->can('View all tickets') || ( auth()->user()->can('View own tickets') && in_array(auth()->user()->id, [$ticket->owner_id, $ticket->responsible_id]) ) )) { return redirect()->to(route('tickets')); } return $next($request); } } ================================================ FILE: app/Http/Middleware/EncryptCookies.php ================================================ */ protected $except = [ // ]; } ================================================ FILE: app/Http/Middleware/LocaleMiddleware.php ================================================ has('locale') && in_array(session()->get('locale'), array_keys(config('system.locales'))) ) { $locale = session()->get('locale'); } elseif ( auth()->user()?->locale && in_array(auth()->user()?->locale, array_keys(config('system.locales'))) ) { $locale = auth()->user()?->locale; } app()->setLocale($locale); return $next($request); } } ================================================ FILE: app/Http/Middleware/PreventRequestsDuringMaintenance.php ================================================ */ protected $except = [ // ]; } ================================================ FILE: app/Http/Middleware/RedirectIfAuthenticated.php ================================================ check()) { return redirect(RouteServiceProvider::HOME); } } return $next($request); } } ================================================ FILE: app/Http/Middleware/TrimStrings.php ================================================ */ protected $except = [ 'current_password', 'password', 'password_confirmation', ]; } ================================================ FILE: app/Http/Middleware/TrustHosts.php ================================================ */ public function hosts() { return [ $this->allSubdomainsOfApplicationUrl(), ]; } } ================================================ FILE: app/Http/Middleware/TrustProxies.php ================================================ |string|null */ protected $proxies; /** * The headers that should be used to detect proxies. * * @var int */ protected $headers = Request::HEADER_X_FORWARDED_FOR | Request::HEADER_X_FORWARDED_HOST | Request::HEADER_X_FORWARDED_PORT | Request::HEADER_X_FORWARDED_PROTO | Request::HEADER_X_FORWARDED_AWS_ELB; } ================================================ FILE: app/Http/Middleware/ValidateSignature.php ================================================ */ protected $except = [ // 'fbclid', // 'utm_campaign', // 'utm_content', // 'utm_medium', // 'utm_source', // 'utm_term', ]; } ================================================ FILE: app/Http/Middleware/VerifyCsrfToken.php ================================================ */ protected $except = [ // ]; } ================================================ FILE: app/Jobs/CommentCreatedJob.php ================================================ comment = $comment; } /** * Execute the job. * * @return void */ public function handle() { $users = User::whereNull('register_token')->get(); foreach ($users as $user) { if ( (auth()->user()->can('View all tickets') && $this->comment->owner_id !== $user->id) || ( auth()->user()->can('View own tickets') && ( $this->comment->ticket->owner_id === $user->id || $this->comment->ticket->responsible_id === $user->id ) && $this->comment->owner_id !== $user->id) ) { $user->notify(new CommentCreateNotification($this->comment, $user)); } } } } ================================================ FILE: app/Jobs/TicketCreatedJob.php ================================================ ticket = $ticket; } /** * Execute the job. * * @return void */ public function handle() { $users = User::whereNull('register_token')->get(); foreach ($users as $user) { if (auth()->user()->can('View all tickets') && $this->ticket->owner_id !== $user->id) { $user->notify(new TicketCreatedNotification($this->ticket, $user)); } } } } ================================================ FILE: app/Jobs/TicketUpdatedJob.php ================================================ ticket = $ticket; $this->field = $field; $this->before = $before; $this->after = $after; $this->user = $user; } /** * Execute the job. * * @return void */ public function handle() { if ($this->before !== $this->after) { $users = User::whereNull('register_token')->where('id', '<>', $this->user->id)->get(); foreach ($users as $u) { if ( ( auth()->user()->can('View all tickets') && $this->ticket->owner_id !== $u->id ) || ( auth()->user()->can('View own tickets') && ( $this->ticket->owner_id === $u->id || $this->ticket->responsible_id === $u->id ) && $this->ticket->owner_id !== $u->id ) ) { $u->notify( new TicketUpdatedNotification( $this->ticket, $this->field, $this->before, $this->after, $this->user ) ); } } } } } ================================================ FILE: app/Models/Chat.php ================================================ orderBy('created_at', 'desc'); }); } public function ticket(): BelongsTo { return $this->belongsTo(Ticket::class); } public function user(): BelongsTo { return $this->belongsTo(User::class); } } ================================================ FILE: app/Models/Comment.php ================================================ orderBy('created_at', 'desc'); }); } public function owner(): BelongsTo { return $this->belongsTo(User::class, 'owner_id')->withTrashed(); } public function ticket(): BelongsTo { return $this->belongsTo(Ticket::class); } public function __toString(): string { return $this->content; } public function activityLogLink(): string { return route('tickets.number', $this->ticket->ticket_number); } } ================================================ FILE: app/Models/Company.php ================================================ belongsTo(User::class, 'responsible_id'); } public function users(): BelongsToMany { return $this->belongsToMany(User::class, 'company_users', 'company_id', 'user_id'); } } ================================================ FILE: app/Models/CompanyUser.php ================================================ belongsTo(User::class); } public function company(): BelongsTo { return $this->belongsTo(Company::class); } } ================================================ FILE: app/Models/FavoriteProject.php ================================================ belongsTo(User::class); } public function project(): BelongsTo { return $this->belongsTo(Project::class); } } ================================================ FILE: app/Models/Icon.php ================================================ orderBy('created_at', 'desc'); }); } public function owner(): BelongsTo { return $this->belongsTo(User::class, 'owner_id')->withTrashed(); } public function company(): BelongsTo { return $this->belongsTo(Company::class); } public function tickets(): HasMany { return $this->hasMany(Ticket::class); } public function favoriteUsers(): BelongsToMany { $query = $this->belongsToMany(User::class, 'favorite_projects', 'project_id', 'user_id'); if (auth()->user()->can('View own projects') && !auth()->user()->can('View all projects')) { $query->where('user_id', auth()->user()->id); } return $query; } public function __toString(): string { return $this->name; } public function activityLogLink(): string { return route('home'); } } ================================================ FILE: app/Models/Ticket.php ================================================ orderBy('created_at', 'desc'); }); static::creating(function (Ticket $ticket) { $ticket->number = str_pad( Ticket::where('project_id', $ticket->project_id) ->withTrashed() ->count() + 1, 4, '0', STR_PAD_LEFT ); }); } public function owner(): BelongsTo { return $this->belongsTo(User::class, 'owner_id')->withTrashed(); } public function responsible(): BelongsTo { return $this->belongsTo(User::class, 'responsible_id')->withTrashed(); } public function project(): BelongsTo { return $this->belongsTo(Project::class)->withTrashed(); } public function comments(): HasMany { return $this->hasMany(Comment::class); } public function ticketNumber(): Attribute { return new Attribute( get: fn() => $this->project?->ticket_prefix . '' . $this->number ); } public function __toString(): string { return $this->title; } public function activityLogLink(): string { return route('tickets.number', $this->ticket_number); } public function chat(): HasOne { return $this->hasOne(Chat::class); } } ================================================ FILE: app/Models/TicketPriority.php ================================================ title; } public function activityLogLink(): string { return route('administration.ticket-priorities'); } } ================================================ FILE: app/Models/TicketStatus.php ================================================ title; } public function activityLogLink(): string { return route('administration.ticket-statuses'); } } ================================================ FILE: app/Models/TicketType.php ================================================ title; } public function activityLogLink(): string { return route('administration.ticket-types'); } } ================================================ FILE: app/Models/User.php ================================================ */ protected $fillable = [ 'name', 'email', 'password', 'register_token', 'locale', ]; /** * The attributes that should be hidden for serialization. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'email_verified_at' => 'datetime', ]; protected static function boot() { parent::boot(); static::addGlobalScope('order', function (Builder $builder) { $builder->orderBy('created_at', 'desc'); }); } public function projects(): HasMany { return $this->hasMany(Project::class, 'owner_id'); } public function tickets(): HasMany { return $this->hasMany(Ticket::class, 'owner_id'); } public function assignedTickets(): HasMany { return $this->hasMany(Ticket::class, 'responsible_id'); } public function favoriteProjects(): BelongsToMany { $query = $this->belongsToMany(Project::class, 'favorite_projects', 'user_id', 'project_id'); if (auth()->user()->can('View own projects') && !auth()->user()->can('View all projects')) { $query->where('user_id', auth()->user()->id); } return $query; } public function comments(): HasMany { return $this->hasMany(Comment::class, 'owner_id'); } public function __toString(): string { return $this->name; } public function activityLogLink(): string { return route('administration.users'); } public function isAccountActivated(): Attribute { return new Attribute( get: fn() => $this->register_token == null ); } public function ownCompanies(): HasMany { return $this->hasMany(Company::class, 'responsible_id'); } public function companies(): BelongsToMany { return $this->belongsToMany(Company::class, 'company_users', 'user_id', 'company_id'); } } ================================================ FILE: app/Notifications/CommentCreateNotification.php ================================================ comment = $comment; $this->user = $user; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return ['mail', 'database']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage) ->line(__('We inform you that a new comment has been added to the ticket :ticket in the platform :platform.', [ 'platform' => config('app.name'), 'ticket' => $this->comment->ticket->title ])) ->line(__('Below are the details of this comment:')) ->line(__('- Owner: :owner', ['owner' => $this->comment->owner->name])) ->line(__('- Content: :content', ['content' => htmlspecialchars(strip_tags($this->comment->content))])) ->action( __('Ticket details'), route('tickets.details', [ 'ticket' => $this->comment->ticket, 'slug' => Str::slug($this->comment->ticket->title) ] ) ) ->line(__('Thank you for using our application!')); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ 'ticket' => $this->comment->ticket, 'comment' => $this->comment, 'user' => $this->user, ]; } } ================================================ FILE: app/Notifications/TicketCreatedNotification.php ================================================ ticket = $ticket; $this->user = $user; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return ['mail', 'database']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage) ->line(__('We inform you that a new ticket has been created in the platform :platform.', [ 'platform' => config('app.name') ])) ->line(__('Below are the details of this ticket:')) ->line(__('- Title: :title', ['title' => $this->ticket->title])) ->line(__('- Type: :type', ['type' => config('system.types.' . $this->ticket->type . '.title')])) ->line( __( '- Priority: :priority', [ 'priority' => config('system.priorities.' . $this->ticket->priority . '.title') ] ) ) ->action( __('Ticket details'), route( 'tickets.details', [ 'ticket' => $this->ticket, 'slug' => Str::slug($this->ticket->title) ] )) ->line(__('Thank you for using our application!')); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ 'ticket' => $this->ticket, 'user' => $this->user, ]; } } ================================================ FILE: app/Notifications/TicketUpdatedNotification.php ================================================ ticket = $ticket; $this->field = $field; $this->before = $before; $this->after = $after; $this->user = $user; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return ['mail', 'database']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage) ->line(__('We inform you that the ticket :ticket has been updated.', [ 'ticket' => $this->ticket->title ])) ->line(__('Below are the details of this modification:')) ->line(__('- Field: :field', ['field' => $this->field])) ->line(__('- Old value: :oldValue', ['oldValue' => $this->before])) ->line(__('- New value: :newValue', ['newValue' => $this->after])) ->action( __('Ticket details'), route( 'tickets.details', [ 'ticket' => $this->ticket, 'slug' => Str::slug($this->ticket->title) ] ) ) ->line(__('Thank you for using our application!')); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ 'ticket' => $this->ticket, 'field' => $this->field, 'before' => $this->before, 'after' => $this->after, 'user' => $this->user, ]; } } ================================================ FILE: app/Notifications/UserActivatedNotification.php ================================================ line( __( 'We inform you that your user account for the :platform platform is now activated.', [ 'platform' => config('app.name') ] ) ) ->line(__('You can use the following button to access the platform.')) ->action('Access my account', route('home')) ->line(__('Thank you for using our application!')); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ // ]; } } ================================================ FILE: app/Notifications/UserCreatedNotification.php ================================================ user = $user; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return ['mail']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage) ->line( __( 'We are pleased to inform you that your user account on the :platform platform has been successfully created.', [ 'platform' => config('app.name') ] ) ) ->line( __( 'We invite you to use the following button to define your password and activate your user account.' ) ) ->action(__('Activate my account'), route('auth.activate-account', $this->user->register_token)) ->line(__('Thank you for using our application!')); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ // ]; } } ================================================ FILE: app/Providers/AppServiceProvider.php ================================================ */ protected $policies = [ // 'App\Models\Model' => 'App\Policies\ModelPolicy', ]; /** * Register any authentication / authorization services. * * @return void */ public function boot() { $this->registerPolicies(); // } } ================================================ FILE: app/Providers/BroadcastServiceProvider.php ================================================ > */ protected $listen = [ Registered::class => [ SendEmailVerificationNotification::class, ], ]; /** * Register any events for your application. * * @return void */ public function boot() { // } /** * Determine if events and listeners should be automatically discovered. * * @return bool */ public function shouldDiscoverEvents() { return false; } } ================================================ FILE: app/Providers/RouteServiceProvider.php ================================================ configureRateLimiting(); $this->routes(function () { Route::middleware('api') ->prefix('api') ->group(base_path('routes/api.php')); Route::middleware('web') ->group(base_path('routes/web.php')); }); } /** * Configure the rate limiters for the application. * * @return void */ protected function configureRateLimiting() { RateLimiter::for('api', function (Request $request) { return Limit::perMinute(60)->by($request->user()?->id ?: $request->ip()); }); } } ================================================ FILE: app/Tables/Columns/UserColumn.php ================================================ menu = config('system.main_menu'); } /** * Get the view / contents that represent the component. * * @return \Illuminate\Contracts\View\View|\Closure|string */ public function render() { return view('components.main-menu'); } } ================================================ FILE: app/View/Components/NotificationType.php ================================================ notification = $notification; } /** * Get the view / contents that represent the component. * * @return \Illuminate\Contracts\View\View|\Closure|string */ public function render() { return view('components.notification-type'); } } ================================================ FILE: app/View/Components/PrioritySpan.php ================================================ priority = TicketPriority::where('slug', $priority)->first(); } /** * Get the view / contents that represent the component. * * @return \Illuminate\Contracts\View\View|\Closure|string */ public function render() { return view('components.priority-span'); } } ================================================ FILE: app/View/Components/RoleSpan.php ================================================ role = $role; } /** * Get the view / contents that represent the component. * * @return \Illuminate\Contracts\View\View|\Closure|string */ public function render() { return view('components.role-span'); } } ================================================ FILE: app/View/Components/StatusSpan.php ================================================ status = TicketStatus::where('slug', $status)->first(); } /** * Get the view / contents that represent the component. * * @return \Illuminate\Contracts\View\View|\Closure|string */ public function render() { return view('components.status-span'); } } ================================================ FILE: app/View/Components/TypeSpan.php ================================================ type = TicketType::where('slug', $type)->first(); $this->min = $min; } /** * Get the view / contents that represent the component. * * @return \Illuminate\Contracts\View\View|\Closure|string */ public function render() { return view('components.type-span'); } } ================================================ FILE: app/View/Components/UserAvatar.php ================================================ user = $user; $this->size = $size; } /** * Get the view / contents that represent the component. * * @return \Illuminate\Contracts\View\View|\Closure|string */ public function render() { return view('components.user-avatar'); } } ================================================ FILE: app/helpers.php ================================================ VALUE (status title) * * @return array */ function statuses_list(): array { return TicketStatus::all()->pluck('title', 'slug')->toArray(); } } if (!function_exists('statuses_list_for_kanban')) { /** * Return statuses list as an array for kanban board * * @return array */ function statuses_list_for_kanban(): array { return TicketStatus::all()->map(fn($item) => [ 'id' => $item->slug, 'title' => $item->title, 'text-color' => $item->text_color, 'bg-color' => $item->bg_color ])->toArray(); } } if (!function_exists('priorities_list')) { /** * Return priorities list as an array of KEY (priority id) => VALUE (priority title) * * @return array */ function priorities_list(): array { return TicketPriority::all()->pluck('title', 'slug')->toArray(); } } if (!function_exists('default_ticket_status')) { /** * Return the default status configured on system configurations * * @return string|null */ function default_ticket_status(): string|null { if ($default = TicketStatus::where('default', true)->first()) { return Str::slug($default->title); } return null; } } if (!function_exists('types_list')) { /** * Return types list as an array of KEY (type id) => VALUE (type title) * * @return array */ function types_list(): array { return TicketType::all()->pluck('title', 'slug')->toArray(); } } if (!function_exists('locales')) { /** * Return application locales as an array of KEY (locale id) => VALUE (locale title) * * @return array */ function locales(): array { $locales = []; foreach (config('system.locales') as $key => $value) { $locales[$key] = __($value); } return $locales; } } ================================================ FILE: artisan ================================================ #!/usr/bin/env php make(Illuminate\Contracts\Console\Kernel::class); $status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput ); /* |-------------------------------------------------------------------------- | Shutdown The Application |-------------------------------------------------------------------------- | | Once Artisan has finished running, we will fire off the shutdown events | so that any final work may be done by the application before we shut | down the process. This is the last thing to happen to the request. | */ $kernel->terminate($input, $status); exit($status); ================================================ FILE: bootstrap/app.php ================================================ singleton( Illuminate\Contracts\Http\Kernel::class, App\Http\Kernel::class ); $app->singleton( Illuminate\Contracts\Console\Kernel::class, App\Console\Kernel::class ); $app->singleton( Illuminate\Contracts\Debug\ExceptionHandler::class, App\Exceptions\Handler::class ); /* |-------------------------------------------------------------------------- | Return The Application |-------------------------------------------------------------------------- | | This script returns the application instance. The instance is given to | the calling script so we can separate the building of the instances | from the actual running of the application and sending responses. | */ return $app; ================================================ FILE: bootstrap/cache/.gitignore ================================================ * !.gitignore ================================================ FILE: composer.json ================================================ { "name": "laravel/laravel", "type": "project", "description": "Help Desk open source project.", "keywords": ["helpdesk", "laravel", "tailwindcss", "filament-forms", "filament-notifications"], "license": "MIT", "require": { "php": "^8.0.2", "devaslanphp/filament-avatar": "^1.0", "filament/forms": "^2.15", "filament/notifications": "^2.15", "guzzlehttp/guzzle": "^7.2", "invaders-xx/filament-kanban-board": "^0.2.6", "larabug/larabug": "^2.5", "laravel/framework": "^9.19|^10.0", "laravel/sanctum": "^3.0", "laravel/tinker": "^2.7", "livewire/livewire": "^2.10", "phpsa/filament-password-reveal": "^1.1", "psr/simple-cache": "1.0", "pxlrbt/filament-excel": "^1.1", "spatie/laravel-activitylog": "^4.5", "spatie/laravel-permission": "^5.5" }, "require-dev": { "fakerphp/faker": "^1.9.1", "kkomelin/laravel-translatable-string-exporter": "^1.17", "laravel/pint": "^1.0", "laravel/sail": "^1.0.1", "mockery/mockery": "^1.4.4", "nunomaduro/collision": "^6.1", "phpunit/phpunit": "^9.5.10", "spatie/laravel-ignition": "^1.0" }, "autoload": { "files": [ "app/helpers.php" ], "psr-4": { "App\\": "app/", "Database\\Factories\\": "database/factories/", "Database\\Seeders\\": "database/seeders/" } }, "autoload-dev": { "psr-4": { "Tests\\": "tests/" } }, "scripts": { "post-autoload-dump": [ "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", "@php artisan package:discover --ansi" ], "post-update-cmd": [ "@php artisan vendor:publish --tag=laravel-assets --ansi --force" ], "post-root-package-install": [ "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" ], "post-create-project-cmd": [ "@php artisan key:generate --ansi" ] }, "extra": { "laravel": { "dont-discover": [] } }, "config": { "optimize-autoloader": true, "preferred-install": "dist", "sort-packages": true, "allow-plugins": { "pestphp/pest-plugin": true } }, "minimum-stability": "dev", "prefer-stable": true } ================================================ FILE: config/activitylog.php ================================================ env('ACTIVITY_LOGGER_ENABLED', true), /* * When the clean-command is executed, all recording activities older than * the number of days specified here will be deleted. */ 'delete_records_older_than_days' => 365, /* * If no log name is passed to the activity() helper * we use this default log name. */ 'default_log_name' => 'default', /* * You can specify an auth driver here that gets user models. * If this is null we'll use the current Laravel auth driver. */ 'default_auth_driver' => null, /* * If set to true, the subject returns soft deleted models. */ 'subject_returns_soft_deleted_models' => false, /* * This model will be used to log activity. * It should implement the Spatie\Activitylog\Contracts\Activity interface * and extend Illuminate\Database\Eloquent\Model. */ 'activity_model' => \Spatie\Activitylog\Models\Activity::class, /* * This is the name of the table that will be created by the migration and * used by the Activity model shipped with this package. */ 'table_name' => 'activity_log', /* * This is the database connection that will be used by the migration and * the Activity model shipped with this package. In case it's not set * Laravel's database.default will be used instead. */ 'database_connection' => env('ACTIVITY_LOGGER_DB_CONNECTION'), ]; ================================================ FILE: config/app.php ================================================ env('APP_NAME', 'Laravel'), /* |-------------------------------------------------------------------------- | Application Environment |-------------------------------------------------------------------------- | | This value determines the "environment" your application is currently | running in. This may determine how you prefer to configure various | services the application utilizes. Set this in your ".env" file. | */ 'env' => env('APP_ENV', 'production'), /* |-------------------------------------------------------------------------- | Application Debug Mode |-------------------------------------------------------------------------- | | When your application is in debug mode, detailed error messages with | stack traces will be shown on every error that occurs within your | application. If disabled, a simple generic error page is shown. | */ 'debug' => (bool) env('APP_DEBUG', false), /* |-------------------------------------------------------------------------- | Application URL |-------------------------------------------------------------------------- | | This URL is used by the console to properly generate URLs when using | the Artisan command line tool. You should set this to the root of | your application so that it is used when running Artisan tasks. | */ 'url' => env('APP_URL', 'http://localhost'), 'asset_url' => env('ASSET_URL'), /* |-------------------------------------------------------------------------- | Application Timezone |-------------------------------------------------------------------------- | | Here you may specify the default timezone for your application, which | will be used by the PHP date and date-time functions. We have gone | ahead and set this to a sensible default for you out of the box. | */ 'timezone' => 'UTC', /* |-------------------------------------------------------------------------- | Application Locale Configuration |-------------------------------------------------------------------------- | | The application locale determines the default locale that will be used | by the translation service provider. You are free to set this value | to any of the locales which will be supported by the application. | */ 'locale' => 'en', /* |-------------------------------------------------------------------------- | Application Fallback Locale |-------------------------------------------------------------------------- | | The fallback locale determines the locale to use when the current one | is not available. You may change the value to correspond to any of | the language folders that are provided through your application. | */ 'fallback_locale' => 'en', /* |-------------------------------------------------------------------------- | Faker Locale |-------------------------------------------------------------------------- | | This locale will be used by the Faker PHP library when generating fake | data for your database seeds. For example, this will be used to get | localized telephone numbers, street address information and more. | */ 'faker_locale' => 'en_US', /* |-------------------------------------------------------------------------- | Encryption Key |-------------------------------------------------------------------------- | | This key is used by the Illuminate encrypter service and should be set | to a random, 32 character string, otherwise these encrypted strings | will not be safe. Please do this before deploying an application! | */ 'key' => env('APP_KEY'), 'cipher' => 'AES-256-CBC', /* |-------------------------------------------------------------------------- | Maintenance Mode Driver |-------------------------------------------------------------------------- | | These configuration options determine the driver used to determine and | manage Laravel's "maintenance mode" status. The "cache" driver will | allow maintenance mode to be controlled across multiple machines. | | Supported drivers: "file", "cache" | */ 'maintenance' => [ 'driver' => 'file', // 'store' => 'redis', ], /* |-------------------------------------------------------------------------- | Autoloaded Service Providers |-------------------------------------------------------------------------- | | The service providers listed here will be automatically loaded on the | request to your application. Feel free to add your own services to | this array to grant expanded functionality to your applications. | */ 'providers' => [ /* * Laravel Framework Service Providers... */ Illuminate\Auth\AuthServiceProvider::class, Illuminate\Broadcasting\BroadcastServiceProvider::class, Illuminate\Bus\BusServiceProvider::class, Illuminate\Cache\CacheServiceProvider::class, Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, Illuminate\Cookie\CookieServiceProvider::class, Illuminate\Database\DatabaseServiceProvider::class, Illuminate\Encryption\EncryptionServiceProvider::class, Illuminate\Filesystem\FilesystemServiceProvider::class, Illuminate\Foundation\Providers\FoundationServiceProvider::class, Illuminate\Hashing\HashServiceProvider::class, Illuminate\Mail\MailServiceProvider::class, Illuminate\Notifications\NotificationServiceProvider::class, Illuminate\Pagination\PaginationServiceProvider::class, Illuminate\Pipeline\PipelineServiceProvider::class, Illuminate\Queue\QueueServiceProvider::class, Illuminate\Redis\RedisServiceProvider::class, Illuminate\Auth\Passwords\PasswordResetServiceProvider::class, Illuminate\Session\SessionServiceProvider::class, Illuminate\Translation\TranslationServiceProvider::class, Illuminate\Validation\ValidationServiceProvider::class, Illuminate\View\ViewServiceProvider::class, /* * Package Service Providers... */ /* * Application Service Providers... */ App\Providers\AppServiceProvider::class, App\Providers\AuthServiceProvider::class, // App\Providers\BroadcastServiceProvider::class, App\Providers\EventServiceProvider::class, App\Providers\RouteServiceProvider::class, ], /* |-------------------------------------------------------------------------- | Class Aliases |-------------------------------------------------------------------------- | | This array of class aliases will be registered when this application | is started. However, feel free to register as many as you wish as | the aliases are "lazy" loaded so they don't hinder performance. | */ 'aliases' => Facade::defaultAliases()->merge([ // 'ExampleClass' => App\Example\ExampleClass::class, ])->toArray(), ]; ================================================ FILE: config/auth.php ================================================ [ 'guard' => 'web', 'passwords' => 'users', ], /* |-------------------------------------------------------------------------- | Authentication Guards |-------------------------------------------------------------------------- | | Next, you may define every authentication guard for your application. | Of course, a great default configuration has been defined for you | here which uses session storage and the Eloquent user provider. | | All authentication drivers have a user provider. This defines how the | users are actually retrieved out of your database or other storage | mechanisms used by this application to persist your user's data. | | Supported: "session" | */ 'guards' => [ 'web' => [ 'driver' => 'session', 'provider' => 'users', ], ], /* |-------------------------------------------------------------------------- | User Providers |-------------------------------------------------------------------------- | | All authentication drivers have a user provider. This defines how the | users are actually retrieved out of your database or other storage | mechanisms used by this application to persist your user's data. | | If you have multiple user tables or models you may configure multiple | sources which represent each model / table. These sources may then | be assigned to any extra authentication guards you have defined. | | Supported: "database", "eloquent" | */ 'providers' => [ 'users' => [ 'driver' => 'eloquent', 'model' => App\Models\User::class, ], // 'users' => [ // 'driver' => 'database', // 'table' => 'users', // ], ], /* |-------------------------------------------------------------------------- | Resetting Passwords |-------------------------------------------------------------------------- | | You may specify multiple password reset configurations if you have more | than one user table or model in the application and you want to have | separate password reset settings based on the specific user types. | | The expire time is the number of minutes that each reset token will be | considered valid. This security feature keeps tokens short-lived so | they have less time to be guessed. You may change this as needed. | */ 'passwords' => [ 'users' => [ 'provider' => 'users', 'table' => 'password_resets', 'expire' => 60, 'throttle' => 60, ], ], /* |-------------------------------------------------------------------------- | Password Confirmation Timeout |-------------------------------------------------------------------------- | | Here you may define the amount of seconds before a password confirmation | times out and the user is prompted to re-enter their password via the | confirmation screen. By default, the timeout lasts for three hours. | */ 'password_timeout' => 10800, ]; ================================================ FILE: config/broadcasting.php ================================================ env('BROADCAST_DRIVER', 'null'), /* |-------------------------------------------------------------------------- | Broadcast Connections |-------------------------------------------------------------------------- | | Here you may define all of the broadcast connections that will be used | to broadcast events to other systems or over websockets. Samples of | each available type of connection are provided inside this array. | */ 'connections' => [ 'pusher' => [ 'driver' => 'pusher', 'key' => env('PUSHER_APP_KEY'), 'secret' => env('PUSHER_APP_SECRET'), 'app_id' => env('PUSHER_APP_ID'), 'options' => [ 'host' => env('PUSHER_HOST', 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com', 'port' => env('PUSHER_PORT', 443), 'scheme' => env('PUSHER_SCHEME', 'https'), 'encrypted' => true, 'useTLS' => env('PUSHER_SCHEME', 'https') === 'https', ], 'client_options' => [ // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html ], ], 'ably' => [ 'driver' => 'ably', 'key' => env('ABLY_KEY'), ], 'redis' => [ 'driver' => 'redis', 'connection' => 'default', ], 'log' => [ 'driver' => 'log', ], 'null' => [ 'driver' => 'null', ], ], ]; ================================================ FILE: config/cache.php ================================================ env('CACHE_DRIVER', 'file'), /* |-------------------------------------------------------------------------- | Cache Stores |-------------------------------------------------------------------------- | | Here you may define all of the cache "stores" for your application as | well as their drivers. You may even define multiple stores for the | same cache driver to group types of items stored in your caches. | | Supported drivers: "apc", "array", "database", "file", | "memcached", "redis", "dynamodb", "octane", "null" | */ 'stores' => [ 'apc' => [ 'driver' => 'apc', ], 'array' => [ 'driver' => 'array', 'serialize' => false, ], 'database' => [ 'driver' => 'database', 'table' => 'cache', 'connection' => null, 'lock_connection' => null, ], 'file' => [ 'driver' => 'file', 'path' => storage_path('framework/cache/data'), ], 'memcached' => [ 'driver' => 'memcached', 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), 'sasl' => [ env('MEMCACHED_USERNAME'), env('MEMCACHED_PASSWORD'), ], 'options' => [ // Memcached::OPT_CONNECT_TIMEOUT => 2000, ], 'servers' => [ [ 'host' => env('MEMCACHED_HOST', '127.0.0.1'), 'port' => env('MEMCACHED_PORT', 11211), 'weight' => 100, ], ], ], 'redis' => [ 'driver' => 'redis', 'connection' => 'cache', 'lock_connection' => 'default', ], 'dynamodb' => [ 'driver' => 'dynamodb', 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), 'endpoint' => env('DYNAMODB_ENDPOINT'), ], 'octane' => [ 'driver' => 'octane', ], ], /* |-------------------------------------------------------------------------- | Cache Key Prefix |-------------------------------------------------------------------------- | | When utilizing the APC, database, memcached, Redis, or DynamoDB cache | stores there might be other applications using the same cache. For | that reason, you may prefix every cache key to avoid collisions. | */ 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), ]; ================================================ FILE: config/cors.php ================================================ ['api/*', 'sanctum/csrf-cookie'], 'allowed_methods' => ['*'], 'allowed_origins' => ['*'], 'allowed_origins_patterns' => [], 'allowed_headers' => ['*'], 'exposed_headers' => [], 'max_age' => 0, 'supports_credentials' => false, ]; ================================================ FILE: config/database.php ================================================ env('DB_CONNECTION', 'mysql'), /* |-------------------------------------------------------------------------- | Database Connections |-------------------------------------------------------------------------- | | Here are each of the database connections setup for your application. | Of course, examples of configuring each database platform that is | supported by Laravel is shown below to make development simple. | | | All database work in Laravel is done through the PHP PDO facilities | so make sure you have the driver for your particular database of | choice installed on your machine before you begin development. | */ 'connections' => [ 'sqlite' => [ 'driver' => 'sqlite', 'url' => env('DATABASE_URL'), 'database' => env('DB_DATABASE', database_path('database.sqlite')), 'prefix' => '', 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), ], 'mysql' => [ 'driver' => 'mysql', 'url' => env('DATABASE_URL'), 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '3306'), 'database' => env('DB_DATABASE', 'forge'), 'username' => env('DB_USERNAME', 'forge'), 'password' => env('DB_PASSWORD', ''), 'unix_socket' => env('DB_SOCKET', ''), 'charset' => 'utf8mb4', 'collation' => 'utf8mb4_unicode_ci', 'prefix' => '', 'prefix_indexes' => true, 'strict' => true, 'engine' => null, 'options' => extension_loaded('pdo_mysql') ? array_filter([ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), ]) : [], ], 'pgsql' => [ 'driver' => 'pgsql', 'url' => env('DATABASE_URL'), 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '5432'), 'database' => env('DB_DATABASE', 'forge'), 'username' => env('DB_USERNAME', 'forge'), 'password' => env('DB_PASSWORD', ''), 'charset' => 'utf8', 'prefix' => '', 'prefix_indexes' => true, 'search_path' => 'public', 'sslmode' => 'prefer', ], 'sqlsrv' => [ 'driver' => 'sqlsrv', 'url' => env('DATABASE_URL'), 'host' => env('DB_HOST', 'localhost'), 'port' => env('DB_PORT', '1433'), 'database' => env('DB_DATABASE', 'forge'), 'username' => env('DB_USERNAME', 'forge'), 'password' => env('DB_PASSWORD', ''), 'charset' => 'utf8', 'prefix' => '', 'prefix_indexes' => true, // 'encrypt' => env('DB_ENCRYPT', 'yes'), // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), ], ], /* |-------------------------------------------------------------------------- | Migration Repository Table |-------------------------------------------------------------------------- | | This table keeps track of all the migrations that have already run for | your application. Using this information, we can determine which of | the migrations on disk haven't actually been run in the database. | */ 'migrations' => 'migrations', /* |-------------------------------------------------------------------------- | Redis Databases |-------------------------------------------------------------------------- | | Redis is an open source, fast, and advanced key-value store that also | provides a richer body of commands than a typical key-value system | such as APC or Memcached. Laravel makes it easy to dig right in. | */ 'redis' => [ 'client' => env('REDIS_CLIENT', 'phpredis'), 'options' => [ 'cluster' => env('REDIS_CLUSTER', 'redis'), 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), ], 'default' => [ 'url' => env('REDIS_URL'), 'host' => env('REDIS_HOST', '127.0.0.1'), 'username' => env('REDIS_USERNAME'), 'password' => env('REDIS_PASSWORD'), 'port' => env('REDIS_PORT', '6379'), 'database' => env('REDIS_DB', '0'), ], 'cache' => [ 'url' => env('REDIS_URL'), 'host' => env('REDIS_HOST', '127.0.0.1'), 'username' => env('REDIS_USERNAME'), 'password' => env('REDIS_PASSWORD'), 'port' => env('REDIS_PORT', '6379'), 'database' => env('REDIS_CACHE_DB', '1'), ], ], ]; ================================================ FILE: config/filament-avatar.php ================================================ 'ui-avatar', /* |-------------------------------------------------------------------------- | PROVIDERS |-------------------------------------------------------------------------- | | This value is the definition of the different avatar providers | */ 'providers' => [ // UI Avatar provider (https://ui-avatars.com/) 'ui-avatar' => [ // Class used to generate the user avatar 'class' => \Devaslanphp\FilamentAvatar\Core\UiAvatarsProvider::class, // UI Avatar source url 'url' => 'https://ui-avatars.com/api/', // User's field used to generate avatar 'name_field' => 'name', // Color used in url text color 'text_color' => 'FFFFFF', // Background color used if the 'dynamic_bg_color' flag is false 'bg_color' => '111827', // If 'true' the provider will generate a dynamic 'bg_color' based on user's name 'dynamic_bg_color' => true, // HSL ranges // You can change them as you like to adapt the dynamic background color 'hRange' => [0, 360], 'sRange' => [50, 75], 'lRange' => [25, 60], ], // Gravatar provider (https://gravatar.com) 'gravatar' => [ // Class used to generate the user avatar 'class' => \Devaslanphp\FilamentAvatar\Core\GravatarProvider::class, // Gravatar source url 'url' => 'https://www.gravatar.com/avatar/', // User's field used to generate avatar 'name_field' => 'email' ], ], ]; ================================================ FILE: config/filament-kanban-board.php ================================================ null, /* |-------------------------------------------------------------------------- | Filament Core Path |-------------------------------------------------------------------------- | | This is the path which Filament will use to load its core routes and assets. | You may change it if it conflicts with your other routes. | */ 'core_path' => env('FILAMENT_CORE_PATH', 'filament'), /* |-------------------------------------------------------------------------- | Filament Domain |-------------------------------------------------------------------------- | | You may change the domain where Filament should be active. If the domain | is empty, all domains will be valid. | */ 'domain' => env('FILAMENT_DOMAIN'), /* |-------------------------------------------------------------------------- | Homepage URL |-------------------------------------------------------------------------- | | This is the URL that Filament will redirect the user to when they click | on the sidebar's header. | */ 'home_url' => '/', /* |-------------------------------------------------------------------------- | Brand Name |-------------------------------------------------------------------------- | | This will be displayed on the login page and in the sidebar's header. | */ 'brand' => env('APP_NAME'), /* |-------------------------------------------------------------------------- | Auth |-------------------------------------------------------------------------- | | This is the configuration that Filament will use to handle authentication | into the admin panel. | */ 'auth' => [ 'guard' => env('FILAMENT_AUTH_GUARD', 'web'), 'pages' => [ 'login' => \Filament\Http\Livewire\Auth\Login::class, ], ], /* |-------------------------------------------------------------------------- | Pages |-------------------------------------------------------------------------- | | This is the namespace and directory that Filament will automatically | register pages from. You may also register pages here. | */ 'pages' => [ 'namespace' => 'App\\Filament\\Pages', 'path' => app_path('Filament/Pages'), 'register' => [ Pages\Dashboard::class, ], ], /* |-------------------------------------------------------------------------- | Resources |-------------------------------------------------------------------------- | | This is the namespace and directory that Filament will automatically | register resources from. You may also register resources here. | */ 'resources' => [ 'namespace' => 'App\\Filament\\Resources', 'path' => app_path('Filament/Resources'), 'register' => [], ], /* |-------------------------------------------------------------------------- | Widgets |-------------------------------------------------------------------------- | | This is the namespace and directory that Filament will automatically | register dashboard widgets from. You may also register widgets here. | */ 'widgets' => [ 'namespace' => 'App\\Filament\\Widgets', 'path' => app_path('Filament/Widgets'), 'register' => [ Widgets\AccountWidget::class, Widgets\FilamentInfoWidget::class, ], ], /* |-------------------------------------------------------------------------- | Livewire |-------------------------------------------------------------------------- | | This is the namespace and directory that Filament will automatically | register Livewire components inside. | */ 'livewire' => [ 'namespace' => 'App\\Filament', 'path' => app_path('Filament'), ], /* |-------------------------------------------------------------------------- | Dark mode |-------------------------------------------------------------------------- | | By enabling this feature, your users are able to select between a light | and dark appearance for the admin panel, or let their system decide. | */ 'dark_mode' => false, /* |-------------------------------------------------------------------------- | Database notifications |-------------------------------------------------------------------------- | | By enabling this feature, your users are able to open a slide-over within | the admin panel to view their database notifications. | */ 'database_notifications' => [ 'enabled' => false, 'polling_interval' => '30s', ], /* |-------------------------------------------------------------------------- | Broadcasting |-------------------------------------------------------------------------- | | By uncommenting the Laravel Echo configuration, you may connect your | admin panel to any Pusher-compatible websockets server. | | This will allow your admin panel to receive real-time notifications. | */ 'broadcasting' => [ // 'echo' => [ // 'broadcaster' => 'pusher', // 'key' => env('VITE_PUSHER_APP_KEY'), // 'cluster' => env('VITE_PUSHER_APP_CLUSTER'), // 'forceTLS' => true, // ], ], /* |-------------------------------------------------------------------------- | Layout |-------------------------------------------------------------------------- | | This is the configuration for the general layout of the admin panel. | | You may configure the max content width from `xl` to `7xl`, or `full` | for no max width. | */ 'layout' => [ 'actions' => [ 'modal' => [ 'actions' => [ 'alignment' => 'left', ], ], ], 'forms' => [ 'actions' => [ 'alignment' => 'left', ], 'have_inline_labels' => false, ], 'footer' => [ 'should_show_logo' => true, ], 'max_content_width' => null, 'notifications' => [ 'vertical_alignment' => 'top', 'alignment' => 'right', ], 'sidebar' => [ 'is_collapsible_on_desktop' => false, 'groups' => [ 'are_collapsible' => true, ], 'width' => null, ], ], /* |-------------------------------------------------------------------------- | Favicon |-------------------------------------------------------------------------- | | This is the path to the favicon used for pages in the admin panel. | */ 'favicon' => null, /* |-------------------------------------------------------------------------- | Default Avatar Provider |-------------------------------------------------------------------------- | | This is the service that will be used to retrieve default avatars if one | has not been uploaded. | */ 'default_avatar_provider' => \Filament\AvatarProviders\UiAvatarsProvider::class, /* |-------------------------------------------------------------------------- | Default Filesystem Disk |-------------------------------------------------------------------------- | | This is the storage disk Filament will use to put media. You may use any | of the disks defined in the `config/filesystems.php`. | */ 'default_filesystem_disk' => env('FILAMENT_FILESYSTEM_DRIVER', 'public'), /* |-------------------------------------------------------------------------- | Google Fonts |-------------------------------------------------------------------------- | | This is the URL for Google Fonts that should be loaded. You may use any | font, or set to `null` to prevent any Google Fonts from loading. | | When using a custom font, you should also set the font family in your | custom theme's `tailwind.config.js` file. | */ 'google_fonts' => 'https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap', /* |-------------------------------------------------------------------------- | Middleware |-------------------------------------------------------------------------- | | You may customise the middleware stack that Filament uses to handle | requests. | */ 'middleware' => [ 'auth' => [ Authenticate::class, ], 'base' => [ EncryptCookies::class, AddQueuedCookiesToResponse::class, StartSession::class, AuthenticateSession::class, ShareErrorsFromSession::class, VerifyCsrfToken::class, SubstituteBindings::class, DispatchServingFilamentEvent::class, MirrorConfigToSubpackages::class, ], ], ]; ================================================ FILE: config/filesystems.php ================================================ env('FILESYSTEM_DISK', 'local'), /* |-------------------------------------------------------------------------- | Filesystem Disks |-------------------------------------------------------------------------- | | Here you may configure as many filesystem "disks" as you wish, and you | may even configure multiple disks of the same driver. Defaults have | been set up for each driver as an example of the required values. | | Supported Drivers: "local", "ftp", "sftp", "s3" | */ 'disks' => [ 'local' => [ 'driver' => 'local', 'root' => storage_path('app'), 'throw' => false, ], 'public' => [ 'driver' => 'local', 'root' => storage_path('app/public'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', 'throw' => false, ], 's3' => [ 'driver' => 's3', 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION'), 'bucket' => env('AWS_BUCKET'), 'url' => env('AWS_URL'), 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 'throw' => false, ], ], /* |-------------------------------------------------------------------------- | Symbolic Links |-------------------------------------------------------------------------- | | Here you may configure the symbolic links that will be created when the | `storage:link` Artisan command is executed. The array keys should be | the locations of the links and the values should be their targets. | */ 'links' => [ public_path('storage') => storage_path('app/public'), ], ]; ================================================ FILE: config/hashing.php ================================================ 'bcrypt', /* |-------------------------------------------------------------------------- | Bcrypt Options |-------------------------------------------------------------------------- | | Here you may specify the configuration options that should be used when | passwords are hashed using the Bcrypt algorithm. This will allow you | to control the amount of time it takes to hash the given password. | */ 'bcrypt' => [ 'rounds' => env('BCRYPT_ROUNDS', 10), ], /* |-------------------------------------------------------------------------- | Argon Options |-------------------------------------------------------------------------- | | Here you may specify the configuration options that should be used when | passwords are hashed using the Argon algorithm. These will allow you | to control the amount of time it takes to hash the given password. | */ 'argon' => [ 'memory' => 65536, 'threads' => 1, 'time' => 4, ], ]; ================================================ FILE: config/larabug.php ================================================ env('LB_KEY', ''), /* |-------------------------------------------------------------------------- | Project key |-------------------------------------------------------------------------- | | This is your project key which you receive when creating a project | Retrieve your key from https://www.larabug.com | */ 'project_key' => env('LB_PROJECT_KEY', ''), /* |-------------------------------------------------------------------------- | Environment setting |-------------------------------------------------------------------------- | | This setting determines if the exception should be send over or not. | */ 'environments' => [ 'production', ], /* |-------------------------------------------------------------------------- | Project version |-------------------------------------------------------------------------- | | Set the project version, default: null. | For git repository: shell_exec("git log -1 --pretty=format:'%h' --abbrev-commit") | */ 'project_version' => null, /* |-------------------------------------------------------------------------- | Lines near exception |-------------------------------------------------------------------------- | | How many lines to show near exception line. The more you specify the bigger | the displayed code will be. Max value can be 50, will be defaulted to | 12 if higher than 50 automatically. | */ 'lines_count' => 12, /* |-------------------------------------------------------------------------- | Prevent duplicates |-------------------------------------------------------------------------- | | Set the sleep time between duplicate exceptions. This value is in seconds, default: 60 seconds (1 minute) | */ 'sleep' => 60, /* |-------------------------------------------------------------------------- | Skip exceptions |-------------------------------------------------------------------------- | | List of exceptions to skip sending. | */ 'except' => [ 'Symfony\Component\HttpKernel\Exception\NotFoundHttpException', ], /* |-------------------------------------------------------------------------- | Key filtering |-------------------------------------------------------------------------- | | Filter out these variables before sending them to LaraBug | */ 'blacklist' => [ '*authorization*', '*password*', '*token*', '*auth*', '*verification*', '*credit_card*', 'cardToken', // mollie card token '*cvv*', '*iban*', '*name*', '*email*' ], /* |-------------------------------------------------------------------------- | Release git hash |-------------------------------------------------------------------------- | | */ // 'release' => trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')), /* |-------------------------------------------------------------------------- | Server setting |-------------------------------------------------------------------------- | | This setting allows you to change the server. | */ 'server' => env('LB_SERVER', 'https://www.larabug.com/api/log'), /* |-------------------------------------------------------------------------- | Verify SSL setting |-------------------------------------------------------------------------- | | Enables / disables the SSL verification when sending exceptions to LaraBug | Never turn SSL verification off on production instances | */ 'verify_ssl' => env('LB_VERIFY_SSL', true), ]; ================================================ FILE: config/laravel-translatable-string-exporter.php ================================================ [ 'app', 'resources', ], // Directories to exclude from search. // // Please note, these directories should be relative to the ones listed in 'directories'. // For example, if you have 'resources' in 'directories', then to ignore the 'resources/ignored' directory, // you need to add 'ignored' to the 'excluded-directories' list. 'excluded-directories'=> [ ], // File Patterns to search for. 'patterns'=> [ '*.php', '*.js', ], // Indicates whether new lines are allowed in translations. 'allow-newlines' => false, // Translation function names. // If your function name contains $ escape it using \$ . 'functions'=> [ '__', '_t', '@lang', ], // Indicates whether you need to sort the translations alphabetically // by original strings (keys). // It helps navigate a translation file and detect possible duplicates. 'sort-keys' => true, // Indicates whether keys from the persistent-strings file should be also added // to translation files automatically on export if they don't yet exist there. 'add-persistent-strings-to-translations' => false, // Indicates whether it's necessary to exclude Laravel translation keys // from the resulting language file if they have corresponding translations // in the given language. // This option allows correctly combine two translation approaches: // Laravel translation keys (PHP) and translatable strings (JSON). 'exclude-translation-keys' => false, // Indicates whether you need to put untranslated strings // at the top of a translation file. // The criterion of whether a string is untranslated is // if its key and value are equivalent. // If sorting is enabled, untranslated and translated strings are sorted separately. 'put-untranslated-strings-at-the-top' => false, ]; ================================================ FILE: config/logging.php ================================================ env('LOG_CHANNEL', 'stack'), /* |-------------------------------------------------------------------------- | Deprecations Log Channel |-------------------------------------------------------------------------- | | This option controls the log channel that should be used to log warnings | regarding deprecated PHP and library features. This allows you to get | your application ready for upcoming major versions of dependencies. | */ 'deprecations' => [ 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), 'trace' => false, ], /* |-------------------------------------------------------------------------- | Log Channels |-------------------------------------------------------------------------- | | Here you may configure the log channels for your application. Out of | the box, Laravel uses the Monolog PHP logging library. This gives | you a variety of powerful log handlers / formatters to utilize. | | Available Drivers: "single", "daily", "slack", "syslog", | "errorlog", "monolog", | "custom", "stack" | */ 'channels' => [ 'larabug' => [ 'driver' => 'larabug', ], 'stack' => [ 'driver' => 'stack', 'channels' => ['single', 'larabug'], 'ignore_exceptions' => false, ], 'single' => [ 'driver' => 'single', 'path' => storage_path('logs/laravel.log'), 'level' => env('LOG_LEVEL', 'debug'), ], 'daily' => [ 'driver' => 'daily', 'path' => storage_path('logs/laravel.log'), 'level' => env('LOG_LEVEL', 'debug'), 'days' => 14, ], 'slack' => [ 'driver' => 'slack', 'url' => env('LOG_SLACK_WEBHOOK_URL'), 'username' => 'Laravel Log', 'emoji' => ':boom:', 'level' => env('LOG_LEVEL', 'critical'), ], 'papertrail' => [ 'driver' => 'monolog', 'level' => env('LOG_LEVEL', 'debug'), 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), 'handler_with' => [ 'host' => env('PAPERTRAIL_URL'), 'port' => env('PAPERTRAIL_PORT'), 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), ], ], 'stderr' => [ 'driver' => 'monolog', 'level' => env('LOG_LEVEL', 'debug'), 'handler' => StreamHandler::class, 'formatter' => env('LOG_STDERR_FORMATTER'), 'with' => [ 'stream' => 'php://stderr', ], ], 'syslog' => [ 'driver' => 'syslog', 'level' => env('LOG_LEVEL', 'debug'), ], 'errorlog' => [ 'driver' => 'errorlog', 'level' => env('LOG_LEVEL', 'debug'), ], 'null' => [ 'driver' => 'monolog', 'handler' => NullHandler::class, ], 'emergency' => [ 'path' => storage_path('logs/laravel.log'), ], ], ]; ================================================ FILE: config/mail.php ================================================ env('MAIL_MAILER', 'smtp'), /* |-------------------------------------------------------------------------- | Mailer Configurations |-------------------------------------------------------------------------- | | Here you may configure all of the mailers used by your application plus | their respective settings. Several examples have been configured for | you and you are free to add your own as your application requires. | | Laravel supports a variety of mail "transport" drivers to be used while | sending an e-mail. You will specify which one you are using for your | mailers below. You are free to add additional mailers as required. | | Supported: "smtp", "sendmail", "mailgun", "ses", | "postmark", "log", "array", "failover" | */ 'mailers' => [ 'smtp' => [ 'transport' => 'smtp', 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), 'port' => env('MAIL_PORT', 587), 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 'username' => env('MAIL_USERNAME'), 'password' => env('MAIL_PASSWORD'), 'timeout' => null, 'local_domain' => env('MAIL_EHLO_DOMAIN'), ], 'ses' => [ 'transport' => 'ses', ], 'mailgun' => [ 'transport' => 'mailgun', ], 'postmark' => [ 'transport' => 'postmark', ], 'sendmail' => [ 'transport' => 'sendmail', 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), ], 'log' => [ 'transport' => 'log', 'channel' => env('MAIL_LOG_CHANNEL'), ], 'array' => [ 'transport' => 'array', ], 'failover' => [ 'transport' => 'failover', 'mailers' => [ 'smtp', 'log', ], ], ], /* |-------------------------------------------------------------------------- | Global "From" Address |-------------------------------------------------------------------------- | | You may wish for all e-mails sent by your application to be sent from | the same address. Here, you may specify a name and address that is | used globally for all e-mails that are sent by your application. | */ 'from' => [ 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), 'name' => env('MAIL_FROM_NAME', 'Example'), ], /* |-------------------------------------------------------------------------- | Markdown Mail Settings |-------------------------------------------------------------------------- | | If you are using Markdown based email rendering, you may configure your | theme and component paths here, allowing you to customize the design | of the emails. Or, you may simply stick with the Laravel defaults! | */ 'markdown' => [ 'theme' => 'default', 'paths' => [ resource_path('views/vendor/mail'), ], ], ]; ================================================ FILE: config/permission.php ================================================ [ /* * When using the "HasPermissions" trait from this package, we need to know which * Eloquent model should be used to retrieve your permissions. Of course, it * is often just the "Permission" model but you may use whatever you like. * * The model you want to use as a Permission model needs to implement the * `Spatie\Permission\Contracts\Permission` contract. */ 'permission' => Spatie\Permission\Models\Permission::class, /* * When using the "HasRoles" trait from this package, we need to know which * Eloquent model should be used to retrieve your roles. Of course, it * is often just the "Role" model but you may use whatever you like. * * The model you want to use as a Role model needs to implement the * `Spatie\Permission\Contracts\Role` contract. */ 'role' => Spatie\Permission\Models\Role::class, ], 'table_names' => [ /* * When using the "HasRoles" trait from this package, we need to know which * table should be used to retrieve your roles. We have chosen a basic * default value but you may easily change it to any table you like. */ 'roles' => 'roles', /* * When using the "HasPermissions" trait from this package, we need to know which * table should be used to retrieve your permissions. We have chosen a basic * default value but you may easily change it to any table you like. */ 'permissions' => 'permissions', /* * When using the "HasPermissions" trait from this package, we need to know which * table should be used to retrieve your models permissions. We have chosen a * basic default value but you may easily change it to any table you like. */ 'model_has_permissions' => 'model_has_permissions', /* * When using the "HasRoles" trait from this package, we need to know which * table should be used to retrieve your models roles. We have chosen a * basic default value but you may easily change it to any table you like. */ 'model_has_roles' => 'model_has_roles', /* * When using the "HasRoles" trait from this package, we need to know which * table should be used to retrieve your roles permissions. We have chosen a * basic default value but you may easily change it to any table you like. */ 'role_has_permissions' => 'role_has_permissions', ], 'column_names' => [ /* * Change this if you want to name the related pivots other than defaults */ 'role_pivot_key' => null, //default 'role_id', 'permission_pivot_key' => null, //default 'permission_id', /* * Change this if you want to name the related model primary key other than * `model_id`. * * For example, this would be nice if your primary keys are all UUIDs. In * that case, name this `model_uuid`. */ 'model_morph_key' => 'model_id', /* * Change this if you want to use the teams feature and your related model's * foreign key is other than `team_id`. */ 'team_foreign_key' => 'team_id', ], /* * When set to true, the method for checking permissions will be registered on the gate. * Set this to false, if you want to implement custom logic for checking permissions. */ 'register_permission_check_method' => true, /* * When set to true the package implements teams using the 'team_foreign_key'. If you want * the migrations to register the 'team_foreign_key', you must set this to true * before doing the migration. If you already did the migration then you must make a new * migration to also add 'team_foreign_key' to 'roles', 'model_has_roles', and * 'model_has_permissions'(view the latest version of package's migration file) */ 'teams' => false, /* * When set to true, the required permission names are added to the exception * message. This could be considered an information leak in some contexts, so * the default setting is false here for optimum safety. */ 'display_permission_in_exception' => false, /* * When set to true, the required role names are added to the exception * message. This could be considered an information leak in some contexts, so * the default setting is false here for optimum safety. */ 'display_role_in_exception' => false, /* * By default wildcard permission lookups are disabled. */ 'enable_wildcard_permission' => false, 'cache' => [ /* * By default all permissions are cached for 24 hours to speed up performance. * When permissions or roles are updated the cache is flushed automatically. */ 'expiration_time' => \DateInterval::createFromDateString('24 hours'), /* * The cache key used to store all permissions. */ 'key' => 'spatie.permission.cache', /* * You may optionally indicate a specific cache driver to use for permission and * role caching using any of the `store` drivers listed in the cache.php config * file. Using 'default' here means to use the `default` set in cache.php. */ 'store' => 'default', ], ]; ================================================ FILE: config/queue.php ================================================ env('QUEUE_CONNECTION', 'sync'), /* |-------------------------------------------------------------------------- | Queue Connections |-------------------------------------------------------------------------- | | Here you may configure the connection information for each server that | is used by your application. A default configuration has been added | for each back-end shipped with Laravel. You are free to add more. | | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" | */ 'connections' => [ 'sync' => [ 'driver' => 'sync', ], 'database' => [ 'driver' => 'database', 'table' => 'jobs', 'queue' => 'default', 'retry_after' => 90, 'after_commit' => false, ], 'beanstalkd' => [ 'driver' => 'beanstalkd', 'host' => 'localhost', 'queue' => 'default', 'retry_after' => 90, 'block_for' => 0, 'after_commit' => false, ], 'sqs' => [ 'driver' => 'sqs', 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), 'queue' => env('SQS_QUEUE', 'default'), 'suffix' => env('SQS_SUFFIX'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 'after_commit' => false, ], 'redis' => [ 'driver' => 'redis', 'connection' => 'default', 'queue' => env('REDIS_QUEUE', 'default'), 'retry_after' => 90, 'block_for' => null, 'after_commit' => false, ], ], /* |-------------------------------------------------------------------------- | Failed Queue Jobs |-------------------------------------------------------------------------- | | These options configure the behavior of failed queue job logging so you | can control which database and table are used to store the jobs that | have failed. You may change them to any database / table you wish. | */ 'failed' => [ 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), 'database' => env('DB_CONNECTION', 'mysql'), 'table' => 'failed_jobs', ], ]; ================================================ FILE: config/sanctum.php ================================================ explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf( '%s%s', 'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1', Sanctum::currentApplicationUrlWithPort() ))), /* |-------------------------------------------------------------------------- | Sanctum Guards |-------------------------------------------------------------------------- | | This array contains the authentication guards that will be checked when | Sanctum is trying to authenticate a request. If none of these guards | are able to authenticate the request, Sanctum will use the bearer | token that's present on an incoming request for authentication. | */ 'guard' => ['web'], /* |-------------------------------------------------------------------------- | Expiration Minutes |-------------------------------------------------------------------------- | | This value controls the number of minutes until an issued token will be | considered expired. If this value is null, personal access tokens do | not expire. This won't tweak the lifetime of first-party sessions. | */ 'expiration' => null, /* |-------------------------------------------------------------------------- | Sanctum Middleware |-------------------------------------------------------------------------- | | When authenticating your first-party SPA with Sanctum you may need to | customize some of the middleware Sanctum uses while processing the | request. You may change the middleware listed below as required. | */ 'middleware' => [ 'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class, 'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class, ], ]; ================================================ FILE: config/services.php ================================================ [ 'domain' => env('MAILGUN_DOMAIN'), 'secret' => env('MAILGUN_SECRET'), 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), 'scheme' => 'https', ], 'postmark' => [ 'token' => env('POSTMARK_TOKEN'), ], 'ses' => [ 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), ], ]; ================================================ FILE: config/session.php ================================================ env('SESSION_DRIVER', 'file'), /* |-------------------------------------------------------------------------- | Session Lifetime |-------------------------------------------------------------------------- | | Here you may specify the number of minutes that you wish the session | to be allowed to remain idle before it expires. If you want them | to immediately expire on the browser closing, set that option. | */ 'lifetime' => env('SESSION_LIFETIME', 120), 'expire_on_close' => false, /* |-------------------------------------------------------------------------- | Session Encryption |-------------------------------------------------------------------------- | | This option allows you to easily specify that all of your session data | should be encrypted before it is stored. All encryption will be run | automatically by Laravel and you can use the Session like normal. | */ 'encrypt' => false, /* |-------------------------------------------------------------------------- | Session File Location |-------------------------------------------------------------------------- | | When using the native session driver, we need a location where session | files may be stored. A default has been set for you but a different | location may be specified. This is only needed for file sessions. | */ 'files' => storage_path('framework/sessions'), /* |-------------------------------------------------------------------------- | Session Database Connection |-------------------------------------------------------------------------- | | When using the "database" or "redis" session drivers, you may specify a | connection that should be used to manage these sessions. This should | correspond to a connection in your database configuration options. | */ 'connection' => env('SESSION_CONNECTION'), /* |-------------------------------------------------------------------------- | Session Database Table |-------------------------------------------------------------------------- | | When using the "database" session driver, you may specify the table we | should use to manage the sessions. Of course, a sensible default is | provided for you; however, you are free to change this as needed. | */ 'table' => 'sessions', /* |-------------------------------------------------------------------------- | Session Cache Store |-------------------------------------------------------------------------- | | While using one of the framework's cache driven session backends you may | list a cache store that should be used for these sessions. This value | must match with one of the application's configured cache "stores". | | Affects: "apc", "dynamodb", "memcached", "redis" | */ 'store' => env('SESSION_STORE'), /* |-------------------------------------------------------------------------- | Session Sweeping Lottery |-------------------------------------------------------------------------- | | Some session drivers must manually sweep their storage location to get | rid of old sessions from storage. Here are the chances that it will | happen on a given request. By default, the odds are 2 out of 100. | */ 'lottery' => [2, 100], /* |-------------------------------------------------------------------------- | Session Cookie Name |-------------------------------------------------------------------------- | | Here you may change the name of the cookie used to identify a session | instance by ID. The name specified here will get used every time a | new session cookie is created by the framework for every driver. | */ 'cookie' => env( 'SESSION_COOKIE', Str::slug(env('APP_NAME', 'laravel'), '_').'_session' ), /* |-------------------------------------------------------------------------- | Session Cookie Path |-------------------------------------------------------------------------- | | The session cookie path determines the path for which the cookie will | be regarded as available. Typically, this will be the root path of | your application but you are free to change this when necessary. | */ 'path' => '/', /* |-------------------------------------------------------------------------- | Session Cookie Domain |-------------------------------------------------------------------------- | | Here you may change the domain of the cookie used to identify a session | in your application. This will determine which domains the cookie is | available to in your application. A sensible default has been set. | */ 'domain' => env('SESSION_DOMAIN'), /* |-------------------------------------------------------------------------- | HTTPS Only Cookies |-------------------------------------------------------------------------- | | By setting this option to true, session cookies will only be sent back | to the server if the browser has a HTTPS connection. This will keep | the cookie from being sent to you when it can't be done securely. | */ 'secure' => env('SESSION_SECURE_COOKIE'), /* |-------------------------------------------------------------------------- | HTTP Access Only |-------------------------------------------------------------------------- | | Setting this value to true will prevent JavaScript from accessing the | value of the cookie and the cookie will only be accessible through | the HTTP protocol. You are free to modify this option if needed. | */ 'http_only' => true, /* |-------------------------------------------------------------------------- | Same-Site Cookies |-------------------------------------------------------------------------- | | This option determines how your cookies behave when cross-site requests | take place, and can be used to mitigate CSRF attacks. By default, we | will set this value to "lax" since this is a secure default value. | | Supported: "lax", "strict", "none", null | */ 'same_site' => 'lax', ]; ================================================ FILE: config/system.php ================================================ [ 'en' => 'English', 'fr' => 'Français' ], /* |-------------------------------------------------------------------------- | Main menu configuration |-------------------------------------------------------------------------- | | This value is the definition of the application main menu | Used in the 'App\View\Components\MainMenu' blade component | | Parameters: | ----------- | - 'title' The translatable title of the menu | | - 'route' The menu route name | | - 'icon' The Fontawesome icon class | (icons list: http://fontawesome.io/icons/) | | - 'always_shown' If equals to "true" the menu is always shown without | checking permissions, if "false" the 'permissions' parameter | is used to show or not the menu item | | - 'show_notification_indicator' If equals to "true" the menu item will | show an indicator if there is notifications not read | | - 'permissions' The permissions used to show or not the menu item | | - (Optional) 'children' The sub menu items | - 'children.title' The translatable title of the sub menu | | - 'children.route' The sub menu route name | | - 'children.icon' The Fontawesome icon class | (icons list: http://fontawesome.io/icons/) | | - 'children.always_shown' If equals to "true" the menu is always | shown without checking permissions, if "false" | the 'permissions' parameter is used to show or not | the menu item | | - 'children.permissions' The permissions used to show or not | the menu item | */ 'main_menu' => [ [ 'title' => 'Overview', 'route' => 'home', 'icon' => 'fa-table-columns', 'always_shown' => true, 'show_notification_indicator' => false, 'permissions' => [''] ], [ 'title' => 'Analytics', 'route' => 'analytics', 'icon' => 'fa-chart-bar', 'always_shown' => false, 'show_notification_indicator' => false, 'permissions' => ['Can view Analytics page'] ], [ 'title' => 'Tickets', 'route' => 'tickets', 'icon' => 'fa-ticket', 'always_shown' => false, 'show_notification_indicator' => false, 'permissions' => ['Can view Tickets page'] ], [ 'title' => 'Kanban Board', 'route' => 'kanban', 'icon' => 'fa-clipboard-check', 'always_shown' => false, 'show_notification_indicator' => false, 'permissions' => ['Can view Kanban page'] ], [ 'title' => 'Administration', 'route' => 'administration', 'icon' => 'fa-cogs', 'always_shown' => false, 'show_notification_indicator' => false, 'permissions' => [ 'View all users', 'View company users', 'View all companies', 'View own companies', 'Manage ticket statuses', 'Manage ticket types', 'Manage ticket priorities', 'View activity log' ], 'children' => [ [ 'title' => 'Manage companies', 'route' => 'administration.companies', 'icon' => 'fa-building', 'always_shown' => false, 'permissions' => ['View all companies', 'View own companies'] ], [ 'title' => 'Manage users', 'route' => 'administration.users', 'icon' => 'fa-users', 'always_shown' => false, 'permissions' => ['View all users', 'View company users'] ], [ 'title' => 'Manage user roles', 'route' => 'administration.roles', 'icon' => 'fa-user-lock', 'always_shown' => false, 'permissions' => ['Manage user roles'] ], [ 'title' => 'Manage statuses', 'route' => 'administration.ticket-statuses', 'icon' => 'fa-square-check', 'always_shown' => false, 'permissions' => ['Manage ticket statuses'] ], [ 'title' => 'Manage types', 'route' => 'administration.ticket-types', 'icon' => 'fa-copy', 'always_shown' => false, 'permissions' => ['Manage ticket types'] ], [ 'title' => 'Manage priorities', 'route' => 'administration.ticket-priorities', 'icon' => 'fa-arrow-up', 'always_shown' => false, 'permissions' => ['Manage ticket priorities'] ], [ 'title' => 'Activity logs', 'route' => 'administration.activity-logs', 'icon' => 'fa-bell', 'always_shown' => false, 'permissions' => ['View activity log'] ] ] ], [ 'title' => 'Notifications', 'route' => 'notifications', 'icon' => 'fa-bell', 'always_shown' => true, 'show_notification_indicator' => true, 'permissions' => [''] ], ], ]; ================================================ FILE: config/tables.php ================================================ 'M j, Y', 'date_time_format' => 'M j, Y H:i:s', 'time_format' => 'H:i:s', /* |-------------------------------------------------------------------------- | Default Filesystem Disk |-------------------------------------------------------------------------- | | This is the storage disk Filament will use to find media. You may use any | of the disks defined in the `config/filesystems.php`. | */ 'default_filesystem_disk' => env('TABLES_FILESYSTEM_DRIVER', 'public'), /* |-------------------------------------------------------------------------- | Dark mode |-------------------------------------------------------------------------- | | By enabling this setting, your tables will be ready for Tailwind's Dark | Mode feature. | | https://tailwindcss.com/docs/dark-mode | */ 'dark_mode' => false, /* |-------------------------------------------------------------------------- | Pagination |-------------------------------------------------------------------------- | | This is the configuration for the pagination of tables. | */ 'pagination' => [ 'default_records_per_page' => 10, 'records_per_page_select_options' => [5, 10, 25, 50, -1], ], /* |-------------------------------------------------------------------------- | Layout |-------------------------------------------------------------------------- | | This is the configuration for the general layout of tables. | */ 'layout' => [ 'actions' => [ 'cell' => [ 'alignment' => 'right', ], 'modal' => [ 'actions' => [ 'alignment' => 'left', ], ], ], ], ]; ================================================ FILE: config/view.php ================================================ [ resource_path('views'), ], /* |-------------------------------------------------------------------------- | Compiled View Path |-------------------------------------------------------------------------- | | This option determines where all the compiled Blade templates will be | stored for your application. Typically, this is within the storage | directory. However, as usual, you are free to change this value. | */ 'compiled' => env( 'VIEW_COMPILED_PATH', realpath(storage_path('framework/views')) ), ]; ================================================ FILE: database/.gitignore ================================================ *.sqlite* ================================================ FILE: database/factories/UserFactory.php ================================================ */ class UserFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition() { return [ 'name' => fake()->name(), 'email' => fake()->unique()->safeEmail(), 'email_verified_at' => now(), 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password 'remember_token' => Str::random(10), ]; } /** * Indicate that the model's email address should be unverified. * * @return static */ public function unverified() { return $this->state(fn (array $attributes) => [ 'email_verified_at' => null, ]); } } ================================================ FILE: database/help_desk.pgsql.sql ================================================ INSERT INTO users (id, name, email, email_verified_at, password, remember_token, created_at, updated_at, register_token, deleted_at) VALUES (4, 'Dark Vador', 'darkvador@gmail.com', NULL, '$2y$10$4f8HPTwKhVzpAP5kas6PN.VP5TlJrgZ0nEcbhrnk6OFtkiUA9czbK', 'OHEZUT3JTudVaM98f52WUSEIBYt2iFVe4x3fIIh5ppc6mbLQkfcvdd7g7Rcq', '2022-09-09 20:04:18', '2022-09-12 14:43:54', NULL, NULL), (5, 'John DOE', 'johndoe@gmail.com', NULL, '$2y$10$dhwupOVEiVsQpQZeSIJhWutsBYF8pde7/BTViD5j9f8c1CregT9Gq', NULL, '2022-09-11 14:37:09', '2022-09-12 11:39:04', NULL, NULL), (6, 'Jane DOE', 'janedoe@gmail.com', NULL, '$2y$10$l1pWnJh2iUDttzLLlmG5weeTNT7O/UAwsWnPrD8XH8yszCzrhFh82', NULL, '2022-09-11 14:48:37', '2022-09-11 15:08:21', NULL, NULL), (10, 'Thomas Edison', 'thomasedison@gmail.com', NULL, '$2y$10$MR51TVg3xzUXs308oTxp8.Pw9sjs7ijaeGYLJZsq85CdY/azYD0bG', NULL, '2022-09-11 15:31:51', '2022-09-11 15:31:55', '82c93eba-9a33-4dbe-abac-22f11f5c1f54', NULL); INSERT INTO projects (id, name, description, owner_id, deleted_at, created_at, updated_at, ticket_prefix) VALUES (1, 'Default project', '

This is the default project to associate to any created ticket that are not related to any other projects.

', 4, NULL, '2022-09-11 16:29:08', '2022-09-11 16:35:48', 'DEFP'), (2, 'IDEAO', '

Project for managing tickets linked to the IDEAO project

', 4, NULL, '2022-09-11 17:09:31', '2022-09-11 17:12:47', 'IDEA'), (3, 'Arena job', '

Project for managing tickets linked to the Arena job project

', 4, NULL, '2022-09-11 17:13:05', '2022-09-11 17:13:17', 'ARJO'), (4, 'ARP', '

Project for managing tickets linked to the ARP project

', 5, NULL, '2022-09-11 17:13:25', '2022-09-11 17:15:04', 'ARPT'); INSERT INTO favorite_projects (id, user_id, project_id, created_at, updated_at) VALUES (6, 4, 2, '2022-09-11 17:09:33', '2022-09-11 17:09:33'), (9, 4, 4, '2022-09-11 17:20:53', '2022-09-11 17:20:53'), (10, 5, 4, '2022-09-11 17:30:49', '2022-09-11 17:30:49'), (11, 4, 1, '2022-09-12 11:50:42', '2022-09-12 11:50:42'); INSERT INTO tickets (id, title, content, status, priority, owner_id, responsible_id, deleted_at, created_at, updated_at, project_id, type, number) VALUES (2, 'Cannot access the platform', '

Hello,

I cannot access the platform with the credentials received by email.

Can you see what is the problem, please?

Thanks

', 'validated', 'highest', 4, 5, NULL, '2022-09-11 18:27:55', '2022-09-12 11:48:00', 1, 'bug', '0001'), (3, 'Design enhancement', '

Add a logo of the company to the login page.

', 'created', 'low', 5, 4, NULL, '2022-09-11 18:45:55', '2022-09-12 13:08:05', 2, 'improvement', '0001'), (4, 'Quiz wizard', '

Add a wizard system to the quiz page

', 'created', 'normal', 4, NULL, NULL, '2022-09-11 20:37:14', '2022-09-11 20:37:14', 2, 'improvement', '0002'), (9, 'Internal error - Login page', '

We got an internal error when we visit the login page (url: /auth/login)

', 'created', 'highest', 5, 4, NULL, '2022-09-11 20:58:37', '2022-09-12 13:08:12', 4, 'bug', '0001'); INSERT INTO comments (id, owner_id, ticket_id, content, deleted_at, created_at, updated_at) VALUES (1, 4, 2, '

Hello,

We are working on it, I let you know ASAP.

Best regards.

', NULL, '2022-09-12 09:40:33', '2022-09-12 14:23:36'), (5, 4, 2, '

FYI

We have reproduced the error, and we are working on it.

Error while accessing with valid credentials

', NULL, '2022-09-12 09:54:44', '2022-09-12 14:15:56'), (9, 5, 2, '

A fix has been deployed.

Can you please test it and let me know.

Best regards.

', NULL, '2022-09-12 11:47:38', '2022-09-12 14:15:56'), (10, 4, 2, '

Hello,

The fix is working good. 

Thanks.

', NULL, '2022-09-12 11:48:13', '2022-09-12 14:43:08'); INSERT INTO ticket_priorities (id, title, text_color, bg_color, icon, deleted_at, created_at, updated_at, slug) VALUES (1, 'Lowest', '#dcfce7', '#22c55e', 'fa-arrow-down', NULL, '2022-09-19 10:29:52', '2022-09-19 11:30:57', 'lowest'), (2, 'Low', '#10b981', '#d1fae5', 'fa-angle-down', NULL, '2022-09-19 10:32:24', '2022-09-19 11:30:57', 'low'), (3, 'Normal', '#6b7280', '#f3f4f6', 'fa-minus', NULL, '2022-09-19 10:32:50', '2022-09-19 11:30:57', 'normal'), (4, 'High', '#f97316', '#ffedd5', 'fa-angle-up', NULL, '2022-09-19 10:37:09', '2022-09-19 11:30:57', 'high'), (5, 'Highest', '#ef4444', '#fee2e2', 'fa-arrow-up', NULL, '2022-09-19 10:37:37', '2022-09-19 11:41:39', 'highest'); INSERT INTO ticket_statuses (id, title, text_color, bg_color, "default", deleted_at, created_at, updated_at, slug) VALUES (1, 'Created', '#6b7280', '#f3f4f6', true, NULL, '2022-09-19 09:17:50', '2022-09-19 11:30:48', 'created'), (2, 'In progress', '#0ea5e9', '#e0f2fe', false, NULL, '2022-09-19 09:19:17', '2022-09-19 11:30:48', 'in_progress'), (3, 'Done', '#f97316', '#ffedd5', false, NULL, '2022-09-19 09:21:17', '2022-09-19 11:30:48', 'done'), (4, 'Validated', '#22c55e', '#dcfce7', false, NULL, '2022-09-19 09:21:29', '2022-09-19 11:30:48', 'validated'), (5, 'Rejected', '#ef4444', '#fee2e2', false, NULL, '2022-09-19 09:21:41', '2022-09-19 11:30:48', 'rejected'); INSERT INTO ticket_types (id, title, text_color, bg_color, icon, deleted_at, created_at, updated_at, slug) VALUES (1, 'Improvement', '#dbeafe', '#3b82f6', 'fa-arrow-up', NULL, '2022-09-19 10:29:52', '2022-09-19 11:31:04', 'improvement'), (2, 'New feature', '#10b981', '#d1fae5', 'fa-plus-square-o', NULL, '2022-09-19 10:32:24', '2022-09-19 11:31:04', 'new-feature'), (4, 'Task', '#f97316', '#ffedd5', 'fa-check-square-o', NULL, '2022-09-19 10:37:09', '2022-09-19 11:31:04', 'task'), (5, 'Bug', '#ef4444', '#fee2e2', 'fa-bug', NULL, '2022-09-19 10:37:37', '2022-09-19 11:31:04', 'bug'); INSERT INTO companies (id, name, logo, description, is_disabled, responsible_id, deleted_at, created_at, updated_at) VALUES (1, 'Google', null, '

Google is an American technology services company founded in 1998 in Silicon Valley, California, by Larry Page and Sergey Brin, creators of the Google search engine. It has been a subsidiary of the Alphabet company since August 2015.

', false, 4, NULL, '2022-09-24 23:31:50', '2022-09-24 23:44:50'), (2, 'Meta', null, '

Meta Platforms, Inc., better known by the trade name Meta, is an American company created in 2004 by Mark Zuckerberg. It is one of the giants of the Web, grouped under the acronym GAFAM, alongside Google, Apple, Amazon and Microsoft.

', true, 5, NULL, '2022-09-24 23:46:26', '2022-09-24 23:46:47'); TRUNCATE TABLE permissions CASCADE; TRUNCATE TABLE permissions CASCADE; TRUNCATE TABLE roles CASCADE; TRUNCATE TABLE role_has_permissions CASCADE; TRUNCATE TABLE model_has_roles CASCADE; INSERT INTO permissions (id, name, guard_name, created_at, updated_at) VALUES (1, 'View all projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (2, 'Update all projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (3, 'Delete all projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (4, 'Create projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (5, 'View own projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (6, 'Update own projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (7, 'Delete own projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (8, 'View all tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (9, 'Update all tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (10, 'Delete all tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (11, 'Create tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (12, 'View own tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (13, 'Update own tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (14, 'Delete own tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (15, 'Assign tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (16, 'Change status tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (17, 'Can view Analytics page', 'web', '2022-09-25 15:32:37', '2022-09-25 15:32:37'), (18, 'Can view Tickets page', 'web', '2022-09-25 15:32:37', '2022-09-25 15:32:37'), (19, 'Can view Kanban page', 'web', '2022-09-25 15:32:37', '2022-09-25 15:32:37'), (20, 'Can view Administration page', 'web', '2022-09-25 15:32:37', '2022-09-25 15:32:37'), (21, 'View all users', 'web', '2022-09-25 15:41:08', '2022-09-25 15:41:08'), (22, 'View company users', 'web', '2022-09-25 15:41:08', '2022-09-25 15:41:08'), (25, 'Manage ticket statuses', 'web', '2022-09-25 15:41:08', '2022-09-25 15:41:08'), (26, 'Manage ticket priorities', 'web', '2022-09-25 15:41:08', '2022-09-25 15:41:08'), (27, 'Manage ticket types', 'web', '2022-09-25 15:41:08', '2022-09-25 15:41:08'), (28, 'View activity log', 'web', '2022-09-25 15:41:08', '2022-09-25 15:41:08'), (29, 'Create users', 'web', '2022-09-25 16:05:37', '2022-09-25 16:05:37'), (30, 'Update users', 'web', '2022-09-25 16:05:37', '2022-09-25 16:05:37'), (31, 'Delete users', 'web', '2022-09-25 16:05:37', '2022-09-25 16:05:37'), (32, 'Assign permissions', 'web', '2022-09-25 16:05:37', '2022-09-25 16:05:37'), (33, 'View all companies', 'web', '2022-09-25 16:14:01', '2022-09-25 16:14:01'), (34, 'View own companies', 'web', '2022-09-25 16:14:02', '2022-09-25 16:14:02'), (38, 'Create companies', 'web', '2022-09-25 16:19:38', '2022-09-25 16:19:38'), (39, 'Update companies', 'web', '2022-09-25 16:19:38', '2022-09-25 16:19:38'), (40, 'Delete companies', 'web', '2022-09-25 16:19:38', '2022-09-25 16:19:38'), (41, 'Manage user roles', 'web', '2022-09-30 07:40:23', '2022-09-30 07:40:23'), (42, 'Create user roles', 'web', '2022-09-30 08:10:52', '2022-09-30 08:10:52'), (43, 'Update user roles', 'web', '2022-09-30 08:10:52', '2022-09-30 08:10:52'), (44, 'Delete user roles', 'web', '2022-09-30 08:10:52', '2022-09-30 08:10:52'); INSERT INTO roles (id, name, guard_name, created_at, updated_at) VALUES (1, 'Super administrator', 'web', '2022-09-30 08:11:23', '2022-09-30 08:11:23'), (2, 'Employee', 'web', '2022-09-30 08:14:58', '2022-09-30 08:14:58'), (3, 'Customer', 'web', '2022-09-30 08:17:01', '2022-09-30 08:17:01'); INSERT INTO model_has_roles (role_id, model_type, model_id) VALUES (1, 'App\Models\User', 4), (2, 'App\Models\User', 5), (3, 'App\Models\User', 6); INSERT INTO role_has_permissions (permission_id, role_id) VALUES (1, 1), (2, 1), (3, 1), (4, 1), (5, 1), (5, 2), (5, 3), (6, 1), (7, 1), (8, 1), (9, 1), (10, 1), (11, 1), (11, 2), (11, 3), (12, 1), (12, 2), (12, 3), (13, 1), (13, 2), (13, 3), (14, 1), (14, 2), (14, 3), (15, 1), (15, 2), (16, 1), (16, 2), (17, 1), (17, 2), (17, 3), (18, 1), (18, 2), (18, 3), (19, 1), (19, 2), (19, 3), (20, 1), (20, 3), (21, 1), (22, 1), (22, 3), (25, 1), (26, 1), (27, 1), (28, 1), (29, 1), (29, 3), (30, 1), (30, 3), (31, 1), (32, 1), (33, 1), (34, 1), (34, 3), (38, 1), (39, 1), (39, 3), (40, 1), (41, 1), (42, 1), (43, 1), (44, 1); ================================================ FILE: database/help_desk.sql ================================================ SET foreign_key_checks = 0; INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `register_token`, `deleted_at`) VALUES (4, 'Dark Vador', 'darkvador@gmail.com', NULL, '$2y$10$4f8HPTwKhVzpAP5kas6PN.VP5TlJrgZ0nEcbhrnk6OFtkiUA9czbK', 'OHEZUT3JTudVaM98f52WUSEIBYt2iFVe4x3fIIh5ppc6mbLQkfcvdd7g7Rcq', '2022-09-09 20:04:18', '2022-09-12 14:43:54', NULL, NULL), (5, 'John DOE', 'johndoe@gmail.com', NULL, '$2y$10$dhwupOVEiVsQpQZeSIJhWutsBYF8pde7/BTViD5j9f8c1CregT9Gq', NULL, '2022-09-11 14:37:09', '2022-09-12 11:39:04', NULL, NULL), (6, 'Jane DOE', 'janedoe@gmail.com', NULL, '$2y$10$l1pWnJh2iUDttzLLlmG5weeTNT7O/UAwsWnPrD8XH8yszCzrhFh82', NULL, '2022-09-11 14:48:37', '2022-09-11 15:08:21', NULL, NULL), (10, 'Thomas Edison', 'thomasedison@gmail.com', NULL, '$2y$10$MR51TVg3xzUXs308oTxp8.Pw9sjs7ijaeGYLJZsq85CdY/azYD0bG', NULL, '2022-09-11 15:31:51', '2022-09-11 15:31:55', '82c93eba-9a33-4dbe-abac-22f11f5c1f54', NULL); INSERT INTO `projects` (`id`, `name`, `description`, `owner_id`, `deleted_at`, `created_at`, `updated_at`, `ticket_prefix`) VALUES (1, 'Default project', '

This is the default project to associate to any created ticket that are not related to any other projects.

', 4, NULL, '2022-09-11 16:29:08', '2022-09-11 16:35:48', 'DEFP'), (2, 'IDEAO', '

Project for managing tickets linked to the IDEAO project

', 4, NULL, '2022-09-11 17:09:31', '2022-09-11 17:12:47', 'IDEA'), (3, 'Arena job', '

Project for managing tickets linked to the Arena job project

', 4, NULL, '2022-09-11 17:13:05', '2022-09-11 17:13:17', 'ARJO'), (4, 'ARP', '

Project for managing tickets linked to the ARP project

', 5, NULL, '2022-09-11 17:13:25', '2022-09-11 17:15:04', 'ARPT'); INSERT INTO `favorite_projects` (`id`, `user_id`, `project_id`, `created_at`, `updated_at`) VALUES (6, 4, 2, '2022-09-11 17:09:33', '2022-09-11 17:09:33'), (9, 4, 4, '2022-09-11 17:20:53', '2022-09-11 17:20:53'), (10, 5, 4, '2022-09-11 17:30:49', '2022-09-11 17:30:49'), (11, 4, 1, '2022-09-12 11:50:42', '2022-09-12 11:50:42'); INSERT INTO `tickets` (`id`, `title`, `content`, `status`, `priority`, `owner_id`, `responsible_id`, `deleted_at`, `created_at`, `updated_at`, `project_id`, `type`, `number`) VALUES (2, 'Cannot access the platform', '

Hello,

I cannot access the platform with the credentials received by email.

Can you see what is the problem, please?

Thanks

', 'validated', 'highest', 4, 5, NULL, '2022-09-11 18:27:55', '2022-09-12 11:48:00', 1, 'bug', '0001'), (3, 'Design enhancement', '

Add a logo of the company to the login page.

', 'created', 'low', 5, 4, NULL, '2022-09-11 18:45:55', '2022-09-12 13:08:05', 2, 'improvement', '0001'), (4, 'Quiz wizard', '

Add a wizard system to the quiz page

', 'created', 'normal', 4, NULL, NULL, '2022-09-11 20:37:14', '2022-09-11 20:37:14', 2, 'improvement', '0002'), (9, 'Internal error - Login page', '

We got an internal error when we visit the login page (url: /auth/login)

', 'created', 'highest', 5, 4, NULL, '2022-09-11 20:58:37', '2022-09-12 13:08:12', 4, 'bug', '0001'); INSERT INTO `comments` (`id`, `owner_id`, `ticket_id`, `content`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 4, 2, '

Hello,

We are working on it, I let you know ASAP.

Best regards.

', NULL, '2022-09-12 09:40:33', '2022-09-12 14:23:36'), (5, 4, 2, '

FYI

We have reproduced the error, and we are working on it.

Error while accessing with valid credentials

', NULL, '2022-09-12 09:54:44', '2022-09-12 14:15:56'), (9, 5, 2, '

A fix has been deployed.

Can you please test it and let me know.

Best regards.

', NULL, '2022-09-12 11:47:38', '2022-09-12 14:15:56'), (10, 4, 2, '

Hello,

The fix is working good. 

Thanks.

', NULL, '2022-09-12 11:48:13', '2022-09-12 14:43:08'); INSERT INTO `ticket_priorities` (`id`, `title`, `text_color`, `bg_color`, `icon`, `deleted_at`, `created_at`, `updated_at`, `slug`) VALUES (1, 'Lowest', '#dcfce7', '#22c55e', 'fa-arrow-down', NULL, '2022-09-19 10:29:52', '2022-09-19 11:30:57', 'lowest'), (2, 'Low', '#10b981', '#d1fae5', 'fa-angle-down', NULL, '2022-09-19 10:32:24', '2022-09-19 11:30:57', 'low'), (3, 'Normal', '#6b7280', '#f3f4f6', 'fa-minus', NULL, '2022-09-19 10:32:50', '2022-09-19 11:30:57', 'normal'), (4, 'High', '#f97316', '#ffedd5', 'fa-angle-up', NULL, '2022-09-19 10:37:09', '2022-09-19 11:30:57', 'high'), (5, 'Highest', '#ef4444', '#fee2e2', 'fa-arrow-up', NULL, '2022-09-19 10:37:37', '2022-09-19 11:41:39', 'highest'); INSERT INTO `ticket_statuses` (`id`, `title`, `text_color`, `bg_color`, `default`, `deleted_at`, `created_at`, `updated_at`, `slug`) VALUES (1, 'Created', '#6b7280', '#f3f4f6', 1, NULL, '2022-09-19 09:17:50', '2022-09-19 11:30:48', 'created'), (2, 'In progress', '#0ea5e9', '#e0f2fe', 0, NULL, '2022-09-19 09:19:17', '2022-09-19 11:30:48', 'in_progress'), (3, 'Done', '#f97316', '#ffedd5', 0, NULL, '2022-09-19 09:21:17', '2022-09-19 11:30:48', 'done'), (4, 'Validated', '#22c55e', '#dcfce7', 0, NULL, '2022-09-19 09:21:29', '2022-09-19 11:30:48', 'validated'), (5, 'Rejected', '#ef4444', '#fee2e2', 0, NULL, '2022-09-19 09:21:41', '2022-09-19 11:30:48', 'rejected'); INSERT INTO `ticket_types` (`id`, `title`, `text_color`, `bg_color`, `icon`, `deleted_at`, `created_at`, `updated_at`, `slug`) VALUES (1, 'Improvement', '#dbeafe', '#3b82f6', 'fa-arrow-up', NULL, '2022-09-19 10:29:52', '2022-09-19 11:31:04', 'improvement'), (2, 'New feature', '#10b981', '#d1fae5', 'fa-plus-square-o', NULL, '2022-09-19 10:32:24', '2022-09-19 11:31:04', 'new-feature'), (4, 'Task', '#f97316', '#ffedd5', 'fa-check-square-o', NULL, '2022-09-19 10:37:09', '2022-09-19 11:31:04', 'task'), (5, 'Bug', '#ef4444', '#fee2e2', 'fa-bug', NULL, '2022-09-19 10:37:37', '2022-09-19 11:31:04', 'bug'); INSERT INTO `companies` (`id`, `name`, `logo`, `description`, `is_disabled`, `responsible_id`, `deleted_at`, `created_at`, `updated_at`) VALUES (1, 'Google', null, '

Google is an American technology services company founded in 1998 in Silicon Valley, California, by Larry Page and Sergey Brin, creators of the Google search engine. It has been a subsidiary of the Alphabet company since August 2015.

', 0, 4, NULL, '2022-09-24 23:31:50', '2022-09-24 23:44:50'), (2, 'Meta', null, '

Meta Platforms, Inc., better known by the trade name Meta, is an American company created in 2004 by Mark Zuckerberg. It is one of the giants of the Web, grouped under the acronym GAFAM, alongside Google, Apple, Amazon and Microsoft.

', 1, 5, NULL, '2022-09-24 23:46:26', '2022-09-24 23:46:47'); TRUNCATE TABLE model_has_roles; INSERT INTO `model_has_roles` (`role_id`, `model_type`, `model_id`) VALUES (1, 'App\\Models\\User', 4), (2, 'App\\Models\\User', 5), (3, 'App\\Models\\User', 6); TRUNCATE TABLE permissions; INSERT INTO `permissions` (`id`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES (1, 'View all projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (2, 'Update all projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (3, 'Delete all projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (4, 'Create projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (5, 'View own projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (6, 'Update own projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (7, 'Delete own projects', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (8, 'View all tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (9, 'Update all tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (10, 'Delete all tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (11, 'Create tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (12, 'View own tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (13, 'Update own tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (14, 'Delete own tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (15, 'Assign tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (16, 'Change status tickets', 'web', '2022-09-25 14:51:10', '2022-09-25 14:51:10'), (17, 'Can view Analytics page', 'web', '2022-09-25 15:32:37', '2022-09-25 15:32:37'), (18, 'Can view Tickets page', 'web', '2022-09-25 15:32:37', '2022-09-25 15:32:37'), (19, 'Can view Kanban page', 'web', '2022-09-25 15:32:37', '2022-09-25 15:32:37'), (20, 'Can view Administration page', 'web', '2022-09-25 15:32:37', '2022-09-25 15:32:37'), (21, 'View all users', 'web', '2022-09-25 15:41:08', '2022-09-25 15:41:08'), (22, 'View company users', 'web', '2022-09-25 15:41:08', '2022-09-25 15:41:08'), (25, 'Manage ticket statuses', 'web', '2022-09-25 15:41:08', '2022-09-25 15:41:08'), (26, 'Manage ticket priorities', 'web', '2022-09-25 15:41:08', '2022-09-25 15:41:08'), (27, 'Manage ticket types', 'web', '2022-09-25 15:41:08', '2022-09-25 15:41:08'), (28, 'View activity log', 'web', '2022-09-25 15:41:08', '2022-09-25 15:41:08'), (29, 'Create users', 'web', '2022-09-25 16:05:37', '2022-09-25 16:05:37'), (30, 'Update users', 'web', '2022-09-25 16:05:37', '2022-09-25 16:05:37'), (31, 'Delete users', 'web', '2022-09-25 16:05:37', '2022-09-25 16:05:37'), (32, 'Assign permissions', 'web', '2022-09-25 16:05:37', '2022-09-25 16:05:37'), (33, 'View all companies', 'web', '2022-09-25 16:14:01', '2022-09-25 16:14:01'), (34, 'View own companies', 'web', '2022-09-25 16:14:02', '2022-09-25 16:14:02'), (38, 'Create companies', 'web', '2022-09-25 16:19:38', '2022-09-25 16:19:38'), (39, 'Update companies', 'web', '2022-09-25 16:19:38', '2022-09-25 16:19:38'), (40, 'Delete companies', 'web', '2022-09-25 16:19:38', '2022-09-25 16:19:38'), (41, 'Manage user roles', 'web', '2022-09-30 07:40:23', '2022-09-30 07:40:23'), (42, 'Create user roles', 'web', '2022-09-30 08:10:52', '2022-09-30 08:10:52'), (43, 'Update user roles', 'web', '2022-09-30 08:10:52', '2022-09-30 08:10:52'), (44, 'Delete user roles', 'web', '2022-09-30 08:10:52', '2022-09-30 08:10:52'); TRUNCATE TABLE roles; INSERT INTO `roles` (`id`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES (1, 'Super administrator', 'web', '2022-09-30 08:11:23', '2022-09-30 08:11:23'), (2, 'Employee', 'web', '2022-09-30 08:14:58', '2022-09-30 08:14:58'), (3, 'Customer', 'web', '2022-09-30 08:17:01', '2022-09-30 08:17:01'); TRUNCATE TABLE role_has_permissions; INSERT INTO `role_has_permissions` (`permission_id`, `role_id`) VALUES (1, 1), (2, 1), (3, 1), (4, 1), (5, 1), (5, 2), (5, 3), (6, 1), (7, 1), (8, 1), (9, 1), (10, 1), (11, 1), (11, 2), (11, 3), (12, 1), (12, 2), (12, 3), (13, 1), (13, 2), (13, 3), (14, 1), (14, 2), (14, 3), (15, 1), (15, 2), (16, 1), (16, 2), (17, 1), (17, 2), (17, 3), (18, 1), (18, 2), (18, 3), (19, 1), (19, 2), (19, 3), (20, 1), (20, 3), (21, 1), (22, 1), (22, 3), (25, 1), (26, 1), (27, 1), (28, 1), (29, 1), (29, 3), (30, 1), (30, 3), (31, 1), (32, 1), (33, 1), (34, 1), (34, 3), (38, 1), (39, 1), (39, 3), (40, 1), (41, 1), (42, 1), (43, 1), (44, 1); SET foreign_key_checks = 1; ================================================ FILE: database/migrations/2014_10_12_000000_create_users_table.php ================================================ id(); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }; ================================================ FILE: database/migrations/2014_10_12_100000_create_password_resets_table.php ================================================ string('email')->index(); $table->string('token'); $table->timestamp('created_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('password_resets'); } }; ================================================ FILE: database/migrations/2019_08_19_000000_create_failed_jobs_table.php ================================================ id(); $table->string('uuid')->unique(); $table->text('connection'); $table->text('queue'); $table->longText('payload'); $table->longText('exception'); $table->timestamp('failed_at')->useCurrent(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('failed_jobs'); } }; ================================================ FILE: database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php ================================================ id(); $table->morphs('tokenable'); $table->string('name'); $table->string('token', 64)->unique(); $table->text('abilities')->nullable(); $table->timestamp('last_used_at')->nullable(); $table->timestamp('expires_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('personal_access_tokens'); } }; ================================================ FILE: database/migrations/2022_09_08_094911_create_icons_table.php ================================================ id(); $table->string('icon'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('icons'); } }; ================================================ FILE: database/migrations/2022_09_09_220749_create_tickets_table.php ================================================ id(); $table->string('title'); $table->longText('content'); $table->string('status'); $table->string('priority'); $table->foreignId('owner_id')->constrained('users'); $table->foreignId('responsible_id')->nullable()->constrained('users'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('tickets'); } }; ================================================ FILE: database/migrations/2022_09_10_205032_create_projects_table.php ================================================ id(); $table->string('name'); $table->longText('description')->nullable(); $table->foreignId('owner_id')->constrained('users'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('projects'); } }; ================================================ FILE: database/migrations/2022_09_10_205612_create_user_projects_table.php ================================================ id(); $table->foreignId('user_id')->constrained('users'); $table->foreignId('project_id')->constrained('projects'); $table->string('role'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('user_projects'); } }; ================================================ FILE: database/migrations/2022_09_10_205915_add_project_to_tickets.php ================================================ foreignId('project_id')->constrained('projects'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('tickets', function (Blueprint $table) { $table->dropForeign(['project_id']); $table->dropColumn('project_id'); }); } }; ================================================ FILE: database/migrations/2022_09_10_220736_add_role_to_users.php ================================================ string('role'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('role'); }); } }; ================================================ FILE: database/migrations/2022_09_11_142205_add_register_token_to_users.php ================================================ uuid('register_token')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('register_token'); }); } }; ================================================ FILE: database/migrations/2022_09_11_153059_add_soft_deletes_to_users.php ================================================ softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropSoftDeletes(); }); } }; ================================================ FILE: database/migrations/2022_09_11_163751_create_favorite_projects_table.php ================================================ id(); $table->foreignId('user_id')->constrained('users'); $table->foreignId('project_id')->constrained('projects'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('favorite_projects'); } }; ================================================ FILE: database/migrations/2022_09_11_202013_add_type_to_tickets.php ================================================ string('type'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('tickets', function (Blueprint $table) { $table->dropColumn('type'); }); } }; ================================================ FILE: database/migrations/2022_09_12_090928_create_comments_table.php ================================================ id(); $table->foreignId('owner_id')->constrained('users'); $table->foreignId('ticket_id')->constrained('tickets'); $table->longText('content'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('comments'); } }; ================================================ FILE: database/migrations/2022_09_12_095043_create_jobs_table.php ================================================ bigIncrements('id'); $table->string('queue')->index(); $table->longText('payload'); $table->unsignedTinyInteger('attempts'); $table->unsignedInteger('reserved_at')->nullable(); $table->unsignedInteger('available_at'); $table->unsignedInteger('created_at'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('jobs'); } }; ================================================ FILE: database/migrations/2022_09_14_175349_create_notifications_table.php ================================================ uuid('id')->primary(); $table->string('type'); $table->morphs('notifiable'); $table->text('data'); $table->timestamp('read_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('notifications'); } }; ================================================ FILE: database/migrations/2022_09_15_142643_add_local_to_user.php ================================================ string('locale')->default('en'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('locale'); }); } }; ================================================ FILE: database/migrations/2022_09_19_095513_create_ticket_statuses_table.php ================================================ id(); $table->string('title'); $table->string('text_color'); $table->string('bg_color'); $table->boolean('default')->default(false); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('ticket_statuses'); } }; ================================================ FILE: database/migrations/2022_09_19_111627_create_ticket_priorities_table.php ================================================ id(); $table->string('title'); $table->string('text_color'); $table->string('bg_color'); $table->string('icon'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('ticket_priorities'); } }; ================================================ FILE: database/migrations/2022_09_19_111633_create_ticket_types_table.php ================================================ id(); $table->string('title'); $table->string('text_color'); $table->string('bg_color'); $table->string('icon'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('ticket_types'); } }; ================================================ FILE: database/migrations/2022_09_19_122813_add_slug_to_ticket_statuses.php ================================================ string('slug', 500); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('ticket_statuses', function (Blueprint $table) { $table->dropColumn('slug'); }); } }; ================================================ FILE: database/migrations/2022_09_19_122821_add_slug_to_ticket_types.php ================================================ string('slug', 500); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('ticket_types', function (Blueprint $table) { $table->dropColumn('slug'); }); } }; ================================================ FILE: database/migrations/2022_09_19_122828_add_slug_to_ticket_priorities.php ================================================ string('slug', 500); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('ticket_priorities', function (Blueprint $table) { $table->dropColumn('slug'); }); } }; ================================================ FILE: database/migrations/2022_09_19_143232_add_ticket_prefix_to_projects.php ================================================ string('ticket_prefix', 4); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('projects', function (Blueprint $table) { $table->dropColumn('ticket_prefix'); }); } }; ================================================ FILE: database/migrations/2022_09_19_144042_add_number_to_tickets.php ================================================ string('number'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('tickets', function (Blueprint $table) { $table->dropColumn('number'); }); } }; ================================================ FILE: database/migrations/2022_09_19_181148_create_activity_log_table.php ================================================ create(config('activitylog.table_name'), function (Blueprint $table) { $table->bigIncrements('id'); $table->string('log_name')->nullable(); $table->text('description'); $table->nullableMorphs('subject', 'subject'); $table->nullableMorphs('causer', 'causer'); $table->json('properties')->nullable(); $table->timestamps(); $table->index('log_name'); }); } public function down() { Schema::connection(config('activitylog.database_connection'))->dropIfExists(config('activitylog.table_name')); } } ================================================ FILE: database/migrations/2022_09_19_181149_add_event_column_to_activity_log_table.php ================================================ table(config('activitylog.table_name'), function (Blueprint $table) { $table->string('event')->nullable()->after('subject_type'); }); } public function down() { Schema::connection(config('activitylog.database_connection'))->table(config('activitylog.table_name'), function (Blueprint $table) { $table->dropColumn('event'); }); } } ================================================ FILE: database/migrations/2022_09_19_181150_add_batch_uuid_column_to_activity_log_table.php ================================================ table(config('activitylog.table_name'), function (Blueprint $table) { $table->uuid('batch_uuid')->nullable()->after('properties'); }); } public function down() { Schema::connection(config('activitylog.database_connection'))->table(config('activitylog.table_name'), function (Blueprint $table) { $table->dropColumn('batch_uuid'); }); } } ================================================ FILE: database/migrations/2022_09_19_181611_drop_user_projects.php ================================================ id(); $table->foreignId('user_id')->constrained('users'); $table->foreignId('project_id')->constrained('projects'); $table->string('role'); $table->timestamps(); }); } }; ================================================ FILE: database/migrations/2022_09_19_212320_create_chats_table.php ================================================ id(); $table->longText('message'); $table->foreignId('ticket_id')->constrained('tickets'); $table->foreignId('user_id')->constrained('users'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('chats'); } }; ================================================ FILE: database/migrations/2022_09_24_230950_create_companies_table.php ================================================ id(); $table->string('name'); $table->string('logo')->nullable(); $table->longText('description')->nullable(); $table->boolean('is_disabled')->default(false); $table->foreignId('responsible_id')->constrained('users'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('companies'); } }; ================================================ FILE: database/migrations/2022_09_25_154331_create_permission_tables.php ================================================ bigIncrements('id'); // permission id $table->string('name'); // For MySQL 8.0 use string('name', 125); $table->string('guard_name'); // For MySQL 8.0 use string('guard_name', 125); $table->timestamps(); $table->unique(['name', 'guard_name']); }); Schema::create($tableNames['roles'], function (Blueprint $table) use ($teams, $columnNames) { $table->bigIncrements('id'); // role id if ($teams || config('permission.testing')) { // permission.testing is a fix for sqlite testing $table->unsignedBigInteger($columnNames['team_foreign_key'])->nullable(); $table->index($columnNames['team_foreign_key'], 'roles_team_foreign_key_index'); } $table->string('name'); // For MySQL 8.0 use string('name', 125); $table->string('guard_name'); // For MySQL 8.0 use string('guard_name', 125); $table->timestamps(); if ($teams || config('permission.testing')) { $table->unique([$columnNames['team_foreign_key'], 'name', 'guard_name']); } else { $table->unique(['name', 'guard_name']); } }); Schema::create($tableNames['model_has_permissions'], function (Blueprint $table) use ($tableNames, $columnNames, $teams) { $table->unsignedBigInteger(PermissionRegistrar::$pivotPermission); $table->string('model_type'); $table->unsignedBigInteger($columnNames['model_morph_key']); $table->index([$columnNames['model_morph_key'], 'model_type'], 'model_has_permissions_model_id_model_type_index'); $table->foreign(PermissionRegistrar::$pivotPermission) ->references('id') // permission id ->on($tableNames['permissions']) ->onDelete('cascade'); if ($teams) { $table->unsignedBigInteger($columnNames['team_foreign_key']); $table->index($columnNames['team_foreign_key'], 'model_has_permissions_team_foreign_key_index'); $table->primary([$columnNames['team_foreign_key'], PermissionRegistrar::$pivotPermission, $columnNames['model_morph_key'], 'model_type'], 'model_has_permissions_permission_model_type_primary'); } else { $table->primary([PermissionRegistrar::$pivotPermission, $columnNames['model_morph_key'], 'model_type'], 'model_has_permissions_permission_model_type_primary'); } }); Schema::create($tableNames['model_has_roles'], function (Blueprint $table) use ($tableNames, $columnNames, $teams) { $table->unsignedBigInteger(PermissionRegistrar::$pivotRole); $table->string('model_type'); $table->unsignedBigInteger($columnNames['model_morph_key']); $table->index([$columnNames['model_morph_key'], 'model_type'], 'model_has_roles_model_id_model_type_index'); $table->foreign(PermissionRegistrar::$pivotRole) ->references('id') // role id ->on($tableNames['roles']) ->onDelete('cascade'); if ($teams) { $table->unsignedBigInteger($columnNames['team_foreign_key']); $table->index($columnNames['team_foreign_key'], 'model_has_roles_team_foreign_key_index'); $table->primary([$columnNames['team_foreign_key'], PermissionRegistrar::$pivotRole, $columnNames['model_morph_key'], 'model_type'], 'model_has_roles_role_model_type_primary'); } else { $table->primary([PermissionRegistrar::$pivotRole, $columnNames['model_morph_key'], 'model_type'], 'model_has_roles_role_model_type_primary'); } }); Schema::create($tableNames['role_has_permissions'], function (Blueprint $table) use ($tableNames) { $table->unsignedBigInteger(PermissionRegistrar::$pivotPermission); $table->unsignedBigInteger(PermissionRegistrar::$pivotRole); $table->foreign(PermissionRegistrar::$pivotPermission) ->references('id') // permission id ->on($tableNames['permissions']) ->onDelete('cascade'); $table->foreign(PermissionRegistrar::$pivotRole) ->references('id') // role id ->on($tableNames['roles']) ->onDelete('cascade'); $table->primary([PermissionRegistrar::$pivotPermission, PermissionRegistrar::$pivotRole], 'role_has_permissions_permission_id_role_id_primary'); }); app('cache') ->store(config('permission.cache.store') != 'default' ? config('permission.cache.store') : null) ->forget(config('permission.cache.key')); } /** * Reverse the migrations. * * @return void */ public function down() { $tableNames = config('permission.table_names'); if (empty($tableNames)) { throw new \Exception('Error: config/permission.php not found and defaults could not be merged. Please publish the package configuration before proceeding, or drop the tables manually.'); } Schema::drop($tableNames['role_has_permissions']); Schema::drop($tableNames['model_has_roles']); Schema::drop($tableNames['model_has_permissions']); Schema::drop($tableNames['roles']); Schema::drop($tableNames['permissions']); } } ================================================ FILE: database/migrations/2022_09_25_163436_remove_role_from_users.php ================================================ dropColumn('role'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->string('role'); }); } }; ================================================ FILE: database/migrations/2022_09_25_165452_create_company_users_table.php ================================================ id(); $table->foreignId('user_id')->constrained('users'); $table->foreignId('company_id')->constrained('companies'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('company_users'); } }; ================================================ FILE: database/migrations/2022_09_30_133603_add_company_id_to_projects.php ================================================ foreignId('company_id')->nullable()->constrained('companies'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('projects', function (Blueprint $table) { $table->dropForeign(['company_id']); $table->dropColumn('company_id'); }); } }; ================================================ FILE: database/seeders/DatabaseSeeder.php ================================================ call(FontAwesomeFreeSeeder::class); $this->call(PermissionsSeeder::class); } } ================================================ FILE: database/seeders/FontAwesomeFreeSeeder.php ================================================ 'fa-500px', 1 => 'fa-accessible-icon', 2 => 'fa-accusoft', 3 => 'fa-acquisitions-incorporated', 4 => 'fa-ad', 5 => 'fa-address-book', 6 => 'fa-address-card', 7 => 'fa-adjust', 8 => 'fa-adn', 9 => 'fa-adversal', 10 => 'fa-affiliatetheme', 11 => 'fa-air-freshener', 12 => 'fa-airbnb', 13 => 'fa-algolia', 14 => 'fa-align-center', 15 => 'fa-align-justify', 16 => 'fa-align-left', 17 => 'fa-align-right', 18 => 'fa-alipay', 19 => 'fa-allergies', 20 => 'fa-amazon', 21 => 'fa-amazon-pay', 22 => 'fa-ambulance', 23 => 'fa-american-sign-language-interpreting', 24 => 'fa-amilia', 25 => 'fa-anchor', 26 => 'fa-android', 27 => 'fa-angellist', 28 => 'fa-angle-double-down', 29 => 'fa-angle-double-left', 30 => 'fa-angle-double-right', 31 => 'fa-angle-double-up', 32 => 'fa-angle-down', 33 => 'fa-angle-left', 34 => 'fa-angle-right', 35 => 'fa-angle-up', 36 => 'fa-angry', 37 => 'fa-angrycreative', 38 => 'fa-angular', 39 => 'fa-ankh', 40 => 'fa-app-store', 41 => 'fa-app-store-ios', 42 => 'fa-apper', 43 => 'fa-apple', 44 => 'fa-apple-alt', 45 => 'fa-apple-pay', 46 => 'fa-archive', 47 => 'fa-archway', 48 => 'fa-arrow-alt-circle-down', 49 => 'fa-arrow-alt-circle-left', 50 => 'fa-arrow-alt-circle-right', 51 => 'fa-arrow-alt-circle-up', 52 => 'fa-arrow-circle-down', 53 => 'fa-arrow-circle-left', 54 => 'fa-arrow-circle-right', 55 => 'fa-arrow-circle-up', 56 => 'fa-arrow-down', 57 => 'fa-arrow-left', 58 => 'fa-arrow-right', 59 => 'fa-arrow-up', 60 => 'fa-arrows-alt', 61 => 'fa-arrows-alt-h', 62 => 'fa-arrows-alt-v', 63 => 'fa-artstation', 64 => 'fa-assistive-listening-systems', 65 => 'fa-asterisk', 66 => 'fa-asymmetrik', 67 => 'fa-at', 68 => 'fa-atlas', 69 => 'fa-atlassian', 70 => 'fa-atom', 71 => 'fa-audible', 72 => 'fa-audio-description', 73 => 'fa-autoprefixer', 74 => 'fa-avianex', 75 => 'fa-aviato', 76 => 'fa-award', 77 => 'fa-aws', 78 => 'fa-baby', 79 => 'fa-baby-carriage', 80 => 'fa-backspace', 81 => 'fa-backward', 82 => 'fa-bacon', 83 => 'fa-bacteria', 84 => 'fa-bacterium', 85 => 'fa-bahai', 86 => 'fa-balance-scale', 87 => 'fa-balance-scale-left', 88 => 'fa-balance-scale-right', 89 => 'fa-ban', 90 => 'fa-band-aid', 91 => 'fa-bandcamp', 92 => 'fa-barcode', 93 => 'fa-bars', 94 => 'fa-baseball-ball', 95 => 'fa-basketball-ball', 96 => 'fa-bath', 97 => 'fa-battery-empty', 98 => 'fa-battery-full', 99 => 'fa-battery-half', 100 => 'fa-battery-quarter', 101 => 'fa-battery-three-quarters', 102 => 'fa-battle-net', 103 => 'fa-bed', 104 => 'fa-beer', 105 => 'fa-behance', 106 => 'fa-behance-square', 107 => 'fa-bell', 108 => 'fa-bell-slash', 109 => 'fa-bezier-curve', 110 => 'fa-bible', 111 => 'fa-bicycle', 112 => 'fa-biking', 113 => 'fa-bimobject', 114 => 'fa-binoculars', 115 => 'fa-biohazard', 116 => 'fa-birthday-cake', 117 => 'fa-bitbucket', 118 => 'fa-bitcoin', 119 => 'fa-bity', 120 => 'fa-black-tie', 121 => 'fa-blackberry', 122 => 'fa-blender', 123 => 'fa-blender-phone', 124 => 'fa-blind', 125 => 'fa-blog', 126 => 'fa-blogger', 127 => 'fa-blogger-b', 128 => 'fa-bluetooth', 129 => 'fa-bluetooth-b', 130 => 'fa-bold', 131 => 'fa-bolt', 132 => 'fa-bomb', 133 => 'fa-bone', 134 => 'fa-bong', 135 => 'fa-book', 136 => 'fa-book-dead', 137 => 'fa-book-medical', 138 => 'fa-book-open', 139 => 'fa-book-reader', 140 => 'fa-bookmark', 141 => 'fa-bootstrap', 142 => 'fa-border-all', 143 => 'fa-border-none', 144 => 'fa-border-style', 145 => 'fa-bowling-ball', 146 => 'fa-box', 147 => 'fa-box-open', 148 => 'fa-box-tissue', 149 => 'fa-boxes', 150 => 'fa-braille', 151 => 'fa-brain', 152 => 'fa-bread-slice', 153 => 'fa-briefcase', 154 => 'fa-briefcase-medical', 155 => 'fa-broadcast-tower', 156 => 'fa-broom', 157 => 'fa-brush', 158 => 'fa-btc', 159 => 'fa-buffer', 160 => 'fa-bug', 161 => 'fa-building', 162 => 'fa-bullhorn', 163 => 'fa-bullseye', 164 => 'fa-burn', 165 => 'fa-buromobelexperte', 166 => 'fa-bus', 167 => 'fa-bus-alt', 168 => 'fa-business-time', 169 => 'fa-buy-n-large', 170 => 'fa-buysellads', 171 => 'fa-calculator', 172 => 'fa-calendar', 173 => 'fa-calendar-alt', 174 => 'fa-calendar-check', 175 => 'fa-calendar-day', 176 => 'fa-calendar-minus', 177 => 'fa-calendar-plus', 178 => 'fa-calendar-times', 179 => 'fa-calendar-week', 180 => 'fa-camera', 181 => 'fa-camera-retro', 182 => 'fa-campground', 183 => 'fa-canadian-maple-leaf', 184 => 'fa-candy-cane', 185 => 'fa-cannabis', 186 => 'fa-capsules', 187 => 'fa-car', 188 => 'fa-car-alt', 189 => 'fa-car-battery', 190 => 'fa-car-crash', 191 => 'fa-car-side', 192 => 'fa-caravan', 193 => 'fa-caret-down', 194 => 'fa-caret-left', 195 => 'fa-caret-right', 196 => 'fa-caret-square-down', 197 => 'fa-caret-square-left', 198 => 'fa-caret-square-right', 199 => 'fa-caret-square-up', 200 => 'fa-caret-up', 201 => 'fa-carrot', 202 => 'fa-cart-arrow-down', 203 => 'fa-cart-plus', 204 => 'fa-cash-register', 205 => 'fa-cat', 206 => 'fa-cc-amazon-pay', 207 => 'fa-cc-amex', 208 => 'fa-cc-apple-pay', 209 => 'fa-cc-diners-club', 210 => 'fa-cc-discover', 211 => 'fa-cc-jcb', 212 => 'fa-cc-mastercard', 213 => 'fa-cc-paypal', 214 => 'fa-cc-stripe', 215 => 'fa-cc-visa', 216 => 'fa-centercode', 217 => 'fa-centos', 218 => 'fa-certificate', 219 => 'fa-chair', 220 => 'fa-chalkboard', 221 => 'fa-chalkboard-teacher', 222 => 'fa-charging-station', 223 => 'fa-chart-area', 224 => 'fa-chart-bar', 225 => 'fa-chart-line', 226 => 'fa-chart-pie', 227 => 'fa-check', 228 => 'fa-check-circle', 229 => 'fa-check-double', 230 => 'fa-check-square', 231 => 'fa-cheese', 232 => 'fa-chess', 233 => 'fa-chess-bishop', 234 => 'fa-chess-board', 235 => 'fa-chess-king', 236 => 'fa-chess-knight', 237 => 'fa-chess-pawn', 238 => 'fa-chess-queen', 239 => 'fa-chess-rook', 240 => 'fa-chevron-circle-down', 241 => 'fa-chevron-circle-left', 242 => 'fa-chevron-circle-right', 243 => 'fa-chevron-circle-up', 244 => 'fa-chevron-down', 245 => 'fa-chevron-left', 246 => 'fa-chevron-right', 247 => 'fa-chevron-up', 248 => 'fa-child', 249 => 'fa-chrome', 250 => 'fa-chromecast', 251 => 'fa-church', 252 => 'fa-circle', 253 => 'fa-circle-notch', 254 => 'fa-city', 255 => 'fa-clinic-medical', 256 => 'fa-clipboard', 257 => 'fa-clipboard-check', 258 => 'fa-clipboard-list', 259 => 'fa-clock', 260 => 'fa-clone', 261 => 'fa-closed-captioning', 262 => 'fa-cloud', 263 => 'fa-cloud-download-alt', 264 => 'fa-cloud-meatball', 265 => 'fa-cloud-moon', 266 => 'fa-cloud-moon-rain', 267 => 'fa-cloud-rain', 268 => 'fa-cloud-showers-heavy', 269 => 'fa-cloud-sun', 270 => 'fa-cloud-sun-rain', 271 => 'fa-cloud-upload-alt', 272 => 'fa-cloudflare', 273 => 'fa-cloudscale', 274 => 'fa-cloudsmith', 275 => 'fa-cloudversify', 276 => 'fa-cocktail', 277 => 'fa-code', 278 => 'fa-code-branch', 279 => 'fa-codepen', 280 => 'fa-codiepie', 281 => 'fa-coffee', 282 => 'fa-cog', 283 => 'fa-cogs', 284 => 'fa-coins', 285 => 'fa-columns', 286 => 'fa-comment', 287 => 'fa-comment-alt', 288 => 'fa-comment-dollar', 289 => 'fa-comment-dots', 290 => 'fa-comment-medical', 291 => 'fa-comment-slash', 292 => 'fa-comments', 293 => 'fa-comments-dollar', 294 => 'fa-compact-disc', 295 => 'fa-compass', 296 => 'fa-compress', 297 => 'fa-compress-alt', 298 => 'fa-compress-arrows-alt', 299 => 'fa-concierge-bell', 300 => 'fa-confluence', 301 => 'fa-connectdevelop', 302 => 'fa-contao', 303 => 'fa-cookie', 304 => 'fa-cookie-bite', 305 => 'fa-copy', 306 => 'fa-copyright', 307 => 'fa-cotton-bureau', 308 => 'fa-couch', 309 => 'fa-cpanel', 310 => 'fa-creative-commons', 311 => 'fa-creative-commons-by', 312 => 'fa-creative-commons-nc', 313 => 'fa-creative-commons-nc-eu', 314 => 'fa-creative-commons-nc-jp', 315 => 'fa-creative-commons-nd', 316 => 'fa-creative-commons-pd', 317 => 'fa-creative-commons-pd-alt', 318 => 'fa-creative-commons-remix', 319 => 'fa-creative-commons-sa', 320 => 'fa-creative-commons-sampling', 321 => 'fa-creative-commons-sampling-plus', 322 => 'fa-creative-commons-share', 323 => 'fa-creative-commons-zero', 324 => 'fa-credit-card', 325 => 'fa-critical-role', 326 => 'fa-crop', 327 => 'fa-crop-alt', 328 => 'fa-cross', 329 => 'fa-crosshairs', 330 => 'fa-crow', 331 => 'fa-crown', 332 => 'fa-crutch', 333 => 'fa-css3', 334 => 'fa-css3-alt', 335 => 'fa-cube', 336 => 'fa-cubes', 337 => 'fa-cut', 338 => 'fa-cuttlefish', 339 => 'fa-d-and-d', 340 => 'fa-d-and-d-beyond', 341 => 'fa-dailymotion', 342 => 'fa-dashcube', 343 => 'fa-database', 344 => 'fa-deaf', 345 => 'fa-deezer', 346 => 'fa-delicious', 347 => 'fa-democrat', 348 => 'fa-deploydog', 349 => 'fa-deskpro', 350 => 'fa-desktop', 351 => 'fa-dev', 352 => 'fa-deviantart', 353 => 'fa-dharmachakra', 354 => 'fa-dhl', 355 => 'fa-diagnoses', 356 => 'fa-diaspora', 357 => 'fa-dice', 358 => 'fa-dice-d20', 359 => 'fa-dice-d6', 360 => 'fa-dice-five', 361 => 'fa-dice-four', 362 => 'fa-dice-one', 363 => 'fa-dice-six', 364 => 'fa-dice-three', 365 => 'fa-dice-two', 366 => 'fa-digg', 367 => 'fa-digital-ocean', 368 => 'fa-digital-tachograph', 369 => 'fa-directions', 370 => 'fa-discord', 371 => 'fa-discourse', 372 => 'fa-disease', 373 => 'fa-divide', 374 => 'fa-dizzy', 375 => 'fa-dna', 376 => 'fa-dochub', 377 => 'fa-docker', 378 => 'fa-dog', 379 => 'fa-dollar-sign', 380 => 'fa-dolly', 381 => 'fa-dolly-flatbed', 382 => 'fa-donate', 383 => 'fa-door-closed', 384 => 'fa-door-open', 385 => 'fa-dot-circle', 386 => 'fa-dove', 387 => 'fa-download', 388 => 'fa-draft2digital', 389 => 'fa-drafting-compass', 390 => 'fa-dragon', 391 => 'fa-draw-polygon', 392 => 'fa-dribbble', 393 => 'fa-dribbble-square', 394 => 'fa-dropbox', 395 => 'fa-drum', 396 => 'fa-drum-steelpan', 397 => 'fa-drumstick-bite', 398 => 'fa-drupal', 399 => 'fa-dumbbell', 400 => 'fa-dumpster', 401 => 'fa-dumpster-fire', 402 => 'fa-dungeon', 403 => 'fa-dyalog', 404 => 'fa-earlybirds', 405 => 'fa-ebay', 406 => 'fa-edge', 407 => 'fa-edge-legacy', 408 => 'fa-edit', 409 => 'fa-egg', 410 => 'fa-eject', 411 => 'fa-elementor', 412 => 'fa-ellipsis-h', 413 => 'fa-ellipsis-v', 414 => 'fa-ello', 415 => 'fa-ember', 416 => 'fa-empire', 417 => 'fa-envelope', 418 => 'fa-envelope-open', 419 => 'fa-envelope-open-text', 420 => 'fa-envelope-square', 421 => 'fa-envira', 422 => 'fa-equals', 423 => 'fa-eraser', 424 => 'fa-erlang', 425 => 'fa-ethereum', 426 => 'fa-ethernet', 427 => 'fa-etsy', 428 => 'fa-euro-sign', 429 => 'fa-evernote', 430 => 'fa-exchange-alt', 431 => 'fa-exclamation', 432 => 'fa-exclamation-circle', 433 => 'fa-exclamation-triangle', 434 => 'fa-expand', 435 => 'fa-expand-alt', 436 => 'fa-expand-arrows-alt', 437 => 'fa-expeditedssl', 438 => 'fa-external-link-alt', 439 => 'fa-external-link-square-alt', 440 => 'fa-eye', 441 => 'fa-eye-dropper', 442 => 'fa-eye-slash', 443 => 'fa-facebook', 444 => 'fa-facebook-f', 445 => 'fa-facebook-messenger', 446 => 'fa-facebook-square', 447 => 'fa-fan', 448 => 'fa-fantasy-flight-games', 449 => 'fa-fast-backward', 450 => 'fa-fast-forward', 451 => 'fa-faucet', 452 => 'fa-fax', 453 => 'fa-feather', 454 => 'fa-feather-alt', 455 => 'fa-fedex', 456 => 'fa-fedora', 457 => 'fa-female', 458 => 'fa-fighter-jet', 459 => 'fa-figma', 460 => 'fa-file', 461 => 'fa-file-alt', 462 => 'fa-file-archive', 463 => 'fa-file-audio', 464 => 'fa-file-code', 465 => 'fa-file-contract', 466 => 'fa-file-csv', 467 => 'fa-file-download', 468 => 'fa-file-excel', 469 => 'fa-file-export', 470 => 'fa-file-image', 471 => 'fa-file-import', 472 => 'fa-file-invoice', 473 => 'fa-file-invoice-dollar', 474 => 'fa-file-medical', 475 => 'fa-file-medical-alt', 476 => 'fa-file-pdf', 477 => 'fa-file-powerpoint', 478 => 'fa-file-prescription', 479 => 'fa-file-signature', 480 => 'fa-file-upload', 481 => 'fa-file-video', 482 => 'fa-file-word', 483 => 'fa-fill', 484 => 'fa-fill-drip', 485 => 'fa-film', 486 => 'fa-filter', 487 => 'fa-fingerprint', 488 => 'fa-fire', 489 => 'fa-fire-alt', 490 => 'fa-fire-extinguisher', 491 => 'fa-firefox', 492 => 'fa-firefox-browser', 493 => 'fa-first-aid', 494 => 'fa-first-order', 495 => 'fa-first-order-alt', 496 => 'fa-firstdraft', 497 => 'fa-fish', 498 => 'fa-fist-raised', 499 => 'fa-flag', 500 => 'fa-flag-checkered', 501 => 'fa-flag-usa', 502 => 'fa-flask', 503 => 'fa-flickr', 504 => 'fa-flipboard', 505 => 'fa-flushed', 506 => 'fa-fly', 507 => 'fa-folder', 508 => 'fa-folder-minus', 509 => 'fa-folder-open', 510 => 'fa-folder-plus', 511 => 'fa-font', 512 => 'fa-font-awesome', 513 => 'fa-font-awesome-alt', 514 => 'fa-font-awesome-flag', 515 => 'fa-font-awesome-logo-full', 516 => 'fa-fonticons', 517 => 'fa-fonticons-fi', 518 => 'fa-football-ball', 519 => 'fa-fort-awesome', 520 => 'fa-fort-awesome-alt', 521 => 'fa-forumbee', 522 => 'fa-forward', 523 => 'fa-foursquare', 524 => 'fa-free-code-camp', 525 => 'fa-freebsd', 526 => 'fa-frog', 527 => 'fa-frown', 528 => 'fa-frown-open', 529 => 'fa-fulcrum', 530 => 'fa-funnel-dollar', 531 => 'fa-futbol', 532 => 'fa-galactic-republic', 533 => 'fa-galactic-senate', 534 => 'fa-gamepad', 535 => 'fa-gas-pump', 536 => 'fa-gavel', 537 => 'fa-gem', 538 => 'fa-genderless', 539 => 'fa-get-pocket', 540 => 'fa-gg', 541 => 'fa-gg-circle', 542 => 'fa-ghost', 543 => 'fa-gift', 544 => 'fa-gifts', 545 => 'fa-git', 546 => 'fa-git-alt', 547 => 'fa-git-square', 548 => 'fa-github', 549 => 'fa-github-alt', 550 => 'fa-github-square', 551 => 'fa-gitkraken', 552 => 'fa-gitlab', 553 => 'fa-gitter', 554 => 'fa-glass-cheers', 555 => 'fa-glass-martini', 556 => 'fa-glass-martini-alt', 557 => 'fa-glass-whiskey', 558 => 'fa-glasses', 559 => 'fa-glide', 560 => 'fa-glide-g', 561 => 'fa-globe', 562 => 'fa-globe-africa', 563 => 'fa-globe-americas', 564 => 'fa-globe-asia', 565 => 'fa-globe-europe', 566 => 'fa-gofore', 567 => 'fa-golf-ball', 568 => 'fa-goodreads', 569 => 'fa-goodreads-g', 570 => 'fa-google', 571 => 'fa-google-drive', 572 => 'fa-google-pay', 573 => 'fa-google-play', 574 => 'fa-google-plus', 575 => 'fa-google-plus-g', 576 => 'fa-google-plus-square', 577 => 'fa-google-wallet', 578 => 'fa-gopuram', 579 => 'fa-graduation-cap', 580 => 'fa-gratipay', 581 => 'fa-grav', 582 => 'fa-greater-than', 583 => 'fa-greater-than-equal', 584 => 'fa-grimace', 585 => 'fa-grin', 586 => 'fa-grin-alt', 587 => 'fa-grin-beam', 588 => 'fa-grin-beam-sweat', 589 => 'fa-grin-hearts', 590 => 'fa-grin-squint', 591 => 'fa-grin-squint-tears', 592 => 'fa-grin-stars', 593 => 'fa-grin-tears', 594 => 'fa-grin-tongue', 595 => 'fa-grin-tongue-squint', 596 => 'fa-grin-tongue-wink', 597 => 'fa-grin-wink', 598 => 'fa-grip-horizontal', 599 => 'fa-grip-lines', 600 => 'fa-grip-lines-vertical', 601 => 'fa-grip-vertical', 602 => 'fa-gripfire', 603 => 'fa-grunt', 604 => 'fa-guilded', 605 => 'fa-guitar', 606 => 'fa-gulp', 607 => 'fa-h-square', 608 => 'fa-hacker-news', 609 => 'fa-hacker-news-square', 610 => 'fa-hackerrank', 611 => 'fa-hamburger', 612 => 'fa-hammer', 613 => 'fa-hamsa', 614 => 'fa-hand-holding', 615 => 'fa-hand-holding-heart', 616 => 'fa-hand-holding-medical', 617 => 'fa-hand-holding-usd', 618 => 'fa-hand-holding-water', 619 => 'fa-hand-lizard', 620 => 'fa-hand-middle-finger', 621 => 'fa-hand-paper', 622 => 'fa-hand-peace', 623 => 'fa-hand-point-down', 624 => 'fa-hand-point-left', 625 => 'fa-hand-point-right', 626 => 'fa-hand-point-up', 627 => 'fa-hand-pointer', 628 => 'fa-hand-rock', 629 => 'fa-hand-scissors', 630 => 'fa-hand-sparkles', 631 => 'fa-hand-spock', 632 => 'fa-hands', 633 => 'fa-hands-helping', 634 => 'fa-hands-wash', 635 => 'fa-handshake', 636 => 'fa-handshake-alt-slash', 637 => 'fa-handshake-slash', 638 => 'fa-hanukiah', 639 => 'fa-hard-hat', 640 => 'fa-hashtag', 641 => 'fa-hat-cowboy', 642 => 'fa-hat-cowboy-side', 643 => 'fa-hat-wizard', 644 => 'fa-hdd', 645 => 'fa-head-side-cough', 646 => 'fa-head-side-cough-slash', 647 => 'fa-head-side-mask', 648 => 'fa-head-side-virus', 649 => 'fa-heading', 650 => 'fa-headphones', 651 => 'fa-headphones-alt', 652 => 'fa-headset', 653 => 'fa-heart', 654 => 'fa-heart-broken', 655 => 'fa-heartbeat', 656 => 'fa-helicopter', 657 => 'fa-highlighter', 658 => 'fa-hiking', 659 => 'fa-hippo', 660 => 'fa-hips', 661 => 'fa-hire-a-helper', 662 => 'fa-history', 663 => 'fa-hive', 664 => 'fa-hockey-puck', 665 => 'fa-holly-berry', 666 => 'fa-home', 667 => 'fa-hooli', 668 => 'fa-hornbill', 669 => 'fa-horse', 670 => 'fa-horse-head', 671 => 'fa-hospital', 672 => 'fa-hospital-alt', 673 => 'fa-hospital-symbol', 674 => 'fa-hospital-user', 675 => 'fa-hot-tub', 676 => 'fa-hotdog', 677 => 'fa-hotel', 678 => 'fa-hotjar', 679 => 'fa-hourglass', 680 => 'fa-hourglass-end', 681 => 'fa-hourglass-half', 682 => 'fa-hourglass-start', 683 => 'fa-house-damage', 684 => 'fa-house-user', 685 => 'fa-houzz', 686 => 'fa-hryvnia', 687 => 'fa-html5', 688 => 'fa-hubspot', 689 => 'fa-i-cursor', 690 => 'fa-ice-cream', 691 => 'fa-icicles', 692 => 'fa-icons', 693 => 'fa-id-badge', 694 => 'fa-id-card', 695 => 'fa-id-card-alt', 696 => 'fa-ideal', 697 => 'fa-igloo', 698 => 'fa-image', 699 => 'fa-images', 700 => 'fa-imdb', 701 => 'fa-inbox', 702 => 'fa-indent', 703 => 'fa-industry', 704 => 'fa-infinity', 705 => 'fa-info', 706 => 'fa-info-circle', 707 => 'fa-innosoft', 708 => 'fa-instagram', 709 => 'fa-instagram-square', 710 => 'fa-instalod', 711 => 'fa-intercom', 712 => 'fa-internet-explorer', 713 => 'fa-invision', 714 => 'fa-ioxhost', 715 => 'fa-italic', 716 => 'fa-itch-io', 717 => 'fa-itunes', 718 => 'fa-itunes-note', 719 => 'fa-java', 720 => 'fa-jedi', 721 => 'fa-jedi-order', 722 => 'fa-jenkins', 723 => 'fa-jira', 724 => 'fa-joget', 725 => 'fa-joint', 726 => 'fa-joomla', 727 => 'fa-journal-whills', 728 => 'fa-js', 729 => 'fa-js-square', 730 => 'fa-jsfiddle', 731 => 'fa-kaaba', 732 => 'fa-kaggle', 733 => 'fa-key', 734 => 'fa-keybase', 735 => 'fa-keyboard', 736 => 'fa-keycdn', 737 => 'fa-khanda', 738 => 'fa-kickstarter', 739 => 'fa-kickstarter-k', 740 => 'fa-kiss', 741 => 'fa-kiss-beam', 742 => 'fa-kiss-wink-heart', 743 => 'fa-kiwi-bird', 744 => 'fa-korvue', 745 => 'fa-landmark', 746 => 'fa-language', 747 => 'fa-laptop', 748 => 'fa-laptop-code', 749 => 'fa-laptop-house', 750 => 'fa-laptop-medical', 751 => 'fa-laravel', 752 => 'fa-lastfm', 753 => 'fa-lastfm-square', 754 => 'fa-laugh', 755 => 'fa-laugh-beam', 756 => 'fa-laugh-squint', 757 => 'fa-laugh-wink', 758 => 'fa-layer-group', 759 => 'fa-leaf', 760 => 'fa-leanpub', 761 => 'fa-lemon', 762 => 'fa-less', 763 => 'fa-less-than', 764 => 'fa-less-than-equal', 765 => 'fa-level-down-alt', 766 => 'fa-level-up-alt', 767 => 'fa-life-ring', 768 => 'fa-lightbulb', 769 => 'fa-line', 770 => 'fa-link', 771 => 'fa-linkedin', 772 => 'fa-linkedin-in', 773 => 'fa-linode', 774 => 'fa-linux', 775 => 'fa-lira-sign', 776 => 'fa-list', 777 => 'fa-list-alt', 778 => 'fa-list-ol', 779 => 'fa-list-ul', 780 => 'fa-location-arrow', 781 => 'fa-lock', 782 => 'fa-lock-open', 783 => 'fa-long-arrow-alt-down', 784 => 'fa-long-arrow-alt-left', 785 => 'fa-long-arrow-alt-right', 786 => 'fa-long-arrow-alt-up', 787 => 'fa-low-vision', 788 => 'fa-luggage-cart', 789 => 'fa-lungs', 790 => 'fa-lungs-virus', 791 => 'fa-lyft', 792 => 'fa-magento', 793 => 'fa-magic', 794 => 'fa-magnet', 795 => 'fa-mail-bulk', 796 => 'fa-mailchimp', 797 => 'fa-male', 798 => 'fa-mandalorian', 799 => 'fa-map', 800 => 'fa-map-marked', 801 => 'fa-map-marked-alt', 802 => 'fa-map-marker', 803 => 'fa-map-marker-alt', 804 => 'fa-map-pin', 805 => 'fa-map-signs', 806 => 'fa-markdown', 807 => 'fa-marker', 808 => 'fa-mars', 809 => 'fa-mars-double', 810 => 'fa-mars-stroke', 811 => 'fa-mars-stroke-h', 812 => 'fa-mars-stroke-v', 813 => 'fa-mask', 814 => 'fa-mastodon', 815 => 'fa-maxcdn', 816 => 'fa-mdb', 817 => 'fa-medal', 818 => 'fa-medapps', 819 => 'fa-medium', 820 => 'fa-medium-m', 821 => 'fa-medkit', 822 => 'fa-medrt', 823 => 'fa-meetup', 824 => 'fa-megaport', 825 => 'fa-meh', 826 => 'fa-meh-blank', 827 => 'fa-meh-rolling-eyes', 828 => 'fa-memory', 829 => 'fa-mendeley', 830 => 'fa-menorah', 831 => 'fa-mercury', 832 => 'fa-meteor', 833 => 'fa-microblog', 834 => 'fa-microchip', 835 => 'fa-microphone', 836 => 'fa-microphone-alt', 837 => 'fa-microphone-alt-slash', 838 => 'fa-microphone-slash', 839 => 'fa-microscope', 840 => 'fa-microsoft', 841 => 'fa-minus', 842 => 'fa-minus-circle', 843 => 'fa-minus-square', 844 => 'fa-mitten', 845 => 'fa-mix', 846 => 'fa-mixcloud', 847 => 'fa-mixer', 848 => 'fa-mizuni', 849 => 'fa-mobile', 850 => 'fa-mobile-alt', 851 => 'fa-modx', 852 => 'fa-monero', 853 => 'fa-money-bill', 854 => 'fa-money-bill-alt', 855 => 'fa-money-bill-wave', 856 => 'fa-money-bill-wave-alt', 857 => 'fa-money-check', 858 => 'fa-money-check-alt', 859 => 'fa-monument', 860 => 'fa-moon', 861 => 'fa-mortar-pestle', 862 => 'fa-mosque', 863 => 'fa-motorcycle', 864 => 'fa-mountain', 865 => 'fa-mouse', 866 => 'fa-mouse-pointer', 867 => 'fa-mug-hot', 868 => 'fa-music', 869 => 'fa-napster', 870 => 'fa-neos', 871 => 'fa-network-wired', 872 => 'fa-neuter', 873 => 'fa-newspaper', 874 => 'fa-nimblr', 875 => 'fa-node', 876 => 'fa-node-js', 877 => 'fa-not-equal', 878 => 'fa-notes-medical', 879 => 'fa-npm', 880 => 'fa-ns8', 881 => 'fa-nutritionix', 882 => 'fa-object-group', 883 => 'fa-object-ungroup', 884 => 'fa-octopus-deploy', 885 => 'fa-odnoklassniki', 886 => 'fa-odnoklassniki-square', 887 => 'fa-oil-can', 888 => 'fa-old-republic', 889 => 'fa-om', 890 => 'fa-opencart', 891 => 'fa-openid', 892 => 'fa-opera', 893 => 'fa-optin-monster', 894 => 'fa-orcid', 895 => 'fa-osi', 896 => 'fa-otter', 897 => 'fa-outdent', 898 => 'fa-page4', 899 => 'fa-pagelines', 900 => 'fa-pager', 901 => 'fa-paint-brush', 902 => 'fa-paint-roller', 903 => 'fa-palette', 904 => 'fa-palfed', 905 => 'fa-pallet', 906 => 'fa-paper-plane', 907 => 'fa-paperclip', 908 => 'fa-parachute-box', 909 => 'fa-paragraph', 910 => 'fa-parking', 911 => 'fa-passport', 912 => 'fa-pastafarianism', 913 => 'fa-paste', 914 => 'fa-patreon', 915 => 'fa-pause', 916 => 'fa-pause-circle', 917 => 'fa-paw', 918 => 'fa-paypal', 919 => 'fa-peace', 920 => 'fa-pen', 921 => 'fa-pen-alt', 922 => 'fa-pen-fancy', 923 => 'fa-pen-nib', 924 => 'fa-pen-square', 925 => 'fa-pencil-alt', 926 => 'fa-pencil-ruler', 927 => 'fa-penny-arcade', 928 => 'fa-people-arrows', 929 => 'fa-people-carry', 930 => 'fa-pepper-hot', 931 => 'fa-perbyte', 932 => 'fa-percent', 933 => 'fa-percentage', 934 => 'fa-periscope', 935 => 'fa-person-booth', 936 => 'fa-phabricator', 937 => 'fa-phoenix-framework', 938 => 'fa-phoenix-squadron', 939 => 'fa-phone', 940 => 'fa-phone-alt', 941 => 'fa-phone-slash', 942 => 'fa-phone-square', 943 => 'fa-phone-square-alt', 944 => 'fa-phone-volume', 945 => 'fa-photo-video', 946 => 'fa-php', 947 => 'fa-pied-piper', 948 => 'fa-pied-piper-alt', 949 => 'fa-pied-piper-hat', 950 => 'fa-pied-piper-pp', 951 => 'fa-pied-piper-square', 952 => 'fa-piggy-bank', 953 => 'fa-pills', 954 => 'fa-pinterest', 955 => 'fa-pinterest-p', 956 => 'fa-pinterest-square', 957 => 'fa-pizza-slice', 958 => 'fa-place-of-worship', 959 => 'fa-plane', 960 => 'fa-plane-arrival', 961 => 'fa-plane-departure', 962 => 'fa-plane-slash', 963 => 'fa-play', 964 => 'fa-play-circle', 965 => 'fa-playstation', 966 => 'fa-plug', 967 => 'fa-plus', 968 => 'fa-plus-circle', 969 => 'fa-plus-square', 970 => 'fa-podcast', 971 => 'fa-poll', 972 => 'fa-poll-h', 973 => 'fa-poo', 974 => 'fa-poo-storm', 975 => 'fa-poop', 976 => 'fa-portrait', 977 => 'fa-pound-sign', 978 => 'fa-power-off', 979 => 'fa-pray', 980 => 'fa-praying-hands', 981 => 'fa-prescription', 982 => 'fa-prescription-bottle', 983 => 'fa-prescription-bottle-alt', 984 => 'fa-print', 985 => 'fa-procedures', 986 => 'fa-product-hunt', 987 => 'fa-project-diagram', 988 => 'fa-pump-medical', 989 => 'fa-pump-soap', 990 => 'fa-pushed', 991 => 'fa-puzzle-piece', 992 => 'fa-python', 993 => 'fa-qq', 994 => 'fa-qrcode', 995 => 'fa-question', 996 => 'fa-question-circle', 997 => 'fa-quidditch', 998 => 'fa-quinscape', 999 => 'fa-quora', 1000 => 'fa-quote-left', 1001 => 'fa-quote-right', 1002 => 'fa-quran', 1003 => 'fa-r-project', 1004 => 'fa-radiation', 1005 => 'fa-radiation-alt', 1006 => 'fa-rainbow', 1007 => 'fa-random', 1008 => 'fa-raspberry-pi', 1009 => 'fa-ravelry', 1010 => 'fa-react', 1011 => 'fa-reacteurope', 1012 => 'fa-readme', 1013 => 'fa-rebel', 1014 => 'fa-receipt', 1015 => 'fa-record-vinyl', 1016 => 'fa-recycle', 1017 => 'fa-red-river', 1018 => 'fa-reddit', 1019 => 'fa-reddit-alien', 1020 => 'fa-reddit-square', 1021 => 'fa-redhat', 1022 => 'fa-redo', 1023 => 'fa-redo-alt', 1024 => 'fa-registered', 1025 => 'fa-remove-format', 1026 => 'fa-renren', 1027 => 'fa-reply', 1028 => 'fa-reply-all', 1029 => 'fa-replyd', 1030 => 'fa-republican', 1031 => 'fa-researchgate', 1032 => 'fa-resolving', 1033 => 'fa-restroom', 1034 => 'fa-retweet', 1035 => 'fa-rev', 1036 => 'fa-ribbon', 1037 => 'fa-ring', 1038 => 'fa-road', 1039 => 'fa-robot', 1040 => 'fa-rocket', 1041 => 'fa-rocketchat', 1042 => 'fa-rockrms', 1043 => 'fa-route', 1044 => 'fa-rss', 1045 => 'fa-rss-square', 1046 => 'fa-ruble-sign', 1047 => 'fa-ruler', 1048 => 'fa-ruler-combined', 1049 => 'fa-ruler-horizontal', 1050 => 'fa-ruler-vertical', 1051 => 'fa-running', 1052 => 'fa-rupee-sign', 1053 => 'fa-rust', 1054 => 'fa-sad-cry', 1055 => 'fa-sad-tear', 1056 => 'fa-safari', 1057 => 'fa-salesforce', 1058 => 'fa-sass', 1059 => 'fa-satellite', 1060 => 'fa-satellite-dish', 1061 => 'fa-save', 1062 => 'fa-schlix', 1063 => 'fa-school', 1064 => 'fa-screwdriver', 1065 => 'fa-scribd', 1066 => 'fa-scroll', 1067 => 'fa-sd-card', 1068 => 'fa-search', 1069 => 'fa-search-dollar', 1070 => 'fa-search-location', 1071 => 'fa-search-minus', 1072 => 'fa-search-plus', 1073 => 'fa-searchengin', 1074 => 'fa-seedling', 1075 => 'fa-sellcast', 1076 => 'fa-sellsy', 1077 => 'fa-server', 1078 => 'fa-servicestack', 1079 => 'fa-shapes', 1080 => 'fa-share', 1081 => 'fa-share-alt', 1082 => 'fa-share-alt-square', 1083 => 'fa-share-square', 1084 => 'fa-shekel-sign', 1085 => 'fa-shield-alt', 1086 => 'fa-shield-virus', 1087 => 'fa-ship', 1088 => 'fa-shipping-fast', 1089 => 'fa-shirtsinbulk', 1090 => 'fa-shoe-prints', 1091 => 'fa-shopify', 1092 => 'fa-shopping-bag', 1093 => 'fa-shopping-basket', 1094 => 'fa-shopping-cart', 1095 => 'fa-shopware', 1096 => 'fa-shower', 1097 => 'fa-shuttle-van', 1098 => 'fa-sign', 1099 => 'fa-sign-in-alt', 1100 => 'fa-sign-language', 1101 => 'fa-sign-out-alt', 1102 => 'fa-signal', 1103 => 'fa-signature', 1104 => 'fa-sim-card', 1105 => 'fa-simplybuilt', 1106 => 'fa-sink', 1107 => 'fa-sistrix', 1108 => 'fa-sitemap', 1109 => 'fa-sith', 1110 => 'fa-skating', 1111 => 'fa-sketch', 1112 => 'fa-skiing', 1113 => 'fa-skiing-nordic', 1114 => 'fa-skull', 1115 => 'fa-skull-crossbones', 1116 => 'fa-skyatlas', 1117 => 'fa-skype', 1118 => 'fa-slack', 1119 => 'fa-slack-hash', 1120 => 'fa-slash', 1121 => 'fa-sleigh', 1122 => 'fa-sliders-h', 1123 => 'fa-slideshare', 1124 => 'fa-smile', 1125 => 'fa-smile-beam', 1126 => 'fa-smile-wink', 1127 => 'fa-smog', 1128 => 'fa-smoking', 1129 => 'fa-smoking-ban', 1130 => 'fa-sms', 1131 => 'fa-snapchat', 1132 => 'fa-snapchat-ghost', 1133 => 'fa-snapchat-square', 1134 => 'fa-snowboarding', 1135 => 'fa-snowflake', 1136 => 'fa-snowman', 1137 => 'fa-snowplow', 1138 => 'fa-soap', 1139 => 'fa-socks', 1140 => 'fa-solar-panel', 1141 => 'fa-sort', 1142 => 'fa-sort-alpha-down', 1143 => 'fa-sort-alpha-down-alt', 1144 => 'fa-sort-alpha-up', 1145 => 'fa-sort-alpha-up-alt', 1146 => 'fa-sort-amount-down', 1147 => 'fa-sort-amount-down-alt', 1148 => 'fa-sort-amount-up', 1149 => 'fa-sort-amount-up-alt', 1150 => 'fa-sort-down', 1151 => 'fa-sort-numeric-down', 1152 => 'fa-sort-numeric-down-alt', 1153 => 'fa-sort-numeric-up', 1154 => 'fa-sort-numeric-up-alt', 1155 => 'fa-sort-up', 1156 => 'fa-soundcloud', 1157 => 'fa-sourcetree', 1158 => 'fa-spa', 1159 => 'fa-space-shuttle', 1160 => 'fa-speakap', 1161 => 'fa-speaker-deck', 1162 => 'fa-spell-check', 1163 => 'fa-spider', 1164 => 'fa-spinner', 1165 => 'fa-splotch', 1166 => 'fa-spotify', 1167 => 'fa-spray-can', 1168 => 'fa-square', 1169 => 'fa-square-full', 1170 => 'fa-square-root-alt', 1171 => 'fa-squarespace', 1172 => 'fa-stack-exchange', 1173 => 'fa-stack-overflow', 1174 => 'fa-stackpath', 1175 => 'fa-stamp', 1176 => 'fa-star', 1177 => 'fa-star-and-crescent', 1178 => 'fa-star-half', 1179 => 'fa-star-half-alt', 1180 => 'fa-star-of-david', 1181 => 'fa-star-of-life', 1182 => 'fa-staylinked', 1183 => 'fa-steam', 1184 => 'fa-steam-square', 1185 => 'fa-steam-symbol', 1186 => 'fa-step-backward', 1187 => 'fa-step-forward', 1188 => 'fa-stethoscope', 1189 => 'fa-sticker-mule', 1190 => 'fa-sticky-note', 1191 => 'fa-stop', 1192 => 'fa-stop-circle', 1193 => 'fa-stopwatch', 1194 => 'fa-stopwatch-20', 1195 => 'fa-store', 1196 => 'fa-store-alt', 1197 => 'fa-store-alt-slash', 1198 => 'fa-store-slash', 1199 => 'fa-strava', 1200 => 'fa-stream', 1201 => 'fa-street-view', 1202 => 'fa-strikethrough', 1203 => 'fa-stripe', 1204 => 'fa-stripe-s', 1205 => 'fa-stroopwafel', 1206 => 'fa-studiovinari', 1207 => 'fa-stumbleupon', 1208 => 'fa-stumbleupon-circle', 1209 => 'fa-subscript', 1210 => 'fa-subway', 1211 => 'fa-suitcase', 1212 => 'fa-suitcase-rolling', 1213 => 'fa-sun', 1214 => 'fa-superpowers', 1215 => 'fa-superscript', 1216 => 'fa-supple', 1217 => 'fa-surprise', 1218 => 'fa-suse', 1219 => 'fa-swatchbook', 1220 => 'fa-swift', 1221 => 'fa-swimmer', 1222 => 'fa-swimming-pool', 1223 => 'fa-symfony', 1224 => 'fa-synagogue', 1225 => 'fa-sync', 1226 => 'fa-sync-alt', 1227 => 'fa-syringe', 1228 => 'fa-table', 1229 => 'fa-table-tennis', 1230 => 'fa-tablet', 1231 => 'fa-tablet-alt', 1232 => 'fa-tablets', 1233 => 'fa-tachometer-alt', 1234 => 'fa-tag', 1235 => 'fa-tags', 1236 => 'fa-tape', 1237 => 'fa-tasks', 1238 => 'fa-taxi', 1239 => 'fa-teamspeak', 1240 => 'fa-teeth', 1241 => 'fa-teeth-open', 1242 => 'fa-telegram', 1243 => 'fa-telegram-plane', 1244 => 'fa-temperature-high', 1245 => 'fa-temperature-low', 1246 => 'fa-tencent-weibo', 1247 => 'fa-tenge', 1248 => 'fa-terminal', 1249 => 'fa-text-height', 1250 => 'fa-text-width', 1251 => 'fa-th', 1252 => 'fa-th-large', 1253 => 'fa-th-list', 1254 => 'fa-the-red-yeti', 1255 => 'fa-theater-masks', 1256 => 'fa-themeco', 1257 => 'fa-themeisle', 1258 => 'fa-thermometer', 1259 => 'fa-thermometer-empty', 1260 => 'fa-thermometer-full', 1261 => 'fa-thermometer-half', 1262 => 'fa-thermometer-quarter', 1263 => 'fa-thermometer-three-quarters', 1264 => 'fa-think-peaks', 1265 => 'fa-thumbs-down', 1266 => 'fa-thumbs-up', 1267 => 'fa-thumbtack', 1268 => 'fa-ticket-alt', 1269 => 'fa-tiktok', 1270 => 'fa-times', 1271 => 'fa-times-circle', 1272 => 'fa-tint', 1273 => 'fa-tint-slash', 1274 => 'fa-tired', 1275 => 'fa-toggle-off', 1276 => 'fa-toggle-on', 1277 => 'fa-toilet', 1278 => 'fa-toilet-paper', 1279 => 'fa-toilet-paper-slash', 1280 => 'fa-toolbox', 1281 => 'fa-tools', 1282 => 'fa-tooth', 1283 => 'fa-torah', 1284 => 'fa-torii-gate', 1285 => 'fa-tractor', 1286 => 'fa-trade-federation', 1287 => 'fa-trademark', 1288 => 'fa-traffic-light', 1289 => 'fa-trailer', 1290 => 'fa-train', 1291 => 'fa-tram', 1292 => 'fa-transgender', 1293 => 'fa-transgender-alt', 1294 => 'fa-trash', 1295 => 'fa-trash-alt', 1296 => 'fa-trash-restore', 1297 => 'fa-trash-restore-alt', 1298 => 'fa-tree', 1299 => 'fa-trello', 1300 => 'fa-trophy', 1301 => 'fa-truck', 1302 => 'fa-truck-loading', 1303 => 'fa-truck-monster', 1304 => 'fa-truck-moving', 1305 => 'fa-truck-pickup', 1306 => 'fa-tshirt', 1307 => 'fa-tty', 1308 => 'fa-tumblr', 1309 => 'fa-tumblr-square', 1310 => 'fa-tv', 1311 => 'fa-twitch', 1312 => 'fa-twitter', 1313 => 'fa-twitter-square', 1314 => 'fa-typo3', 1315 => 'fa-uber', 1316 => 'fa-ubuntu', 1317 => 'fa-uikit', 1318 => 'fa-umbraco', 1319 => 'fa-umbrella', 1320 => 'fa-umbrella-beach', 1321 => 'fa-uncharted', 1322 => 'fa-underline', 1323 => 'fa-undo', 1324 => 'fa-undo-alt', 1325 => 'fa-uniregistry', 1326 => 'fa-unity', 1327 => 'fa-universal-access', 1328 => 'fa-university', 1329 => 'fa-unlink', 1330 => 'fa-unlock', 1331 => 'fa-unlock-alt', 1332 => 'fa-unsplash', 1333 => 'fa-untappd', 1334 => 'fa-upload', 1335 => 'fa-ups', 1336 => 'fa-usb', 1337 => 'fa-user', 1338 => 'fa-user-alt', 1339 => 'fa-user-alt-slash', 1340 => 'fa-user-astronaut', 1341 => 'fa-user-check', 1342 => 'fa-user-circle', 1343 => 'fa-user-clock', 1344 => 'fa-user-cog', 1345 => 'fa-user-edit', 1346 => 'fa-user-friends', 1347 => 'fa-user-graduate', 1348 => 'fa-user-injured', 1349 => 'fa-user-lock', 1350 => 'fa-user-md', 1351 => 'fa-user-minus', 1352 => 'fa-user-ninja', 1353 => 'fa-user-nurse', 1354 => 'fa-user-plus', 1355 => 'fa-user-secret', 1356 => 'fa-user-shield', 1357 => 'fa-user-slash', 1358 => 'fa-user-tag', 1359 => 'fa-user-tie', 1360 => 'fa-user-times', 1361 => 'fa-users', 1362 => 'fa-users-cog', 1363 => 'fa-users-slash', 1364 => 'fa-usps', 1365 => 'fa-ussunnah', 1366 => 'fa-utensil-spoon', 1367 => 'fa-utensils', 1368 => 'fa-vaadin', 1369 => 'fa-vector-square', 1370 => 'fa-venus', 1371 => 'fa-venus-double', 1372 => 'fa-venus-mars', 1373 => 'fa-vest', 1374 => 'fa-vest-patches', 1375 => 'fa-viacoin', 1376 => 'fa-viadeo', 1377 => 'fa-viadeo-square', 1378 => 'fa-vial', 1379 => 'fa-vials', 1380 => 'fa-viber', 1381 => 'fa-video', 1382 => 'fa-video-slash', 1383 => 'fa-vihara', 1384 => 'fa-vimeo', 1385 => 'fa-vimeo-square', 1386 => 'fa-vimeo-v', 1387 => 'fa-vine', 1388 => 'fa-virus', 1389 => 'fa-virus-slash', 1390 => 'fa-viruses', 1391 => 'fa-vk', 1392 => 'fa-vnv', 1393 => 'fa-voicemail', 1394 => 'fa-volleyball-ball', 1395 => 'fa-volume-down', 1396 => 'fa-volume-mute', 1397 => 'fa-volume-off', 1398 => 'fa-volume-up', 1399 => 'fa-vote-yea', 1400 => 'fa-vr-cardboard', 1401 => 'fa-vuejs', 1402 => 'fa-walking', 1403 => 'fa-wallet', 1404 => 'fa-warehouse', 1405 => 'fa-watchman-monitoring', 1406 => 'fa-water', 1407 => 'fa-wave-square', 1408 => 'fa-waze', 1409 => 'fa-weebly', 1410 => 'fa-weibo', 1411 => 'fa-weight', 1412 => 'fa-weight-hanging', 1413 => 'fa-weixin', 1414 => 'fa-whatsapp', 1415 => 'fa-whatsapp-square', 1416 => 'fa-wheelchair', 1417 => 'fa-whmcs', 1418 => 'fa-wifi', 1419 => 'fa-wikipedia-w', 1420 => 'fa-wind', 1421 => 'fa-window-close', 1422 => 'fa-window-maximize', 1423 => 'fa-window-minimize', 1424 => 'fa-window-restore', 1425 => 'fa-windows', 1426 => 'fa-wine-bottle', 1427 => 'fa-wine-glass', 1428 => 'fa-wine-glass-alt', 1429 => 'fa-wix', 1430 => 'fa-wizards-of-the-coast', 1431 => 'fa-wodu', 1432 => 'fa-wolf-pack-battalion', 1433 => 'fa-won-sign', 1434 => 'fa-wordpress', 1435 => 'fa-wordpress-simple', 1436 => 'fa-wpbeginner', 1437 => 'fa-wpexplorer', 1438 => 'fa-wpforms', 1439 => 'fa-wpressr', 1440 => 'fa-wrench', 1441 => 'fa-x-ray', 1442 => 'fa-xbox', 1443 => 'fa-xing', 1444 => 'fa-xing-square', 1445 => 'fa-y-combinator', 1446 => 'fa-yahoo', 1447 => 'fa-yammer', 1448 => 'fa-yandex', 1449 => 'fa-yandex-international', 1450 => 'fa-yarn', 1451 => 'fa-yelp', 1452 => 'fa-yen-sign', 1453 => 'fa-yin-yang', 1454 => 'fa-yoast', 1455 => 'fa-youtube', 1456 => 'fa-youtube-square', 1457 => 'fa-zhihu', ); /** * Run the database seeds. * * @return void */ public function run() { foreach (self::icons as $icon) { if (!Icon::where('icon', $icon)->count()) { Icon::create(['icon' => $icon]); } } } } ================================================ FILE: database/seeders/PermissionsSeeder.php ================================================ count()) { Permission::create(['name' => $permission]); } } } } ================================================ FILE: docker-compose.yml ================================================ # For more information: https://laravel.com/docs/sail version: '3' services: laravel.test: build: context: ./vendor/laravel/sail/runtimes/8.1 dockerfile: Dockerfile args: WWWGROUP: '${WWWGROUP}' image: sail-8.1/app extra_hosts: - 'host.docker.internal:host-gateway' ports: - '${APP_PORT:-80}:80' - '${VITE_PORT:-5173}:${VITE_PORT:-5173}' environment: WWWUSER: '${WWWUSER}' LARAVEL_SAIL: 1 XDEBUG_MODE: '${SAIL_XDEBUG_MODE:-off}' XDEBUG_CONFIG: '${SAIL_XDEBUG_CONFIG:-client_host=host.docker.internal}' volumes: - '.:/var/www/html' networks: - sail depends_on: - mysql - redis - meilisearch - mailhog - selenium mysql: image: 'mysql/mysql-server:8.0' ports: - '${FORWARD_DB_PORT:-3306}:3306' environment: MYSQL_ROOT_PASSWORD: '${DB_PASSWORD}' MYSQL_ROOT_HOST: "%" MYSQL_DATABASE: '${DB_DATABASE}' MYSQL_USER: '${DB_USERNAME}' MYSQL_PASSWORD: '${DB_PASSWORD}' MYSQL_ALLOW_EMPTY_PASSWORD: 1 volumes: - 'sail-mysql:/var/lib/mysql' - './vendor/laravel/sail/database/mysql/create-testing-database.sh:/docker-entrypoint-initdb.d/10-create-testing-database.sh' networks: - sail healthcheck: test: ["CMD", "mysqladmin", "ping", "-p${DB_PASSWORD}"] retries: 3 timeout: 5s redis: image: 'redis:alpine' ports: - '${FORWARD_REDIS_PORT:-6379}:6379' volumes: - 'sail-redis:/data' networks: - sail healthcheck: test: ["CMD", "redis-cli", "ping"] retries: 3 timeout: 5s meilisearch: image: 'getmeili/meilisearch:latest' ports: - '${FORWARD_MEILISEARCH_PORT:-7700}:7700' volumes: - 'sail-meilisearch:/meili_data' networks: - sail healthcheck: test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:7700/health"] retries: 3 timeout: 5s mailhog: image: 'mailhog/mailhog:latest' ports: - '${FORWARD_MAILHOG_PORT:-1025}:1025' - '${FORWARD_MAILHOG_DASHBOARD_PORT:-8025}:8025' networks: - sail selenium: image: 'selenium/standalone-chrome' volumes: - '/dev/shm:/dev/shm' networks: - sail phpmyadmin: image: phpmyadmin/phpmyadmin links: - mysql:mysql ports: - 8080:80 environment: MYSQL_USERNAME: "${DB_USERNAME}" MYSQL_ROOT_PASSWORD: "${DB_PASSWORD}" PMA_HOST: mysql networks: - sail networks: sail: driver: bridge volumes: sail-mysql: driver: local sail-redis: driver: local sail-meilisearch: driver: local ================================================ FILE: docs/.nojekyll ================================================ ================================================ FILE: docs/README.md ================================================ # Help Desk Help Desk is a Laravel based project, that let you manage your support tickets and communicate with your customers, with a beautiful and simple to use platform. > Help Desk is based on the latest version of Laravel and any other Open Source packages and technologies. - **Current version:** *v1.4.8* - **Last update:** *30 September, 2022* ## Features - Manage multiple companies - Manage users / employees (users by companies) - Manage permissions - Dynamic referential (ticket statuses, priorities, types, ...) - Manage tickets with comments / Chat / activity / ... - Kanban board - Notifications - ... And much more to come. ## Live preview Check the online demo from here: [https://laravel-help-desk.herokuapp.com](https://laravel-help-desk.herokuapp.com/). ## Donate We are working on this application to make it as complete as possible and to meet your needs as much as possible, and above all to make it accessible to everyone. Please consider donating if you think Help Desk is helpful to you or that our work is valuable. We are happy if you can help us [Donate on Github :heart:](https://github.com/sponsors/heloufir). ## Community We’re using [Github Discussions](https://github.com/devaslanphp/help-desk/discussions) as a place to connect with other members of our community. We hope that you: - Ask questions you’re wondering about. - Share ideas. - Engage with other community members. - Welcome others and are open-minded. Remember that this is a community we - build together. ================================================ FILE: docs/_sidebar.md ================================================ ![Help Desk](_media/logo.png) - [Help Desk](/?id=help-desk) - [Features](/?id=features) - [Live preview](/?id=live-preview) - [Donate](/?id=donate) - [Community](/?id=community) - [Getting started](/getting-started?id=getting-started) - [Prerequisites](/getting-started?id=prerequisites) - [Installation](/getting-started?id=installation) - [Clone the project](/getting-started?id=clone-the-project) - [Install dependencies](/getting-started?id=install-dependencies) - [Docker initialization](/getting-started?id=docker-initialization) - [Database configuration](/getting-started?id=database-configuration) - [Project structure](/getting-started?id=project-structure) - [Theme customization](/getting-started?id=theme-customization) - [Configuration](/configuration?id=configuration) - [Locales](/configuration?id=locales) - [Main menu](/configuration?id=main-menu) - [Permissions](/permissions?id=permissions) - [Seeder](/permissions?id=seeder) - [Screenshots](/screenshots?id=screenshots) - [Changelog](/changelog?id=changelog) ================================================ FILE: docs/changelog.md ================================================ # Changelog See what's new added, changed, fixed, improved or updated in the latest versions. - **Version 1.4.8** *(30 September, 2022)* - `pxlrbt/filament-excel` integration - **Version 1.4.7** *(30 September, 2022)* - Project - Company integration - **Version 1.4.6** *(30 September, 2022)* - Bug-fix: assign all roles - **Version 1.4.5** *(30 September, 2022)* - Using roles instead of permissions - **Version 1.4.4** *(27 September, 2022)* - Bug-fix: Kanban / disable update slug on update modal - **Version 1.4.3** *(27 September, 2022)* - Administration design enhancement - Remove administration images - Update main menu - **Version 1.4.2** *(27 September, 2022)* - Bug-fix: make ticket content required - **Version 1.4.1** *(25 September, 2022)* - Bug-fix: users table searchable/sortable - **Version 1.4.0** *(25 September, 2022)* - `spatie/laravel-permission` integration - Companies management integration - **Version 1.3.3** *(24 September, 2022)* - Upgrade fontawesome data - **Version 1.3.2** *(23 September, 2022)* - filament/tables integration - **Version 1.3.1** *(23 September, 2022)* - Bug-fix: Tickets by statuses analytics - **Version 1.3.0** *(19 September, 2022)* - Chat system: Integrate a simple chat system into ticket details - **Version 1.2.4** *(19 September, 2022)* - Activity logs: integration of `spatie/laravel-activitylog` - **Version 1.2.3** *(19 September, 2022)* - Bug-fix: Ticket creation - Larabug integration - **Version 1.2.2** *(19 September, 2022)* - Add ticket number - **Version 1.2.1** *(19 September, 2022)* - Layout design enhancement - Change Main menu from vertical sidebar to horizontal nav bar - **Version 1.2.0** *(19 September, 2022)* - Migrate tickets configuration statuses, types and priorities) to database - Add new administration page, to manage tickets statuses, types and priorities - Design enhancement administration page) - **Version 1.1.0** *(17 September, 2022)* - Kanban Board: Add a view to show Tickets as a Kanban Board - **Version 1.0.2** *(15 September, 2022)* - Add translations: Locale switcher, french translation file - **Version 1.0.1** *(14 September, 2022)* - My notifications: Notifications page listing the authenticated user's received notifications - **Version 1.0.0** *(12 September, 2022)* - Initial Release ================================================ FILE: docs/configuration.md ================================================ # Configuration > We are working to make the Help Desk application configurable as much as possible. You can check the below section to see what you can configure easily by using the file `config/system.php`. ## Locales For now the Help Desk comes with two languages **English** and **French**, so if you are planing to add more languages to the application by adding `lang/**` files, you need to update the `config('system.locales')` configuration. Below is the default configuration: ```php 'locales' => [ 'en' => 'English', 'fr' => 'Français' ], ``` ### Example If you want to add the **Arabic** language, you need to translate the `lang/fr.json` file into a new file name `lang/ar.json`, the update the configuration like the following: ```php 'locales' => [ 'en' => 'English', 'fr' => 'Français', 'ar' => 'العربية' ], ``` ## Main menu The application main menu is configurable as well in the `config('system.main_menu')` configuration parameter. You can check the configuration file `config/system.php`, there is the comment below that explains all the parameters you can use to configure your main menu: ```php /* |-------------------------------------------------------------------------- | Main menu configuration |-------------------------------------------------------------------------- | | This value is the definition of the application main menu | Used in the 'App\View\Components\MainMenu' blade component | | Parameters: | ----------- | - 'title' The translatable title of the menu | | - 'route' The menu route name | | - 'icon' The Fontawesome icon class | (icons list: http://fontawesome.io/icons/) | | - 'always_shown' If equals to "true" the menu is always shown without | checking permissions, if "false" the 'permissions' parameter | is used to show or not the menu item | | - 'show_notification_indicator' If equals to "true" the menu item will | show an indicator if there is notifications not read | | - 'permissions' The permissions used to show or not the menu item | | - (Optional) 'children' The sub menu items | - 'children.title' The translatable title of the sub menu | | - 'children.route' The sub menu route name | | - 'children.icon' The Fontawesome icon class | (icons list: http://fontawesome.io/icons/) | | - 'children.always_shown' If equals to "true" the menu is always | shown without checking permissions, if "false" | the 'permissions' parameter is used to show or not | the menu item | | - 'children.permissions' The permissions used to show or not | the menu item | */ ``` ================================================ FILE: docs/getting-started.md ================================================ # Getting started To get and start developing into this application, please make sure to follow these steps: ## Prerequisites The application is developed using Docker to make it simple to you to quick start development. So before executing the application make sure you installed docker (https://www.docker.com/). ## Installation Follow the below steps to install and serve the application into your development environment: ### Clone the project Clone the project into your development environment: ```bash git clone https://github.com/devaslanphp/help-desk.git ``` ### Install dependencies First thing after you cloned the project, is to install dependencies for each back and front: - Back dependencies ```bash composer install ``` - Front dependencies ```bash npm install ``` ### Docker initialization Install docker images by executing: ```bash ./vendor/sail/bin up -d ``` If you want to use another way to configure this Laravel project please refer to [Laravel documentation](https://laravel.com/docs). ### Database configuration Using the docker terminal for *laravel.test-1* container run the following command, to execute database migrations: ```bash php artisan migrate ``` Using the docker terminal for *laravel.test-1* container run the following command, to execute database seeders: ```bash php artisan db:seed ``` **Optional:** if you want to import demo data, follow the below steps: 1. Visit the docker image of **PHPMyAdmin** `http://127.0.0.1:8000` 2. Use the database `help_desk` 3. Import the SQL script file located in `{APP_ROOT}/database/help_desk.sql` > If you used the demo data, you can use the following user accounts to access the application: > > **Administrator** > - Email address: darkvador@gmail.com > - Password: Passw@rd > > **Customer** > - Email address: janedoe@gmail.com > - Password: Passw@rd > > **Employee** > - Email address: johndoe@gmail.com > - Password: Passw@rd ### Project structure - `app/Http` - Contains all the business logic of the application - `app/Http/Controllers` - Controllers files - `app/Http/Livewire` - Livewire components (99% of business logic is here) - `app/Http/Middleware` - Middlewares used on different routes - `app/View` - Blade components (used mainly for layouts and blade structure) - `app/Jobs` - Jobs used to execute some complex functions - `app/Notifications` - Notifications sent by email to application users - `config` - Contains all the application configuration files - `config/system.php` - Application configuration file, that you can customize as you like (please read the comments in it to know how to customize values) - `resources` - Contains all the application assets and views - `resources/css` - The stylesheet assets files - `resources/js` - The javascript assets files - `resources/views` - All the blade views for pages, blade components and livewire components - `routes` - Contains all the routes used by the application - `routes/web.php` - the web routes (the only one used by the application) ### Theme customization We have added SASS `.scss` files in template (see the **Project Structure** section). If you know how to use SASS you can change sass files and compile the css as well by executing the command `npm run build`. ================================================ FILE: docs/index.html ================================================ Help Desk docs
Please wait...
================================================ FILE: docs/permissions.md ================================================ # Permissions > The package used to manage the permissions is `spatie/laravel-permission` (you can check the [official docs here](https://spatie.be/docs/laravel-permission/)). The Help Desk application uses the Roles / Permissions to manage the users permissions to access pages and functions. ## Seeder By default, there is a set of pre-configured permissions that you can insert into your database by running the seeder `php artisan db:seed --class=PermissionsSeeder` (you can refer to the [Database configuration](/getting-started?id=database-configuration) of the Getting started section for more information). So if you want to add / update permissions managed by the application, you need to update the `Database\Seeders\PermissionsSeeder` seeder and more precisely the variable `const permissions`. > **Important:** The seeder check if the permission to insert already exists before inserting it into the database, so you can execute the seeder multiple time if you want. ================================================ FILE: docs/screenshots.md ================================================ # Screenshots Below you can see some application screenshots: ![screenshot](_media/1.png) ![screenshot](_media/2.png) ![screenshot](_media/3.png) ![screenshot](_media/4.png) ![screenshot](_media/5.png) ![screenshot](_media/6.png) ![screenshot](_media/7.png) ![screenshot](_media/8.png) ![screenshot](_media/9.png) ![screenshot](_media/10.png) ![screenshot](_media/11.png) ![screenshot](_media/12.png) ![screenshot](_media/13.png) ![screenshot](_media/14.png) ![screenshot](_media/15.png) ![screenshot](_media/16.png) ![screenshot](_media/17.png) ![screenshot](_media/18.png) ![screenshot](_media/19.png) ![screenshot](_media/20.png) ![screenshot](_media/21.png) ![screenshot](_media/22.png) ![screenshot](_media/23.png) ================================================ FILE: lang/en/auth.php ================================================ 'These credentials do not match our records.', 'password' => 'The provided password is incorrect.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', ]; ================================================ FILE: lang/en/pagination.php ================================================ '« Previous', 'next' => 'Next »', ]; ================================================ FILE: lang/en/passwords.php ================================================ 'Your password has been reset!', 'sent' => 'We have emailed your password reset link!', 'throttled' => 'Please wait before retrying.', 'token' => 'This password reset token is invalid.', 'user' => "We can't find a user with that email address.", ]; ================================================ FILE: lang/en/validation.php ================================================ 'The :attribute must be accepted.', 'accepted_if' => 'The :attribute must be accepted when :other is :value.', 'active_url' => 'The :attribute is not a valid URL.', 'after' => 'The :attribute must be a date after :date.', 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', 'alpha' => 'The :attribute must only contain letters.', 'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.', 'alpha_num' => 'The :attribute must only contain letters and numbers.', 'array' => 'The :attribute must be an array.', 'before' => 'The :attribute must be a date before :date.', 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', 'between' => [ 'array' => 'The :attribute must have between :min and :max items.', 'file' => 'The :attribute must be between :min and :max kilobytes.', 'numeric' => 'The :attribute must be between :min and :max.', 'string' => 'The :attribute must be between :min and :max characters.', ], 'boolean' => 'The :attribute field must be true or false.', 'confirmed' => 'The :attribute confirmation does not match.', 'current_password' => 'The password is incorrect.', 'date' => 'The :attribute is not a valid date.', 'date_equals' => 'The :attribute must be a date equal to :date.', 'date_format' => 'The :attribute does not match the format :format.', 'declined' => 'The :attribute must be declined.', 'declined_if' => 'The :attribute must be declined when :other is :value.', 'different' => 'The :attribute and :other must be different.', 'digits' => 'The :attribute must be :digits digits.', 'digits_between' => 'The :attribute must be between :min and :max digits.', 'dimensions' => 'The :attribute has invalid image dimensions.', 'distinct' => 'The :attribute field has a duplicate value.', 'doesnt_end_with' => 'The :attribute may not end with one of the following: :values.', 'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.', 'email' => 'The :attribute must be a valid email address.', 'ends_with' => 'The :attribute must end with one of the following: :values.', 'enum' => 'The selected :attribute is invalid.', 'exists' => 'The selected :attribute is invalid.', 'file' => 'The :attribute must be a file.', 'filled' => 'The :attribute field must have a value.', 'gt' => [ 'array' => 'The :attribute must have more than :value items.', 'file' => 'The :attribute must be greater than :value kilobytes.', 'numeric' => 'The :attribute must be greater than :value.', 'string' => 'The :attribute must be greater than :value characters.', ], 'gte' => [ 'array' => 'The :attribute must have :value items or more.', 'file' => 'The :attribute must be greater than or equal to :value kilobytes.', 'numeric' => 'The :attribute must be greater than or equal to :value.', 'string' => 'The :attribute must be greater than or equal to :value characters.', ], 'image' => 'The :attribute must be an image.', 'in' => 'The selected :attribute is invalid.', 'in_array' => 'The :attribute field does not exist in :other.', 'integer' => 'The :attribute must be an integer.', 'ip' => 'The :attribute must be a valid IP address.', 'ipv4' => 'The :attribute must be a valid IPv4 address.', 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', 'lt' => [ 'array' => 'The :attribute must have less than :value items.', 'file' => 'The :attribute must be less than :value kilobytes.', 'numeric' => 'The :attribute must be less than :value.', 'string' => 'The :attribute must be less than :value characters.', ], 'lte' => [ 'array' => 'The :attribute must not have more than :value items.', 'file' => 'The :attribute must be less than or equal to :value kilobytes.', 'numeric' => 'The :attribute must be less than or equal to :value.', 'string' => 'The :attribute must be less than or equal to :value characters.', ], 'mac_address' => 'The :attribute must be a valid MAC address.', 'max' => [ 'array' => 'The :attribute must not have more than :max items.', 'file' => 'The :attribute must not be greater than :max kilobytes.', 'numeric' => 'The :attribute must not be greater than :max.', 'string' => 'The :attribute must not be greater than :max characters.', ], 'max_digits' => 'The :attribute must not have more than :max digits.', 'mimes' => 'The :attribute must be a file of type: :values.', 'mimetypes' => 'The :attribute must be a file of type: :values.', 'min' => [ 'array' => 'The :attribute must have at least :min items.', 'file' => 'The :attribute must be at least :min kilobytes.', 'numeric' => 'The :attribute must be at least :min.', 'string' => 'The :attribute must be at least :min characters.', ], 'min_digits' => 'The :attribute must have at least :min digits.', 'multiple_of' => 'The :attribute must be a multiple of :value.', 'not_in' => 'The selected :attribute is invalid.', 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'The :attribute must be a number.', 'password' => [ 'letters' => 'The :attribute must contain at least one letter.', 'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.', 'numbers' => 'The :attribute must contain at least one number.', 'symbols' => 'The :attribute must contain at least one symbol.', 'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.', ], 'present' => 'The :attribute field must be present.', 'prohibited' => 'The :attribute field is prohibited.', 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', 'prohibits' => 'The :attribute field prohibits :other from being present.', 'regex' => 'The :attribute format is invalid.', 'required' => 'The :attribute field is required.', 'required_array_keys' => 'The :attribute field must contain entries for: :values.', 'required_if' => 'The :attribute field is required when :other is :value.', 'required_unless' => 'The :attribute field is required unless :other is in :values.', 'required_with' => 'The :attribute field is required when :values is present.', 'required_with_all' => 'The :attribute field is required when :values are present.', 'required_without' => 'The :attribute field is required when :values is not present.', 'required_without_all' => 'The :attribute field is required when none of :values are present.', 'same' => 'The :attribute and :other must match.', 'size' => [ 'array' => 'The :attribute must contain :size items.', 'file' => 'The :attribute must be :size kilobytes.', 'numeric' => 'The :attribute must be :size.', 'string' => 'The :attribute must be :size characters.', ], 'starts_with' => 'The :attribute must start with one of the following: :values.', 'string' => 'The :attribute must be a string.', 'timezone' => 'The :attribute must be a valid timezone.', 'unique' => 'The :attribute has already been taken.', 'uploaded' => 'The :attribute failed to upload.', 'url' => 'The :attribute must be a valid URL.', 'uuid' => 'The :attribute must be a valid UUID.', /* |-------------------------------------------------------------------------- | Custom Validation Language Lines |-------------------------------------------------------------------------- | | Here you may specify custom validation messages for attributes using the | convention "attribute.rule" to name the lines. This makes it quick to | specify a specific custom language line for a given attribute rule. | */ 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], /* |-------------------------------------------------------------------------- | Custom Validation Attributes |-------------------------------------------------------------------------- | | The following language lines are used to swap our attribute placeholder | with something more reader friendly such as "E-Mail Address" instead | of "email". This simply helps us make our message more expressive. | */ 'attributes' => [], ]; ================================================ FILE: lang/fr/auth.php ================================================ 'Ces identifiants ne correspondent pas à nos enregistrements.', 'password' => 'Le mot de passe fourni est incorrect.', 'throttle' => 'Tentatives de connexion trop nombreuses. Veuillez essayer de nouveau dans :seconds secondes.', ]; ================================================ FILE: lang/fr/pagination.php ================================================ '« Précédent', 'next' => 'Suivant »', ]; ================================================ FILE: lang/fr/passwords.php ================================================ 'Votre mot de passe a été réinitialisé !', 'sent' => 'Nous vous avons envoyé par email le lien de réinitialisation du mot de passe !', 'throttled' => 'Veuillez patienter avant de réessayer.', 'token' => "Ce jeton de réinitialisation du mot de passe n'est pas valide.", 'user' => "Aucun utilisateur n'a été trouvé avec cette adresse email.", ]; ================================================ FILE: lang/fr/validation.php ================================================ 'Le champ :attribute doit être accepté.', 'active_url' => "Le champ :attribute n'est pas une URL valide.", 'after' => 'Le champ :attribute doit être une date postérieure au :date.', 'after_or_equal' => 'Le champ :attribute doit être une date postérieure ou égale au :date.', 'alpha' => 'Le champ :attribute doit contenir uniquement des lettres.', 'alpha_dash' => 'Le champ :attribute doit contenir uniquement des lettres, des chiffres et des tirets.', 'alpha_num' => 'Le champ :attribute doit contenir uniquement des chiffres et des lettres.', 'array' => 'Le champ :attribute doit être un tableau.', 'before' => 'Le champ :attribute doit être une date antérieure au :date.', 'before_or_equal' => 'Le champ :attribute doit être une date antérieure ou égale au :date.', 'between' => [ 'numeric' => 'La valeur de :attribute doit être comprise entre :min et :max.', 'file' => 'La taille du fichier de :attribute doit être comprise entre :min et :max kilo-octets.', 'string' => 'Le texte :attribute doit contenir entre :min et :max caractères.', 'array' => 'Le tableau :attribute doit contenir entre :min et :max éléments.', ], 'boolean' => 'Le champ :attribute doit être vrai ou faux.', 'confirmed' => 'Le champ de confirmation :attribute ne correspond pas.', 'date' => "Le champ :attribute n'est pas une date valide.", 'date_equals' => 'Le champ :attribute doit être une date égale à :date.', 'date_format' => 'Le champ :attribute ne correspond pas au format :format.', 'different' => 'Les champs :attribute et :other doivent être différents.', 'digits' => 'Le champ :attribute doit contenir :digits chiffres.', 'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.', 'dimensions' => "La taille de l'image :attribute n'est pas conforme.", 'distinct' => 'Le champ :attribute a une valeur en double.', 'email' => 'Le champ :attribute doit être une adresse email valide.', 'ends_with' => 'Le champ :attribute doit se terminer par une des valeurs suivantes : :values', 'exists' => 'Le champ :attribute sélectionné est invalide.', 'file' => 'Le champ :attribute doit être un fichier.', 'filled' => 'Le champ :attribute doit avoir une valeur.', 'gt' => [ 'numeric' => 'La valeur de :attribute doit être supérieure à :value.', 'file' => 'La taille du fichier de :attribute doit être supérieure à :value kilo-octets.', 'string' => 'Le texte :attribute doit contenir plus de :value caractères.', 'array' => 'Le tableau :attribute doit contenir plus de :value éléments.', ], 'gte' => [ 'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :value.', 'file' => 'La taille du fichier de :attribute doit être supérieure ou égale à :value kilo-octets.', 'string' => 'Le texte :attribute doit contenir au moins :value caractères.', 'array' => 'Le tableau :attribute doit contenir au moins :value éléments.', ], 'image' => 'Le champ :attribute doit être une image.', 'in' => 'Le champ :attribute est invalide.', 'in_array' => "Le champ :attribute n'existe pas dans :other.", 'integer' => 'Le champ :attribute doit être un entier.', 'ip' => 'Le champ :attribute doit être une adresse IP valide.', 'ipv4' => 'Le champ :attribute doit être une adresse IPv4 valide.', 'ipv6' => 'Le champ :attribute doit être une adresse IPv6 valide.', 'json' => 'Le champ :attribute doit être un document JSON valide.', 'lt' => [ 'numeric' => 'La valeur de :attribute doit être inférieure à :value.', 'file' => 'La taille du fichier de :attribute doit être inférieure à :value kilo-octets.', 'string' => 'Le texte :attribute doit contenir moins de :value caractères.', 'array' => 'Le tableau :attribute doit contenir moins de :value éléments.', ], 'lte' => [ 'numeric' => 'La valeur de :attribute doit être inférieure ou égale à :value.', 'file' => 'La taille du fichier de :attribute doit être inférieure ou égale à :value kilo-octets.', 'string' => 'Le texte :attribute doit contenir au plus :value caractères.', 'array' => 'Le tableau :attribute doit contenir au plus :value éléments.', ], 'max' => [ 'numeric' => 'La valeur de :attribute ne peut être supérieure à :max.', 'file' => 'La taille du fichier de :attribute ne peut pas dépasser :max kilo-octets.', 'string' => 'Le texte de :attribute ne peut contenir plus de :max caractères.', 'array' => 'Le tableau :attribute ne peut contenir plus de :max éléments.', ], 'mimes' => 'Le champ :attribute doit être un fichier de type : :values.', 'mimetypes' => 'Le champ :attribute doit être un fichier de type : :values.', 'min' => [ 'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :min.', 'file' => 'La taille du fichier de :attribute doit être supérieure à :min kilo-octets.', 'string' => 'Le texte :attribute doit contenir au moins :min caractères.', 'array' => 'Le tableau :attribute doit contenir au moins :min éléments.', ], 'multiple_of' => 'La valeur de :attribute doit être un multiple de :value', 'not_in' => "Le champ :attribute sélectionné n'est pas valide.", 'not_regex' => "Le format du champ :attribute n'est pas valide.", 'numeric' => 'Le champ :attribute doit contenir un nombre.', 'password' => 'Le mot de passe est incorrect', 'present' => 'Le champ :attribute doit être présent.', 'regex' => 'Le format du champ :attribute est invalide.', 'required' => 'Le champ :attribute est obligatoire.', 'required_if' => 'Le champ :attribute est obligatoire quand la valeur de :other est :value.', 'required_unless' => 'Le champ :attribute est obligatoire sauf si :other est :values.', 'required_with' => 'Le champ :attribute est obligatoire quand :values est présent.', 'required_with_all' => 'Le champ :attribute est obligatoire quand :values sont présents.', 'required_without' => "Le champ :attribute est obligatoire quand :values n'est pas présent.", 'required_without_all' => "Le champ :attribute est requis quand aucun de :values n'est présent.", 'same' => 'Les champs :attribute et :other doivent être identiques.', 'size' => [ 'numeric' => 'La valeur de :attribute doit être :size.', 'file' => 'La taille du fichier de :attribute doit être de :size kilo-octets.', 'string' => 'Le texte de :attribute doit contenir :size caractères.', 'array' => 'Le tableau :attribute doit contenir :size éléments.', ], 'starts_with' => 'Le champ :attribute doit commencer avec une des valeurs suivantes : :values', 'string' => 'Le champ :attribute doit être une chaîne de caractères.', 'timezone' => 'Le champ :attribute doit être un fuseau horaire valide.', 'unique' => 'La valeur du champ :attribute est déjà utilisée.', 'uploaded' => "Le fichier du champ :attribute n'a pu être téléversé.", 'url' => "Le format de l'URL de :attribute n'est pas valide.", 'uuid' => 'Le champ :attribute doit être un UUID valide', /* |-------------------------------------------------------------------------- | Custom Validation Language Lines |-------------------------------------------------------------------------- | | Here you may specify custom validation messages for attributes using the | convention "attribute.rule" to name the lines. This makes it quick to | specify a specific custom language line for a given attribute rule. | */ 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], /* |-------------------------------------------------------------------------- | Custom Validation Attributes |-------------------------------------------------------------------------- | | The following language lines are used to swap attribute place-holders | with something more reader friendly such as E-Mail Address instead | of "email". This simply helps us make messages a little cleaner. | */ 'attributes' => [ 'name' => 'nom', 'username' => "nom d'utilisateur", 'email' => 'adresse email', 'first_name' => 'prénom', 'last_name' => 'nom', 'password' => 'mot de passe', 'password_confirmation' => 'confirmation du mot de passe', 'current_password' => 'mot de passe actuel', 'city' => 'ville', 'country' => 'pays', 'address' => 'adresse', 'phone' => 'téléphone', 'mobile' => 'portable', 'age' => 'âge', 'sex' => 'sexe', 'gender' => 'genre', 'day' => 'jour', 'month' => 'mois', 'year' => 'année', 'hour' => 'heure', 'minute' => 'minute', 'second' => 'seconde', 'title' => 'titre', 'content' => 'contenu', 'description' => 'description', 'excerpt' => 'extrait', 'date' => 'date', 'time' => 'heure', 'available' => 'disponible', 'size' => 'taille', ], ]; ================================================ FILE: lang/fr.json ================================================ { "- Content: :content": "- Contenu : :content", "- Field: :field": "- Champ : :field", "- New value: :newValue": "- Nouvelle valeur : :newValue", "- Old value: :oldValue": "- Ancienne valeur : :oldValue", "- Owner: :owner": "- Propriétaire : :owner", "- Priority: :priority": "- Priorité : :priority", "- Title: :title": "- Titre : :title", "- Type: :type": "- Type : :type", ":user commented the ticket :ticket": ":user a commenté le ticket :ticket", ":user created the ticket :ticket": ":user a créé le ticket :ticket", ":user updated the ticket :ticket": ":user a mis à jour le ticket :ticket", "A password recovery email has been sent": "Un e-mail de récupération de mot de passe a été envoyé", "Account activated": "Compte activé", "Account created:": "Comte créé :", "Actions": "Actions", "Activate": "Activer", "Activate account": "Activer le compte", "Activate my account": "Activer mon compte", "Add comment": "Ajouter un commentaire", "Added a comment": "A ajouté un commentaire", "After:": "Après :", "All tickets are assigned!": "Tous les tickets sont attribués !", "All unread notifications is marked as read": "Toutes les notifications non lues sont marquées comme lues", "An email has been sent to the user": "Un e-mail a été envoyé à l'utilisateur", "Analytics": "Analytique", "Are you sure you want to delete this comment?": "Êtes-vous sûr de vouloir supprimer ce commentaire ?", "Are you sure you want to delete this project?": "Voulez-vous vraiment supprimer ce projet ?", "Are you sure you want to delete this user?": "Êtes-vous sûr de vouloir supprimer cet utilisateur ?", "Assign to me": "Me l'assigner", "Assigned tickets": "Tickets assignés", "Back to sign in page": "Retour à la page de connexion", "Before:": "Avant :", "Below are the details of this comment:": "Ci-dessous les détails de ce commentaire :", "Below are the details of this modification:": "Voici les détails de cette modification :", "Below are the details of this ticket:": "Ci-dessous les détails de ce ticket :", "Below is the dashboard containing all analytics related to projects and tickets configured in :app": "Vous trouverez ci-dessous le tableau de bord contenant toutes les analyses liées aux projets et aux tickets configurés dans :app", "Below is the list of configured projects in :app": "Ci-dessous la liste des projets configurés dans :app", "Below is the list of configured users having access to :app": "Ci-dessous la liste des utilisateurs configurés ayant accès à :app", "Below is the list of created tickets in :app": "Ci-dessous la liste des tickets créés dans :app", "Below is the list of notifications you have received on :app": "Ci-dessous la liste des notifications que vous avez reçues sur :app", "Cancel": "Annuler", "Choose a new password to your account and click submit button to confirm": "Choisissez un nouveau mot de passe pour votre compte et cliquez sur le bouton soumettre pour confirmer", "Choose a password": "Choisissez un mot de passe", "Choose a password and confirm it then click the activate button to access your account": "Choisissez un mot de passe et confirmez-le puis cliquez sur le bouton activer pour accéder à votre compte", "Click here to recover it": "Cliquez ici pour le récupérer", "Comment created": "Commentaire créé", "Comment deleted": "Commentaire supprimé", "Comment deletion": "Suppression de commentaire", "Comment updated": "Commentaire mis à jour", "Confirm": "Confirmer", "Confirm your password": "Confirmez votre mot de passe", "Content": "Contenu", "Content updated": "Contenu mis à jour", "Create a new project": "Créer un nouveau projet", "Create a new ticket": "Créer un nouveau ticket", "Create a new user": "Créer un nouvel utilisateur", "Created at": "Créé le", "Created:": "Créé :", "Current password": "Mot de passe actuel", "Delete": "Supprimer", "Description": "Description", "Did you forget your password?": "Avez-vous oublié votre mot de passe ?", "Edit": "Modifier", "Edit project": "Modifier le projet", "Edit user": "Modifier l'utilisateur", "Email address": "Adresse email", "Favorite added": "Favoris ajouté", "Favorite projects": "Projets favoris", "Favorite removed": "Favoris supprimé", "Field:": "Champ :", "Filters": "Filtres", "Forgot password?": "Mot de passe oublié ?", "Full name": "Nom complet", "Go back to tickets list": "Revenir à la liste des tickets", "Go to page :page": "Aller à la page :page", "Go to sign in page": "Aller à la page de connexion", "Have you already activated your user account?": "Avez-vous déjà activé votre compte utilisateur ?", "Hello again !": "Bienvenu !", "Last update:": "Dernière mise à jour :", "Mark all unread notification as read": "Marquer toutes les notifications comme lues", "Mark as read": "Marquer comme lu", "My assigned tickets": "Mes tickets assignés", "My profile": "Mon profil", "New password": "Nouveau mot de passe", "No assigned tickets yet!": "Aucun ticket assigné !", "No comments yet!": "Aucun commentaire pour le moment !", "No notifications received yet!": "Aucune notifications reçues pour le moment !", "No projects to show!": "Aucun projet à afficher !", "No tickets assigned!": "Aucun ticket assigné !", "No tickets configured!": "Aucun ticket configuré !", "No tickets to show!": "Aucun ticket à afficher !", "No worries": "Pas de soucis", "No worries! Just type your email and click submit button and you will receive a recovery link by email": "Pas de soucis! Tapez simplement votre e-mail et cliquez sur le bouton Soumettre et vous recevrez un lien de récupération par e-mail.", "Not assigned tickets": "Aucun ticket assigné", "Not assigned yet!": "Non assigné !", "Notification updated": "Notification mise à jour", "Notifications": "Notifications", "Notifications updated": "Notifications mises à jour", "of": "des", "Owner": "Propriétaire", "Pagination Navigation": "Pagination", "pagination.next": "pagination.suivant", "pagination.previous": "pagination.précédent", "Password": "Mot de passe", "Password confirmation": "Confirmation du mot de passe", "Priorities": "Priorités", "Priority": "Priorité", "Priority updated": "Priorité mise à jour", "Profile updated": "Profil mis à jour", "Project": "Projet", "Project created": "Projet créé", "Project deleted": "Projet supprimé", "Project deletion": "Suppression du projet", "Project name": "Nom du projet", "Project updated": "Projet mis à jour", "Projects": "Projets", "Received at": "Reçu le", "Recover password": "Récupération du mot de passe", "Remember me": "Se souvenir de moi", "Resend activation email": "Renvoyer l'email d'activation", "Responsible": "Responsable", "Responsible updated": "Responsable mis à jour", "results": "Résultats", "Role": "Rôle", "Save": "Sauvegarder", "Search for projects": "Rechercher les projets", "Search for tickets": "Rechercher les tickets", "Search for users": "Rechercher les utilisateurs", "Showing": "Affichage", "Sign in": "Connexion", "Sign out": "Déconnexion", "Status": "Statut", "Status updated": "Statut mis à jour", "Statuses": "Statuts", "Submit": "Soumettre", "Success": "Succès", "Thank you for using our application!": "Merci d'utiliser notre application!", "The comment has been deleted": "Le commentaire a été supprimé", "The comment has been updated": "Le commentaire a été mis à jour", "The notification is now marked as read": "La notification est maintenant marquée comme lue", "The password entered is incorrect.": "Le mot de passe saisi est incorrect.", "The project has been deleted": "Le projet a été supprimé", "The project has been successfully added to your favorite projects": "Le projet a été ajouté avec succès à vos projets favoris", "The project has been successfully created": "Le projet a été créé avec succès", "The project has been successfully remove from your favorite projects": "Le projet a été supprimé avec succès de vos projets favoris", "The project's details has been updated": "Les détails du projet ont été mis à jour", "The ticket content has been successfully updated": "Le contenu du ticket a été mis à jour avec succès", "The ticket has been successfully created": "Le ticket a été créé avec succès", "The ticket priority has been successfully updated": "La priorité du ticket a été mise à jour avec succès", "The ticket responsible has been successfully updated": "Le responsable du ticket a été mis à jour avec succès", "The ticket status has been successfully updated": "Le statut du ticket a été mis à jour avec succès", "The ticket title has been successfully updated": "Le titre du ticket a été mis à jour avec succès", "The ticket type has been successfully updated": "Le type de ticket a été mis à jour avec succès", "The user has been deleted": "L'utilisateur a été supprimé", "The user's details has been updated": "Les détails de l'utilisateur ont été mis à jour", "These credentials do not match our records.": "Ces informations d'identification ne correspondent pas à nos dossiers.", "Ticket created": "Ticket créé", "Ticket details": "Détails du ticket", "Ticket title": "Titre du ticket", "Tickets": "Tickets", "Tickets assignments": "Affectations de tickets", "Tickets by statuses": "Tickets par statuts", "Title": "Titre", "Title updated": "Titre mis à jour", "Too many login attempts. Please try again in :seconds seconds.": "Trop de tentatives de connexion. Veuillez réessayer dans : secondes secondes.", "Type": "Type", "Type a new comment...": "Tapez un nouveau commentaire...", "Type updated": "Type mis à jour", "Types": "Les types", "Unassigned": "Non attribué", "Update": "Mise à jour", "Update your :app user account by using the below form.": "Mettez à jour votre compte utilisateur :app en utilisant le formulaire ci-dessous.", "Update your comment...": "Mettez à jour votre commentaire...", "User created": "Utilisateur créé", "User deleted": "Utilisateur supprimé", "User deletion": "Suppression d'utilisateur", "User updated": "Utilisateur mis à jour", "Users": "Utilisateurs", "View ticket details": "Afficher les détails du ticket", "View tickets": "Voir les tickets", "We are pleased to inform you that your user account on the :platform platform has been successfully created.": "Nous avons le plaisir de vous informer que votre compte utilisateur sur la plateforme :platform a été créé avec succès.", "We inform you that a new comment has been added to the ticket :ticket in the platform :platform.": "Nous vous informons qu'un nouveau commentaire a été ajouté au ticket :ticket dans la plateforme :platform.", "We inform you that a new ticket has been created in the platform :platform.": "Nous vous informons qu'un nouveau ticket a été créé dans la plateforme :platform.", "We inform you that the ticket :ticket has been updated.": "Nous vous informons que le ticket :ticket a été mis à jour.", "We inform you that your user account for the :platform platform is now activated.": "Nous vous informons que votre compte utilisateur pour la plateforme :platform est désormais activé.", "We invite you to use the following button to define your password and activate your user account.": "Nous vous invitons à utiliser le bouton suivant pour définir votre mot de passe et activer votre compte utilisateur.", "Welcome again, fill the form below and click the sign in button to login into your account": "Bienvenue à nouveau, remplissez le formulaire ci-dessous et cliquez sur le bouton de connexion pour vous connecter à votre compte", "Y-m-d g:i A": "d-m-Y H:i", "You can use the following button to access the platform.": "Vous pouvez utiliser le bouton suivant pour accéder à la plateforme.", "Your account details has been updated": "Les détails de votre compte ont été mis à jour", "Your comment has been successfully added to the ticket": "Votre commentaire a bien été ajouté au ticket", "Your password is now updated": "Votre mot de passe est maintenant à jour", "Default language": "Langue par défaut", "Created": "Créé", "In progress": "En cours", "Done": "Fait", "Validated": "Validé", "Rejected": "Rejeté", "Lowest": "Très basse", "Low": "Basse", "Normal": "Normale", "High": "Haute", "Highest": "Très haute", "Improvement": "Amélioration", "New feature": "Nouvelle fonctionnalité", "Task": "Tâche", "Bug": "Bug", "Administrator": "Administrateur", "Employee": "Employé", "Customer": "Client", "Overview": "Vue d'ensemble", "Administration": "Administration", "Below is the Kanban Board for tickets configured on :app": "Ci-dessous le tableau Kanban pour les tickets configurés sur :app", "Kanban Board": "Tableau Kanban", "Oops!": "Oups !", "You don't have permissions to change this ticket status": "Vous n'êtes pas autorisé à modifier le statut de ce ticket", "Below you can configure the different components of :app": "Ci-dessous vous pouvez configurer les différents composants de :app", "User Management": "Gestion des utilisateurs", "Here you can show and manage the users list configured on :app": "Ici vous pouvez visualiser et gérer la liste des utilisateurs de :app", "Here you can show and manage the tickets statuses list configured on :app": "Ici vous pouvez visualiser et gérer la liste des statuts des tickets de :app", "Here you can show and manage the tickets priorities list configured on :app": "Ici vous pouvez visualiser et gérer la liste des priorités des tickets de :app", "Here you can show and manage the tickets types list configured on :app": "Ici vous pouvez visualiser et gérer la liste des types des tickets de :app", "Manage users": "Gérer les utilisateurs", "Manage statuses": "Gérer les statuts", "Manage priorities": "Gérer les priorités", "Manage types": "Gérer les types", "Go back to administration": "Revenir à l'administration", "Ticket types": "Types des tickets", "Ticket priorities": "Priorités des tickets", "Ticket statuses": "Statuts des tickets", "Below is the list of configured tickets types in :app": "Ci-dessous la liste des types des tickets configurés sur :app", "Below is the list of configured tickets priorities in :app": "Ci-dessous la liste des priorités des tickets configurés sur :app", "Below is the list of configured tickets statuses in :app": "Ci-dessous la liste des statuts des tickets configurés sur :app", "Search for tickets statuses": "Rechercer les statuts des tickets", "Colors": "Couleurs", "Default status": "Statut par défaut", "Text color": "Couleur de texte", "Background color": "Couleur de fond", "Edit status": "Modifier le statut", "Edit priority": "Modifier la priorité", "Edit type": "Modifier le type", "No ticket statuses to show!": "Aucun statuts de ticket à afficher !", "Update user": "Modifier l'utilisateur", "Update status": "Modifier le statut", "Status created": "Statut créé", "Status deleted": "Statut supprimé", "The status has been created": "Le statut est créé", "The status's details has been updated": "Les informations du statut ont été mise à jour", "The status has been deleted": "Le statut a été supprimé", "Status deletion": "Suppression du statut", "Are you sure you want to delete this status?": "Êtes-vous sûr de vouloir supprimé ce statut ?", "Check this box if this status should be assigned by default to new tickets": "Cochez cette case si ce statut doit être affecté par défaut aux nouveaux tickets", "Update priority": "Modifier la priorité", "Priority created": "Priorité créée", "Priority deleted": "Priorité supprimée", "The priority has been created": "La priorité est créée", "The priority's details has been updated": "Les informations de la priorité ont été mise à jour", "The priority has been deleted": "La priorité a été supprimé", "Priority deletion": "Suppression de la priorité", "Are you sure you want to delete this priority?": "Êtes-vous sûr de vouloir supprimé cette priorité ?", "Update type": "Modifier la priorité", "Type created": "Type créé", "Type deleted": "Type supprimé", "The type has been created": "Le type est créé", "The type's details has been updated": "Les informations du type ont été mise à jour", "The type has been deleted": "Le type a été supprimé", "Type deletion": "Suppression du type", "Are you sure you want to delete this type?": "Êtes-vous sûr de vouloir supprimé ce type ?", "Check the fontawesome icons here to choose your right icon": "Voir les icônes fontawesome ici pour choisir votre icône", "Selected icon:": "Icône sélectionnée", "Icon": "Icône", "Ticket prefix": "Préfixe des tickets", "Used to generate tickets numbers": "Utilisé pour générer les numéros des tickets", "See details": "Voir les détails", "Click to copy url to ticket": "Cliquez pour copier le lien vers le ticket", "Ticket url copied": "Url du ticket copié", "The ticket url successfully copied to your clipboard": "L'URL du ticket a été copiée avec succès dans votre presse-papiers", "Activity logs": "Journaux d'activité", "Here you can see all activity logs of :app": "Ici vous pouvez voir tous les journaux d'activité de :app", "Below is the list of activity logs of :app": "Ci-dessous les journaux d'activité de :app", "Search for activity logs": "Rechercher les journaux d'activité", "Chat": "Chat", "Chat section": "Section de chat", "Use the section below to chat with the speakers of this ticket": "Utilisez la section ci-dessous pour échanger avec les intervenants de ce ticket", "Type a message..": "Tapez un message..", "Send": "Envoyer", "No messages yet!": "Aucun message pour le moment !", "Company": "Entreprise", "Company name": "Nom de l'entreprise", "Logo": "Logo", "Companies": "Entreprises", "Below is the list of configured companies in :app": "Ci-dessous est la liste des entreprises configurées sur :app", "Create a new company": "Créer une nouvelle entreprise", "Disable access to this company": "Désactiver l'accès à cette entreprise", "Company created": "Entreprise créée", "The company has been created": "L'entreprise est créée avec succès", "Company updated": "Entreprise mise à jour", "The company's details has been updated": "L'entreprise est mise à jour avec succès", "Company deleted": "Entreprise supprimée", "The company has been deleted": "L'entreprise est supprimée avec succès", "Company deletion": "Suppression de l'entreprise", "Are you sure you want to delete this company?": "Êtes-vous sûr de vouloir supprimer cette entreprise ?", "Companies Management": "Gestion des entreprises", "Here you can show and manage the companies list configured on :app": "Ici vous pouvez visualiser et gérer la liste des entreprises de :app", "Manage companies": "Gérer les entreprises", "Company activated": "Entreprise activée", "Edit company": "Modifier l'entreprise", "Use same permissions of": "Utiliser les mêmes permission que", "Update the permissions of this user based on another user's permissions": "Mettre à jour les permissions de cet utilisateur en se basant sur les permissions d'un autre utilisateur", "Assign all permissions": "Assigner toutes les permissions", "Remove all permissions": "Enlever toutes les permissions", "Assign all roles": "Assigner toutes les rôles", "Remove all roles": "Enlever toutes les rôles", "Company users": "Utilisateurs de l'entreprise", "Yes": "Oui", "No": "Non", "All users": "Tous les utilisateurs", "Manage user roles": "Gérer les rôles d'utilisateurs", "Role name": "Nom du rôle", "Edit role": "Modifier le rôle", "Roles": "Rôles", "Below is the list of configured user roles giving access to user of :app": "Ci-dessous la liste des rôles donnant accès aux utilisateur de :app", "Create a new role": "Créer un nouveau rôle", "Update role": "Modifier le rôle", "Role created": "Rôle créé", "Role deleted": "Rôle supprimé", "Role deletion": "Suppression du rôle", "Role updated": "Rôle mis à jour", "The user role has been created": "Le rôle utilisateur a été créé", "The role's details has been updated": "Les détails du rôle ont été mis à jour", "The role has been deleted": "Le rôle a été supprimé", "Are you sure you want to delete this role?": "Êtes-vous sûr de vouloir supprimer ce rôle ?", "User roles": "Rôles de l'utilisateur", "Export": "Exporter", "Permissions": "Permissions" } ================================================ FILE: package.json ================================================ { "private": true, "scripts": { "dev": "vite", "build": "vite build", "heroku-postbuild": "vite build" }, "engines": { "node": "18.x", "npm": "7.x" }, "devDependencies": { "@alpinejs/focus": "^3.10.3", "@awcodes/alpine-floating-ui": "^3.4.0", "@tailwindcss/forms": "^0.5.3", "@tailwindcss/typography": "^0.5.7", "alpinejs": "^3.10.3", "autoprefixer": "^10.4.8", "axios": "^0.27", "laravel-vite-plugin": "^0.6.0", "lodash": "^4.17.19", "postcss": "^8.4.16", "tailwindcss": "^3.1.8", "vite": "^3.0.0" }, "dependencies": { "@fortawesome/fontawesome-free": "^6.2.0", "flowbite": "^1.5.3", "jquery": "^3.6.1", "magnific-popup": "^1.1.0", "sass": "^1.54.9", "tippy.js": "^6.3.7" } } ================================================ FILE: phpunit.xml ================================================ ./tests/Unit ./tests/Feature ./app ================================================ FILE: postcss.config.js ================================================ module.exports = { plugins: { tailwindcss: {}, autoprefixer: {}, }, } ================================================ FILE: public/.htaccess ================================================ Options -MultiViews -Indexes RewriteEngine On # Handle Authorization Header RewriteCond %{HTTP:Authorization} . RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] # Redirect Trailing Slashes If Not A Folder... RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} (.+)/$ RewriteRule ^ %1 [L,R=301] # Send Requests To Front Controller... RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] ================================================ FILE: public/index.php ================================================ make(Kernel::class); $response = $kernel->handle( $request = Request::capture() )->send(); $kernel->terminate($request, $response); ================================================ FILE: public/robots.txt ================================================ User-agent: * Disallow: ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/README.md ================================================ This is where language files should be placed. Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/ar.js ================================================ tinymce.addI18n('ar',{ "Redo": "\u0625\u0639\u0627\u062f\u0629", "Undo": "\u062a\u0631\u0627\u062c\u0639", "Cut": "\u0642\u0635", "Copy": "\u0646\u0633\u062e", "Paste": "\u0644\u0635\u0642", "Select all": "\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u0643\u0644", "New document": "\u0645\u0633\u062a\u0646\u062f \u062c\u062f\u064a\u062f", "Ok": "\u0645\u0648\u0627\u0641\u0642", "Cancel": "\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0623\u0645\u0631", "Visual aids": "\u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629 \u0627\u0644\u0628\u0635\u0631\u064a\u0629", "Bold": "\u063a\u0627\u0645\u0642", "Italic": "\u0645\u0627\u0626\u0644", "Underline": "\u062a\u0633\u0637\u064a\u0631", "Strikethrough": "\u064a\u062a\u0648\u0633\u0637\u0647 \u062e\u0637", "Superscript": "\u0645\u0631\u062a\u0641\u0639", "Subscript": "\u0645\u0646\u062e\u0641\u0636", "Clear formatting": "\u0645\u0633\u062d \u0627\u0644\u062a\u0646\u0633\u064a\u0642", "Align left": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0625\u0644\u0649 \u0627\u0644\u064a\u0633\u0627\u0631", "Align center": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0625\u0644\u0649 \u0627\u0644\u0648\u0633\u0637", "Align right": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0625\u0644\u0649 \u0627\u0644\u064a\u0645\u064a\u0646", "Justify": "\u0636\u0628\u0637", "Bullet list": "\u0642\u0627\u0626\u0645\u0629 \u062a\u0639\u062f\u0627\u062f \u0646\u0642\u0637\u064a", "Numbered list": "\u0642\u0627\u0626\u0645\u0629 \u0645\u0631\u0642\u0645\u0651\u064e\u0629", "Decrease indent": "\u062a\u0642\u0644\u064a\u0644 \u0627\u0644\u0645\u0633\u0627\u0641\u0629 \u0627\u0644\u0628\u0627\u062f\u0626\u0629", "Increase indent": "\u0632\u064a\u0627\u062f\u0629 \u0627\u0644\u0645\u0633\u0627\u0641\u0629 \u0627\u0644\u0628\u0627\u062f\u0626\u0629", "Close": "\u0625\u063a\u0644\u0627\u0642", "Formats": "\u0627\u0644\u062a\u0646\u0633\u064a\u0642\u0627\u062a", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0645\u062a\u0635\u0641\u062d\u0643 \u0644\u0627 \u064a\u062f\u0639\u0645 \u0627\u0644\u0648\u0635\u0648\u0644 \u0627\u0644\u0645\u0628\u0627\u0634\u0631 \u0625\u0644\u0649 \u0627\u0644\u062d\u0627\u0641\u0638\u0629. \u064a\u064f\u0631\u062c\u0649 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d Ctrl+X\/C\/V \u0628\u062f\u0644\u0627\u064b \u0645\u0646 \u0630\u0644\u0643.", "Headers": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646", "Header 1": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 1", "Header 2": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 2", "Header 3": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 3", "Header 4": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 4", "Header 5": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 5", "Header 6": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 6", "Headings": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646", "Heading 1": "\u0639\u0646\u0648\u0627\u0646 \u0661", "Heading 2": "\u0639\u0646\u0648\u0627\u0646 2", "Heading 3": "\u0639\u0646\u0648\u0627\u0646 3", "Heading 4": "\u0639\u0646\u0648\u0627\u0646 4", "Heading 5": "\u0639\u0646\u0648\u0627\u0646 5", "Heading 6": "\u0639\u0646\u0648\u0627\u0646 6", "Preformatted": "\u0645\u0646\u0633\u0642 \u0645\u0633\u0628\u0642\u064b\u0627", "Div": "Div", "Pre": "Pre", "Code": "\u0631\u0645\u0632", "Paragraph": "\u0627\u0644\u0641\u0642\u0631\u0629", "Blockquote": "Blockquote", "Inline": "\u062f\u0627\u062e\u0644\u064a", "Blocks": "\u0627\u0644\u0643\u062a\u0644", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u064a\u062a\u0645 \u0627\u0644\u0644\u0635\u0642 \u062d\u0627\u0644\u064a\u0627\u064b \u0643\u0646\u0635 \u0639\u0627\u062f\u064a. \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0633\u064a\u0628\u0642\u0649 \u0643\u0646\u0635 \u0639\u0627\u062f\u064a \u062d\u062a\u0649 \u062a\u0642\u0648\u0645 \u0628\u062a\u0639\u0637\u064a\u0644 \u0647\u0630\u0627 \u0627\u0644\u062e\u064a\u0627\u0631.", "Fonts": "\u0627\u0644\u062e\u0637\u0648\u0637", "Font Sizes": "\u0623\u062d\u062c\u0627\u0645 \u0627\u0644\u062e\u0637\u0648\u0637", "Class": "\u0627\u0644\u0641\u0626\u0629", "Browse for an image": "\u0627\u0633\u062a\u0639\u0631\u0627\u0636 \u0635\u0648\u0631\u0629", "OR": "\u0623\u0648", "Drop an image here": "\u0625\u0641\u0644\u0627\u062a \u0635\u0648\u0631\u0629 \u0647\u0646\u0627", "Upload": "\u062a\u062d\u0645\u064a\u0644", "Block": "\u062d\u0638\u0631", "Align": "\u0645\u062d\u0627\u0630\u0627\u0629", "Default": "\u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a", "Circle": "\u062f\u0627\u0626\u0631\u0629", "Disc": "\u0642\u0631\u0635", "Square": "\u0645\u0631\u0628\u0639", "Lower Alpha": "\u062a\u0631\u0642\u064a\u0645 \u0623\u062e\u0631\u0641 \u0635\u063a\u064a\u0631\u0629", "Lower Greek": "\u062a\u0631\u0642\u064a\u0645 \u064a\u0648\u0646\u0627\u0646\u064a \u0635\u063a\u064a\u0631", "Lower Roman": "\u062a\u0631\u0642\u064a\u0645 \u0631\u0648\u0645\u0627\u0646\u064a \u0635\u063a\u064a\u0631", "Upper Alpha": "\u062a\u0631\u0642\u064a\u0645 \u0623\u062d\u0631\u0641 \u0643\u0628\u064a\u0631\u0629", "Upper Roman": "\u062a\u0631\u0642\u064a\u0645 \u0631\u0648\u0645\u0627\u0646\u064a \u0643\u0628\u064a\u0631", "Anchor...": "\u0645\u0631\u0633\u0627\u0629...", "Name": "\u0627\u0644\u0627\u0633\u0645", "Id": "\u0631\u0642\u0645 \u0627\u0644\u0645\u0639\u0631\u0641", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u0631\u0642\u0645 \u0627\u0644\u0645\u0639\u0631\u0641 \u064a\u062c\u0628 \u0623\u0646 \u062a\u0628\u062f\u0623 \u0628\u062d\u0631\u0641\u060c \u064a\u062a\u0628\u0639 \u0641\u0642\u0637 \u0628\u062d\u0631\u0648\u0641 \u0648\u0623\u0631\u0642\u0627\u0645\u060c \u0634\u0631\u0637\u0627\u062a\u060c \u0623\u0648 \u0627\u0644\u0646\u0642\u0627\u0637\u060c \u0627\u0644\u0646\u0642\u0637\u062a\u064a\u0646 \u0623\u0648 \u0627\u0644\u0634\u0631\u0637\u0627\u062a \u0627\u0644\u0633\u0641\u0644\u064a\u0629.", "You have unsaved changes are you sure you want to navigate away?": "\u0644\u062f\u064a\u0643 \u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0644\u0645 \u064a\u062a\u0645 \u062d\u0641\u0638\u0647\u0627 \u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u063a\u0628 \u0641\u064a \u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0639\u064a\u062f\u0627\u061f", "Restore last draft": "\u0627\u0633\u062a\u0639\u0627\u062f\u0629 \u0623\u062e\u0631 \u0645\u0633\u0648\u062f\u0629", "Special character...": "\u0631\u0645\u0632 \u062e\u0627\u0635...", "Source code": "\u0634\u0641\u0631\u0629 \u0627\u0644\u0645\u0635\u062f\u0631", "Insert\/Edit code sample": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0643\u0648\u062f", "Language": "\u0627\u0644\u0644\u063a\u0629", "Code sample...": "\u0639\u064a\u0646\u0629 \u0627\u0644\u0631\u0645\u0632...", "Color Picker": "\u0645\u0646\u062a\u0642\u064a \u0627\u0644\u0623\u0644\u0648\u0627\u0646", "R": "R", "G": "G", "B": "B", "Left to right": "\u0645\u0646 \u0627\u0644\u064a\u0633\u0627\u0631 \u0644\u0644\u064a\u0645\u064a\u0646", "Right to left": "\u0645\u0646 \u0627\u0644\u064a\u0645\u064a\u0646 \u0644\u0644\u064a\u0633\u0627\u0631", "Emoticons...": "\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u0634\u0627\u0639\u0631...", "Metadata and Document Properties": "\u062e\u0635\u0627\u0626\u0635 \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u062a\u0639\u0631\u064a\u0641 \u0648\u0627\u0644\u0645\u0633\u062a\u0646\u062f", "Title": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646", "Keywords": "\u0643\u0644\u0645\u0627\u062a \u0627\u0644\u0628\u062d\u062b", "Description": "\u0627\u0644\u0648\u0635\u0641", "Robots": "\u0627\u0644\u0631\u0648\u0628\u0648\u062a\u0627\u062a", "Author": "\u0627\u0644\u0643\u0627\u062a\u0628", "Encoding": "\u0627\u0644\u062a\u0631\u0645\u064a\u0632", "Fullscreen": "\u0645\u0644\u0621 \u0627\u0644\u0634\u0627\u0634\u0629", "Action": "\u0627\u0644\u0639\u0645\u0644\u064a\u0629", "Shortcut": "\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631", "Help": "\u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629", "Address": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646", "Focus to menubar": "\u0627\u0644\u062a\u0631\u0643\u064a\u0632 \u0639\u0644\u0649 \u0634\u0631\u064a\u0637 \u0627\u0644\u0642\u0648\u0627\u0626\u0645", "Focus to toolbar": "\u0627\u0644\u062a\u0631\u0643\u064a\u0632 \u0639\u0644\u0649 \u0634\u0631\u064a\u0637 \u0627\u0644\u0623\u062f\u0648\u0627\u062a", "Focus to element path": "\u0627\u0644\u062a\u0631\u0643\u064a\u0632 \u0639\u0644\u0649 \u0645\u0633\u0627\u0631 \u0627\u0644\u0639\u0646\u0635\u0631", "Focus to contextual toolbar": "\u0627\u0644\u062a\u0631\u0643\u064a\u0632 \u0639\u0644\u0649 \u0634\u0631\u064a\u0637 \u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0633\u064a\u0627\u0642", "Insert link (if link plugin activated)": "\u0625\u0636\u0627\u0641\u0629 \u0631\u0627\u0628\u0637 (\u0625\u0630\u0627 \u0643\u0627\u0646\u062a \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0631\u0648\u0627\u0628\u0637 \u0645\u0641\u0639\u0644\u0629)", "Save (if save plugin activated)": "\u062d\u0641\u0638 (\u0625\u0630\u0627 \u0643\u0627\u0646\u062a \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u062d\u0641\u0638 \u0645\u0641\u0639\u0644\u0629)", "Find (if searchreplace plugin activated)": "\u0627\u0644\u0628\u062d\u062b (\u0625\u0630\u0627 \u0643\u0627\u0646\u062a \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0628\u062d\u062b \u0645\u0641\u0639\u0644\u0629)", "Plugins installed ({0}):": "\u0627\u0644\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0645\u062b\u0628\u062a\u0629 ({0}):", "Premium plugins:": "\u0627\u0644\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0645\u0645\u064a\u0632\u0629:", "Learn more...": "\u0645\u0639\u0631\u0641\u0629 \u0627\u0644\u0645\u0632\u064a\u062f...", "You are using {0}": "\u0623\u0646\u062a \u062a\u0633\u062a\u062e\u062f\u0645 {0}", "Plugins": "\u0627\u0644\u0625\u0636\u0627\u0641\u0627\u062a", "Handy Shortcuts": "\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0645\u0633\u0627\u0639\u0650\u062f\u0629", "Horizontal line": "\u062e\u0637 \u0623\u0641\u0642\u064a", "Insert\/edit image": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0635\u0648\u0631\u0629", "Image description": "\u0648\u0635\u0641 \u0627\u0644\u0635\u0648\u0631\u0629", "Source": "\u0627\u0644\u0645\u0635\u062f\u0631", "Dimensions": "\u0627\u0644\u0623\u0628\u0639\u0627\u062f", "Constrain proportions": "\u0627\u0644\u062a\u0646\u0627\u0633\u0628", "General": "\u0639\u0627\u0645", "Advanced": "\u062e\u0635\u0627\u0626\u0635 \u0645\u062a\u0642\u062f\u0645\u0647", "Style": "\u0627\u0644\u0646\u0645\u0637 \/ \u0627\u0644\u0634\u0643\u0644", "Vertical space": "\u0645\u0633\u0627\u0641\u0629 \u0639\u0645\u0648\u062f\u064a\u0629", "Horizontal space": "\u0645\u0633\u0627\u0641\u0629 \u0623\u0641\u0642\u064a\u0629", "Border": "\u062d\u062f\u0648\u062f", "Insert image": "\u0625\u062f\u0631\u0627\u062c \u0635\u0648\u0631\u0629", "Image...": "\u0635\u0648\u0631\u0629...", "Image list": "\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0635\u0648\u0631", "Rotate counterclockwise": "\u062a\u062f\u0648\u064a\u0631 \u0639\u0643\u0633 \u0627\u062a\u062c\u0627\u0647 \u0639\u0642\u0627\u0631\u0628 \u0627\u0644\u0633\u0627\u0639\u0629", "Rotate clockwise": "\u062a\u062f\u0648\u064a\u0631 \u0641\u064a \u0627\u062a\u062c\u0627\u0647 \u0639\u0642\u0627\u0631\u0628 \u0627\u0644\u0633\u0627\u0639\u0629", "Flip vertically": "\u0627\u0646\u0639\u0643\u0627\u0633 \u0639\u0627\u0645\u0648\u062f\u064a", "Flip horizontally": "\u0627\u0646\u0639\u0643\u0627\u0633 \u0623\u0641\u0642\u064a", "Edit image": "\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0635\u0648\u0631\u0629", "Image options": "\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0635\u0648\u0631\u0629", "Zoom in": "\u062a\u0643\u0628\u064a\u0631", "Zoom out": "\u062a\u0635\u063a\u064a\u0631", "Crop": "\u0642\u0635", "Resize": "\u062a\u063a\u064a\u064a\u0631 \u062d\u062c\u0645", "Orientation": "\u0627\u0644\u0645\u062d\u0627\u0630\u0627\u0629", "Brightness": "\u0627\u0644\u0625\u0636\u0627\u0621\u0629", "Sharpen": "\u062d\u0627\u062f\u0629", "Contrast": "\u0627\u0644\u062a\u0628\u0627\u064a\u0646", "Color levels": "\u0645\u0633\u062a\u0648\u0649 \u0627\u0644\u0644\u0648\u0646", "Gamma": "\u063a\u0627\u0645\u0627", "Invert": "\u0639\u0643\u0633", "Apply": "\u062a\u0637\u0628\u064a\u0642", "Back": "\u0644\u0644\u062e\u0644\u0641", "Insert date\/time": "\u0625\u062f\u0631\u0627\u062c \u062a\u0627\u0631\u064a\u062e\/\u0648\u0642\u062a", "Date\/time": "\u0627\u0644\u062a\u0627\u0631\u064a\u062e\/\u0627\u0644\u0648\u0642\u062a", "Insert\/Edit Link": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0627\u0631\u062a\u0628\u0627\u0637", "Insert\/edit link": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0631\u0627\u0628\u0637", "Text to display": "\u0627\u0644\u0646\u0635 \u0627\u0644\u0645\u0637\u0644\u0648\u0628 \u0639\u0631\u0636\u0647", "Url": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646", "Open link in...": "\u062c\u0627\u0631\u064d \u0641\u062a\u062d \u0627\u0644\u0627\u0631\u062a\u0628\u0627\u0637.", "Current window": "\u0627\u0644\u0646\u0627\u0641\u0630\u0629 \u0627\u0644\u062d\u0627\u0644\u064a\u0629", "None": "\u0628\u0644\u0627", "New window": "\u0646\u0627\u0641\u0630\u0629 \u062c\u062f\u064a\u062f\u0629", "Remove link": "\u062d\u0630\u0641 \u0627\u0644\u0631\u0627\u0628\u0637", "Anchors": "\u0627\u0644\u0645\u0631\u0633\u0627\u0629", "Link...": "\u0627\u0631\u062a\u0628\u0627\u0637...", "Paste or type a link": "\u0623\u062f\u062e\u0644 \u0623\u0648 \u0627\u0643\u062a\u0628 \u0627\u0644\u0631\u0627\u0628\u0637", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0630\u064a \u0642\u0645\u062a \u0628\u0625\u062f\u0631\u0627\u062c\u0647 \u064a\u0634\u0627\u0628\u0647 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a. \u0647\u0644 \u062a\u0631\u064a\u062f \u0627\u0646 \u062a\u0636\u064a\u0641 \u0627\u0644\u0644\u0627\u062d\u0642\u0629 mailto: \u0645\u0639\u062a\u0628\u0631\u0627\u064b \u0647\u0630\u0627 \u0627\u0644\u0631\u0627\u0628\u0637 \u0628\u0631\u064a\u062f\u0627 \u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0627\u064b\u061f", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0646\u062a\u0648\u0642\u0639 \u0627\u0646\u0643 \u0642\u0645\u062a \u0628\u0625\u062f\u0631\u0627\u062c \u0631\u0627\u0628\u0637 \u0644\u0645\u0648\u0642\u0639 \u062e\u0627\u0631\u062c\u064a. \u0647\u0644 \u062a\u0631\u064a\u062f \u0627\u0646 \u0646\u0636\u064a\u0641 \u0627\u0644\u0644\u0627\u062d\u0642\u0629 http:\/\/ \u0644\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0630\u064a \u0627\u062f\u062e\u0644\u062a\u0647\u061f", "Link list": "\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0631\u0648\u0627\u0628\u0637", "Insert video": "\u0625\u062f\u0631\u0627\u062c \u0641\u064a\u062f\u064a\u0648", "Insert\/edit video": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0641\u064a\u062f\u064a\u0648", "Insert\/edit media": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629", "Alternative source": "\u0645\u0635\u062f\u0631 \u0628\u062f\u064a\u0644", "Alternative source URL": "\u0639\u0646\u0648\u0627\u0646 URL \u0644\u0644\u0645\u0635\u062f\u0631 \u0627\u0644\u0628\u062f\u064a\u0644", "Media poster (Image URL)": "\u0645\u0644\u0635\u0642 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 (\u0639\u0646\u0648\u0627\u0646 URL \u0644\u0644\u0635\u0648\u0631\u0629)", "Paste your embed code below:": "\u0644\u0635\u0642 \u0643\u0648\u062f \u0627\u0644\u062a\u0636\u0645\u064a\u0646 \u0647\u0646\u0627:", "Embed": "\u062a\u0636\u0645\u064a\u0646", "Media...": "\u0627\u0644\u0648\u0633\u0627\u0626\u0637...", "Nonbreaking space": "\u0645\u0633\u0627\u0641\u0629 \u063a\u064a\u0631 \u0645\u0646\u0642\u0633\u0645\u0629", "Page break": "\u0641\u0627\u0635\u0644 \u0644\u0644\u0635\u0641\u062d\u0629", "Paste as text": "\u0644\u0635\u0642 \u0643\u0646\u0635", "Preview": "\u0645\u0639\u0627\u064a\u0646\u0629", "Print...": "\u0637\u0628\u0627\u0639\u0629...", "Save": "\u062d\u0641\u0638", "Find": "\u0628\u062d\u062b", "Replace with": "\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0628\u0640", "Replace": "\u0627\u0633\u062a\u0628\u062f\u0627\u0644", "Replace all": "\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0627\u0644\u0643\u0644", "Previous": "\u0627\u0644\u0633\u0627\u0628\u0642", "Next": "\u0627\u0644\u062a\u0627\u0644\u064a", "Find and replace...": "\u062c\u0627\u0631\u064d \u0627\u0644\u0628\u062d\u062b \u0648\u0627\u0644\u0627\u0633\u062a\u0628\u062f\u0627\u0644...", "Could not find the specified string.": "\u062a\u0639\u0630\u0631 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u062d\u062f\u062f\u0629", "Match case": "\u0645\u0637\u0627\u0628\u0642\u0629 \u062d\u0627\u0644\u0629 \u0627\u0644\u0623\u062d\u0631\u0641", "Find whole words only": "\u0628\u062d\u062b \u0643\u0644\u0645\u0627\u062a \u0628\u0623\u0643\u0645\u0644\u0647\u0627 \u0641\u0642\u0637", "Spell check": "\u062a\u062f\u0642\u064a\u0642 \u0625\u0645\u0644\u0627\u0626\u064a", "Ignore": "\u062a\u062c\u0627\u0647\u0644", "Ignore all": "\u062a\u062c\u0627\u0647\u0644 \u0627\u0644\u0643\u0644", "Finish": "\u0627\u0646\u062a\u0647\u064a", "Add to Dictionary": "\u0627\u0636\u0641 \u0627\u0644\u064a \u0627\u0644\u0642\u0627\u0645\u0648\u0633", "Insert table": "\u0625\u062f\u0631\u0627\u062c \u062c\u062f\u0648\u0644", "Table properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u062c\u062f\u0648\u0644", "Delete table": "\u062d\u0630\u0641 \u062c\u062f\u0648\u0644", "Cell": "\u062e\u0644\u064a\u0629", "Row": "\u0635\u0641", "Column": "\u0639\u0645\u0648\u062f", "Cell properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u062e\u0644\u064a\u0629", "Merge cells": "\u062f\u0645\u062c \u062e\u0644\u0627\u064a\u0627", "Split cell": "\u062a\u0642\u0633\u064a\u0645 \u0627\u0644\u062e\u0644\u0627\u064a\u0627", "Insert row before": "\u0625\u062f\u0631\u0627\u062c \u0635\u0641 \u0644\u0644\u0623\u0639\u0644\u0649", "Insert row after": "\u0625\u062f\u0631\u0627\u062c \u0635\u0641 \u0644\u0644\u0623\u0633\u0641\u0644", "Delete row": "\u062d\u0630\u0641 \u0635\u0641", "Row properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0635\u0641", "Cut row": "\u0642\u0635 \u0627\u0644\u0635\u0641", "Copy row": "\u0646\u0633\u062e \u0627\u0644\u0635\u0641", "Paste row before": "\u0644\u0635\u0642 \u0627\u0644\u0635\u0641 \u0644\u0644\u0623\u0639\u0644\u0649", "Paste row after": "\u0644\u0635\u0642 \u0627\u0644\u0635\u0641 \u0644\u0644\u0623\u0633\u0641\u0644", "Insert column before": "\u0625\u062f\u0631\u0627\u062c \u0639\u0645\u0648\u062f \u0644\u0644\u064a\u0633\u0627\u0631", "Insert column after": "\u0625\u062f\u0631\u0627\u062c \u0639\u0645\u0648\u062f \u0644\u0644\u064a\u0645\u064a\u0646", "Delete column": "\u062d\u0630\u0641 \u0639\u0645\u0648\u062f", "Cols": "\u0639\u062f\u062f \u0627\u0644\u0623\u0639\u0645\u062f\u0629", "Rows": "\u0639\u062f\u062f \u0627\u0644\u0635\u0641\u0648\u0641", "Width": "\u0639\u0631\u0636", "Height": "\u0627\u0631\u062a\u0641\u0627\u0639", "Cell spacing": "\u0627\u0644\u0645\u0633\u0627\u0641\u0629 \u0628\u064a\u0646 \u0627\u0644\u062e\u0644\u0627\u064a\u0627", "Cell padding": "\u062a\u0628\u0627\u0639\u062f \u0627\u0644\u062e\u0644\u064a\u0629", "Show caption": "\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u062a\u0648\u0636\u064a\u062d\u064a\u0629", "Left": "\u064a\u0633\u0627\u0631", "Center": "\u062a\u0648\u0633\u064a\u0637", "Right": "\u064a\u0645\u064a\u0646", "Cell type": "\u0646\u0648\u0639 \u0627\u0644\u062e\u0644\u064a\u0629", "Scope": "\u0627\u0644\u0645\u062c\u0627\u0644", "Alignment": "\u0645\u062d\u0627\u0630\u0627\u0629", "H Align": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0623\u0641\u0642\u064a\u0629", "V Align": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0631\u0623\u0633\u064a\u0629", "Top": "\u0623\u0639\u0644\u064a", "Middle": "\u0627\u0644\u0648\u0633\u0637", "Bottom": "\u0627\u0644\u0623\u0633\u0641\u0644", "Header cell": "\u0631\u0623\u0633 \u0627\u0644\u062e\u0644\u064a\u0629", "Row group": "\u0645\u062c\u0645\u0648\u0639\u0629 \u0635\u0641", "Column group": "\u0645\u062c\u0645\u0648\u0639\u0629 \u0639\u0645\u0648\u062f", "Row type": "\u0646\u0648\u0639 \u0627\u0644\u0635\u0641", "Header": "\u0627\u0644\u0631\u0623\u0633", "Body": "\u0647\u064a\u0643\u0644", "Footer": "\u062a\u0630\u064a\u064a\u0644", "Border color": "\u0644\u0648\u0646 \u0627\u0644\u0625\u0637\u0627\u0631", "Insert template...": "\u062c\u0627\u0631\u064d \u0625\u062f\u0631\u0627\u062c \u0642\u0627\u0644\u0628...", "Templates": "\u0642\u0648\u0627\u0644\u0628", "Template": "\u0627\u0644\u0642\u0627\u0644\u0628", "Text color": "\u0644\u0648\u0646 \u0627\u0644\u0646\u0635", "Background color": "\u0644\u0648\u0646 \u0627\u0644\u062e\u0644\u0641\u064a\u0629", "Custom...": "\u062a\u062e\u0635\u064a\u0635 ...", "Custom color": "\u0644\u0648\u0646 \u0645\u062e\u0635\u0635", "No color": "\u0628\u062f\u0648\u0646 \u0644\u0648\u0646", "Remove color": "\u0625\u0632\u0627\u0644\u0629 \u0644\u0648\u0646", "Table of Contents": "\u062c\u062f\u0648\u0644 \u0627\u0644\u0645\u062d\u062a\u0648\u064a\u0627\u062a", "Show blocks": "\u0645\u0634\u0627\u0647\u062f\u0629 \u0627\u0644\u0643\u062a\u0644", "Show invisible characters": "\u0623\u0638\u0647\u0631 \u0627\u0644\u0623\u062d\u0631\u0641 \u0627\u0644\u063a\u064a\u0631 \u0645\u0631\u0626\u064a\u0629", "Word count": "\u0639\u062f\u062f \u0627\u0644\u0643\u0644\u0645\u0627\u062a", "Count": "\u0627\u0644\u0639\u062f\u062f", "Document": "\u0627\u0644\u0645\u0633\u062a\u0646\u062f", "Selection": "\u0627\u0644\u062a\u062d\u062f\u064a\u062f", "Words": "\u0627\u0644\u0643\u0644\u0645\u0627\u062a", "Words: {0}": "\u0627\u0644\u0643\u0644\u0645\u0627\u062a:{0}", "{0} words": "{0} \u0643\u0644\u0645\u0627\u062a", "File": "\u0645\u0644\u0641", "Edit": "\u062a\u062d\u0631\u064a\u0631", "Insert": "\u0625\u062f\u0631\u0627\u062c", "View": "\u0639\u0631\u0636", "Format": "\u062a\u0646\u0633\u064a\u0642", "Table": "\u062c\u062f\u0648\u0644", "Tools": "\u0623\u062f\u0627\u0648\u0627\u062a", "Powered by {0}": "\u0645\u062f\u0639\u0648\u0645 \u0645\u0646 {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0645\u0646\u0637\u0642\u0629 \u0646\u0635 \u0645\u0646\u0633\u0642. \u0627\u0636\u063a\u0637 ALT-F9 \u0644\u0644\u0642\u0627\u0626\u0645\u0629. \u0627\u0636\u063a\u0637 ALT-F10 \u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u0623\u062f\u0648\u0627\u062a. \u0627\u0636\u063a\u0637 ALT-0 \u0644\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0645\u0633\u0627\u0639\u062f\u0629", "Image title": "\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0635\u0648\u0631\u0629", "Border width": "\u0639\u0631\u0636 \u0627\u0644\u062d\u062f", "Border style": "\u0646\u0645\u0637 \u0627\u0644\u062d\u062f", "Error": "\u062e\u0637\u0623", "Warn": "\u062a\u062d\u0630\u064a\u0631", "Valid": "\u0635\u062d\u064a\u062d", "To open the popup, press Shift+Enter": "\u0644\u0641\u062a\u062d \u0627\u0644\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0645\u0646\u0628\u062b\u0642\u0629\u060c \u0627\u0636\u063a\u0637 \u0639\u0644\u0649 Shift\u200f+Enter", "Rich Text Area. Press ALT-0 for help.": "\u0645\u0646\u0637\u0642\u0629 \u0646\u0635 \u0645\u0646\u0633\u0642. \u0627\u0636\u063a\u0637 ALT-0 \u0644\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629.", "System Font": "\u062e\u0637 \u0627\u0644\u0646\u0638\u0627\u0645", "Failed to upload image: {0}": "\u0641\u0634\u0644 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0635\u0648\u0631\u0629: {0}", "Failed to load plugin: {0} from url {1}": "\u0641\u0634\u0644 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0645\u0643\u0648\u0651\u0650\u0646 \u0627\u0644\u0625\u0636\u0627\u0641\u064a: {0} \u0645\u0646 url \u200f{1}", "Failed to load plugin url: {0}": "\u0641\u0634\u0644 \u062a\u062d\u0645\u064a\u0644 url \u0644\u0644\u0645\u0643\u0648\u0651\u0650\u0646 \u0627\u0644\u0625\u0636\u0627\u0641\u064a: {0}", "Failed to initialize plugin: {0}": "\u0641\u0634\u0644\u062a \u062a\u0647\u064a\u0626\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0650\u0646 \u0627\u0644\u0625\u0636\u0627\u0641\u064a: {0}", "example": "\u0645\u062b\u0627\u0644", "Search": "\u0628\u062d\u062b", "All": "\u0627\u0644\u0643\u0644", "Currency": "\u0627\u0644\u0639\u0645\u0644\u0629", "Text": "\u0627\u0644\u0646\u0635", "Quotations": "\u0639\u0631\u0648\u0636 \u0627\u0644\u0623\u0633\u0639\u0627\u0631", "Mathematical": "\u0631\u064a\u0627\u0636\u064a\u0629", "Extended Latin": "\u0627\u0644\u0644\u0627\u062a\u064a\u0646\u064a\u0629 \u0627\u0644\u0645\u0648\u0633\u0639\u0629", "Symbols": "\u0627\u0644\u0631\u0645\u0648\u0632", "Arrows": "\u0627\u0644\u0623\u0633\u0647\u0645", "User Defined": "\u0645\u0639\u0631\u0651\u064e\u0641 \u0645\u0646 \u0642\u0628\u0644 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645", "dollar sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u062f\u0648\u0644\u0627\u0631", "currency sign": "\u0639\u0644\u0627\u0645\u0629 \u0639\u0645\u0644\u0629", "euro-currency sign": "\u0639\u0644\u0627\u0645\u0629 \u0639\u0645\u0644\u0629 \u0627\u0644\u064a\u0648\u0631\u0648", "colon sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0646\u0642\u0637\u062a\u064a\u0646", "cruzeiro sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0643\u0631\u0648\u0632\u064a\u0631\u0648", "french franc sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0641\u0631\u0646\u0643 \u0627\u0644\u0641\u0631\u0646\u0633\u064a", "lira sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0644\u064a\u0631\u0629", "mill sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0645\u0644", "naira sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0646\u064a\u0631\u0629", "peseta sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0628\u064a\u0632\u064a\u062a\u0627", "rupee sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0631\u0648\u0628\u064a\u0629", "won sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0648\u0646", "new sheqel sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0634\u064a\u0643\u0644 \u0627\u0644\u062c\u062f\u064a\u062f", "dong sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u062f\u0648\u0646\u062c", "kip sign": "\u0639\u0645\u0644\u0629 \u0627\u0644\u0643\u064a\u0628", "tugrik sign": "\u0639\u0645\u0644\u0629 \u0627\u0644\u062a\u0648\u063a\u0631\u064a\u0643", "drachma sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u062f\u0631\u0627\u062e\u0645\u0627", "german penny symbol": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0628\u0646\u0633 \u0627\u0644\u0623\u0644\u0645\u0627\u0646\u064a", "peso sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0628\u064a\u0632\u0648", "guarani sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u062c\u0648\u0627\u0631\u0627\u0646\u064a", "austral sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0623\u0648\u0633\u062a\u0631\u0627\u0644", "hryvnia sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0647\u0631\u064a\u0641\u0646\u064a\u0627", "cedi sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0633\u064a\u062f\u064a", "livre tournois sign": "\u0639\u0644\u0627\u0645\u0629 \u0644\u064a\u0641\u0631 \u062a\u0648\u0631\u0646\u0648\u064a\u0632", "spesmilo sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0627\u0633\u0628\u064a\u0632\u0645\u0627\u064a\u0644\u0648", "tenge sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u062a\u064a\u0646\u062c", "indian rupee sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0631\u0648\u0628\u064a\u0629 \u0627\u0644\u0647\u0646\u062f\u064a\u0629", "turkish lira sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0644\u064a\u0631\u0629 \u0627\u0644\u062a\u0631\u0643\u064a\u0629", "nordic mark sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0646\u0648\u0631\u062f\u0643", "manat sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0645\u0627\u0646\u0627\u062a", "ruble sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0631\u0648\u0628\u0644", "yen character": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u064a\u0646", "yuan character": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u064a\u0648\u0627\u0646", "yuan character, in hong kong and taiwan": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u064a\u0648\u0627\u0646 \u0641\u064a \u0647\u0648\u0646\u062c \u0643\u0648\u0646\u062c \u0648\u062a\u0627\u064a\u0648\u0627\u0646", "yen\/yuan character variant one": "\u0627\u0644\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0628\u062f\u064a\u0644\u0629 \u0644\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u064a\u0646\/\u0627\u0644\u064a\u0648\u0627\u0646", "Loading emoticons...": "\u062c\u0627\u0631\u064d \u062a\u062d\u0645\u064a\u0644 \u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u0634\u0627\u0639\u0631...", "Could not load emoticons": "\u062c\u0627\u0631\u064d \u062a\u062d\u0645\u064a\u0644 \u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u0634\u0627\u0639\u0631", "People": "\u0623\u0634\u062e\u0627\u0635", "Animals and Nature": "\u0627\u0644\u062d\u064a\u0648\u0627\u0646\u0627\u062a \u0648\u0627\u0644\u0637\u0628\u064a\u0639\u0629", "Food and Drink": "\u0627\u0644\u0623\u0637\u0639\u0645\u0629 \u0648\u0627\u0644\u0645\u0634\u0631\u0648\u0628\u0627\u062a", "Activity": "\u0627\u0644\u0646\u0634\u0627\u0637", "Travel and Places": "\u0627\u0644\u0633\u0641\u0631 \u0648\u0627\u0644\u0623\u0645\u0627\u0643\u0646 \u0633\u064a\u0627\u062d\u064a\u0629", "Objects": "\u0643\u0627\u0626\u0646\u0627\u062a", "Flags": "\u0627\u0644\u0639\u0644\u0627\u0645\u0627\u062a", "Characters": "\u0627\u0644\u0623\u062d\u0631\u0641", "Characters (no spaces)": "\u0627\u0644\u0623\u062d\u0631\u0641 (\u062f\u0648\u0646 \u0627\u0644\u0645\u0633\u0627\u0641\u0627\u062a)", "{0} characters": "{0} \u0631\u0645\u0648\u0632", "Error: Form submit field collision.": "\u062e\u0637\u0623: \u062a\u0636\u0627\u0631\u0628 \u0641\u064a \u062d\u0642\u0644 \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u0646\u0645\u0648\u0630\u062c.", "Error: No form element found.": "\u0627\u0644\u062e\u0637\u0623: \u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0639\u0646\u0635\u0631 \u0646\u0645\u0648\u0630\u062c.", "Update": "\u062a\u062d\u062f\u064a\u062b", "Color swatch": "\u0639\u064a\u0646\u0627\u062a \u0627\u0644\u0623\u0644\u0648\u0627\u0646", "Turquoise": "\u0641\u064a\u0631\u0648\u0632\u064a", "Green": "\u0623\u062e\u0636\u0631", "Blue": "\u0623\u0632\u0631\u0642", "Purple": "\u0628\u0646\u0641\u0633\u062c\u064a", "Navy Blue": "\u0623\u0632\u0631\u0642 \u0646\u064a\u0644\u064a", "Dark Turquoise": "\u0641\u064a\u0631\u0648\u0632\u064a \u062f\u0627\u0643\u0646", "Dark Green": "\u0623\u062e\u0636\u0631 \u062f\u0627\u0643\u0646", "Medium Blue": "\u0623\u0632\u0631\u0642 \u0645\u062a\u0648\u0633\u0637", "Medium Purple": "\u0628\u0646\u0641\u0633\u062c\u064a \u0645\u062a\u0648\u0633\u0637", "Midnight Blue": "\u0623\u0632\u0631\u0642 \u062f\u0627\u0643\u0646 \u062c\u062f\u0627\u064b", "Yellow": "\u0623\u0635\u0641\u0631", "Orange": "\u0628\u0631\u062a\u0642\u0627\u0644\u064a", "Red": "\u0623\u062d\u0645\u0631", "Light Gray": "\u0631\u0645\u0627\u062f\u064a \u0641\u0627\u062a\u062d", "Gray": "\u0631\u0645\u0627\u062f\u064a", "Dark Yellow": "\u0623\u0635\u0641\u0631 \u062f\u0627\u0643\u0646", "Dark Orange": "\u0628\u0631\u062a\u0642\u0627\u0644\u064a \u062f\u0627\u0643\u0646", "Dark Red": "\u0623\u062d\u0645\u0631 \u062f\u0627\u0643\u0646", "Medium Gray": "\u0631\u0645\u0627\u062f\u064a \u0645\u062a\u0648\u0633\u0637", "Dark Gray": "\u0631\u0645\u0627\u062f\u064a \u062f\u0627\u0643\u0646", "Light Green": "\u0623\u062e\u0636\u0631 \u0641\u0627\u062a\u062d", "Light Yellow": "\u0623\u0635\u0641\u0631 \u0641\u0627\u062a\u062d", "Light Red": "\u0623\u062d\u0645\u0631 \u0641\u0627\u062a\u062d", "Light Purple": "\u0628\u0646\u0641\u0633\u062c\u064a \u0641\u0627\u062a\u062d", "Light Blue": "\u0623\u0632\u0631\u0642 \u0641\u0627\u062a\u062d", "Dark Purple": "\u0623\u0631\u062c\u0648\u0627\u0646\u064a \u062f\u0627\u0643\u0646", "Dark Blue": "\u0623\u0632\u0631\u0642 \u062f\u0627\u0643\u0646", "Black": "\u0623\u0633\u0648\u062f", "White": "\u0623\u0628\u064a\u0636", "Switch to or from fullscreen mode": "\u0627\u0644\u062a\u0628\u062f\u064a\u0644 \u0625\u0644\u0649 \u0623\u0648 \u0645\u0646 \u0648\u0636\u0639 \u0645\u0644\u0621 \u0627\u0644\u0634\u0627\u0634\u0629", "Open help dialog": "\u0627\u0641\u062a\u062d \u062d\u0648\u0627\u0631 \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u0627\u062a", "history": "\u0627\u0644\u0645\u062d\u0641\u0648\u0638\u0627\u062a", "styles": "\u0627\u0644\u0623\u0646\u0645\u0627\u0637", "formatting": "\u062a\u0646\u0633\u064a\u0642", "alignment": "\u0645\u062d\u0627\u0630\u0627\u0629", "indentation": "\u0645\u0633\u0627\u0641\u0629 \u0628\u0627\u062f\u0626\u0629", "permanent pen": "\u0642\u0644\u0645 \u062b\u0627\u0628\u062a", "comments": "\u0627\u0644\u062a\u0639\u0644\u064a\u0642\u0627\u062a", "Format Painter": "\u0646\u0627\u0633\u062e \u0627\u0644\u062a\u0646\u0633\u064a\u0642", "Insert\/edit iframe": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0625\u0637\u0627\u0631 \u0645\u062f\u0645\u062c", "Capitalization": "\u0643\u062a\u0627\u0628\u0629 \u0628\u0627\u0644\u0623\u062d\u0631\u0641 \u0627\u0644\u0643\u0628\u064a\u0631\u0629", "lowercase": "\u0623\u062d\u0631\u0641 \u0635\u063a\u064a\u0631\u0629", "UPPERCASE": "\u0623\u062d\u0631\u0641 \u0643\u0628\u064a\u0631\u0629", "Title Case": "\u062d\u0627\u0644\u0629 \u0623\u062d\u0631\u0641 \u0627\u0644\u0639\u0646\u0648\u0627\u0646", "Permanent Pen Properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0642\u0644\u0645 \u0627\u0644\u062b\u0627\u0628\u062a", "Permanent pen properties...": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0642\u0644\u0645 \u0627\u0644\u062b\u0627\u0628\u062a...", "Font": "\u0627\u0644\u062e\u0637", "Size": "\u0627\u0644\u062d\u062c\u0645", "More...": "\u0627\u0644\u0645\u0632\u064a\u062f...", "Spellcheck Language": "\u0644\u063a\u0629 \u0627\u0644\u062a\u062f\u0642\u064a\u0642 \u0627\u0644\u0625\u0645\u0644\u0627\u0626\u064a", "Select...": "\u062a\u062d\u062f\u064a\u062f...", "Preferences": "\u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a", "Yes": "\u0646\u0639\u0645", "No": "\u0644\u0627", "Keyboard Navigation": "\u0627\u0644\u062a\u0646\u0642\u0644 \u0628\u0648\u0627\u0633\u0637\u0629 \u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d", "Version": "\u0627\u0644\u0625\u0635\u062f\u0627\u0631", "Anchor": "\u0645\u0631\u0633\u0627\u0629", "Special character": "\u0631\u0645\u0632", "Code sample": "\u0639\u064a\u0651\u0646\u0629 \u0639\u0646 \u0627\u0644\u0643\u0648\u062f \u0627\u0644\u0628\u0631\u0645\u062c\u064a", "Color": "\u0627\u0644\u0644\u0648\u0646", "Emoticons": "\u0627\u0644\u0631\u0645\u0648\u0632", "Document properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0645\u0633\u062a\u0646\u062f", "Image": "\u0627\u0644\u0635\u0648\u0631\u0629", "Insert link": "\u0625\u062f\u0631\u0627\u062c \u0631\u0627\u0628\u0637", "Target": "\u0627\u0644\u0625\u0637\u0627\u0631 \u0627\u0644\u0647\u062f\u0641", "Link": "\u0627\u0644\u0631\u0627\u0628\u0637", "Poster": "\u0645\u0644\u0635\u0642", "Media": "\u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629", "Print": "\u0637\u0628\u0627\u0639\u0629", "Prev": "\u0627\u0644\u0633\u0627\u0628\u0642", "Find and replace": "\u0628\u062d\u062b \u0648\u0627\u0633\u062a\u0628\u062f\u0627\u0644", "Whole words": "\u0645\u0637\u0627\u0628\u0642\u0629 \u0627\u0644\u0643\u0644\u0645\u0627\u062a \u0628\u0627\u0644\u0643\u0627\u0645\u0644", "Spellcheck": "\u062a\u062f\u0642\u064a\u0642 \u0625\u0645\u0644\u0627\u0626\u064a", "Caption": "\u0634\u0631\u062d", "Insert template": "\u0625\u062f\u0631\u0627\u062c \u0642\u0627\u0644\u0628", "_dir": "rtl" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/ca.js ================================================ tinymce.addI18n('ca',{ "Redo": "Refer", "Undo": "Desfer", "Cut": "Retalla", "Copy": "Copia", "Paste": "Enganxa", "Select all": "Seleccionar-ho tot", "New document": "Nou document", "Ok": "Acceptar", "Cancel": "Cancel\u00b7la", "Visual aids": "Assist\u00e8ncia visual", "Bold": "Negreta", "Italic": "Cursiva", "Underline": "Subratllat", "Strikethrough": "Barrat", "Superscript": "Super\u00edndex", "Subscript": "Sub\u00edndex", "Clear formatting": "Eliminar format", "Align left": "Alinea a l'esquerra", "Align center": "Alinea al centre", "Align right": "Alinea a la dreta", "Justify": "Justificat", "Bullet list": "Llista no ordenada", "Numbered list": "Llista enumerada", "Decrease indent": "Disminuir sagnat", "Increase indent": "Augmentar sagnat", "Close": "Tancar", "Formats": "Formats", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "El vostre navegador no suporta l'acc\u00e9s directe al portaobjectes. Si us plau, feu servir les dreceres de teclat Ctrl+X\/C\/V.", "Headers": "Encap\u00e7alaments", "Header 1": "Encap\u00e7alament 1", "Header 2": "Encap\u00e7alament 2", "Header 3": "Encap\u00e7alament 3", "Header 4": "Encap\u00e7alament 4", "Header 5": "Encap\u00e7alament 5", "Header 6": "Encap\u00e7alament 6", "Headings": "Encap\u00e7alaments", "Heading 1": "Encap\u00e7alament 1", "Heading 2": "Encap\u00e7alament 2", "Heading 3": "Encap\u00e7alament 3", "Heading 4": "Encap\u00e7alament 4", "Heading 5": "Encap\u00e7alament 5", "Heading 6": "Encap\u00e7alament 6", "Preformatted": "Preformatat", "Div": "Div", "Pre": "Pre", "Code": "Codi", "Paragraph": "Par\u00e0graf", "Blockquote": "Cita", "Inline": "En l\u00ednia", "Blocks": "Blocs", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Enganxar ara est\u00e0 en mode text pla. Els continguts s'enganxaran com a text pla fins que desactivis aquesta opci\u00f3. ", "Fonts": "Fonts", "Font Sizes": "Mides de la font", "Class": "Classe", "Browse for an image": "Explorar per cercar una imatge", "OR": "O", "Drop an image here": "Deixar anar una imatge aqu\u00ed", "Upload": "Pujar", "Block": "Bloc", "Align": "Alinea", "Default": "Per defecte", "Circle": "Cercle", "Disc": "Disc", "Square": "Quadrat", "Lower Alpha": "Alfa menor", "Lower Greek": "Grec menor", "Lower Roman": "Roman menor", "Upper Alpha": "Alfa major", "Upper Roman": "Roman major", "Anchor...": "Ancoratge...", "Name": "Nom", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "La Id ha de comen\u00e7ar amb una lletra, seguida d'altres lletres, n\u00fameros, punts, ratlles, comes, o guions baixos", "You have unsaved changes are you sure you want to navigate away?": "Teniu canvis sense desar, esteu segur que voleu deixar-ho ara?", "Restore last draft": "Restaurar l'\u00faltim esborrany", "Special character...": "Car\u00e0cters especials\u2026", "Source code": "Codi font", "Insert\/Edit code sample": "Inserir\/Editar tros de codi", "Language": "Idioma", "Code sample...": "Mostra de codi...", "Color Picker": "Selector de colors", "R": "R", "G": "G", "B": "B", "Left to right": "D'esquerra a dreta", "Right to left": "De dreta a esquerra", "Emoticons...": "Emoticones...", "Metadata and Document Properties": "Metadades i propietats del document", "Title": "T\u00edtol", "Keywords": "Paraules clau", "Description": "Descripci\u00f3", "Robots": "Robots", "Author": "Autor", "Encoding": "Codificaci\u00f3", "Fullscreen": "Pantalla completa", "Action": "Acci\u00f3", "Shortcut": "Drecera", "Help": "Ajuda", "Address": "Adre\u00e7a", "Focus to menubar": "Enfocar la barra de men\u00fa", "Focus to toolbar": "Enfocar la barra d'eines", "Focus to element path": "Enfocar la ruta d'elements", "Focus to contextual toolbar": "Enfocar la barra d'eines contextual", "Insert link (if link plugin activated)": "Inserir enlla\u00e7 (si el complement d'enlla\u00e7 est\u00e0 activat)", "Save (if save plugin activated)": "Desar (si el complement desar est\u00e0 activat)", "Find (if searchreplace plugin activated)": "Cercar (si el complement cercar-reempla\u00e7ar est\u00e0 activat)", "Plugins installed ({0}):": "Complements instal\u00b7lats ({0}):", "Premium plugins:": "Complements premium", "Learn more...": "Apr\u00e8n m\u00e9s...", "You are using {0}": "Est\u00e0s utilitzant {0}", "Plugins": "Complements", "Handy Shortcuts": "Dreceres a m\u00e0", "Horizontal line": "L\u00ednia horitzontal", "Insert\/edit image": "Inserir\/editar imatge", "Image description": "Descripci\u00f3 de la imatge", "Source": "Font", "Dimensions": "Dimensions", "Constrain proportions": "Mantenir proporcions", "General": "General", "Advanced": "Avan\u00e7at", "Style": "Estil", "Vertical space": "Espai vertical", "Horizontal space": "Espai horitzontal", "Border": "Vora", "Insert image": "Inserir imatge", "Image...": "Imatge...", "Image list": "Llista d'imatges", "Rotate counterclockwise": "Girar a l'esquerra", "Rotate clockwise": "Girar a la dreta", "Flip vertically": "Capgirar verticalment", "Flip horizontally": "Capgirar horitzontalment", "Edit image": "Editar imatge", "Image options": "Opcions d'imatge", "Zoom in": "Ampliar", "Zoom out": "Empetitir", "Crop": "Escap\u00e7ar", "Resize": "Canviar mida", "Orientation": "Orientaci\u00f3", "Brightness": "Brillantor", "Sharpen": "Remarcar vores", "Contrast": "Contrast", "Color levels": "Nivells de color", "Gamma": "Gamma", "Invert": "Invertir", "Apply": "Aplicar", "Back": "Tornar", "Insert date\/time": "Inserir data\/hora", "Date\/time": "Data\/hora", "Insert\/Edit Link": "Inserir\/editar l'enlla\u00e7", "Insert\/edit link": "Inserir\/editar enlla\u00e7", "Text to display": "Text per mostrar", "Url": "URL", "Open link in...": "Obrir l'enlla\u00e7 a...", "Current window": "Finestra actual", "None": "Cap", "New window": "Finestra nova", "Remove link": "Treure enlla\u00e7", "Anchors": "\u00c0ncores", "Link...": "Enlla\u00e7...", "Paste or type a link": "Enganxa o escriu un enlla\u00e7", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que has escrit sembla una adre\u00e7a de correu electr\u00f2nic. Vols afegir-li el prefix obligatori mailto: ?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que has escrit sembla un enlla\u00e7 extern. Vols afegir-li el prefix obligatori http:\/\/ ?", "Link list": "Llista d'enlla\u00e7os", "Insert video": "Inserir v\u00eddeo", "Insert\/edit video": "Inserir\/editar v\u00eddeo", "Insert\/edit media": "Inserir\/editar mitj\u00e0", "Alternative source": "Font alternativa", "Alternative source URL": "URL de font alternativa", "Media poster (Image URL)": "Cartell de multim\u00e8dia (URL d'imatge)", "Paste your embed code below:": "Enganxau el codi a sota:", "Embed": "Incloure", "Media...": "Multim\u00e8dia...", "Nonbreaking space": "Espai fixe", "Page break": "Salt de p\u00e0gina", "Paste as text": "Enganxar com a text", "Preview": "Previsualitzaci\u00f3", "Print...": "Imprimir...", "Save": "Desa", "Find": "Buscar", "Replace with": "Rempla\u00e7ar amb", "Replace": "Rempla\u00e7ar", "Replace all": "Rempla\u00e7ar-ho tot", "Previous": "Anterior", "Next": "Seg\u00fcent", "Find and replace...": "Cercar i reempla\u00e7ar...", "Could not find the specified string.": "No es pot trobar el text especificat.", "Match case": "Coincidir maj\u00fascules", "Find whole words only": "Cercar nom\u00e9s paraules completes", "Spell check": "Corrector ortogr\u00e0fic", "Ignore": "Ignorar", "Ignore all": "Ignorar tots", "Finish": "Finalitzar", "Add to Dictionary": "Afegir al diccionari", "Insert table": "Inserir taula", "Table properties": "Propietats de taula", "Delete table": "Esborrar taula", "Cell": "Cel\u00b7la", "Row": "Fila", "Column": "Columna", "Cell properties": "Propietats de cel\u00b7la", "Merge cells": "Fusionar cel\u00b7les", "Split cell": "Dividir cel\u00b7les", "Insert row before": "Inserir fila a sobre", "Insert row after": "Inserir fila a sota", "Delete row": "Esborrar fila", "Row properties": "Propietats de fila", "Cut row": "Retallar fila", "Copy row": "Copiar fila", "Paste row before": "Enganxar fila a sobre", "Paste row after": "Enganxar fila a sota", "Insert column before": "Inserir columna abans", "Insert column after": "Inserir columna despr\u00e9s", "Delete column": "Esborrar columna", "Cols": "Cols", "Rows": "Files", "Width": "Amplada", "Height": "Al\u00e7ada", "Cell spacing": "Espai entre cel\u00b7les", "Cell padding": "Marge intern", "Show caption": "Mostrar encap\u00e7alament", "Left": "A l'esquerra", "Center": "Centrat", "Right": "A la dreta", "Cell type": "Tipus de cel\u00b7la", "Scope": "\u00c0mbit", "Alignment": "Aliniament", "H Align": "Al\u00edniament H", "V Align": "Al\u00edniament V", "Top": "Superior", "Middle": "Mitj\u00e0", "Bottom": "Inferior", "Header cell": "Cel\u00b7la de cap\u00e7alera", "Row group": "Grup de fila", "Column group": "Grup de columna", "Row type": "Tipus de fila", "Header": "Cap\u00e7alera", "Body": "Cos", "Footer": "Peu", "Border color": "Color de vora", "Insert template...": "Inserir plantilla...", "Templates": "Plantilles", "Template": "Plantilla", "Text color": "Color del text", "Background color": "Color del fons", "Custom...": "Personalitzar...", "Custom color": "Personalitzar el color", "No color": "Sense color", "Remove color": "Eliminar el color", "Table of Contents": "Taula de continguts", "Show blocks": "Mostrar blocs", "Show invisible characters": "Mostrar car\u00e0cters invisibles", "Word count": "Recompte de paraules", "Count": "Compta", "Document": "Document", "Selection": "Selecci\u00f3", "Words": "Paraules", "Words: {0}": "Paraules: {0}", "{0} words": "{0} paraules", "File": "Arxiu", "Edit": "Edici\u00f3", "Insert": "Inserir", "View": "Veure", "Format": "Format", "Table": "Taula", "Tools": "Eines", "Powered by {0}": "Impulsat per {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c0rea de text amb format. Premeu ALT-F9 per mostrar el men\u00fa, ALT F10 per la barra d'eines i ALT-0 per ajuda.", "Image title": "T\u00edtol de la imatge", "Border width": "Amplada de la vora", "Border style": "Estil de la vora", "Error": "Error", "Warn": "Alerta", "Valid": "V\u00e0lid", "To open the popup, press Shift+Enter": "Per obrir la finestra emergent, premeu Maj.+Retorn", "Rich Text Area. Press ALT-0 for help.": "\u00c0rea de Text enriquit. Premeu ALT-0 per obtenir ajuda.", "System Font": "Font del sistema", "Failed to upload image: {0}": "No s'ha pogut carregar la imatge: {0}", "Failed to load plugin: {0} from url {1}": "No s'ha pogut carregar el complement: {0} de l\u2019URL {1}", "Failed to load plugin url: {0}": "No s'ha pogut carregar l\u2019URL del complement: {0}", "Failed to initialize plugin: {0}": "No s'ha pogut inicialitzar el complement: {0}", "example": "exemple", "Search": "Cerca", "All": "Tot", "Currency": "Moneda", "Text": "Text", "Quotations": "Cites", "Mathematical": "S\u00edmbols matem\u00e0tics", "Extended Latin": "Llat\u00ed ampliat", "Symbols": "S\u00edmbols", "Arrows": "Fletxes", "User Defined": "Definit per l'usuari", "dollar sign": "signe del d\u00f2lar", "currency sign": "signe de la moneda", "euro-currency sign": "signe de l'euro", "colon sign": "signe del col\u00f3n", "cruzeiro sign": "signe del cruzeiro", "french franc sign": "signe del franc franc\u00e8s", "lira sign": "signe de la lira", "mill sign": "signe del mill", "naira sign": "signe de la naira", "peseta sign": "signe de la pesseta", "rupee sign": "signe de la rupia", "won sign": "signe del won", "new sheqel sign": "signe del nou x\u00e9quel", "dong sign": "signe del dong", "kip sign": "signe del kip", "tugrik sign": "signe del t\u00f6gr\u00f6g", "drachma sign": "signe del dracma", "german penny symbol": "signe del penic alemany", "peso sign": "signe del peso", "guarani sign": "signe del guaran\u00ed", "austral sign": "signe de l\u2019austral", "hryvnia sign": "signe de la hr\u00edvnia", "cedi sign": "signe del cedi", "livre tournois sign": "signe de la lliura tornesa", "spesmilo sign": "signe de l\u2019spesmilo", "tenge sign": "signe del tenge", "indian rupee sign": "signe de la rupia \u00edndia", "turkish lira sign": "signe de la lira turca", "nordic mark sign": "signe del marc n\u00f2rdic", "manat sign": "signe del manat", "ruble sign": "signe del ruble", "yen character": "signe del ien", "yuan character": "signe del iuan", "yuan character, in hong kong and taiwan": "signe del iuan en Hong Kong i Taiwan", "yen\/yuan character variant one": "variaci\u00f3 1 del signe del ien\/iuan", "Loading emoticons...": "Carregant les emoticones...", "Could not load emoticons": "No s'han pogut carregar les emoticones", "People": "Gent", "Animals and Nature": "Animals i natura", "Food and Drink": "Menjar i beure", "Activity": "Activitat", "Travel and Places": "Viatges i llocs", "Objects": "Objectes", "Flags": "Banderes", "Characters": "Car\u00e0cters", "Characters (no spaces)": "Car\u00e0cters (sense espais)", "{0} characters": "{0} car\u00e0cters", "Error: Form submit field collision.": "Error: error en el camp d\u2019enviament del formulari.", "Error: No form element found.": "Error: no s'ha trobat l'element del formulari.", "Update": "Actualitzar", "Color swatch": "Mostra de color", "Turquoise": "Turquesa", "Green": "Verd", "Blue": "Blau", "Purple": "Violeta", "Navy Blue": "Blau mar\u00ed", "Dark Turquoise": "Turquesa fosc", "Dark Green": "Verd fosc", "Medium Blue": "Blau mitj\u00e0", "Medium Purple": "Violeta mitj\u00e0", "Midnight Blue": "Blau mitjanit", "Yellow": "Groc", "Orange": "Taronja", "Red": "Vermell", "Light Gray": "Gris clar", "Gray": "Gris", "Dark Yellow": "Groc fosc", "Dark Orange": "Taronja fosc", "Dark Red": "Vermell fosc", "Medium Gray": "Gris mitj\u00e0", "Dark Gray": "Gris fosc", "Light Green": "Verd clar", "Light Yellow": "Groc clar", "Light Red": "Vermell clar", "Light Purple": "Porpra clar", "Light Blue": "Blau clar", "Dark Purple": "Porpra fosc", "Dark Blue": "Blau fosc", "Black": "Negre", "White": "Blanc", "Switch to or from fullscreen mode": "Canviar a o del mode de pantalla completa", "Open help dialog": "Obrir el quadre de di\u00e0leg d'ajuda", "history": "historial", "styles": "estils", "formatting": "format", "alignment": "alineaci\u00f3", "indentation": "sagnat", "permanent pen": "retolador permanent", "comments": "comentaris", "Format Painter": "Formata el Painter", "Insert\/edit iframe": "Insereix\/edita iframe", "Capitalization": "Capitalitzaci\u00f3", "lowercase": "min\u00fascules", "UPPERCASE": "MAJ\u00daSCULES", "Title Case": "Caixa del t\u00edtol", "Permanent Pen Properties": "Par\u00e0metres permanents del llapis", "Permanent pen properties...": "Par\u00e0metres permanents del llapis\u2026", "Font": "Font", "Size": "Mida", "More...": "M\u00e9s\u2026", "Spellcheck Language": "Idioma de la comprovaci\u00f3 d'ortografia", "Select...": "Selecciona\u2026", "Preferences": "Par\u00e0metres", "Yes": "S\u00ed", "No": "No", "Keyboard Navigation": "Navegaci\u00f3 per teclat", "Version": "Versi\u00f3", "Anchor": "\u00c0ncora", "Special character": "Car\u00e0cter especial", "Code sample": "Mostra de codi", "Color": "Color", "Emoticons": "Emoticones", "Document properties": "Propietats del document", "Image": "Imatge", "Insert link": "Inserir enlla\u00e7", "Target": "Dest\u00ed", "Link": "Enlla\u00e7", "Poster": "P\u00f3ster", "Media": "Mitjans", "Print": "Imprimir", "Prev": "Anterior", "Find and replace": "Buscar i rempla\u00e7ar", "Whole words": "Paraules senceres", "Spellcheck": "Comprovar ortrografia", "Caption": "Encap\u00e7alament", "Insert template": "Inserir plantilla" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/cs.js ================================================ tinymce.addI18n('cs',{ "Redo": "Znovu", "Undo": "Zp\u011bt", "Cut": "Vyjmout", "Copy": "Kop\u00edrovat", "Paste": "Vlo\u017eit", "Select all": "Vybrat v\u0161e", "New document": "Nov\u00fd dokument", "Ok": "OK", "Cancel": "Zru\u0161it", "Visual aids": "Vizu\u00e1ln\u00ed pom\u016fcky", "Bold": "Tu\u010dn\u00e9", "Italic": "Kurz\u00edva", "Underline": "Podtr\u017een\u00e9", "Strikethrough": "P\u0159e\u0161krtnut\u00e9", "Superscript": "Horn\u00ed index", "Subscript": "Doln\u00ed index", "Clear formatting": "Vymazat form\u00e1tov\u00e1n\u00ed", "Align left": "Zarovnat vlevo", "Align center": "Zarovnat na st\u0159ed", "Align right": "Zarovnat vpravo", "Justify": "Do bloku", "Bullet list": "Odr\u00e1\u017eky", "Numbered list": "\u010c\u00edslov\u00e1n\u00ed", "Decrease indent": "Zmen\u0161it odsazen\u00ed", "Increase indent": "Zv\u011bt\u0161it odsazen\u00ed", "Close": "Zav\u0159\u00edt", "Formats": "Form\u00e1ty", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prohl\u00ed\u017ee\u010d nepodporuje p\u0159\u00edm\u00fd p\u0159\u00edstup do schr\u00e1nky. Pou\u017eijte pros\u00edm kl\u00e1vesov\u00e9 zkratky Ctrl+X\/C\/V.", "Headers": "Nadpisy", "Header 1": "Nadpis 1", "Header 2": "Nadpis 2", "Header 3": "Nadpis 3", "Header 4": "Nadpis 4", "Header 5": "Nadpis 5", "Header 6": "Nadpis 6", "Headings": "Nadpisy", "Heading 1": "Nadpis 1", "Heading 2": "Nadpis 2", "Heading 3": "Nadpis 3", "Heading 4": "Nadpis 4", "Heading 5": "Nadpis 5", "Heading 6": "Nadpis 6", "Preformatted": "P\u0159edform\u00e1tovan\u00fd text", "Div": "Div (blok)", "Pre": "Pre (p\u0159edform\u00e1tov\u00e1no)", "Code": "Code (k\u00f3d)", "Paragraph": "Odstavec", "Blockquote": "Citace", "Inline": "\u0158\u00e1dkov\u00e9 zobrazen\u00ed (inline)", "Blocks": "Blokov\u00e9 zobrazen\u00ed (block)", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Je zapnuto vkl\u00e1d\u00e1n\u00ed \u010dist\u00e9ho textu. Dokud nebude tato volba vypnuta, bude ve\u0161ker\u00fd obsah vlo\u017een jako \u010dist\u00fd text.", "Fonts": "Typ p\u00edsma", "Font Sizes": "Velikost p\u00edsma", "Class": "T\u0159\u00edda", "Browse for an image": "Vyhledat obr\u00e1zek", "OR": "NEBO", "Drop an image here": "P\u0159et\u00e1hn\u011bte obr\u00e1zek do tohoto um\u00edst\u011bn\u00ed", "Upload": "Nahr\u00e1t", "Block": "Do bloku", "Align": "Zarovn\u00e1n\u00ed", "Default": "V\u00fdchoz\u00ed", "Circle": "Kole\u010dko", "Disc": "Punt\u00edk", "Square": "\u010ctvere\u010dek", "Lower Alpha": "Norm\u00e1ln\u00ed \u010d\u00edslov\u00e1n\u00ed", "Lower Greek": "Mal\u00e9 p\u00edsmenkov\u00e1n\u00ed", "Lower Roman": "Mal\u00e9 \u0159\u00edmsk\u00e9 \u010d\u00edslice", "Upper Alpha": "velk\u00e9 p\u00edsmenkov\u00e1n\u00ed", "Upper Roman": "\u0158\u00edmsk\u00e9 \u010d\u00edslice", "Anchor...": "Kotva", "Name": "N\u00e1zev", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id by m\u011blo za\u010d\u00ednat p\u00edsmenem a d\u00e1le obsahovat pouze p\u00edsmena, \u010d\u00edsla, poml\u010dky, te\u010dky, dvojte\u010dky, nebo podtr\u017e\u00edtka.", "You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zm\u011bny. Opravdu chcete opustit str\u00e1nku?", "Restore last draft": "Obnovit posledn\u00ed koncept", "Special character...": "Speci\u00e1ln\u00ed znak\u2026", "Source code": "Zdrojov\u00fd k\u00f3d", "Insert\/Edit code sample": "Vlo\u017eit \/ Upravit uk\u00e1zkov\u00fd k\u00f3d", "Language": "Jazyk", "Code sample...": "Uk\u00e1zka k\u00f3du", "Color Picker": "V\u00fdb\u011br barvy", "R": "R", "G": "G", "B": "B", "Left to right": "Zleva doprava", "Right to left": "Zprava doleva", "Emoticons": "Emotikony", "Emoticons...": "Emotikony", "Metadata and Document Properties": "Metadata a vlastnosti dokumentu", "Title": "Titulek", "Keywords": "Kl\u00ed\u010dov\u00e1 slova", "Description": "Popis", "Robots": "Roboti", "Author": "Autor", "Encoding": "K\u00f3dov\u00e1n\u00ed", "Fullscreen": "Na celou obrazovku", "Action": "Akce", "Shortcut": "Kl\u00e1vesov\u00e1 zkratka", "Help": "N\u00e1pov\u011bda", "Address": "Blok s po\u0161tovn\u00ed adresou", "Focus to menubar": "P\u0159ej\u00edt do menu", "Focus to toolbar": "P\u0159ej\u00edt na panel n\u00e1stroj\u016f", "Focus to element path": "P\u0159ej\u00edt na element path", "Focus to contextual toolbar": "P\u0159ej\u00edt na kontextov\u00fd panel n\u00e1stroj\u016f", "Insert link (if link plugin activated)": "Vlo\u017eit odkaz (pokud je aktivn\u00ed link plugin)", "Save (if save plugin activated)": "Ulo\u017eit (pokud je aktivni save plugin)", "Find (if searchreplace plugin activated)": "Hledat (pokud je aktivn\u00ed plugin searchreplace)", "Plugins installed ({0}):": "Instalovan\u00e9 pluginy ({0}):", "Premium plugins:": "Pr\u00e9miov\u00e9 pluginy:", "Learn more...": "Zjistit v\u00edce...", "You are using {0}": "Pou\u017e\u00edv\u00e1te {0}", "Plugins": "Pluginy", "Handy Shortcuts": "U\u017eite\u010dn\u00e9 kl\u00e1vesov\u00e9 zkratky", "Horizontal line": "Vodorovn\u00e1 \u010d\u00e1ra", "Insert\/edit image": "Vlo\u017eit \/ upravit obr\u00e1zek", "Alternative description": "Alternativn\u00ed text", "Accessibility": "Bez alternativn\u00edho textu", "Image is decorative": "(dekorativn\u00ed obr\u00e1zek bez alternativn\u00edho textu)", "Source": "URL", "Dimensions": "Rozm\u011bry", "Constrain proportions": "Zachovat proporce", "General": "Obecn\u00e9", "Advanced": "Pokro\u010dil\u00e9", "Style": "Styl", "Vertical space": "Vertik\u00e1ln\u00ed mezera", "Horizontal space": "Horizont\u00e1ln\u00ed mezera", "Border": "R\u00e1me\u010dek", "Insert image": "Vlo\u017eit obr\u00e1zek", "Image...": "Obr\u00e1zek", "Image list": "Seznam obr\u00e1zk\u016f", "Rotate counterclockwise": "Oto\u010dit doleva", "Rotate clockwise": "Oto\u010dit doprava", "Flip vertically": "P\u0159evr\u00e1tit svisle", "Flip horizontally": "P\u0159evr\u00e1tit vodorovn\u011b", "Edit image": "Upravit obr\u00e1zek", "Image options": "Vlastnosti obr\u00e1zku", "Zoom in": "P\u0159ibl\u00ed\u017eit", "Zoom out": "Odd\u00e1lit", "Crop": "O\u0159\u00edznout", "Resize": "Zm\u011bnit velikost", "Orientation": "Transformovat", "Brightness": "Jas", "Sharpen": "Ostrost", "Contrast": "Kontrast", "Color levels": "\u00darovn\u011b barev", "Gamma": "Gama", "Invert": "Invertovat", "Apply": "Pou\u017e\u00edt", "Back": "Zp\u011bt", "Insert date\/time": "Vlo\u017eit datum \/ \u010das", "Date\/time": "Datum\/\u010das", "Insert\/edit link": "Vlo\u017eit \/ upravit odkaz", "Text to display": "Text k zobrazen\u00ed", "Url": "URL", "Open link in...": "C\u00edlov\u00e9 okno URL", "Current window": "Otev\u0159\u00edt v nad\u0159azen\u00e9 okn\u011b", "None": "\u017d\u00e1dn\u00e9", "New window": "Nov\u00e9 okno", "Open link": "C\u00edlov\u00e9 okno URL", "Remove link": "Odstranit odkaz", "Anchors": "Kotvy", "Link...": "Odkaz", "Paste or type a link": "Vlo\u017eit nebo napsat odkaz", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Zadan\u00e9 URL vypad\u00e1 jako e-mailov\u00e1 adresa. Chcete doplnit povinn\u00fd prefix mailto:?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix http:\/\/?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix https:\/\/?", "Link list": "Seznam odkaz\u016f", "Insert video": "Vlo\u017eit video", "Insert\/edit video": "Vlo\u017eit \/ upravit video", "Insert\/edit media": "Vlo\u017eit \/ upravit m\u00e9dia", "Alternative source": "Alternativn\u00ed zdroj", "Alternative source URL": "Alternativn\u00ed zdrojov\u00e1 URL", "Media poster (Image URL)": "URL n\u00e1hledu", "Paste your embed code below:": "Vlo\u017ete k\u00f3d pro vlo\u017een\u00ed n\u00ed\u017ee:", "Embed": "Vlo\u017eit", "Media...": "M\u00e9dia", "Nonbreaking space": "Pevn\u00e1 mezera", "Page break": "Konec str\u00e1nky", "Paste as text": "Vlo\u017eit jako \u010dist\u00fd text", "Preview": "N\u00e1hled", "Print...": "Tisk...", "Save": "Ulo\u017eit", "Find": "Naj\u00edt", "Replace with": "Nahradit za", "Replace": "Nahradit", "Replace all": "Nahradit v\u0161e", "Previous": "P\u0159edchoz\u00ed", "Next": "Dal\u0161\u00ed", "Find and Replace": "Naj\u00edt a nahradit", "Find and replace...": "Naj\u00edt a nahradit", "Could not find the specified string.": "Zadan\u00fd \u0159et\u011bzec nebyl nalezen.", "Match case": "Rozli\u0161ovat mal\u00e1 a velk\u00e1 p\u00edsmena", "Find whole words only": "Pouze cel\u00e1 slova", "Find in selection": "Ozna\u010den\u00fd text", "Spellcheck": "Kontrola pravopisu", "Spellcheck Language": "Jazyk kontroly pravopisu", "No misspellings found.": "Nebyly nalezeny \u017e\u00e1dn\u00e9 p\u0159eklepy.", "Ignore": "Ignorovat", "Ignore all": "Ignorovat v\u0161e", "Finish": "Ukon\u010dit", "Add to Dictionary": "P\u0159idat do slovn\u00edku", "Insert table": "Vlo\u017eit tabulku", "Table properties": "Vlastnosti tabulky", "Delete table": "Smazat tabulku", "Cell": "Bu\u0148ka", "Row": "\u0158\u00e1dek", "Column": "Sloupec", "Cell properties": "Vlastnosti bu\u0148ky", "Merge cells": "Slou\u010dit bu\u0148ky", "Split cell": "Rozd\u011blit bu\u0148ky", "Insert row before": "Vlo\u017eit \u0159\u00e1dek nad", "Insert row after": "Vlo\u017eit \u0159\u00e1dek pod", "Delete row": "Smazat \u0159\u00e1dek", "Row properties": "Vlastnosti \u0159\u00e1dku", "Cut row": "Vyjmout \u0159\u00e1dek", "Copy row": "Kop\u00edrovat \u0159\u00e1dek", "Paste row before": "Vlo\u017eit \u0159\u00e1dek nad", "Paste row after": "Vlo\u017eit \u0159\u00e1dek pod", "Insert column before": "Vlo\u017eit sloupec vlevo", "Insert column after": "Vlo\u017eit sloupec vpravo", "Delete column": "Smazat sloupec", "Cols": "Sloupc\u016f", "Rows": "\u0158\u00e1dek", "Width": "\u0160\u00ed\u0159ka", "Height": "V\u00fd\u0161ka", "Cell spacing": "Vn\u011bj\u0161\u00ed okraj bun\u011bk", "Cell padding": "Vnit\u0159n\u00ed okraj bun\u011bk", "Caption": "Nadpis", "Show caption": "Zobrazit titulek", "Left": "Vlevo", "Center": "Na st\u0159ed", "Right": "Vpravo", "Cell type": "Typ bu\u0148ky", "Scope": "Rozsah", "Alignment": "Zarovn\u00e1n\u00ed", "H Align": "Horizont\u00e1ln\u00ed zarovn\u00e1n\u00ed", "V Align": "Vertik\u00e1ln\u00ed zarovn\u00e1n\u00ed", "Top": "Nahoru", "Middle": "Uprost\u0159ed", "Bottom": "Dol\u016f", "Header cell": "Hlavi\u010dkov\u00e1 bu\u0148ka", "Row group": "Skupina \u0159\u00e1dk\u016f", "Column group": "Skupina sloupc\u016f", "Row type": "Typ \u0159\u00e1dku", "Header": "Hlavi\u010dka", "Body": "T\u011blo", "Footer": "Pati\u010dka", "Border color": "Barva r\u00e1me\u010dku", "Insert template...": "Vlo\u017eit \u0161ablonu", "Templates": "\u0160ablony", "Template": "\u0160ablona", "Text color": "Barva p\u00edsma", "Background color": "Barva pozad\u00ed", "Custom...": "Vlastn\u00ed...", "Custom color": "Vlastn\u00ed barva", "No color": "Bez barvy", "Remove color": "Odebrat barvu", "Table of Contents": "Obsah", "Show blocks": "Uk\u00e1zat bloky", "Show invisible characters": "Zobrazit speci\u00e1ln\u00ed znaky", "Word count": "Po\u010det slov", "Count": "Po\u010det", "Document": "Dokument", "Selection": "V\u00fdb\u011br", "Words": "Slova", "Words: {0}": "Po\u010det slov: {0}", "{0} words": "Po\u010det slov: {0}", "File": "Soubor", "Edit": "\u00dapravy", "Insert": "Vlo\u017eit", "View": "Zobrazit", "Format": "Form\u00e1t", "Table": "Tabulka", "Tools": "N\u00e1stroje", "Powered by {0}": "Vytvo\u0159il {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Editor. Stiskn\u011bte ALT-F9 pro menu, ALT-F10 pro n\u00e1strojovou li\u0161tu a ALT-0 pro n\u00e1pov\u011bdu.", "Image title": "N\u00e1zev obr\u00e1zku", "Border width": "\u0160\u00ed\u0159ka ohrani\u010den\u00ed", "Border style": "Styl ohrani\u010den\u00ed", "Error": "Chyba", "Warn": "Varov\u00e1n\u00ed", "Valid": "Platn\u00fd", "To open the popup, press Shift+Enter": "Vyskakovac\u00ed okno otev\u0159ete stisknut\u00edm Shift+Enter", "Rich Text Area. Press ALT-0 for help.": "Oblast Rich Text, stiskn\u011bte ALT-0 pro n\u00e1pov\u011bdu.", "System Font": "Typ p\u00edsma", "Failed to upload image: {0}": "Selhalo nahr\u00e1n\u00ed obr\u00e1zku: {0}", "Failed to load plugin: {0} from url {1}": "Selhalo na\u010dten\u00ed pluginu: {0} z URL {1}", "Failed to load plugin url: {0}": "Selhalo na\u010dten\u00ed URL pluginu: {0}", "Failed to initialize plugin: {0}": "Selhala inicializace pluginu: {0}", "example": "p\u0159\u00edklad", "Search": "Hledat", "All": "V\u0161e", "Currency": "M\u011bna", "Text": "Text", "Quotations": "Citace", "Mathematical": "Matematick\u00e9 symboly", "Extended Latin": "Roz\u0161\u00ed\u0159en\u00e1 latinka", "Symbols": "Symboly", "Arrows": "\u0160ipky", "User Defined": "Definovan\u00e9 u\u017eivatelem", "dollar sign": "znak dolar", "currency sign": "znak m\u011bny", "euro-currency sign": "znak eura", "colon sign": "znak colon", "cruzeiro sign": "znak cruzeiro", "french franc sign": "znak francouzsk\u00fdo frank", "lira sign": "znak lira", "mill sign": "znak mill", "naira sign": "znak nairo", "peseta sign": "znak peseto", "rupee sign": "znak rupie", "won sign": "znak won", "new sheqel sign": "znak nov\u00fd \u0161ekel", "dong sign": "znak dong", "kip sign": "znak kip", "tugrik sign": "znak tugrik", "drachma sign": "znak drachma", "german penny symbol": "znak n\u011bmeck\u00fd fenik", "peso sign": "znak peso", "guarani sign": "znak guaran\u00ed", "austral sign": "znak austral", "hryvnia sign": "znak h\u0159ivna", "cedi sign": "znak cedi", "livre tournois sign": "znak tournois libra", "spesmilo sign": "znak spesmilo", "tenge sign": "znak tenge", "indian rupee sign": "znak indick\u00e1 rupie", "turkish lira sign": "znak tureck\u00e1 liry", "nordic mark sign": "znak norsk\u00e1 marka", "manat sign": "znak manat", "ruble sign": "znak rubl", "yen character": "znak jen", "yuan character": "znak juan", "yuan character, in hong kong and taiwan": "znak juanu v hongkongu a tchaj-wanu", "yen\/yuan character variant one": "znak jenu\/juanu, varianta 1", "Loading emoticons...": "Na\u010d\u00edt\u00e1n\u00ed emotikon\u016f...", "Could not load emoticons": "Nelze na\u010d\u00edst emotikony", "People": "Lid\u00e9", "Animals and Nature": "Zv\u00ed\u0159ata a p\u0159\u00edroda", "Food and Drink": "J\u00eddlo a pit\u00ed", "Activity": "Aktivita", "Travel and Places": "Cestov\u00e1n\u00ed a m\u00edsta", "Objects": "Objekty", "Flags": "Vlajky", "Characters": "Znaky", "Characters (no spaces)": "Znaky (bez mezer)", "{0} characters": "{0} znak\u016f", "Error: Form submit field collision.": "Chyba: Kolize odes\u00edlac\u00edho formul\u00e1\u0159ov\u00e9ho pole.", "Error: No form element found.": "Chyba: Nebyl nalezen \u017e\u00e1dn\u00fd prvek formul\u00e1\u0159e.", "Update": "Aktualizovat", "Color swatch": "Vzorek barvy", "Turquoise": "Tyrkysov\u00e1", "Green": "Zelen\u00e1", "Blue": "Modr\u00e1", "Purple": "Fialov\u00e1", "Navy Blue": "N\u00e1mo\u0159nick\u00e1 mod\u0159", "Dark Turquoise": "Tmav\u011b tyrkysov\u00e1", "Dark Green": "Tmav\u011b zelen\u00e1", "Medium Blue": "St\u0159edn\u011b modr\u00e1", "Medium Purple": "St\u0159edn\u011b fialov\u00e1", "Midnight Blue": "P\u016flno\u010dn\u00ed modr\u00e1", "Yellow": "\u017dlut\u00e1", "Orange": "Oran\u017eov\u00e1", "Red": "\u010cerven\u00e1", "Light Gray": "Sv\u011btle \u0161ed\u00e1", "Gray": "\u0160ed\u00e1", "Dark Yellow": "Tmav\u011b \u017elut\u00e1", "Dark Orange": "Tmav\u011b oran\u017eov\u00e1", "Dark Red": "Tmav\u011b \u010derven\u00e1", "Medium Gray": "St\u0159edn\u011b \u0161ed\u00e1", "Dark Gray": "Tmav\u011b \u0161ed\u00e1", "Light Green": "Sv\u011btle zelen\u00e1", "Light Yellow": "Sv\u011btle \u017elut\u00e1", "Light Red": "Sv\u011btle \u010derven\u00e1", "Light Purple": "Sv\u011btle fialov\u00e1", "Light Blue": "Sv\u011btle modr\u00e1", "Dark Purple": "Tmav\u011b fialov\u00e1", "Dark Blue": "Tmav\u011b modr\u00e1", "Black": "\u010cern\u00e1", "White": "B\u00edl\u00e1", "Switch to or from fullscreen mode": "P\u0159ep\u00edn\u00e1n\u00ed mezi re\u017eimem cel\u00e9 obrazovky", "Open help dialog": "Otev\u0159\u00edt okno n\u00e1pov\u011bdy", "history": "historie", "styles": "styly", "formatting": "form\u00e1tov\u00e1n\u00ed", "alignment": "zarovn\u00e1n\u00ed", "indentation": "odsazen\u00ed", "Font": "P\u00edsmo", "Size": "Velikost", "More...": "Dal\u0161\u00ed\u2026", "Select...": "Vybrat", "Preferences": "P\u0159edvolby", "Yes": "Ano", "No": "Ne", "Keyboard Navigation": "Navigace pomoc\u00ed kl\u00e1vesnice", "Version": "Verze", "Code view": "Zobrazit k\u00f3d", "Open popup menu for split buttons": "Otev\u0159ete vyskakovac\u00ed nab\u00eddku pro rozd\u011blen\u00e1 tla\u010d\u00edtka", "List Properties": "Vlastnosti seznamu", "List properties...": "Vlastnosti seznamu...", "Start list at number": "Po\u010d\u00e1te\u010dn\u00ed \u010d\u00edslo seznamu", "Line height": "V\u00fd\u0161ka \u0159\u00e1dku", "comments": "koment\u00e1\u0159e", "Format Painter": "Kop\u00edrovat form\u00e1t", "Insert\/edit iframe": "Vlo\u017eit\/upravit prvek iframe", "Capitalization": "Velk\u00e1 p\u00edsmena", "lowercase": "mal\u00e1 p\u00edsmena", "UPPERCASE": "VELK\u00c1 P\u00cdSMENA", "Title Case": "V\u0161echna Prvn\u00ed Velk\u00e1", "permanent pen": "Permanentn\u00ed pero", "Permanent Pen Properties": "Vlastnosti permanentn\u00edho pera", "Permanent pen properties...": "Vlastnosti permanentn\u00edho pera\u2026", "case change": "Zm\u011bna velikosti p\u00edsma", "page embed": "Vlo\u017een\u00ed str\u00e1nky", "Advanced sort...": "Roz\u0161\u00ed\u0159en\u00e9 \u0159azen\u00ed...", "Advanced Sort": "Roz\u0161\u00ed\u0159en\u00e9 \u0159azen\u00ed", "Sort table by column ascending": "Se\u0159adit tabulku podle sloupce vzestupn\u011b", "Sort table by column descending": "Se\u0159adit tabulku podle sloupce sestupn\u011b", "Sort": "\u0158adit", "Order": "\u0158azen\u00ed", "Sort by": "\u0158adit dle", "Ascending": "Vzestupn\u011b", "Descending": "Sestupn\u011b", "Column {0}": "Sloupec {0}", "Row {0}": "\u0158\u00e1dek {0}", "Spellcheck...": "Kontrola pravopisu", "Misspelled word": "\u0160patn\u011b napsan\u00e9 slovo", "Suggestions": "N\u00e1vrhy", "Change": "Zm\u011bnit", "Finding word suggestions": "Hled\u00e1n\u00ed n\u00e1vrh\u016f slov", "Success": "\u00dasp\u011b\u0161n\u00e9", "Repair": "Opraveno", "Issue {0} of {1}": "Probl\u00e9m {0} z {1}", "Images must be marked as decorative or have an alternative text description": "Obr\u00e1zky mus\u00ed b\u00fdt ozna\u010deny jako dekorativn\u00ed nebo mus\u00ed m\u00edt alternativn\u00ed textov\u00fd popis.", "Images must have an alternative text description. Decorative images are not allowed.": "Obr\u00e1zky mus\u00ed m\u00edt alternativn\u00ed textov\u00fd popis. Dekorativn\u00ed obr\u00e1zky nejsou povoleny.", "Or provide alternative text:": "Nebo zadejte alternativn\u00ed text:", "Make image decorative:": "Nastavit obr\u00e1zek jako dekorativn\u00ed:", "ID attribute must be unique": "ID atributu mus\u00ed b\u00fdt jedine\u010dn\u00e9", "Make ID unique": "Nastavit ID jako jedine\u010dn\u00e9", "Keep this ID and remove all others": "Ponechat toto ID a odstranit v\u0161echny ostatn\u00ed", "Remove this ID": "Odebrat toto ID", "Remove all IDs": "Odebrat v\u0161echna ID", "Checklist": "Kontroln\u00ed seznam", "Anchor": "Kotva", "Special character": "Speci\u00e1ln\u00ed znak", "Code sample": "Uk\u00e1zkov\u00fd k\u00f3d", "Color": "Barva", "Document properties": "Vlastnosti dokumentu", "Image description": "Popis obr\u00e1zku", "Image": "Obr\u00e1zek", "Insert link": "Vlo\u017eit odkaz", "Target": "C\u00edl", "Link": "Odkaz", "Poster": "N\u00e1hled", "Media": "M\u00e9dia", "Print": "Tisk", "Prev": "P\u0159edchoz\u00ed", "Find and replace": "Naj\u00edt a nahradit", "Whole words": "Pouze cel\u00e1 slova", "Insert template": "Vlo\u017eit \u0161ablonu" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/cs_CZ.js ================================================ tinymce.addI18n('cs_CZ',{ "Redo": "Znovu", "Undo": "Zp\u011bt", "Cut": "Vyjmout", "Copy": "Kop\u00edrovat", "Paste": "Vlo\u017eit", "Select all": "Vybrat v\u0161e", "New document": "Nov\u00fd dokument", "Ok": "Ok", "Cancel": "Zru\u0161it", "Visual aids": "Vizu\u00e1ln\u00ed pom\u016fcky", "Bold": "Tu\u010dn\u011b", "Italic": "Kurz\u00edva", "Underline": "Podtr\u017een\u00e9", "Strikethrough": "P\u0159e\u0161krtnut\u00e9", "Superscript": "Horn\u00ed index", "Subscript": "Doln\u00ed index", "Clear formatting": "Vymazat form\u00e1tov\u00e1n\u00ed", "Align left": "Vlevo", "Align center": "Na st\u0159ed", "Align right": "Vpravo", "Justify": "Zarovnat do bloku", "Bullet list": "Odr\u00e1\u017eky", "Numbered list": "\u010c\u00edslov\u00e1n\u00ed", "Decrease indent": "Zmen\u0161it odsazen\u00ed", "Increase indent": "Zv\u011b\u0161it odsazen\u00ed", "Close": "Zav\u0159\u00edt", "Formats": "Form\u00e1ty", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prohl\u00ed\u017ee\u010d nepodporuje p\u0159\u00edm\u00fd p\u0159\u00edstup do schr\u00e1nky. Pou\u017eijte pros\u00edm kl\u00e1vesov\u00e9 zkratky Ctrl+X\/C\/V.", "Headers": "Nadpisy", "Header 1": "Nadpis 1", "Header 2": "Nadpis 2", "Header 3": "Nadpis 3", "Header 4": "Nadpis 4", "Header 5": "Nadpis 5", "Header 6": "Nadpis 6", "Headings": "Nadpisy", "Heading 1": "Nadpis 1", "Heading 2": "Nadpis 2", "Heading 3": "Nadpis 3", "Heading 4": "Nadpis 4", "Heading 5": "Nadpis 5", "Heading 6": "Nadpis 6", "Preformatted": "P\u0159edform\u00e1tovan\u00fd text", "Div": "Div (blok)", "Pre": "Pre (p\u0159edform\u00e1tov\u00e1no)", "Code": "Code (k\u00f3d)", "Paragraph": "Odstavec", "Blockquote": "Citace", "Inline": "\u0158\u00e1dkov\u00e9 zobrazen\u00ed (inline)", "Blocks": "Blokov\u00e9 zobrazen\u00ed (block)", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Je zapnuto vkl\u00e1d\u00e1n\u00ed \u010dist\u00e9ho textu. Dokud nebude tato volba vypnuta, bude ve\u0161ker\u00fd obsah vlo\u017een jako \u010dist\u00fd text.", "Fonts": "P\u00edsma", "Font Sizes": "Velikost p\u00edsma", "Class": "T\u0159\u00edda", "Browse for an image": "Vybrat obr\u00e1zek", "OR": "NEBO", "Drop an image here": "P\u0159et\u00e1hn\u011bte obr\u00e1zek sem", "Upload": "Nahr\u00e1t", "Block": "Blok", "Align": "Zarovnat", "Default": "V\u00fdchoz\u00ed", "Circle": "Kole\u010dko", "Disc": "Punt\u00edk", "Square": "\u010ctvere\u010dek", "Lower Alpha": "Mal\u00e1 p\u00edsmena", "Lower Greek": "\u0158eck\u00e1 p\u00edsmena", "Lower Roman": "Mal\u00e9 \u0159\u00edmsl\u00e9 \u010d\u00edslice", "Upper Alpha": "Velk\u00e1 p\u00edsmena", "Upper Roman": "\u0158\u00edmsk\u00e9 \u010d\u00edslice", "Anchor...": "Kotva", "Name": "N\u00e1zev", "Id": "ID", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID by m\u011blo za\u010d\u00ednat p\u00edsmenem, n\u00e1sledovan\u00fdm pouze p\u00edsmeny, \u010d\u00edsly, poml\u010dkami, te\u010dkami, \u010d\u00e1rkami a nebo podtr\u017e\u00edtky.", "You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zm\u011bny. Opravdu chcete opustit str\u00e1nku?", "Restore last draft": "Obnovit posledn\u00ed koncept.", "Special character...": "Speci\u00e1ln\u00ed znak", "Source code": "Zdrojov\u00fd k\u00f3d", "Insert\/Edit code sample": "Vlo\u017eit\/Upravit uk\u00e1zku k\u00f3du", "Language": "Jazyk", "Code sample...": "Uk\u00e1zkov\u00fd k\u00f3d", "Color Picker": "V\u00fdb\u011br barvy", "R": "R", "G": "G", "B": "B", "Left to right": "Zleva doprava", "Right to left": "Zprava doleva", "Emoticons": "Emotikony", "Emoticons...": "Emotikony", "Metadata and Document Properties": "Metadata a vlastnosti dokumentu", "Title": "Titulek", "Keywords": "Kl\u00ed\u010dov\u00e1 slova", "Description": "Popis", "Robots": "Roboti", "Author": "Autor", "Encoding": "K\u00f3dov\u00e1n\u00ed", "Fullscreen": "Celk\u00e1 obrazovka", "Action": "Akce", "Shortcut": "Kl\u00e1vesov\u00e1 zkratka", "Help": "N\u00e1pov\u011bda", "Address": "Blok s po\u0161tovn\u00ed adresou", "Focus to menubar": "P\u0159ej\u00edt do menu", "Focus to toolbar": "P\u0159ej\u00edt na panel n\u00e1stroj\u016f", "Focus to element path": "Focus to element path", "Focus to contextual toolbar": "P\u0159ej\u00edt na kontextov\u00fd panel n\u00e1stroj\u016f", "Insert link (if link plugin activated)": "Vlo\u017eit odkaz (pokud je aktivn\u00ed link plugin)", "Save (if save plugin activated)": "Ulo\u017eit (pokud je aktivni save plugin)", "Find (if searchreplace plugin activated)": "Hledat (pokud je aktivn\u00ed plugin searchreplace)", "Plugins installed ({0}):": "Instalovan\u00e9 pluginy ({0}):", "Premium plugins:": "Pr\u00e9miov\u00e9 pluginy:", "Learn more...": "Zjistit v\u00edce...", "You are using {0}": "Pou\u017e\u00edv\u00e1te {0}", "Plugins": "Pluginy", "Handy Shortcuts": "U\u017eite\u010dn\u00e9 kl\u00e1vesov\u00e9 zkratky", "Horizontal line": "Vodorovn\u00e1 linka", "Insert\/edit image": "Vlo\u017eit \/ upravit obr\u00e1zek", "Alternative description": "Alternativn\u00ed text", "Accessibility": "Bez alternativn\u00edho textu", "Image is decorative": "(dekorativn\u00ed obr\u00e1zek bez alternativn\u00edho textu)", "Source": "URL", "Dimensions": "Rozm\u011bry", "Constrain proportions": "Zachovat proporce", "General": "Obecn\u00e9", "Advanced": "Pokro\u010dil\u00e9", "Style": "Styl", "Vertical space": "Vertik\u00e1ln\u00ed mezera", "Horizontal space": "Horizont\u00e1ln\u00ed mezera", "Border": "R\u00e1me\u010dek", "Insert image": "Vlo\u017eit obr\u00e1zek", "Image...": "Obr\u00e1zek...", "Image list": "Seznam obr\u00e1zk\u016f", "Rotate counterclockwise": "Oto\u010dit doleva", "Rotate clockwise": "Oto\u010dit doprava", "Flip vertically": "P\u0159evr\u00e1tit svisle", "Flip horizontally": "P\u0159evr\u00e1tit vodorovn\u011b", "Edit image": "Upravit obr\u00e1zek", "Image options": "Vlastnosti obr\u00e1zku", "Zoom in": "P\u0159ibl\u00ed\u017eit", "Zoom out": "Odd\u00e1lit", "Crop": "O\u0159\u00edznout", "Resize": "Zm\u011bnit velikost", "Orientation": "Orientace", "Brightness": "Jas", "Sharpen": "Ostrost", "Contrast": "Kontrast", "Color levels": "\u00darovn\u011b barev", "Gamma": "Gama", "Invert": "Invertovat", "Apply": "Pou\u017e\u00edt", "Back": "Zp\u011bt", "Insert date\/time": "Vlo\u017eit datum \/ \u010das", "Date\/time": "Datum\/\u010das", "Insert\/edit link": "Vlo\u017eit \/ upravit odkaz", "Text to display": "Text odkazu", "Url": "URL", "Open link in...": "C\u00edlov\u00e9 okno URL", "Current window": "Otev\u0159\u00edt v aktu\u00e1ln\u00edm okn\u011b", "None": "\u017d\u00e1dn\u00fd", "New window": "Nov\u00e9 okno", "Open link": "C\u00edlov\u00e9 okno URL", "Remove link": "Odstranit odkaz", "Anchors": "Kotvy", "Link...": "Odkaz...", "Paste or type a link": "Vlo\u017ete nebo napi\u0161te adresu odkazu", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Zadan\u00e9 URL vypad\u00e1 jako e-mailov\u00e1 adresa. Chcete doplnit povinn\u00fd prefix mailto:?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix http:\/\/?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix https:\/\/?", "Link list": "Seznam odkaz\u016f", "Insert video": "Vlo\u017eit video", "Insert\/edit video": "Vlo\u017eit \/ upravit video", "Insert\/edit media": "Vlo\u017eit\/upravit m\u00e9dia", "Alternative source": "Alternativn\u00ed zdroj", "Alternative source URL": "Alternativn\u00ed zdrojov\u00e1 URL", "Media poster (Image URL)": "URL n\u00e1hledu", "Paste your embed code below:": "Vlo\u017ete k\u00f3d pro vlo\u017een\u00ed", "Embed": "Vlo\u017een\u00fd", "Media...": "M\u00e9dia", "Nonbreaking space": "Pevn\u00e1 mezera", "Page break": "Konec str\u00e1nky", "Paste as text": "Vlo\u017eit jako \u010dist\u00fd text", "Preview": "N\u00e1hled", "Print...": "Tisk", "Save": "Ulo\u017eit", "Find": "Naj\u00edt", "Replace with": "Nahradit za", "Replace": "Nahradit", "Replace all": "Nahradit v\u0161e", "Previous": "P\u0159edchoz\u00ed", "Next": "Dal\u0161\u00ed", "Find and Replace": "Naj\u00edt a nahradit", "Find and replace...": "Naj\u00edt a nahradit", "Could not find the specified string.": "Zadan\u00fd \u0159et\u011bzec nebyl nalezen.", "Match case": "Rozli\u0161ovat mal\u00e1 a velk\u00e1 p\u00edsmena", "Find whole words only": "Pouze cel\u00e1 slova", "Find in selection": "Ozna\u010den\u00fd text", "Spellcheck": "Kontrola pravopisu", "Spellcheck Language": "Jazyk kontroly pravopisu", "No misspellings found.": "Nebyly nalezeny \u017e\u00e1dn\u00e9 p\u0159eklepy.", "Ignore": "Ignorovat", "Ignore all": "Ignorovat v\u0161e", "Finish": "Dokon\u010dit", "Add to Dictionary": "P\u0159idat do slovn\u00edku", "Insert table": "Vlo\u017eit tabulku", "Table properties": "Vlastnosti tabulky", "Delete table": "Smazat tabulku", "Cell": "Bu\u0148ka", "Row": "\u0158\u00e1dek", "Column": "Sloupec", "Cell properties": "Vlastnosti bu\u0148ky", "Merge cells": "Slou\u010dit bu\u0148ky", "Split cell": "Rozd\u011blit bu\u0148ku", "Insert row before": "Vlo\u017eit \u0159\u00e1dek p\u0159ed", "Insert row after": "Vlo\u017eit \u0159\u00e1dek za", "Delete row": "Smazat \u0159\u00e1dek", "Row properties": "Vlastnosti \u0159\u00e1dku", "Cut row": "Vyjmout \u0159\u00e1dek", "Copy row": "Kop\u00edrovat \u0159\u00e1dek", "Paste row before": "Vlo\u017eit \u0159\u00e1dek nad", "Paste row after": "Vlo\u017eit \u0159\u00e1dek pod", "Insert column before": "Vlo\u017eit sloupec vlevo", "Insert column after": "Vlo\u017eit sloupec vpravo", "Delete column": "Smazat sloupec", "Cols": "Sloupce", "Rows": "\u0158\u00e1dky", "Width": "\u0160\u00ed\u0159ka", "Height": "V\u00fd\u0161ka", "Cell spacing": "Vn\u011bj\u0161\u00ed okraj bun\u011bk", "Cell padding": "Vnit\u0159n\u00ed okraj bun\u011bk", "Caption": "Titulek", "Show caption": "Popisek pod obr\u00e1zkem", "Left": "Vlevo", "Center": "Na st\u0159ed", "Right": "Vpravo", "Cell type": "Typ bu\u0148ky", "Scope": "Rozsah", "Alignment": "Zarovn\u00e1n\u00ed", "H Align": "Horizont\u00e1ln\u00ed zarovn\u00e1n\u00ed", "V Align": "Vertik\u00e1ln\u00ed zarovn\u00e1n\u00ed", "Top": "Nahoru", "Middle": "Na st\u0159ed", "Bottom": "Dol\u016f", "Header cell": "Hlavi\u010dkov\u00e1 bu\u0148ka", "Row group": "Skupina \u0159\u00e1dk\u016f", "Column group": "Skupina sloupc\u016f", "Row type": "Typ \u0159\u00e1dku", "Header": "Hlavi\u010dka", "Body": "T\u011blo", "Footer": "Pati\u010dka", "Border color": "Barva r\u00e1me\u010dku", "Insert template...": "Vlo\u017eit \u0161ablonu...", "Templates": "\u0160ablony", "Template": "\u0160ablona", "Text color": "Barva p\u00edsma", "Background color": "Barva pozad\u00ed", "Custom...": "Vlastn\u00ed", "Custom color": "Vlastn\u00ed barva", "No color": "Bez barvy", "Remove color": "Odebrat barvu", "Table of Contents": "Generovat obsah", "Show blocks": "Uk\u00e1zat bloky", "Show invisible characters": "Uk\u00e1zat skryt\u00e9 znaky", "Word count": "Po\u010det slov", "Count": "Po\u010det", "Document": "Dokument", "Selection": "V\u00fdb\u011br", "Words": "Slova", "Words: {0}": "Slova: {0}", "{0} words": "{0} slov", "File": "Soubor", "Edit": "\u00dapravy", "Insert": "Vlo\u017eit", "View": "Zobrazit", "Format": "Form\u00e1t", "Table": "Tabulka", "Tools": "N\u00e1stroje", "Powered by {0}": "Powered by {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "RTF dokument. Stikn\u011bte ALT-F9 pro zobrazen\u00ed menu, ALT-F10 pro zobrazen\u00ed n\u00e1strojov\u00e9 li\u0161ty, ALT-0 pro n\u00e1pov\u011bdu.", "Image title": "Titulek obr\u00e1zku", "Border width": "\u0160\u00ed\u0159ka ohrani\u010den\u00ed", "Border style": "Styl ohrani\u010den\u00ed", "Error": "Chyba", "Warn": "Varov\u00e1n\u00ed", "Valid": "Platn\u00fd", "To open the popup, press Shift+Enter": "Vyskakovac\u00ed okno otev\u0159ete stisknut\u00edm Shift+Enter", "Rich Text Area. Press ALT-0 for help.": "Oblast Rich Text, stiskn\u011bte ALT-0 pro n\u00e1pov\u011bdu.", "System Font": "Syst\u00e9mov\u00e9 p\u00edsmo", "Failed to upload image: {0}": "Nahr\u00e1n\u00ed obr\u00e1zku selhalo: {0}", "Failed to load plugin: {0} from url {1}": "Na\u010dten\u00ed pluginu selhalo: {0} z URL {1}", "Failed to load plugin url: {0}": "Na\u010dten\u00ed pluginu URL selhalo: {0}", "Failed to initialize plugin: {0}": "Inicializace pluginu selhala:", "example": "p\u0159\u00edklad", "Search": "Hledat", "All": "V\u0161e", "Currency": "M\u011bna", "Text": "Text", "Quotations": "Citace", "Mathematical": "Matematick\u00e9 symboly", "Extended Latin": "Roz\u0161\u00ed\u0159en\u00e1 latinka", "Symbols": "Symboly", "Arrows": "\u0160ipky", "User Defined": "Definovan\u00e9 u\u017eivatelem", "dollar sign": "znak dolaru", "currency sign": "znak m\u011bny", "euro-currency sign": "znak euro", "colon sign": "znak dvojte\u010dky", "cruzeiro sign": "znak cruzeiro", "french franc sign": "znak francouzsk\u00e9ho franku", "lira sign": "znak liry", "mill sign": "znak mill", "naira sign": "znak nairy", "peseta sign": "znak pesety", "rupee sign": "znak rupie", "won sign": "znak wonu", "new sheqel sign": "znak nov\u00e9ho \u0161ekelu", "dong sign": "znak dongu", "kip sign": "znak kipu", "tugrik sign": "znak tugriku", "drachma sign": "znak drachmy", "german penny symbol": "znak n\u011bmeck\u00e9ho feniku", "peso sign": "znak pesa", "guarani sign": "znak guaran\u00ed", "austral sign": "znak austral", "hryvnia sign": "znak h\u0159ivny", "cedi sign": "znak cedi", "livre tournois sign": "znak tournois libry", "spesmilo sign": "znak spesmilo", "tenge sign": "znak tenge", "indian rupee sign": "znak indick\u00e9 rupie", "turkish lira sign": "znak tureck\u00e9 liry", "nordic mark sign": "znak norsk\u00e9 marky", "manat sign": "znak manatu", "ruble sign": "znak rublu", "yen character": "znak jenu", "yuan character": "znak juanu", "yuan character, in hong kong and taiwan": "znak juanu v hongkongu a tchaj-wanu", "yen\/yuan character variant one": "znak jenu\/juanu, varianta 1", "Loading emoticons...": "Na\u010d\u00edt\u00e1n\u00ed emotikon\u016f...", "Could not load emoticons": "Nelze na\u010d\u00edst emotikony", "People": "Lid\u00e9", "Animals and Nature": "Zv\u00ed\u0159ata a p\u0159\u00edroda", "Food and Drink": "J\u00eddlo a pit\u00ed", "Activity": "Aktivita", "Travel and Places": "Cestov\u00e1n\u00ed a m\u00edsta", "Objects": "Objekty", "Flags": "Vlajky", "Characters": "Znaky", "Characters (no spaces)": "Znaky (bez mezer)", "{0} characters": "{0} znak\u016f", "Error: Form submit field collision.": "Chyba: Kolize odes\u00edlac\u00edho formul\u00e1\u0159ov\u00e9ho pole.", "Error: No form element found.": "Chyba: Nebyl nalezen \u017e\u00e1dn\u00fd prvek formul\u00e1\u0159e.", "Update": "Aktualizovat", "Color swatch": "Vzorek barvy", "Turquoise": "Tyrkysov\u00e1", "Green": "Zelen\u00e1", "Blue": "Modr\u00e1", "Purple": "Fialov\u00e1", "Navy Blue": "N\u00e1mo\u0159nick\u00e1 mod\u0159", "Dark Turquoise": "Tmav\u011b tyrkysov\u00e1", "Dark Green": "Tmav\u011b zelen\u00e1", "Medium Blue": "St\u0159edn\u011b modr\u00e1", "Medium Purple": "St\u0159edn\u011b fialov\u00e1", "Midnight Blue": "P\u016flno\u010dn\u00ed modr\u00e1", "Yellow": "\u017dlut\u00e1", "Orange": "Oran\u017eov\u00e1", "Red": "\u010cerven\u00e1", "Light Gray": "Sv\u011btle \u0161ed\u00e1", "Gray": "\u0160ed\u00e1", "Dark Yellow": "Tmav\u011b \u017elut\u00e1", "Dark Orange": "Tmav\u011b oran\u017eov\u00e1", "Dark Red": "Tmav\u011b \u010derven\u00e1", "Medium Gray": "St\u0159edn\u011b \u0161ed\u00e1", "Dark Gray": "Tmav\u011b \u0161ed\u00e1", "Light Green": "Sv\u011btle zelen\u00e1", "Light Yellow": "Sv\u011btle \u017elut\u00e1", "Light Red": "Sv\u011btle \u010derven\u00e1", "Light Purple": "Sv\u011btle fialov\u00e1", "Light Blue": "Sv\u011btle modr\u00e1", "Dark Purple": "Tmav\u011b fialov\u00e1", "Dark Blue": "Tmav\u011b modr\u00e1", "Black": "\u010cern\u00e1", "White": "B\u00edl\u00e1", "Switch to or from fullscreen mode": "P\u0159ep\u00edn\u00e1n\u00ed mezi re\u017eimem cel\u00e9 obrazovky", "Open help dialog": "Otev\u0159\u00edt okno n\u00e1pov\u011bdy", "history": "historie", "styles": "styly", "formatting": "form\u00e1tov\u00e1n\u00ed", "alignment": "zarovn\u00e1n\u00ed", "indentation": "odsazen\u00ed", "Font": "P\u00edsmo", "Size": "Velikost", "More...": "Dal\u0161\u00ed\u2026", "Select...": "Vybrat", "Preferences": "Preference", "Yes": "Ano", "No": "Ne", "Keyboard Navigation": "Navigace pomoc\u00ed kl\u00e1vesnice", "Version": "Verze", "Code view": "Zobrazit k\u00f3d", "Open popup menu for split buttons": "Otev\u0159ete vyskakovac\u00ed nab\u00eddku pro rozd\u011blen\u00e1 tla\u010d\u00edtka", "List Properties": "Vlastnosti seznamu", "List properties...": "Vlastnosti seznamu...", "Start list at number": "Po\u010d\u00e1te\u010dn\u00ed \u010d\u00edslo seznamu", "Line height": "V\u00fd\u0161ka \u0159\u00e1dku", "comments": "koment\u00e1\u0159e", "Format Painter": "Kop\u00edrovat form\u00e1t", "Insert\/edit iframe": "Vlo\u017eit \/ upravit prvek iframe", "Capitalization": "Velk\u00e1 p\u00edsmena", "lowercase": "mal\u00e1 p\u00edsmena", "UPPERCASE": "VELK\u00c1 P\u00cdSMENA", "Title Case": "V\u0161echna Prvn\u00ed Velk\u00e1", "permanent pen": "permanentn\u00ed pero", "Permanent Pen Properties": "Vlastnosti permanentn\u00edho pera", "Permanent pen properties...": "Vlastnosti permanentn\u00edho pera\u2026", "case change": "Zm\u011bna velikosti p\u00edsma", "page embed": "Vlo\u017een\u00ed str\u00e1nky", "Advanced sort...": "Roz\u0161\u00ed\u0159en\u00e9 \u0159azen\u00ed...", "Advanced Sort": "Roz\u0161\u00ed\u0159en\u00e9 \u0159azen\u00ed", "Sort table by column ascending": "Se\u0159adit tabulku podle sloupce vzestupn\u011b", "Sort table by column descending": "Se\u0159adit tabulku podle sloupce sestupn\u011b", "Sort": "\u0158adit", "Order": "\u0158azen\u00ed", "Sort by": "\u0158adit dle", "Ascending": "Vzestupn\u011b", "Descending": "Sestupn\u011b", "Column {0}": "Sloupec {0}", "Row {0}": "\u0158\u00e1dek {0}", "Spellcheck...": "Kontrola pravopisu", "Misspelled word": "\u0160patn\u011b napsan\u00e9 slovo", "Suggestions": "N\u00e1vrhy", "Change": "Zm\u011bnit", "Finding word suggestions": "Hled\u00e1n\u00ed n\u00e1vrh\u016f slov", "Success": "\u00dasp\u011b\u0161n\u00e9", "Repair": "Opraveno", "Issue {0} of {1}": "Probl\u00e9m {0} z {1}", "Images must be marked as decorative or have an alternative text description": "Obr\u00e1zky mus\u00ed b\u00fdt ozna\u010deny jako dekorativn\u00ed nebo mus\u00ed m\u00edt alternativn\u00ed textov\u00fd popis.", "Images must have an alternative text description. Decorative images are not allowed.": "Obr\u00e1zky mus\u00ed m\u00edt alternativn\u00ed textov\u00fd popis. Dekorativn\u00ed obr\u00e1zky nejsou povoleny.", "Or provide alternative text:": "Nebo zadejte alternativn\u00ed text:", "Make image decorative:": "Nastavit obr\u00e1zek jako dekorativn\u00ed:", "ID attribute must be unique": "ID atributu mus\u00ed b\u00fdt jedine\u010dn\u00e9", "Make ID unique": "Nastavit ID jako jedine\u010dn\u00e9", "Keep this ID and remove all others": "Ponechat toto ID a odstranit v\u0161echny ostatn\u00ed", "Remove this ID": "Odebrat toto ID", "Remove all IDs": "Odebrat v\u0161echna ID", "Checklist": "Kontroln\u00ed seznam", "Anchor": "Kotva", "Special character": "Speci\u00e1ln\u00ed znak", "Code sample": "Uk\u00e1zka k\u00f3du", "Color": "Barva", "Document properties": "Vlastnosti dokumentu", "Image description": "Popis obr\u00e1zku", "Image": "Obr\u00e1zek", "Insert link": "Vlo\u017eit odkaz", "Target": "C\u00edl", "Link": "Odkaz", "Poster": "Poster", "Media": "M\u00e9dia", "Print": "Tisk", "Prev": "P\u0159edchoz\u00ed", "Find and replace": "Naj\u00edt a nahradit", "Whole words": "Pouze cel\u00e1 slova", "Insert template": "Vlo\u017eit ze \u0161ablony" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/cy.js ================================================ tinymce.addI18n('cy',{ "Redo": "Ailwneud", "Undo": "Dadwneud", "Cut": "Torri", "Copy": "Cop\u00efo", "Paste": "Gludo", "Select all": "Dewis popeth", "New document": "Dogfen newydd", "Ok": "Iawn", "Cancel": "Canslo", "Visual aids": "Cymorth gweledol", "Bold": "Trwm", "Italic": "Italig", "Underline": "Tanlinellu", "Strikethrough": "Llinell drwodd", "Superscript": "Uwchsgript", "Subscript": "Is-sgript", "Clear formatting": "Clirio pob fformat", "Align left": "Aliniad chwith", "Align center": "Aliniad canol", "Align right": "Aliniad de", "Justify": "Unioni", "Bullet list": "Rhestr fwled", "Numbered list": "Rhestr rifol", "Decrease indent": "Lleihau mewnoliad", "Increase indent": "Cynyddu mewnoliad", "Close": "Cau", "Formats": "Fformatau", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Dyw eich porwr ddim yn cynnal mynediad uniongyrchol i'r clipfwrdd. Yn hytrach defnyddiwch y bysellau llwybrau byr Ctrl+X\/C\/V.", "Headers": "Penawdau", "Header 1": "Pennawd 1", "Header 2": "Pennawd 2", "Header 3": "Pennawd 3", "Header 4": "Pennawd 4", "Header 5": "Pennawd 5", "Header 6": "Pennawd 6", "Headings": "Penawdau", "Heading 1": "Pennawd 1", "Heading 2": "Pennawd 2", "Heading 3": "Pennawd 3", "Heading 4": "Pennawd 4", "Heading 5": "Pennawd 5", "Heading 6": "Pennawd 6", "Preformatted": "Wedi ei rag-fformatio", "Div": "Div", "Pre": "Pre", "Code": "Cod", "Paragraph": "Paragraff", "Blockquote": "Dyfyniad Bloc", "Inline": "Mewnlin", "Blocks": "Blociau", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Mae gludo nawr yn gweithio yn y modd testun plaen. Caiff testun plaen ei ludo nawr tan gaiff yr opsiwn ei doglo i'w ddiffodd.", "Fonts": "Ffontau", "Font Sizes": "Meintiau Ffont", "Class": "Dosbarth", "Browse for an image": "Pori am ddelwedd", "OR": "NEU", "Drop an image here": "Gollwng delwedd yma", "Upload": "Uwchlwytho", "Block": "Bloc", "Align": "Alinio", "Default": "Diofyn", "Circle": "Cylch", "Disc": "Disg", "Square": "Sgw\u00e2r", "Lower Alpha": "Alffa Is", "Lower Greek": "Groeg Is", "Lower Roman": "Rhufeinig Is", "Upper Alpha": "Alffa Uwch", "Upper Roman": "Rhufeinig Uwch", "Anchor...": "Angor...", "Name": "Enw", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Dylai Id gychwyn gyda llythyren ac yna dim ond llythrennau, rhifau, llinellau toriad,dotiau, colonau neu danlinellau.", "You have unsaved changes are you sure you want to navigate away?": "Mae newidiadau heb eu cadw - ydych chi wir am symud i ffwrdd?", "Restore last draft": "Adfer y drafft olaf", "Special character...": "Nod arbennig...", "Source code": "Cod gwreiddiol", "Insert\/Edit code sample": "Mewnosod\/golygu sampl cod", "Language": "Iaith", "Code sample...": "Sampl cod...", "Color Picker": "Dewisydd Lliw", "R": "C", "G": "Gw", "B": "Gl", "Left to right": "Chwith i'r dde", "Right to left": "De i'r chwith", "Emoticons": "Gwenogluniau", "Emoticons...": "Gwenogluniau...", "Metadata and Document Properties": "Metaddata a Priodweddau'r ddogfen", "Title": "Teitl", "Keywords": "Allweddeiriau", "Description": "Disgrifiad", "Robots": "Robotiaid", "Author": "Awdur", "Encoding": "Amgodiad", "Fullscreen": "Sgrin llawn", "Action": "Gweithred", "Shortcut": "Llwybr Byr", "Help": "Help", "Address": "Cyfeiriad", "Focus to menubar": "Ffocws i'r bar dewislen", "Focus to toolbar": "Ffocws i'r bar offer", "Focus to element path": "Ffocws i lwybr elfen", "Focus to contextual toolbar": "Ffocws i far offer y cyd-destun", "Insert link (if link plugin activated)": "Mewnosod dolen (os yw'r ategyn dolen yn weithredol)", "Save (if save plugin activated)": "Cadw (os yw'r ategyn cadw yn weithredol)", "Find (if searchreplace plugin activated)": "Canfod (os yw'r ategyn chwilio ac amnewid yn weithredol)", "Plugins installed ({0}):": "Ategio wedi eu gosod ({0}):", "Premium plugins:": "Ategion premiwm:", "Learn more...": "Dysgu Mwy...", "You are using {0}": "Rydych yn defnyddio {0}", "Plugins": "Ategion", "Handy Shortcuts": "Llwybrau byr cyfleus", "Horizontal line": "Llinell lorweddol", "Insert\/edit image": "Mewnosod\/golygu delwedd", "Alternative description": "Disgrifiad arall", "Accessibility": "Hygyrchedd", "Image is decorative": "Delwedd yn addurniadol", "Source": "Ffynhonnell", "Dimensions": "Dimensiynau", "Constrain proportions": "Gorfodi cyfrannedd", "General": "Cyffredinol", "Advanced": "Uwch", "Style": "Arddull", "Vertical space": "Gofod fertigol", "Horizontal space": "Gofod llorweddol", "Border": "Border", "Insert image": "Mewnosod delwedd", "Image...": "Delwedd...", "Image list": "Rhestr delweddau", "Rotate counterclockwise": "Troi gwrthgloc", "Rotate clockwise": "Troi clocwedd", "Flip vertically": "Fflipio fertigol", "Flip horizontally": "Fflipio llorweddol", "Edit image": "Golygu delwedd", "Image options": "Dewisiadau delwedd", "Zoom in": "Chwyddo mewn", "Zoom out": "Chwyddo allan", "Crop": "Tocio", "Resize": "Ailfeintio", "Orientation": "Cyfeiriadaeth", "Brightness": "Disgleirdeb", "Sharpen": "Hogi", "Contrast": "Cyferbynnedd", "Color levels": "Lefelau Lliw", "Gamma": "Gamma", "Invert": "Gwrthdroi", "Apply": "Rhoi ar waith", "Back": "Nol", "Insert date\/time": "Mewnosod dyddiad\/amser", "Date\/time": "Dyddiad\/amser", "Insert\/edit link": "Mewnosod\/golygu dolen", "Text to display": "Testun i'w ddangos", "Url": "Url", "Open link in...": "Agor dolen yn...", "Current window": "Ffenestr gyfredol", "None": "Dim", "New window": "Ffenest newydd", "Open link": "Agor dolen", "Remove link": "Tynnu dolen", "Anchors": "Angorau", "Link...": "Dolen...", "Paste or type a link": "Pastio neu deipio dolen", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Mae'n debyg mai cyfeiriad e-bost yw'r URL hwn. Ydych chi am ychwanegu'r rhagddoddiad mailto:?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Mae'n debyg mai dolen allanol yw'r URL hwn. Ydych chi am ychwanegu'r rhagddodiad http:\/\/ ?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Ymddengys mai dolen allannol yw'r URL a roddoch chi. Ydych chi eisiau ychwanegu'r rhagddodiad https:\/\/ gofynnol?", "Link list": "Rhestr dolenni", "Insert video": "Mewnosod fideo", "Insert\/edit video": "Mewnosod\/golygu fideo", "Insert\/edit media": "Mewnosod\/golygu cyfrwng", "Alternative source": "Ffynhonnell amgen", "Alternative source URL": "Ffynhonnell URL arall", "Media poster (Image URL)": "Poster cyfrwng (URL delwedd)", "Paste your embed code below:": "Gludwch eich cod mewnosod isod:", "Embed": "Mewnosod", "Media...": "Cyfrwng...", "Nonbreaking space": "Bwlch heb dorri", "Page break": "Toriad tudalen", "Paste as text": "Gludo fel testun", "Preview": "Rhagolwg", "Print...": "Argraffu...", "Save": "Cadw", "Find": "Chwilio", "Replace with": "Amnewid gyda", "Replace": "Amnewid", "Replace all": "Amnewid y cwbl", "Previous": "Blaenorol", "Next": "Nesaf", "Find and Replace": "Canfod a Newid", "Find and replace...": "Chwilio ac amnewid", "Could not find the specified string.": "Methu ffeindio'r llinyn hwnnw.", "Match case": "Cas yn cyfateb", "Find whole words only": "Canfod geiriau llawn yn unig", "Find in selection": "Canfod yn y dewisiad", "Spellcheck": "Sillafydd", "Spellcheck Language": "Iaith Gwirio Sillafu", "No misspellings found.": "Dim camsillafiadau.", "Ignore": "Anwybyddu", "Ignore all": "Amwybyddu pob", "Finish": "Gorffen", "Add to Dictionary": "Adio i'r Geiriadur", "Insert table": "Mewnosod tabl", "Table properties": "Priodweddau tabl", "Delete table": "Dileu'r tabl", "Cell": "Cell", "Row": "Rhes", "Column": "Colofn", "Cell properties": "Priodweddau'r gell", "Merge cells": "Cyfuno celloedd", "Split cell": "Hollti celloedd", "Insert row before": "Mewnosod rhes cyn", "Insert row after": "Mewnosod rhes ar \u00f4l", "Delete row": "Dileu rhes", "Row properties": "Priodweddau rhes", "Cut row": "Torri rhes", "Copy row": "Cop\u00efo rhes", "Paste row before": "Gludo rhes cyn", "Paste row after": "Gludo rhes ar \u00f4l", "Insert column before": "Mewnosod colofn cyn", "Insert column after": "Mewnosod colofn ar \u00f4l", "Delete column": "Dileu colofn", "Cols": "Colofnau", "Rows": "Rhesi", "Width": "Lled", "Height": "Uchder", "Cell spacing": "Bylchiad celloedd", "Cell padding": "Padio celloedd", "Caption": "Pennawd", "Show caption": "Dangos capsiwn", "Left": "Chwith", "Center": "Canol", "Right": "De", "Cell type": "Math y gell", "Scope": "Cwmpas", "Alignment": "Aliniad", "H Align": "Aliniad Ll", "V Align": "Aliniad F", "Top": "Brig", "Middle": "Canol", "Bottom": "Gwaelod", "Header cell": "Cell bennawd", "Row group": "Gr\u0175p rhes", "Column group": "Gr\u0175p colofn", "Row type": "Math y rhes", "Header": "Pennyn", "Body": "Corff", "Footer": "Troedyn", "Border color": "Lliw Border", "Insert template...": "Mewnosod templed...", "Templates": "Templedi", "Template": "Templed", "Text color": "Lliw testun", "Background color": "Lliw cefndir", "Custom...": "Personol...", "Custom color": "Lliw personol", "No color": "Dim Lliw", "Remove color": "Tynnu lliw", "Table of Contents": "Tabl Cynnwys", "Show blocks": "Dangos blociau", "Show invisible characters": "Dangos nodau anweledig", "Word count": "Cyfri geiriau", "Count": "Cyfrif", "Document": "Dogfen", "Selection": "Dewis", "Words": "Geiriau", "Words: {0}": "Geiriau: {0}", "{0} words": "{0} o eiriau", "File": "Ffeil", "Edit": "Golygu", "Insert": "Mewnosod", "View": "Dangos", "Format": "Fformat", "Table": "Tabl", "Tools": "Offer", "Powered by {0}": "Gyrrir gan {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Ardal Testun Uwch. Pwyswch ALT-F9 ar gyfer y ddewislen, Pwyswch ALT-F10 ar gyfer y bar offer. Pwyswch ALT-0 am gymorth", "Image title": "Teitl delwedd", "Border width": "Lled border", "Border style": "Steil border", "Error": "Gwall", "Warn": "Rhybuddio", "Valid": "Dilys", "To open the popup, press Shift+Enter": "I agor y llamlen, pwyswch Shift+Enter", "Rich Text Area. Press ALT-0 for help.": "Ardal testun cyfoethog. Pwyswch ALT-0 am help.", "System Font": "Ffont system", "Failed to upload image: {0}": "Wedi methu uwchlwytho'r ddelwedd: {0}", "Failed to load plugin: {0} from url {1}": "Wedi methu llwytho'r ategyn: {0} o'r url {1}", "Failed to load plugin url: {0}": "Wedi methu llwytho url yr ategyn: {0}", "Failed to initialize plugin: {0}": "Wedi methu ymgychwyn yr ategyn: {0}", "example": "enghraifft", "Search": "Chwilio", "All": "Y cwbl", "Currency": "Arian cyfred", "Text": "Testun", "Quotations": "Dyfyniadau", "Mathematical": "Mathemategol", "Extended Latin": "Lladin estynedig", "Symbols": "Symbolau", "Arrows": "Saethau", "User Defined": "Diffinir gan y defnyddiwr", "dollar sign": "Arwydd dolar", "currency sign": "Arwydd arian cyfred", "euro-currency sign": "Arwydd euro", "colon sign": "Arwydd colon", "cruzeiro sign": "Arwydd cruzeiro", "french franc sign": "Arwydd ffranc Ffrengig", "lira sign": "Arwydd lira", "mill sign": "arwydd mill", "naira sign": "arwydd naira", "peseta sign": "arwydd peseta", "rupee sign": "arwydd rupee", "won sign": "arwydd won", "new sheqel sign": "arwydd sheqel newydd", "dong sign": "arwydd dong", "kip sign": "arwydd kip", "tugrik sign": "arwydd tugrik", "drachma sign": "arwydd drachma", "german penny symbol": "arwydd ceiniog almaenig", "peso sign": "arwydd peso", "guarani sign": "arwydd quarani", "austral sign": "arwydd austral", "hryvnia sign": "arwydd hryvnia", "cedi sign": "arwydd cedi", "livre tournois sign": "arwydd punt tournois", "spesmilo sign": "arwydd spesmilo", "tenge sign": "arwydd tenge", "indian rupee sign": "arwydd rupee india", "turkish lira sign": "arwydd lira twrcaidd", "nordic mark sign": "arwydd marc nordig", "manat sign": "arwydd manat", "ruble sign": "arwydd ruble", "yen character": "nod yen", "yuan character": "nod yuan", "yuan character, in hong kong and taiwan": "nod yuan yn Hong Kong a Taiwan", "yen\/yuan character variant one": "nod yen\/yuan amrywiad un", "Loading emoticons...": "Yn llwytho gwenogluniau", "Could not load emoticons": "Wedi methu llwytho gwenogluniau", "People": "Pobl", "Animals and Nature": "Anifeiliaid a Natur", "Food and Drink": "Bwyd a Diod", "Activity": "Gweithgaredd", "Travel and Places": "Teithio a lleoedd", "Objects": "Gwrthrychau", "Flags": "Baneri", "Characters": "Nodau", "Characters (no spaces)": "Nodau (dim gofod)", "{0} characters": "{0} nod", "Error: Form submit field collision.": "Gwall: Gwrthdrawiad maes cyflwyno ffurflen", "Error: No form element found.": "Gwall: Ni chafwyd elfen ffurflen", "Update": "Diweddaru", "Color swatch": "Casgliad lliwiau", "Turquoise": "Gwyrddlas", "Green": "Gwyrdd", "Blue": "Glas", "Purple": "Porffor", "Navy Blue": "Dulas", "Dark Turquoise": "Gwyrddlas tywyll", "Dark Green": "Gwyrdd tywyll", "Medium Blue": "Glas canolig", "Medium Purple": "Porffor canolig", "Midnight Blue": "Glas y nos", "Yellow": "Melyn", "Orange": "Oren", "Red": "Coch", "Light Gray": "Llwyd golau", "Gray": "d", "Dark Yellow": "Melyn tywyll", "Dark Orange": "Oren tywyll", "Dark Red": "Coch tywyll", "Medium Gray": "Llwyd canolig", "Dark Gray": "Llwyd tywyll", "Light Green": "Gwyrdd Golau", "Light Yellow": "Melyn Golau", "Light Red": "Coch Golau", "Light Purple": "Porffor Golau", "Light Blue": "Glas Golau", "Dark Purple": "Porffor Tywyll", "Dark Blue": "Glas Tywyll", "Black": "Du", "White": "Gwyn", "Switch to or from fullscreen mode": "Newid i neu o'r modd sgr\u00een llawn", "Open help dialog": "Agor y ddeialog gymorth", "history": "hanes", "styles": "steiliau", "formatting": "fformatio", "alignment": "aliniad", "indentation": "mewnoli", "Font": "Ffont", "Size": "Maint", "More...": "Mwy...", "Select...": "Dewis...", "Preferences": "Dewisiadau", "Yes": "Iawn", "No": "Na", "Keyboard Navigation": "Llywio Bysellfwrdd", "Version": "Fersiwn", "Code view": "Golwg cod", "Open popup menu for split buttons": "Agor naidlen ar gyfer botymau hollt", "List Properties": "Rhestru Priodweddau", "List properties...": "Rhestru priodweddau...", "Start list at number": "Dechrau rhestr efo rhif", "Line height": "Uchder llinell", "comments": "Sylwadau", "Format Painter": "Brwsh Fformat", "Insert\/edit iframe": "Mewnosod\/golygu iframe", "Capitalization": "Priflythrennu", "lowercase": "llythrennau bach", "UPPERCASE": "PRIFLYTHRENNAU", "Title Case": "Priflythyren i bob gair", "permanent pen": "pen sefydlog", "Permanent Pen Properties": "Priodweddau Yswgrifbin Parhaol", "Permanent pen properties...": "Priodweddau ysgrifbin parhaol...", "case change": "Newid Cas", "page embed": "Mewnblannu i'r dudalen", "Advanced sort...": "Trefnu uwch...", "Advanced Sort": "Trefnu Uwch", "Sort table by column ascending": "Trefnu tabl yn \u00f4l colofn yn esgynnol", "Sort table by column descending": "Trefnu tabl yn \u00f4l colofn yn ddisgynnol", "Sort": "Trefnu", "Order": "Trefn", "Sort by": "Trefnu yn \u00f4l", "Ascending": "yn Esgynnol", "Descending": "yn Ddisgynnol", "Column {0}": "Colofn {0}", "Row {0}": "Rhes {0}", "Spellcheck...": "Gwirydd sillafu...", "Misspelled word": "Gair wedi ei gamsillafu", "Suggestions": "Awgrymiadau", "Change": "Newid", "Finding word suggestions": "Darganfod geiriau a awgrymir", "Success": "Llwyddiant", "Repair": "Trwsio", "Issue {0} of {1}": "Problem {0} o {1}", "Images must be marked as decorative or have an alternative text description": "Rhaid bod delwedd wedi ei marcio yn addurniadol neu gyda disgrifiad testun arall", "Images must have an alternative text description. Decorative images are not allowed.": "Rhaid bod gan ddelwedd ddisgrifiad testun arall. Ni chaniateir delweddau addurniadol.", "Or provide alternative text:": "Neu darparu testun arall:", "Make image decorative:": "Gwneud delwedd yn addurniadol:", "ID attribute must be unique": "Rhaid i'r priodoledd ID fod yn unigryw", "Make ID unique": "Gwneud yr ID yn unigryw", "Keep this ID and remove all others": "Cadwch yr ID hwn a dileu pob un arall", "Remove this ID": "Dileu'r ID hwn", "Remove all IDs": "Dileu pob ID", "Checklist": "Rhestr wirio", "Anchor": "Angor", "Special character": "Nod arbennig", "Color": "Lliw", "Document properties": "Priodweddau'r ddogfen", "Image description": "Disgrifiad y ddelwedd", "Image": "Delwedd", "Insert link": "Mewnosod dolen", "Link": "Dolen", "Target": "Targed", "Media": "Cyfrwng", "Poster": "Poster", "Print": "Argraffu", "Whole words": "Geiriau cyfan", "Find and replace": "Chwilio ac amnewid", "Prev": "Blaenorol", "Insert template": "Mewnosod templed" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/da.js ================================================ tinymce.addI18n('da',{ "Redo": "Gendan", "Undo": "Fortryd", "Cut": "Klip", "Copy": "Kopier", "Paste": "S\u00e6t ind", "Select all": "V\u00e6lg alle", "New document": "Nyt dokument", "Ok": "Ok", "Cancel": "Annuller", "Visual aids": "Visuel hj\u00e6lp", "Bold": "Fed", "Italic": "Kursiv", "Underline": "Understreget", "Strikethrough": "Gennemstreget", "Superscript": "H\u00e6vet skrift", "Subscript": "S\u00e6nket skrift", "Clear formatting": "Nulstil formattering", "Align left": "Opstil til venstre", "Align center": "Centrer", "Align right": "Opstil til h\u00f8jre", "Justify": "Justering", "Bullet list": "Punktopstillet liste", "Numbered list": "Nummereret liste", "Decrease indent": "Formindsk indrykning", "Increase indent": "For\u00f8g indrykning", "Close": "Luk", "Formats": "Formater", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Din browser underst\u00f8tter ikke direkte adgang til udklipsholder. Benyt Ctrl+X\/C\/ tastaturgenveje i stedet for.", "Headers": "Overskrifter", "Header 1": "Overskrift 1", "Header 2": "Overskrift 2", "Header 3": "Overskrift 3", "Header 4": "Overskrift 4", "Header 5": "Overskrift 5", "Header 6": "Overskrift 6", "Headings": "Overskrifter", "Heading 1": "Overskrift 1", "Heading 2": "Overskrift 2", "Heading 3": "Overskrift 3", "Heading 4": "Overskrift 4", "Heading 5": "Overskrift 5", "Heading 6": "Overskrift 6", "Preformatted": "Forudformateret", "Div": "Div", "Pre": "Pre", "Code": "Kode", "Paragraph": "Afsnit", "Blockquote": "Blockquote", "Inline": "Inline", "Blocks": "Blokke", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "S\u00e6t ind er indstillet til at inds\u00e6tte som ren tekst. Indhold bliver nu indsat uden formatering indtil du \u00e6ndrer indstillingen.", "Fonts": "Skrifttyper", "Font Sizes": "Skriftst\u00f8rrelse", "Class": "Class", "Browse for an image": "S\u00f8g efter et billede", "OR": "OR", "Drop an image here": "Slip et billede her", "Upload": "Upload", "Block": "Blok\u00e9r", "Align": "Align", "Default": "Standard", "Circle": "Cirkel", "Disc": "Disk", "Square": "Kvadrat", "Lower Alpha": "Lower Alpha", "Lower Greek": "Lower Gr\u00e6sk", "Lower Roman": "Lower Roman", "Upper Alpha": "Upper Alpha", "Upper Roman": "Upper Roman", "Anchor...": "Anker...", "Name": "Navn", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id b\u00f8r starte med et bogstav, efterfulgt af bogstaver, tal, bindestreger, punktummer, koloner eller underscores.", "You have unsaved changes are you sure you want to navigate away?": "Du har ikke gemte \u00e6ndringer. Er du sikker p\u00e5 at du vil forts\u00e6tte?", "Restore last draft": "Genopret sidste kladde", "Special character...": "Specielle tegn...", "Source code": "Kildekode", "Insert\/Edit code sample": "Inds\u00e6t\/Ret kodeeksempel", "Language": "Sprog", "Code sample...": "Kodeeksempel...", "Color Picker": "Farvev\u00e6lger", "R": "R", "G": "G", "B": "B", "Left to right": "Venstre til h\u00f8jre", "Right to left": "H\u00f8jre til venstre", "Emoticons": "Emot-ikoner", "Emoticons...": "Emotikoner...", "Metadata and Document Properties": "Metadata og dokumentegenskaber", "Title": "Titel", "Keywords": "S\u00f8geord", "Description": "Beskrivelse", "Robots": "Robotter", "Author": "Forfatter", "Encoding": "Kodning", "Fullscreen": "Fuldsk\u00e6rm", "Action": "Handling", "Shortcut": "Genvej", "Help": "Hj\u00e6lp", "Address": "Adresse", "Focus to menubar": "Fokus p\u00e5 menulinjen", "Focus to toolbar": "Fokus p\u00e5 v\u00e6rkt\u00f8jslinjen", "Focus to element path": "Fokuser p\u00e5 elementvej", "Focus to contextual toolbar": "Fokuser p\u00e5 kontekstuelle v\u00e6rkt\u00f8jslinje", "Insert link (if link plugin activated)": "Inds\u00e6t link (hvis link plugin er aktiveret)", "Save (if save plugin activated)": "Gem (hvis save plugin er aktiveret)", "Find (if searchreplace plugin activated)": "Find (hvis searchreplace plugin er aktiveret)", "Plugins installed ({0}):": "Installerede plugins ({0}):", "Premium plugins:": "Premium plugins:", "Learn more...": "L\u00e6r mere...", "You are using {0}": "Du benytter {0}", "Plugins": "Plugins", "Handy Shortcuts": "Praktiske Genveje", "Horizontal line": "Vandret linie", "Insert\/edit image": "Inds\u00e6t\/ret billede", "Alternative description": "Alternativ beskrivelse", "Accessibility": "Tilg\u00e6ngelighed", "Image is decorative": "Billede er dekorativt", "Source": "Kilde", "Dimensions": "Dimensioner", "Constrain proportions": "Behold propertioner", "General": "Generet", "Advanced": "Avanceret", "Style": "Stil", "Vertical space": "Lodret afstand", "Horizontal space": "Vandret afstand", "Border": "Kant", "Insert image": "Inds\u00e6t billede", "Image...": "Billede...", "Image list": "Billede liste", "Rotate counterclockwise": "Drej modsat urets retning", "Rotate clockwise": "Drej med urets retning", "Flip vertically": "Flip vertikalt", "Flip horizontally": "Flip horisontalt", "Edit image": "Rediger billede", "Image options": "Billede indstillinger", "Zoom in": "Zoom ind", "Zoom out": "Zoom ud", "Crop": "Besk\u00e6r", "Resize": "Skaler", "Orientation": "Retning", "Brightness": "Lysstyrke", "Sharpen": "G\u00f8r skarpere", "Contrast": "Kontrast", "Color levels": "Farve niveauer", "Gamma": "Gamma", "Invert": "Inverter", "Apply": "Anvend", "Back": "Tilbage", "Insert date\/time": "Inds\u00e6t dato\/klokkeslet", "Date\/time": "Dato\/klokkeslet", "Insert\/edit link": "Inds\u00e6t\/ret link", "Text to display": "Vis tekst", "Url": "Url", "Open link in...": "\u00c5bn link med...", "Current window": "Aktuelle vindue", "None": "Ingen", "New window": "Nyt vindue", "Open link": "\u00c5ben link", "Remove link": "Fjern link", "Anchors": "Ankre", "Link...": "Link...", "Paste or type a link": "Inds\u00e6t eller skriv et link", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URLen som du angav ser ud til at v\u00e6re en email adresse. \u00d8nsker du at tilf\u00f8je det kr\u00e6vede prefiks mailto: ?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URLen som du angav ser ud til at v\u00e6re et eksternt link. \u00d8nsker du at tilf\u00f8je det kr\u00e6vede prefiks http:\/\/ ?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "URL'en som du angav ser ud til at v\u00e6re et eksternt link. \u00d8nsker du at tilf\u00f8je det n\u00f8dvendige https:\/\/ pr\u00e6fiks?", "Link list": "Link liste", "Insert video": "Inds\u00e6t video", "Insert\/edit video": "Inds\u00e6t\/ret video", "Insert\/edit media": "Inds\u00e6t\/ret medier", "Alternative source": "Alternativ kilde", "Alternative source URL": "Alternativ kilde URL", "Media poster (Image URL)": "Medieplakat (billede URL)", "Paste your embed code below:": "Inds\u00e6t din embed kode herunder:", "Embed": "Integrer", "Media...": "Medie...", "Nonbreaking space": "H\u00e5rdt mellemrum", "Page break": "Sideskift", "Paste as text": "Inds\u00e6t som ren tekst", "Preview": "Forh\u00e5ndsvisning", "Print...": "Udskriv...", "Save": "Gem", "Find": "Find", "Replace with": "Erstat med", "Replace": "Erstat", "Replace all": "Erstat alt", "Previous": "Forrige", "Next": "N\u00e6ste", "Find and Replace": "Find og erstat", "Find and replace...": "Find og erstat...", "Could not find the specified string.": "Kunne ikke finde s\u00f8getekst", "Match case": "STORE og sm\u00e5 bogstaver", "Find whole words only": "Find kun hele ord", "Find in selection": "Find i det valgte", "Spellcheck": "Stavekontrol", "Spellcheck Language": "Sprog til stavekontrol", "No misspellings found.": "Ingen stavefejl fundet.", "Ignore": "Ignorer", "Ignore all": "Ignorer alt", "Finish": "F\u00e6rdig", "Add to Dictionary": "Tilf\u00f8j til ordbog", "Insert table": "Inds\u00e6t tabel", "Table properties": "Tabel egenskaber", "Delete table": "Slet tabel", "Cell": "Celle", "Row": "R\u00e6kke", "Column": "Kolonne", "Cell properties": "Celle egenskaber", "Merge cells": "Flet celler", "Split cell": "Split celle", "Insert row before": "Inds\u00e6t r\u00e6kke f\u00f8r", "Insert row after": "Inds\u00e6t r\u00e6kke efter", "Delete row": "Slet r\u00e6kke", "Row properties": "R\u00e6kke egenskaber", "Cut row": "Klip r\u00e6kke", "Copy row": "Kopier r\u00e6kke", "Paste row before": "Inds\u00e6t r\u00e6kke f\u00f8r", "Paste row after": "Inds\u00e6t r\u00e6kke efter", "Insert column before": "Inds\u00e6t kolonne f\u00f8r", "Insert column after": "Inds\u00e6t kolonne efter", "Delete column": "Slet kolonne", "Cols": "Kolonne", "Rows": "R\u00e6kker", "Width": "Bredde", "Height": "H\u00f8jde", "Cell spacing": "Celle afstand", "Cell padding": "Celle padding", "Caption": "Tekst", "Show caption": "Vis overskrift", "Left": "Venstre", "Center": "Centrering", "Right": "H\u00f8jre", "Cell type": "Celle type", "Scope": "Anvendelsesomr\u00e5de", "Alignment": "Tilpasning", "H Align": "H juster", "V Align": "V juster", "Top": "Top", "Middle": "Midt", "Bottom": "Bund", "Header cell": "Sidehoved celle", "Row group": "R\u00e6kke gruppe", "Column group": "Kolonne gruppe", "Row type": "R\u00e6kke type", "Header": "Sidehoved", "Body": "Krop", "Footer": "Sidefod", "Border color": "Kant farve", "Insert template...": "Inds\u00e6t skabelon...", "Templates": "Skabeloner", "Template": "Skabelon", "Text color": "Tekst farve", "Background color": "Baggrunds farve", "Custom...": "Brugerdefineret...", "Custom color": "Brugerdefineret farve", "No color": "Ingen farve", "Remove color": "Fjern farve", "Table of Contents": "Indholdsfortegnelse", "Show blocks": "Vis klokke", "Show invisible characters": "Vis usynlige tegn", "Word count": "Optalte ord", "Count": "Antal", "Document": "Dokument", "Selection": "Valg", "Words": "Ord", "Words: {0}": "Ord: {0}", "{0} words": "{0} ord", "File": "Fil", "Edit": "Rediger", "Insert": "Inds\u00e6t", "View": "Vis", "Format": "Format", "Table": "Tabel", "Tools": "V\u00e6rkt\u00f8j", "Powered by {0}": "Drevet af {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text omr\u00e5de. Tryk ALT-F9 for menu. Tryk ALT-F10 for toolbar. Tryk ALT-0 for hj\u00e6lp", "Image title": "Billedtitel", "Border width": "Kantbredde", "Border style": "Kantstil", "Error": "Fejl", "Warn": "Advar", "Valid": "Gyldig", "To open the popup, press Shift+Enter": "Tryk skift + enter for at \u00e5bne pop op", "Rich Text Area. Press ALT-0 for help.": "Rich tekst omr\u00e5de. Tryk p\u00e5 ALT-0 for hj\u00e6lp.", "System Font": "Systemskrifttype", "Failed to upload image: {0}": "Mislykket billed-upload:", "Failed to load plugin: {0} from url {1}": "Mislykket plugin indl\u00e6sning: {0} fra url {1}", "Failed to load plugin url: {0}": "Mislykket indl\u00e6sning af plugin-url: {0}", "Failed to initialize plugin: {0}": "Mislykket initiering a plugin: {0}", "example": "eksempel", "Search": "S\u00f8g", "All": "Alle", "Currency": "Valuta", "Text": "Tekst", "Quotations": "Anf\u00f8rselstegn", "Mathematical": "Matematiske tegn", "Extended Latin": "Udvidet Latin", "Symbols": "Symboler", "Arrows": "Pile", "User Defined": "Brugerdefineret", "dollar sign": "dollartegn", "currency sign": "valutategn", "euro-currency sign": "euro-tegn", "colon sign": "kolontegn", "cruzeiro sign": "cruzeiro-tegn", "french franc sign": "fransk frank-tegn", "lira sign": "lira-tegn", "mill sign": "mill-tegn", "naira sign": "naira-tegn", "peseta sign": "peseta-tegn", "rupee sign": "rupee-tegn", "won sign": "won-tegn", "new sheqel sign": "ny sheqel-tegn", "dong sign": "dong-tegn", "kip sign": "kip-tegn", "tugrik sign": "tugrik-tegn", "drachma sign": "drakmer-tegn", "german penny symbol": "tysk penny-symbol", "peso sign": "peso-tegn", "guarani sign": "guarani-tegn", "austral sign": "austral-tegn", "hryvnia sign": "hryvnia-tegn", "cedi sign": "cedi-tegn", "livre tournois sign": "livre tournois-tegn", "spesmilo sign": "spesmilo-tegn", "tenge sign": "tenge-tegn", "indian rupee sign": "indisk rupee-tegn", "turkish lira sign": "tyrkisk lira-tegn", "nordic mark sign": "nordisk mark-tegn", "manat sign": "manat-tegn", "ruble sign": "rubel-tegn", "yen character": "yen-tegn", "yuan character": "yuan-tegn", "yuan character, in hong kong and taiwan": "yuan-tegn, i hong kong og taiwan", "yen\/yuan character variant one": "yen\/yuan-tegn variant en", "Loading emoticons...": "Indl\u00e6ser emotikoner...", "Could not load emoticons": "Kunne ikke indl\u00e6se emotikoner", "People": "Folk", "Animals and Nature": "Dyr og natur", "Food and Drink": "F\u00f8de og drikke", "Activity": "Aktivitet", "Travel and Places": "Rejser og steder", "Objects": "Objekter", "Flags": "Flag", "Characters": "Tegn", "Characters (no spaces)": "Tegn (uden mellemrum)", "{0} characters": "{0} tegn", "Error: Form submit field collision.": "Fejl: Form submit felt kollision", "Error: No form element found.": "Fejl: Ingen form element fundet.", "Update": "Opdater", "Color swatch": "Farvepr\u00f8ve", "Turquoise": "Turkis", "Green": "Gr\u00f8n", "Blue": "Bl\u00e5", "Purple": "Lilla", "Navy Blue": "Marinebl\u00e5", "Dark Turquoise": "M\u00f8rketurkis", "Dark Green": "M\u00f8rkegr\u00f8n", "Medium Blue": "Medium bl\u00e5", "Medium Purple": "Medium lilla", "Midnight Blue": "Midnatsbl\u00e5", "Yellow": "Gul", "Orange": "Orange", "Red": "R\u00f8d", "Light Gray": "Lysegr\u00e5", "Gray": "Gr\u00e5", "Dark Yellow": "M\u00f8rkegul", "Dark Orange": "M\u00f8rkeorange", "Dark Red": "M\u00f8rker\u00f8d", "Medium Gray": "Mellemgr\u00e5", "Dark Gray": "M\u00f8rkegr\u00e5", "Light Green": "Lysegr\u00f8n", "Light Yellow": "Lysegul", "Light Red": "Lyser\u00f8d", "Light Purple": "Lyslilla", "Light Blue": "Lysebl\u00e5", "Dark Purple": "M\u00f8rkelilla", "Dark Blue": "M\u00f8rkebl\u00e5", "Black": "Sort", "White": "Hvid", "Switch to or from fullscreen mode": "Skift til eller fra fuldsk\u00e6rmstilstand", "Open help dialog": "\u00c5bn hj\u00e6lpedialog", "history": "historie", "styles": "stile", "formatting": "formatering", "alignment": "justering", "indentation": "indrykning", "Font": "Skrifttype", "Size": "St\u00f8rrelse", "More...": "Mere...", "Select...": "V\u00e6lg...", "Preferences": "Pr\u00e6ferencer", "Yes": "Ja", "No": "Nej", "Keyboard Navigation": "Navigation med tastatur", "Version": "Version", "Code view": "Kodevisning", "Open popup menu for split buttons": "\u00c5ben popup menu for split knapper", "List Properties": "List indstillinger", "List properties...": "List indstillinger...", "Start list at number": "Start liste ved nummer", "Line height": "Linjeh\u00f8jde", "comments": "kommentarer", "Format Painter": "Formatpensel", "Insert\/edit iframe": "Inds\u00e6t\/rediger iframe", "Capitalization": "Store bogstaver", "lowercase": "sm\u00e5 bogstaver", "UPPERCASE": "STORE BOGSTAVER", "Title Case": "Stort begyndelsesbogstav", "permanent pen": "permanent pen", "Permanent Pen Properties": "Permanente penegenskaber", "Permanent pen properties...": "Permanente penegenskaber...", "case change": "\u00e6ndring af stort\/sm\u00e5t", "page embed": "side indlejring", "Advanced sort...": "Avanceret sortering...", "Advanced Sort": "Avanceret sortering", "Sort table by column ascending": "Sorter tabel efter kolonne stigende", "Sort table by column descending": "Sorter tabel efter kolonne faldende", "Sort": "Sorter", "Order": "R\u00e6kkef\u00f8lge", "Sort by": "Sorter efter", "Ascending": "Stigende", "Descending": "Faldende", "Column {0}": "Kolonne {0}", "Row {0}": "R\u00e6kke {0}", "Spellcheck...": "Stavekontrol...", "Misspelled word": "Ord med stavefejl", "Suggestions": "Forslag", "Change": "\u00c6ndring", "Finding word suggestions": "Finder ord forslag", "Success": "Succes", "Repair": "Reparer", "Issue {0} of {1}": "Problem {0} ud af {1}", "Images must be marked as decorative or have an alternative text description": "Billeder skal markeres som dekorative eller have en alternativ tekstbeskrivelse", "Images must have an alternative text description. Decorative images are not allowed.": "Billeder skal have en alternativ tekstbeskrivelse. Dekorative billeder er ikke tilladte.", "Or provide alternative text:": "Eller angiv en alternativ tekst:", "Make image decorative:": "G\u00f8r billede dekorativ:", "ID attribute must be unique": "ID attribut skal v\u00e6re unik", "Make ID unique": "G\u00f8r ID unik", "Keep this ID and remove all others": "Behold dette ID og fjern alle andre", "Remove this ID": "Fjern dette ID", "Remove all IDs": "Fjern alle ID'er", "Checklist": "Kontrolliste", "Anchor": "Anchor", "Special character": "Specielle tegn", "Code sample": "Kodepr\u00f8ve", "Color": "Farve", "Document properties": "Dokument egenskaber", "Image description": "Billede beskrivelse", "Image": "Billede", "Insert link": "Inds\u00e6t link", "Target": "Target", "Link": "Link", "Poster": "Poster", "Media": "Medier", "Print": "Udskriv", "Prev": "Forrige", "Find and replace": "Find og erstat", "Whole words": "Hele ord", "Insert template": "Inds\u00e6t skabelon" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/de.js ================================================ tinymce.addI18n('de',{ "Redo": "Wiederholen", "Undo": "R\u00fcckg\u00e4ngig machen", "Cut": "Ausschneiden", "Copy": "Kopieren", "Paste": "Einf\u00fcgen", "Select all": "Alles ausw\u00e4hlen", "New document": "Neues Dokument", "Ok": "Ok", "Cancel": "Abbrechen", "Visual aids": "Visuelle Hilfen", "Bold": "Fett", "Italic": "Kursiv", "Underline": "Unterstrichen", "Strikethrough": "Durchgestrichen", "Superscript": "Hochgestellt", "Subscript": "Tiefgestellt", "Clear formatting": "Formatierung entfernen", "Align left": "Linksb\u00fcndig ausrichten", "Align center": "Zentrieren", "Align right": "Rechtsb\u00fcndig ausrichten", "Justify": "Blocksatz", "Bullet list": "Aufz\u00e4hlung", "Numbered list": "Nummerierte Liste", "Decrease indent": "Einzug verkleinern", "Increase indent": "Einzug vergr\u00f6\u00dfern", "Close": "Schlie\u00dfen", "Formats": "Formate", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Ihr Browser unterst\u00fctzt leider keinen direkten Zugriff auf die Zwischenablage. Bitte benutzen Sie die Tastenkombinationen Strg+X\/C\/V.", "Headers": "\u00dcberschriften", "Header 1": "\u00dcberschrift 1", "Header 2": "\u00dcberschrift 2", "Header 3": "\u00dcberschrift 3", "Header 4": "\u00dcberschrift 4", "Header 5": "\u00dcberschrift 5", "Header 6": "\u00dcberschrift 6", "Headings": "\u00dcberschriften", "Heading 1": "Kopfzeile 1", "Heading 2": "Kopfzeile 2", "Heading 3": "Kopfzeile 3", "Heading 4": "Kopfzeile 4", "Heading 5": "Kopfzeile 5", "Heading 6": "Kopfzeile 6", "Preformatted": "Vorformatiert", "Div": "Div", "Pre": "Pre", "Code": "Code", "Paragraph": "Absatz", "Blockquote": "Blockquote", "Inline": "Zeichenformate", "Blocks": "Bl\u00f6cke", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Einf\u00fcgen ist nun im einfachen Textmodus. Inhalte werden ab jetzt als unformatierter Text eingef\u00fcgt, bis Sie diese Einstellung wieder ausschalten!", "Fonts": "Schriftarten", "Font Sizes": "Schriftgr\u00f6\u00dfe", "Class": "Klasse", "Browse for an image": "Bild...", "OR": "ODER", "Drop an image here": "Bild hier ablegen", "Upload": "Hochladen", "Block": "Blocksatz", "Align": "Ausrichten", "Default": "Standard", "Circle": "Kreis", "Disc": "Punkt", "Square": "Quadrat", "Lower Alpha": "Kleinbuchstaben", "Lower Greek": "Griechische Kleinbuchstaben", "Lower Roman": "R\u00f6mische Zahlen (Kleinbuchstaben)", "Upper Alpha": "Gro\u00dfbuchstaben", "Upper Roman": "R\u00f6mische Zahlen (Gro\u00dfbuchstaben)", "Anchor...": "Textmarke", "Name": "Name", "Id": "Kennung", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Die Kennung sollte mit einem Buchstaben anfangen. Nachfolgend nur Buchstaben, Zahlen, Striche (Minus), Punkte, Kommas und Unterstriche.", "You have unsaved changes are you sure you want to navigate away?": "Die \u00c4nderungen wurden noch nicht gespeichert, sind Sie sicher, dass Sie diese Seite verlassen wollen?", "Restore last draft": "Letzten Entwurf wiederherstellen", "Special character...": "Sonderzeichen...", "Source code": "Quelltext", "Insert\/Edit code sample": "Codebeispiel einf\u00fcgen\/bearbeiten", "Language": "Sprache", "Code sample...": "Codebeispiel...", "Color Picker": "Farbwahl", "R": "R", "G": "G", "B": "B", "Left to right": "Von links nach rechts", "Right to left": "Von rechts nach links", "Emoticons": "Emoticons", "Emoticons...": "Emoticons...", "Metadata and Document Properties": "Dokument-Eigenschaften und -Metadaten", "Title": "Titel", "Keywords": "Sch\u00fcsselw\u00f6rter", "Description": "Beschreibung", "Robots": "Robots", "Author": "Verfasser", "Encoding": "Zeichenkodierung", "Fullscreen": "Vollbild", "Action": "Aktion", "Shortcut": "Shortcut", "Help": "Hilfe", "Address": "Adresse", "Focus to menubar": "Fokus auf Men\u00fcleiste", "Focus to toolbar": "Fokus auf Werkzeugleiste", "Focus to element path": "Fokus auf Elementpfad", "Focus to contextual toolbar": "Fokus auf kontextbezogene Werkzeugleiste", "Insert link (if link plugin activated)": "Link einf\u00fcgen (wenn Link-Plugin aktiviert ist)", "Save (if save plugin activated)": "Speichern (wenn Save-Plugin aktiviert ist)", "Find (if searchreplace plugin activated)": "Suchen einf\u00fcgen (wenn Suchen\/Ersetzen-Plugin aktiviert ist)", "Plugins installed ({0}):": "installierte Plugins ({0}):", "Premium plugins:": "Premium Plugins:", "Learn more...": "Erfahren Sie mehr dazu...", "You are using {0}": "Sie verwenden {0}", "Plugins": "Plugins", "Handy Shortcuts": "Praktische Tastenkombinationen", "Horizontal line": "Horizontale Linie", "Insert\/edit image": "Bild einf\u00fcgen\/bearbeiten", "Alternative description": "Alternative Beschreibung", "Accessibility": "Barrierefreiheit", "Image is decorative": "Bild ist dekorativ", "Source": "Quelle", "Dimensions": "Abmessungen", "Constrain proportions": "Seitenverh\u00e4ltnis beibehalten", "General": "Allgemein", "Advanced": "Erweitert", "Style": "Stil", "Vertical space": "Vertikaler Abstand", "Horizontal space": "Horizontaler Abstand", "Border": "Rahmen", "Insert image": "Bild einf\u00fcgen", "Image...": "Bild...", "Image list": "Bildliste", "Rotate counterclockwise": "Gegen den Uhrzeigersinn drehen", "Rotate clockwise": "Im Uhrzeigersinn drehen", "Flip vertically": "Vertikal spiegeln", "Flip horizontally": "Horizontal spiegeln", "Edit image": "Bild bearbeiten", "Image options": "Bildeigenschaften", "Zoom in": "Ansicht vergr\u00f6\u00dfern", "Zoom out": "Ansicht verkleinern", "Crop": "Bescheiden", "Resize": "Skalieren", "Orientation": "Ausrichtung", "Brightness": "Helligkeit", "Sharpen": "Sch\u00e4rfen", "Contrast": "Kontrast", "Color levels": "Farbwerte", "Gamma": "Gamma", "Invert": "Invertieren", "Apply": "Anwenden", "Back": "Zur\u00fcck", "Insert date\/time": "Datum\/Uhrzeit einf\u00fcgen ", "Date\/time": "Datum\/Uhrzeit", "Insert\/edit link": "Link einf\u00fcgen\/bearbeiten", "Text to display": "Anzuzeigender Text", "Url": "URL", "Open link in...": "Link \u00f6ffnen in...", "Current window": "Aktuelles Fenster", "None": "Keine", "New window": "Neues Fenster", "Open link": "Link \u00f6ffnen", "Remove link": "Link entfernen", "Anchors": "Textmarken", "Link...": "Link...", "Paste or type a link": "Link einf\u00fcgen oder eintippen", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Diese Adresse scheint eine E-Mail-Adresse zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"mailto:\" voranstellen?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Diese Adresse scheint ein externer Link zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"http:\/\/\" voranstellen?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Die eingegebene URL scheint ein externer Link zu sein. Soll das fehlende https:\/\/ davor erg\u00e4nzt werden?", "Link list": "Linkliste", "Insert video": "Video einf\u00fcgen", "Insert\/edit video": "Video einf\u00fcgen\/bearbeiten", "Insert\/edit media": "Medien einf\u00fcgen\/bearbeiten", "Alternative source": "Alternative Quelle", "Alternative source URL": "URL der alternativen Quelle", "Media poster (Image URL)": "Medienposter (Bild-URL)", "Paste your embed code below:": "F\u00fcgen Sie Ihren Einbettungscode hier ein:", "Embed": "Einbetten", "Media...": "Medien...", "Nonbreaking space": "Gesch\u00fctztes Leerzeichen", "Page break": "Seitenumbruch", "Paste as text": "Als Text einf\u00fcgen", "Preview": "Vorschau", "Print...": "Drucken...", "Save": "Speichern", "Find": "Suchen", "Replace with": "Ersetzen durch", "Replace": "Ersetzen", "Replace all": "Alles ersetzen", "Previous": "Vorherige", "Next": "Weiter", "Find and Replace": "Suchen und Ersetzen", "Find and replace...": "Suchen und ersetzen...", "Could not find the specified string.": "Die Zeichenfolge wurde nicht gefunden.", "Match case": "Gro\u00df-\/Kleinschreibung beachten", "Find whole words only": "Nur ganze W\u00f6rter suchen", "Find in selection": "In Auswahl suchen", "Spellcheck": "Rechtschreibpr\u00fcfung", "Spellcheck Language": "Sprache f\u00fcr die Rechtschreibpr\u00fcfung", "No misspellings found.": "Keine Rechtschreibfehler gefunden", "Ignore": "Ignorieren", "Ignore all": "Alles Ignorieren", "Finish": "Ende", "Add to Dictionary": "Zum W\u00f6rterbuch hinzuf\u00fcgen", "Insert table": "Tabelle einf\u00fcgen", "Table properties": "Tabelleneigenschaften", "Delete table": "Tabelle l\u00f6schen", "Cell": "Zelle", "Row": "Zeile", "Column": "Spalte", "Cell properties": "Zelleneigenschaften", "Merge cells": "Zellen verbinden", "Split cell": "Zelle aufteilen", "Insert row before": "Neue Zeile davor einf\u00fcgen ", "Insert row after": "Neue Zeile danach einf\u00fcgen", "Delete row": "Zeile l\u00f6schen", "Row properties": "Zeileneigenschaften", "Cut row": "Zeile ausschneiden", "Copy row": "Zeile kopieren", "Paste row before": "Zeile davor einf\u00fcgen", "Paste row after": "Zeile danach einf\u00fcgen", "Insert column before": "Neue Spalte davor einf\u00fcgen", "Insert column after": "Neue Spalte danach einf\u00fcgen", "Delete column": "Spalte l\u00f6schen", "Cols": "Spalten", "Rows": "Zeilen", "Width": "Breite", "Height": "H\u00f6he", "Cell spacing": "Zellenabstand", "Cell padding": "Zelleninnenabstand", "Caption": "Beschriftung", "Show caption": "Beschriftung anzeigen", "Left": "Linksb\u00fcndig", "Center": "Zentriert", "Right": "Rechtsb\u00fcndig", "Cell type": "Zellentyp", "Scope": "G\u00fcltigkeitsbereich", "Alignment": "Ausrichtung", "H Align": "Horizontale Ausrichtung", "V Align": "Vertikale Ausrichtung", "Top": "Oben", "Middle": "Mitte", "Bottom": "Unten", "Header cell": "Kopfzelle", "Row group": "Zeilengruppe", "Column group": "Spaltengruppe", "Row type": "Zeilentyp", "Header": "Kopfzeile", "Body": "Inhalt", "Footer": "Fu\u00dfzeile", "Border color": "Rahmenfarbe", "Insert template...": "Vorlage einf\u00fcgen...", "Templates": "Vorlagen", "Template": "Vorlage", "Text color": "Textfarbe", "Background color": "Hintergrundfarbe", "Custom...": "Benutzerdefiniert...", "Custom color": "Benutzerdefinierte Farbe", "No color": "Keine Farbe", "Remove color": "Farbauswahl aufheben", "Table of Contents": "Inhaltsverzeichnis", "Show blocks": "Bl\u00f6cke anzeigen", "Show invisible characters": "Unsichtbare Zeichen anzeigen", "Word count": "Anzahl der W\u00f6rter", "Count": "Anzahl", "Document": "Dokument", "Selection": "Auswahl", "Words": "W\u00f6rter", "Words: {0}": "W\u00f6rter: {0}", "{0} words": "{0} W\u00f6rter", "File": "Datei", "Edit": "Bearbeiten", "Insert": "Einf\u00fcgen", "View": "Ansicht", "Format": "Format", "Table": "Tabelle", "Tools": "Werkzeuge", "Powered by {0}": "Betrieben von {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich-Text- Area. Dr\u00fccken Sie ALT-F9 f\u00fcr das Men\u00fc. Dr\u00fccken Sie ALT-F10 f\u00fcr Symbolleiste. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe", "Image title": "Bildtitel", "Border width": "Rahmenbreite", "Border style": "Rahmenstil", "Error": "Fehler", "Warn": "Warnung", "Valid": "G\u00fcltig", "To open the popup, press Shift+Enter": "Dr\u00fccken Sie Umschalt+Eingabe, um das Popup-Fenster zu \u00f6ffnen.", "Rich Text Area. Press ALT-0 for help.": "Rich-Text-Bereich. Dr\u00fccken Sie Alt+0 f\u00fcr Hilfe.", "System Font": "Betriebssystemschriftart", "Failed to upload image: {0}": "Bild konnte nicht hochgeladen werden: {0}", "Failed to load plugin: {0} from url {1}": "Plugin konnte nicht geladen werden: {0} von URL {1}", "Failed to load plugin url: {0}": "Plugin-URL konnte nicht geladen werden: {0}", "Failed to initialize plugin: {0}": "Plugin konnte nicht initialisiert werden: {0}", "example": "Beispiel", "Search": "Suchen", "All": "Alles", "Currency": "W\u00e4hrung", "Text": "Text", "Quotations": "Anf\u00fchrungszeichen", "Mathematical": "Mathematisch", "Extended Latin": "Erweitertes Latein", "Symbols": "Symbole", "Arrows": "Pfeile", "User Defined": "Benutzerdefiniert", "dollar sign": "Dollarzeichen", "currency sign": "W\u00e4hrungssymbol", "euro-currency sign": "Eurozeichen", "colon sign": "Doppelpunkt", "cruzeiro sign": "Cruzeirozeichen", "french franc sign": "Franczeichen", "lira sign": "Lirezeichen", "mill sign": "Millzeichen", "naira sign": "Nairazeichen", "peseta sign": "Pesetazeichen", "rupee sign": "Rupiezeichen", "won sign": "Wonzeichen", "new sheqel sign": "Schekelzeichen", "dong sign": "Dongzeichen", "kip sign": "Kipzeichen", "tugrik sign": "Tugrikzeichen", "drachma sign": "Drachmezeichen", "german penny symbol": "Pfennigzeichen", "peso sign": "Pesozeichen", "guarani sign": "Guaranizeichen", "austral sign": "Australzeichen", "hryvnia sign": "Hrywnjazeichen", "cedi sign": "Cedizeichen", "livre tournois sign": "Livrezeichen", "spesmilo sign": "Spesmilozeichen", "tenge sign": "Tengezeichen", "indian rupee sign": "Indisches Rupiezeichen", "turkish lira sign": "T\u00fcrkisches Lirazeichen", "nordic mark sign": "Zeichen nordische Mark", "manat sign": "Manatzeichen", "ruble sign": "Rubelzeichen", "yen character": "Yenzeichen", "yuan character": "Yuanzeichen", "yuan character, in hong kong and taiwan": "Yuanzeichen in Hongkong und Taiwan", "yen\/yuan character variant one": "Yen-\/Yuanzeichen Variante 1", "Loading emoticons...": "Emoticons werden geladen...", "Could not load emoticons": "Emoticons konnten nicht geladen werden", "People": "Menschen", "Animals and Nature": "Tiere und Natur", "Food and Drink": "Essen und Trinken", "Activity": "Aktivit\u00e4t", "Travel and Places": "Reisen und Orte", "Objects": "Objekte", "Flags": "Flaggen", "Characters": "Zeichen", "Characters (no spaces)": "Zeichen (ohne Leerzeichen)", "{0} characters": "{0}\u00a0Zeichen", "Error: Form submit field collision.": "Fehler: Kollision der Formularbest\u00e4tigungsfelder.", "Error: No form element found.": "Fehler: Kein Formularelement gefunden.", "Update": "Aktualisieren", "Color swatch": "Farbpalette", "Turquoise": "T\u00fcrkis", "Green": "Gr\u00fcn", "Blue": "Blau", "Purple": "Violett", "Navy Blue": "Marineblau", "Dark Turquoise": "Dunkelt\u00fcrkis", "Dark Green": "Dunkelgr\u00fcn", "Medium Blue": "Mittleres Blau", "Medium Purple": "Mittelviolett", "Midnight Blue": "Mitternachtsblau", "Yellow": "Gelb", "Orange": "Orange", "Red": "Rot", "Light Gray": "Hellgrau", "Gray": "Grau", "Dark Yellow": "Dunkelgelb", "Dark Orange": "Dunkelorange", "Dark Red": "Dunkelrot", "Medium Gray": "Mittelgrau", "Dark Gray": "Dunkelgrau", "Light Green": "Hellgr\u00fcn", "Light Yellow": "Hellgelb", "Light Red": "Hellrot", "Light Purple": "Helllila", "Light Blue": "Hellblau", "Dark Purple": "Dunkellila", "Dark Blue": "Dunkelblau", "Black": "Schwarz", "White": "Wei\u00df", "Switch to or from fullscreen mode": "Vollbildmodus umschalten", "Open help dialog": "Hilfe-Dialog \u00f6ffnen", "history": "Historie", "styles": "Stile", "formatting": "Formatierung", "alignment": "Ausrichtung", "indentation": "Einr\u00fcckungen", "Font": "Schriftart", "Size": "Schriftgr\u00f6\u00dfe", "More...": "Mehr...", "Select...": "Auswahl...", "Preferences": "Einstellungen", "Yes": "Ja", "No": "Nein", "Keyboard Navigation": "Tastaturnavigation", "Version": "Version", "Code view": "Code Ansicht", "Open popup menu for split buttons": "\u00d6ffne Popup Menge um Buttons zu trennen", "List Properties": "Liste Eigenschaften", "List properties...": "Liste Eigenschaften", "Start list at number": "Beginne Liste mit Nummer", "Line height": "Liniendicke", "comments": "Anmerkungen", "Format Painter": "Format-Painter", "Insert\/edit iframe": "iframe einf\u00fcgen\/bearbeiten", "Capitalization": "Gro\u00dfschreibung", "lowercase": "Kleinbuchstaben", "UPPERCASE": "Gro\u00dfbuchstaben", "Title Case": "Gro\u00df-\/Kleinschreibung des Titels", "permanent pen": "Textmarker", "Permanent Pen Properties": "Eigenschaften von Permanent Pen", "Permanent pen properties...": "Eigenschaften von Permanent Pen...", "case change": "Gro\u00df-\/Kleinschreibung", "page embed": "Seite einbetten", "Advanced sort...": "Erweiterte Sortierung...", "Advanced Sort": "Erweiterte Sortierung", "Sort table by column ascending": "Tabelle aufsteigend nach Spalten sortieren", "Sort table by column descending": "Tabelle absteigend nach Spalten sortieren", "Sort": "Sortieren", "Order": "Reihenfolge", "Sort by": "Sortieren nach", "Ascending": "Aufsteigend", "Descending": "Absteigend", "Column {0}": "Spalte {0}", "Row {0}": "Reihe {0}", "Spellcheck...": "Rechtschreibpr\u00fcfung...", "Misspelled word": "Rechtschreibfehler", "Suggestions": "Vorschl\u00e4ge", "Change": "Ver\u00e4ndere", "Finding word suggestions": "Finde Wort Vorschl\u00e4ge", "Success": "Erfolg", "Repair": "Reparieren", "Issue {0} of {1}": "Fehler {0} von {1}", "Images must be marked as decorative or have an alternative text description": "Bilder m\u00fcssen entweder als dekorativ markiert werden oder eine alternative Beschreibung bekommen", "Images must have an alternative text description. Decorative images are not allowed.": "Bilder ben\u00f6tigen alternativen Text. Dekorative Bilder nicht erlaubt!", "Or provide alternative text:": "Oder definiere alternativen Text:", "Make image decorative:": "Markiere Bild als dekorativ:", "ID attribute must be unique": "ID muss einzigartig sein", "Make ID unique": "Mache diese ID einzigartig", "Keep this ID and remove all others": "Behalte diese ID und entferne alle anderen", "Remove this ID": "Entferne diese ID", "Remove all IDs": "Entferne alle IDs", "Checklist": "Checkliste", "Anchor": "Textmarke", "Special character": "Sonderzeichen", "Code sample": "Codebeispiel", "Color": "Farbe", "Document properties": "Dokumenteigenschaften", "Image description": "Bildbeschreibung", "Image": "Bild", "Insert link": "Link einf\u00fcgen", "Target": "Ziel", "Link": "Link", "Poster": "Poster", "Media": "Medium", "Print": "Drucken", "Prev": "Zur\u00fcck", "Find and replace": "Suchen und ersetzen", "Whole words": "Nur ganze W\u00f6rter", "Insert template": "Vorlage einf\u00fcgen " }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/es_419.js ================================================ tinymce.addI18n('es_419',{ "Redo": "Rehacer", "Undo": "Deshacer", "Cut": "Cortar", "Copy": "Copiar", "Paste": "Pegar", "Select all": "Seleccionar todo", "New document": "Nuevo documento", "Ok": "Ok", "Cancel": "Cancelar", "Visual aids": "Ayudas visuales", "Bold": "Negrita", "Italic": "Cursiva", "Underline": "Subrayado", "Strikethrough": "Tachado", "Superscript": "Super\u00edndice", "Subscript": "Sub\u00edndice", "Clear formatting": "Limpiar formato", "Align left": "Alinear a la izquierda", "Align center": "Centrar", "Align right": "Alinear a la derecha", "Justify": "Justificar", "Bullet list": "Lista de vi\u00f1etas", "Numbered list": "Lista numerada", "Decrease indent": "Disminuir sangr\u00eda", "Increase indent": "Aumentar sangr\u00eda", "Close": "Cerrar", "Formats": "Formatos", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Tu navegador no soporta acceso directo al portapapeles. Favor usar los comandos de teclado Ctrl+X\/C\/V", "Headers": "Encabezados", "Header 1": "Encabezado 1", "Header 2": "Encabezado 2", "Header 3": "Encabezado 3", "Header 4": "Encabezado 4", "Header 5": "Encabezado 5", "Header 6": "Encabezado 6", "Headings": "T\u00edtulos", "Heading 1": "T\u00edtulo 1", "Heading 2": "T\u00edtulo 2", "Heading 3": "T\u00edtulo 3", "Heading 4": "T\u00edtulo 4", "Heading 5": "T\u00edtulo 5", "Heading 6": "T\u00edtulo 6", "Preformatted": "Preformateado", "Div": "Div", "Pre": "Pre", "Code": "C\u00f3digo", "Paragraph": "P\u00e1rrafo", "Blockquote": "Cita", "Inline": "En l\u00ednea", "Blocks": "Bloques", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.", "Fonts": "Fonts", "Font Sizes": "Tama\u00f1os de Fuente", "Class": "Class", "Browse for an image": "Examinar imagen", "OR": "O", "Drop an image here": "Arrastrar imagen aqu\u00ed", "Upload": "Subir", "Block": "Bloque", "Align": "Alinear", "Default": "Default", "Circle": "Circle", "Disc": "Disc", "Square": "Square", "Lower Alpha": "Lower Alpha", "Lower Greek": "Lower Greek", "Lower Roman": "Lower Roman", "Upper Alpha": "Upper Alpha", "Upper Roman": "Upper Roman", "Anchor...": "Anchor...", "Name": "Name", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.", "You have unsaved changes are you sure you want to navigate away?": "You have unsaved changes are you sure you want to navigate away?", "Restore last draft": "Restore last draft", "Special character...": "Special character...", "Source code": "Source code", "Insert\/Edit code sample": "Insert\/Edit code sample", "Language": "Language", "Code sample...": "Code sample...", "Color Picker": "Color Picker", "R": "R", "G": "G", "B": "B", "Left to right": "Left to right", "Right to left": "Right to left", "Emoticons": "Emoticons", "Emoticons...": "Emoticons...", "Metadata and Document Properties": "Metadata and Document Properties", "Title": "Title", "Keywords": "Keywords", "Description": "Description", "Robots": "Robots", "Author": "Author", "Encoding": "Encoding", "Fullscreen": "Fullscreen", "Action": "Action", "Shortcut": "Shortcut", "Help": "Help", "Address": "Address", "Focus to menubar": "Focus to menubar", "Focus to toolbar": "Focus to toolbar", "Focus to element path": "Focus to element path", "Focus to contextual toolbar": "Focus to contextual toolbar", "Insert link (if link plugin activated)": "Insert link (if link plugin activated)", "Save (if save plugin activated)": "Save (if save plugin activated)", "Find (if searchreplace plugin activated)": "Find (if searchreplace plugin activated)", "Plugins installed ({0}):": "Plugins installed ({0}):", "Premium plugins:": "Premium plugins:", "Learn more...": "Learn more...", "You are using {0}": "You are using {0}", "Plugins": "Plugins", "Handy Shortcuts": "Handy Shortcuts", "Horizontal line": "Horizontal line", "Insert\/edit image": "Insert\/edit image", "Alternative description": "Descripci\u00f3n alternativa", "Accessibility": "Accesibilidad", "Image is decorative": "La imagen es decorativa", "Source": "Source", "Dimensions": "Dimensions", "Constrain proportions": "Constrain proportions", "General": "General", "Advanced": "Advanced", "Style": "Style", "Vertical space": "Vertical space", "Horizontal space": "Horizontal space", "Border": "Border", "Insert image": "Insert image", "Image...": "Image...", "Image list": "Image list", "Rotate counterclockwise": "Rotate counterclockwise", "Rotate clockwise": "Rotate clockwise", "Flip vertically": "Flip vertically", "Flip horizontally": "Flip horizontally", "Edit image": "Edit image", "Image options": "Image options", "Zoom in": "Zoom in", "Zoom out": "Zoom out", "Crop": "Crop", "Resize": "Resize", "Orientation": "Orientation", "Brightness": "Brightness", "Sharpen": "Sharpen", "Contrast": "Contrast", "Color levels": "Color levels", "Gamma": "Gamma", "Invert": "Invert", "Apply": "Apply", "Back": "Back", "Insert date\/time": "Insert date\/time", "Date\/time": "Date\/time", "Insert\/edit link": "Insert\/edit link", "Text to display": "Text to display", "Url": "Url", "Open link in...": "Open link in...", "Current window": "Current window", "None": "None", "New window": "New window", "Open link": "Enlace abierto", "Remove link": "Remove link", "Anchors": "Anchors", "Link...": "Link...", "Paste or type a link": "Paste or type a link", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "La URL que ingres\u00f3 parece ser un enlace externo. \u00bfDesea agregar el prefijo https:\/\/ requerido?", "Link list": "Link list", "Insert video": "Insert video", "Insert\/edit video": "Insert\/edit video", "Insert\/edit media": "Insert\/edit media", "Alternative source": "Alternative source", "Alternative source URL": "Alternative source URL", "Media poster (Image URL)": "Media poster (Image URL)", "Paste your embed code below:": "Paste your embed code below:", "Embed": "Embed", "Media...": "Media...", "Nonbreaking space": "Nonbreaking space", "Page break": "Page break", "Paste as text": "Paste as text", "Preview": "Preview", "Print...": "Print...", "Save": "Save", "Find": "Find", "Replace with": "Replace with", "Replace": "Replace", "Replace all": "Replace all", "Previous": "Previous", "Next": "Next", "Find and Replace": "Encontrar y Reemplazar", "Find and replace...": "Find and replace...", "Could not find the specified string.": "Could not find the specified string.", "Match case": "Match case", "Find whole words only": "Find whole words only", "Find in selection": "Encontrar en la selecci\u00f3n", "Spellcheck": "Spellcheck", "Spellcheck Language": "Spellcheck Language", "No misspellings found.": "No se encontraron errores ortogr\u00e1ficos.", "Ignore": "Ignore", "Ignore all": "Ignore all", "Finish": "Finish", "Add to Dictionary": "Add to Dictionary", "Insert table": "Insert table", "Table properties": "Table properties", "Delete table": "Delete table", "Cell": "Cell", "Row": "Row", "Column": "Column", "Cell properties": "Cell properties", "Merge cells": "Merge cells", "Split cell": "Split cell", "Insert row before": "Insert row before", "Insert row after": "Insert row after", "Delete row": "Delete row", "Row properties": "Row properties", "Cut row": "Cut row", "Copy row": "Copy row", "Paste row before": "Paste row before", "Paste row after": "Paste row after", "Insert column before": "Insert column before", "Insert column after": "Insert column after", "Delete column": "Delete column", "Cols": "Cols", "Rows": "Rows", "Width": "Width", "Height": "Height", "Cell spacing": "Cell spacing", "Cell padding": "Cell padding", "Caption": "Caption", "Show caption": "Show caption", "Left": "Left", "Center": "Center", "Right": "Right", "Cell type": "Cell type", "Scope": "Scope", "Alignment": "Alignment", "H Align": "H Align", "V Align": "V Align", "Top": "Top", "Middle": "Middle", "Bottom": "Bottom", "Header cell": "Header cell", "Row group": "Row group", "Column group": "Column group", "Row type": "Row type", "Header": "Header", "Body": "Body", "Footer": "Footer", "Border color": "Border color", "Insert template...": "Insert template...", "Templates": "Templates", "Template": "Template", "Text color": "Text color", "Background color": "Background color", "Custom...": "Custom...", "Custom color": "Custom color", "No color": "No color", "Remove color": "Remove color", "Table of Contents": "Table of Contents", "Show blocks": "Show blocks", "Show invisible characters": "Show invisible characters", "Word count": "Word count", "Count": "Count", "Document": "Document", "Selection": "Selection", "Words": "Words", "Words: {0}": "Words: {0}", "{0} words": "{0} words", "File": "File", "Edit": "Edit", "Insert": "Insert", "View": "View", "Format": "Format", "Table": "Table", "Tools": "Tools", "Powered by {0}": "Powered by {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help", "Image title": "Image title", "Border width": "Border width", "Border style": "Border style", "Error": "Error", "Warn": "Warn", "Valid": "Valid", "To open the popup, press Shift+Enter": "To open the popup, press Shift+Enter", "Rich Text Area. Press ALT-0 for help.": "Rich Text Area. Press ALT-0 for help.", "System Font": "System Font", "Failed to upload image: {0}": "Failed to upload image: {0}", "Failed to load plugin: {0} from url {1}": "Failed to load plugin: {0} from url {1}", "Failed to load plugin url: {0}": "Failed to load plugin url: {0}", "Failed to initialize plugin: {0}": "Failed to initialize plugin: {0}", "example": "example", "Search": "Search", "All": "All", "Currency": "Currency", "Text": "Text", "Quotations": "Quotations", "Mathematical": "Mathematical", "Extended Latin": "Extended Latin", "Symbols": "Symbols", "Arrows": "Arrows", "User Defined": "User Defined", "dollar sign": "dollar sign", "currency sign": "currency sign", "euro-currency sign": "euro-currency sign", "colon sign": "colon sign", "cruzeiro sign": "cruzeiro sign", "french franc sign": "french franc sign", "lira sign": "lira sign", "mill sign": "mill sign", "naira sign": "naira sign", "peseta sign": "peseta sign", "rupee sign": "rupee sign", "won sign": "won sign", "new sheqel sign": "new sheqel sign", "dong sign": "dong sign", "kip sign": "kip sign", "tugrik sign": "tugrik sign", "drachma sign": "drachma sign", "german penny symbol": "german penny symbol", "peso sign": "peso sign", "guarani sign": "guarani sign", "austral sign": "austral sign", "hryvnia sign": "hryvnia sign", "cedi sign": "cedi sign", "livre tournois sign": "livre tournois sign", "spesmilo sign": "spesmilo sign", "tenge sign": "tenge sign", "indian rupee sign": "indian rupee sign", "turkish lira sign": "turkish lira sign", "nordic mark sign": "nordic mark sign", "manat sign": "manat sign", "ruble sign": "ruble sign", "yen character": "yen character", "yuan character": "yuan character", "yuan character, in hong kong and taiwan": "yuan character, in hong kong and taiwan", "yen\/yuan character variant one": "yen\/yuan character variant one", "Loading emoticons...": "Loading emoticons...", "Could not load emoticons": "Could not load emoticons", "People": "People", "Animals and Nature": "Animals and Nature", "Food and Drink": "Food and Drink", "Activity": "Activity", "Travel and Places": "Travel and Places", "Objects": "Objects", "Flags": "Flags", "Characters": "Characters", "Characters (no spaces)": "Characters (no spaces)", "{0} characters": "{0} characters", "Error: Form submit field collision.": "Error: Form submit field collision.", "Error: No form element found.": "Error: No form element found.", "Update": "Update", "Color swatch": "Color swatch", "Turquoise": "Turquoise", "Green": "Green", "Blue": "Blue", "Purple": "Purple", "Navy Blue": "Navy Blue", "Dark Turquoise": "Dark Turquoise", "Dark Green": "Dark Green", "Medium Blue": "Medium Blue", "Medium Purple": "Medium Purple", "Midnight Blue": "Midnight Blue", "Yellow": "Yellow", "Orange": "Orange", "Red": "Red", "Light Gray": "Light Gray", "Gray": "Gray", "Dark Yellow": "Dark Yellow", "Dark Orange": "Dark Orange", "Dark Red": "Dark Red", "Medium Gray": "Medium Gray", "Dark Gray": "Dark Gray", "Light Green": "Light Green", "Light Yellow": "Light Yellow", "Light Red": "Light Red", "Light Purple": "Light Purple", "Light Blue": "Light Blue", "Dark Purple": "Dark Purple", "Dark Blue": "Dark Blue", "Black": "Black", "White": "White", "Switch to or from fullscreen mode": "Switch to or from fullscreen mode", "Open help dialog": "Open help dialog", "history": "history", "styles": "styles", "formatting": "formatting", "alignment": "alignment", "indentation": "indentation", "Font": "Font", "Size": "Size", "More...": "More...", "Select...": "Select...", "Preferences": "Preferences", "Yes": "Yes", "No": "No", "Keyboard Navigation": "Keyboard Navigation", "Version": "Version", "Code view": "Vista de c\u00f3digo", "Open popup menu for split buttons": "Abrir men\u00fa emergente para botones divididos", "List Properties": "Propiedades de Lista", "List properties...": "Propiedades de lista...", "Start list at number": "Iniciar lista en el n\u00famero", "Line height": "Altura de la l\u00ednea", "comments": "comments", "Format Painter": "Format Painter", "Insert\/edit iframe": "Insert\/edit iframe", "Capitalization": "Capitalization", "lowercase": "lowercase", "UPPERCASE": "UPPERCASE", "Title Case": "Title Case", "permanent pen": "permanent pen", "Permanent Pen Properties": "Permanent Pen Properties", "Permanent pen properties...": "Permanent pen properties...", "case change": "Cambiar May\u00fasculas y Min\u00fasculas", "page embed": "p\u00e1gina incrustada", "Advanced sort...": "Orden avanzado...", "Advanced Sort": "Orden Avanzado", "Sort table by column ascending": "Ordenar tabla por columna ascendente", "Sort table by column descending": "Ordenar tabla por columna descendente", "Sort": "Ordenar", "Order": "Orden", "Sort by": "Ordenar por", "Ascending": "Ascendente", "Descending": "Descendiente", "Column {0}": "Columna {0}", "Row {0}": "Fila {0}", "Spellcheck...": "Corrector...", "Misspelled word": "Palabra mal escrita", "Suggestions": "Sugerencias", "Change": "Cambiar", "Finding word suggestions": "Encontrar sugerencias de palabras", "Success": "\u00c9xito", "Repair": "Reparar", "Issue {0} of {1}": "Problema {0} de {1}", "Images must be marked as decorative or have an alternative text description": "Las im\u00e1genes deben estar marcadas como decorativas o tener una descripci\u00f3n de texto alternativa", "Images must have an alternative text description. Decorative images are not allowed.": "Las im\u00e1genes deben tener una descripci\u00f3n de texto alternativa. No se permiten im\u00e1genes decorativas.", "Or provide alternative text:": "O proporcione texto alternativo:", "Make image decorative:": "Hacer la imagen decorativa:", "ID attribute must be unique": "El atributo de ID debe ser \u00fanico", "Make ID unique": "Hacer que ID sea \u00fanica", "Keep this ID and remove all others": "Conserve esta ID y elimine todas las dem\u00e1s", "Remove this ID": "Eliminar esta ID", "Remove all IDs": "Eliminar todos los ID", "Checklist": "Lista de Verificaci\u00f3n", "Anchor": "Anchor", "Special character": "Special character", "Code sample": "Code sample", "Color": "Color", "Document properties": "Document properties", "Image description": "Image description", "Image": "Image", "Insert link": "Insert link", "Target": "Target", "Link": "Link", "Poster": "Poster", "Media": "Media", "Print": "Print", "Prev": "Prev", "Find and replace": "Find and replace", "Whole words": "Whole words", "Insert template": "Insert template" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/fa.js ================================================ tinymce.addI18n('fa',{ "Redo": "\u0628\u0627\u0632\u0627\u0646\u062c\u0627\u0645", "Undo": "\u0648\u0627\u06af\u0631\u062f", "Cut": "\u0628\u0631\u0634", "Copy": "\u06a9\u067e\u06cc", "Paste": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646", "Select all": "\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647", "New document": "\u0633\u0646\u062f \u062c\u062f\u06cc\u062f", "Ok": "\u062a\u0623\u06cc\u06cc\u062f", "Cancel": "\u0644\u063a\u0648", "Visual aids": "\u06a9\u0645\u06a9\u200c\u0647\u0627\u06cc \u0628\u0635\u0631\u06cc", "Bold": "\u067e\u0631\u0631\u0646\u06af", "Italic": "\u06a9\u062c", "Underline": "\u0632\u06cc\u0631 \u062e\u0637 \u062f\u0627\u0631", "Strikethrough": "\u062e\u0637 \u0632\u062f\u0646", "Superscript": "\u0628\u0627\u0644\u0627\u0646\u06af\u0627\u0634\u062a", "Subscript": "\u0632\u06cc\u0631\u0646\u06af\u0627\u0634\u062a", "Clear formatting": "\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc", "Align left": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc \u0627\u0632 \u0686\u067e", "Align center": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc \u0627\u0632 \u0648\u0633\u0637", "Align right": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc \u0627\u0632 \u0631\u0627\u0633\u062a", "Justify": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc \u062f\u0648\u0637\u0631\u0641\u0647", "Bullet list": "\u0641\u0647\u0631\u0633\u062a \u0646\u0634\u0627\u0646\u0647\u200c\u062f\u0627\u0631", "Numbered list": "\u0641\u0647\u0631\u0633\u062a \u0634\u0645\u0627\u0631\u0647\u200c\u062f\u0627\u0631", "Decrease indent": "\u06a9\u0627\u0647\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc", "Increase indent": "\u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc", "Close": "\u0628\u0633\u062a\u0646", "Formats": "\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc\u200c\u0647\u0627", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0645\u0631\u0648\u0631\u06af\u0631 \u0634\u0645\u0627 \u0627\u0632 \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u0633\u062a\u0642\u06cc\u0645 \u0628\u0647 \u06a9\u0644\u06cc\u067e\u200c\u0628\u0648\u0631\u062f \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f\u060c \u0644\u0637\u0641\u0627\u064b \u0627\u0632 \u0645\u06cc\u0627\u0646\u0628\u0631\u0647\u0627\u06cc Ctrl+X\/C\/V \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f.", "Headers": "\u0633\u0631\u0628\u0631\u06af\u200c\u0647\u0627", "Header 1": "\u0633\u0631\u0628\u0631\u06af 1", "Header 2": "\u0633\u0631\u0628\u0631\u06af 2", "Header 3": "\u0633\u0631\u0628\u0631\u06af 3", "Header 4": "\u0633\u0631\u0628\u0631\u06af 4", "Header 5": "\u0633\u0631\u0628\u0631\u06af 5", "Header 6": "\u0633\u0631\u0628\u0631\u06af 6", "Headings": "\u0633\u0631\u0641\u0635\u0644\u200c\u0647\u0627", "Heading 1": "\u0633\u0631\u0641\u0635\u0644 1", "Heading 2": "\u0633\u0631\u0641\u0635\u0644 2", "Heading 3": "\u0633\u0631\u0641\u0635\u0644 3", "Heading 4": "\u0633\u0631\u0641\u0635\u0644 4", "Heading 5": "\u0633\u0631\u0641\u0635\u0644 5", "Heading 6": "\u0633\u0631\u0641\u0635\u0644 6", "Preformatted": "\u0627\u0632 \u067e\u06cc\u0634 \u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc\u200c\u0634\u062f\u0647", "Div": "\u0628\u062e\u0634", "Pre": "\u067e\u06cc\u0634", "Code": "\u06a9\u062f", "Paragraph": "\u067e\u0627\u0631\u0627\u06af\u0631\u0627\u0641", "Blockquote": "\u0646\u0642\u0644 \u0642\u0648\u0644 \u0628\u0644\u0648\u06a9\u06cc", "Inline": "\u0647\u0645\u200c\u0631\u0627\u0633\u062a\u0627", "Blocks": "\u0628\u0644\u0648\u06a9\u200c\u0647\u0627", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0647\u0645 \u0627\u06a9\u0646\u0648\u0646 \u062f\u0631 \u062d\u0627\u0644\u062a \u0645\u062a\u0646 \u0633\u0627\u062f\u0647 \u0627\u0633\u062a. \u062a\u0627 \u0632\u0645\u0627\u0646\u06cc \u06a9\u0647 \u0627\u06cc\u0646 \u062d\u0627\u0644\u062a \u0631\u0627 \u063a\u06cc\u0631\u200c\u0641\u0639\u0627\u0644 \u0646\u06a9\u0646\u06cc\u062f\u060c \u0645\u062d\u062a\u0648\u0627 \u062f\u0631 \u062d\u0627\u0644\u062a \u0645\u062a\u0646 \u0633\u0627\u062f\u0647 \u0627\u0636\u0627\u0641\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.", "Fonts": "\u0641\u0648\u0646\u062a\u200c\u200c\u0647\u0627", "Font Sizes": "\u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0641\u0648\u0646\u062a", "Class": "\u0637\u0628\u0642\u0647", "Browse for an image": "\u06af\u0634\u062a\u0646 \u0628\u0631\u0627\u06cc \u0639\u06a9\u0633 \u0645\u0648\u0631\u062f \u0646\u0638\u0631", "OR": "OR", "Drop an image here": "\u062a\u0635\u0648\u06cc\u0631 \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u0631\u0627 \u0627\u06cc\u0646\u062c\u0627 \u0631\u0647\u0627 \u06a9\u0646\u06cc\u062f", "Upload": "\u0622\u067e\u0644\u0648\u062f", "Block": "\u0628\u0644\u0648\u06a9", "Align": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc", "Default": "\u067e\u06cc\u0634\u0641\u0631\u0636", "Circle": "\u062f\u0627\u06cc\u0631\u0647", "Disc": "\u062f\u06cc\u0633\u06a9", "Square": "\u0645\u0631\u0628\u0639", "Lower Alpha": "\u0622\u0644\u0641\u0627\u0621 \u06a9\u0648\u0686\u06a9", "Lower Greek": "\u06cc\u0648\u0646\u0627\u0646\u06cc \u06a9\u0648\u0686\u06a9", "Lower Roman": "\u0631\u0648\u0645\u06cc \u06a9\u0648\u0686\u06a9", "Upper Alpha": "\u0622\u0644\u0641\u0627\u0621 \u0628\u0632\u0631\u06af", "Upper Roman": "\u0631\u0648\u0645\u06cc \u0628\u0632\u0631\u06af", "Anchor...": "\u0642\u0644\u0627\u0628...", "Name": "\u0646\u0627\u0645", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.", "You have unsaved changes are you sure you want to navigate away?": "\u0634\u0645\u0627 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0630\u062e\u06cc\u0631\u0647 \u0646\u0634\u062f\u0647 \u0627\u06cc \u062f\u0627\u0631\u06cc\u062f\u060c \u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0628\u0631\u0648\u06cc\u062f\u061f", "Restore last draft": "\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646 \u0622\u062e\u0631\u06cc\u0646 \u067e\u06cc\u0634 \u0646\u0648\u06cc\u0633", "Special character...": "\u0646\u0648\u06cc\u0633\u06c0 \u0648\u06cc\u0698\u0647...", "Source code": "\u06a9\u062f \u0645\u0646\u0628\u0639", "Insert\/Edit code sample": "Insert\/Edit code sample", "Language": "Language", "Code sample...": "\u0646\u0645\u0648\u0646\u0647 \u06a9\u062f...", "Color Picker": "\u0627\u0646\u062a\u062e\u0627\u0628\u200c\u06a9\u0646\u0646\u062f\u0647 \u0631\u0646\u06af", "R": "\u0642\u0631\u0645\u0632", "G": "\u0633\u0628\u0632", "B": "\u0622\u0628\u06cc", "Left to right": "\u0686\u067e \u0628\u0647 \u0631\u0627\u0633\u062a", "Right to left": "\u0631\u0627\u0633\u062a \u0628\u0647 \u0686\u067e", "Emoticons": "\u0634\u06a9\u0644\u06a9\u200c\u0647\u0627", "Emoticons...": "\u0635\u0648\u0631\u062a\u06a9\u200c\u0647\u0627...", "Metadata and Document Properties": "\u0641\u0631\u0627\u062f\u0627\u062f\u0647 \u0648 \u0645\u0634\u062e\u0635\u0627\u062a \u0633\u0646\u062f", "Title": "\u0639\u0646\u0648\u0627\u0646", "Keywords": "\u06a9\u0644\u0645\u0627\u062a \u06a9\u0644\u06cc\u062f\u06cc", "Description": "\u062a\u0648\u0636\u06cc\u062d\u0627\u062a", "Robots": "\u0631\u0628\u0627\u062a\u200c\u0647\u0627", "Author": "\u0646\u0648\u06cc\u0633\u0646\u062f\u0647", "Encoding": "\u06a9\u062f \u06af\u0630\u0627\u0631\u06cc", "Fullscreen": "\u062a\u0645\u0627\u0645 \u0635\u0641\u062d\u0647", "Action": "\u0627\u0642\u062f\u0627\u0645", "Shortcut": "\u0645\u06cc\u0627\u0646\u0628\u0631", "Help": "\u0631\u0627\u0647\u0646\u0645\u0627", "Address": "\u0622\u062f\u0631\u0633", "Focus to menubar": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0646\u0648\u0627\u0631 \u0645\u0646\u0648", "Focus to toolbar": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631", "Focus to element path": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0645\u0633\u06cc\u0631 \u0627\u0644\u0645\u0627\u0646", "Focus to contextual toolbar": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 \u0628\u0627\u0641\u062a\u0627\u0631\u06cc", "Insert link (if link plugin activated)": "\u062f\u0631\u062c \u067e\u06cc\u0648\u0646\u062f (\u062f\u0631 \u0635\u0648\u0631\u062a \u0641\u0639\u0627\u0644 \u0628\u0648\u062f\u0646 \u0627\u0641\u0632\u0648\u0646\u0647\u0654 \u067e\u06cc\u0648\u0646\u062f)", "Save (if save plugin activated)": "\u0630\u062e\u06cc\u0631\u0647\u00a0(\u062f\u0631 \u0635\u0648\u0631\u062a \u0641\u0639\u0627\u0644 \u0628\u0648\u062f\u0646 \u0627\u0641\u0632\u0648\u0646\u0647\u0654 \u0630\u062e\u06cc\u0631\u0647)", "Find (if searchreplace plugin activated)": "\u06cc\u0627\u0641\u062a\u0646 (\u062f\u0631 \u0635\u0648\u0631\u062a \u0641\u0639\u0627\u0644 \u0628\u0648\u062f\u0646 \u0627\u0641\u0632\u0648\u0646\u0647\u0654 \u062c\u0633\u062a\u062c\u0648\/\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc)", "Plugins installed ({0}):": "\u0627\u0641\u0632\u0648\u0646\u0647\u200c\u0647\u0627\u06cc \u0646\u0635\u0628\u200c\u0634\u062f\u0647 ({0}):", "Premium plugins:": "\u0627\u0641\u0632\u0648\u0646\u0647\u200c\u0647\u0627\u06cc \u067e\u0648\u0644\u06cc:", "Learn more...": "\u06cc\u0627\u062f\u06af\u06cc\u0631\u06cc \u0628\u06cc\u0634\u062a\u0631...", "You are using {0}": "\u062f\u0631 \u062d\u0627\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 {0} \u0647\u0633\u062a\u06cc\u062f", "Plugins": "\u0627\u0641\u0632\u0648\u0646\u0647\u200c\u0647\u0627", "Handy Shortcuts": "\u0645\u06cc\u0627\u0646\u0628\u0631\u0647\u0627\u06cc \u0645\u0641\u06cc\u062f", "Horizontal line": "\u062e\u0637 \u0627\u0641\u0642\u06cc", "Insert\/edit image": "\u0627\u0636\u0627\u0641\u0647\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0631\u062f\u0646 \u062a\u0635\u0648\u06cc\u0631", "Alternative description": "\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646", "Accessibility": "\u062f\u0633\u062a\u0631\u0633\u06cc", "Image is decorative": "\u0627\u06cc\u0646 \u062a\u0635\u0648\u06cc\u0631 \u062f\u06a9\u0648\u0631\u06cc \u0627\u0633\u062a", "Source": "\u0645\u0646\u0628\u0639", "Dimensions": "\u0627\u0628\u0639\u0627\u062f", "Constrain proportions": "\u062d\u0641\u0638 \u062a\u0646\u0627\u0633\u0628", "General": "\u0639\u0645\u0648\u0645\u06cc", "Advanced": "\u067e\u06cc\u0634\u0631\u0641\u062a\u0647", "Style": "\u0633\u0628\u06a9", "Vertical space": "\u0641\u0636\u0627\u06cc \u0639\u0645\u0648\u062f\u06cc", "Horizontal space": "\u0641\u0636\u0627\u06cc \u0627\u0641\u0642\u06cc", "Border": "\u062d\u0627\u0634\u06cc\u0647", "Insert image": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0635\u0648\u06cc\u0631", "Image...": "\u062a\u0635\u0648\u06cc\u0631...", "Image list": "\u0641\u0647\u0631\u0633\u062a \u062a\u0635\u0648\u06cc\u0631", "Rotate counterclockwise": "Rotate counterclockwise", "Rotate clockwise": "Rotate clockwise", "Flip vertically": "Flip vertically", "Flip horizontally": "Flip horizontally", "Edit image": "Edit image", "Image options": "Image options", "Zoom in": "Zoom in", "Zoom out": "Zoom out", "Crop": "Crop", "Resize": "Resize", "Orientation": "Orientation", "Brightness": "Brightness", "Sharpen": "Sharpen", "Contrast": "Contrast", "Color levels": "Color levels", "Gamma": "Gamma", "Invert": "Invert", "Apply": "Apply", "Back": "Back", "Insert date\/time": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0627\u0631\u06cc\u062e\/\u0632\u0645\u0627\u0646", "Date\/time": "Date\/time", "Insert\/edit link": "\u0627\u0636\u0627\u0641\u0647\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0631\u062f\u0646 \u0644\u06cc\u0646\u06a9", "Text to display": "\u0645\u062a\u0646 \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634", "Url": "\u0627\u062f\u0631\u0633 \u0644\u06cc\u0646\u06a9", "Open link in...": "\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u067e\u06cc\u0648\u0646\u062f \u062f\u0631...", "Current window": "\u067e\u0646\u062c\u0631\u0647 \u062c\u0627\u0631\u06cc", "None": "\u0647\u06cc\u0686 \u06a9\u062f\u0627\u0645", "New window": "\u067e\u0646\u062c\u0631\u0647 \u062c\u062f\u06cc\u062f", "Open link": "\u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u0644\u06cc\u0646\u06a9", "Remove link": "\u062d\u0630\u0641 \u0644\u06cc\u0646\u06a9", "Anchors": "\u0644\u0646\u06af\u0631 - \u0644\u06cc\u0646\u06a9 \u062f\u0627\u062e\u0644 \u0635\u0641\u062d\u0647", "Link...": "\u067e\u06cc\u0648\u0646\u062f...", "Paste or type a link": "Paste or type a link", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "\u0622\u062f\u0631\u0633 \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc \u06a9\u0647 \u0634\u0645\u0627 \u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0647 \u0627\u06cc\u062f \u06af\u0648\u06cc\u0627 \u06cc\u06a9 \u0622\u062f\u0631\u0633 \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc \u062e\u0627\u0631\u062c\u06cc \u0627\u0633\u062a. \u0622\u06cc\u0627 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u06a9\u0647 \u067e\u06cc\u0634\u0648\u0646\u062f \u0636\u0631\u0648\u0631\u06cc https:\/\/ \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u0645\u061f", "Link list": "\u0641\u0647\u0631\u0633\u062a \u067e\u06cc\u0648\u0646\u062f\u0647\u0627", "Insert video": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0641\u0627\u06cc\u0644 \u062a\u0635\u0648\u06cc\u0631\u06cc", "Insert\/edit video": "\u0627\u0636\u0627\u0641\u0647\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0631\u062f\u0646 \u0641\u0627\u06cc\u0644 \u062a\u0635\u0648\u06cc\u0631\u06cc", "Insert\/edit media": "Insert\/edit media", "Alternative source": "\u0645\u0646\u0628\u0639 \u062f\u06cc\u06af\u0631", "Alternative source URL": "\u0646\u0634\u0627\u0646\u06cc \u0648\u0628 \u0645\u0646\u0628\u0639 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646", "Media poster (Image URL)": "\u067e\u0648\u0633\u062a\u0631 \u0631\u0633\u0627\u0646\u0647 (\u0646\u0634\u0627\u0646\u06cc \u0648\u0628 \u062a\u0635\u0648\u06cc\u0631)", "Paste your embed code below:": "\u06a9\u062f \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u062c\u0627 \u062f\u0627\u062f\u0646 \u062f\u0631 \u0633\u0627\u06cc\u062a - embed - \u060c \u062f\u0631 \u0632\u06cc\u0631 \u0642\u0631\u0627\u0631 \u062f\u0647\u06cc\u062f:", "Embed": "\u062c\u0627 \u062f\u0627\u062f\u0646", "Media...": "\u0631\u0633\u0627\u0646\u0647...", "Nonbreaking space": "\u0641\u0636\u0627\u06cc \u063a\u06cc\u0631 \u0634\u06a9\u0633\u062a\u0646", "Page break": "\u0634\u06a9\u0633\u062a\u0646 \u0635\u0641\u062d\u0647", "Paste as text": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0645\u062a\u0646", "Preview": "\u067e\u06cc\u0634 \u0646\u0645\u0627\u06cc\u0634", "Print...": "\u0686\u0627\u067e...", "Save": "\u0630\u062e\u06cc\u0631\u0647", "Find": "\u062c\u0633\u062a\u200c\u0648\u200c\u062c\u0648", "Replace with": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646 \u0628\u0627", "Replace": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646", "Replace all": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646 \u0647\u0645\u0647", "Previous": "\u0642\u0628\u0644\u06cc", "Next": "\u0628\u0639\u062f\u06cc", "Find and Replace": "\u062c\u0633\u062a\u200c\u0648\u200c\u062c\u0648 \u0648 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646", "Find and replace...": "\u06cc\u0627\u0641\u062a\u0646 \u0648 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646...", "Could not find the specified string.": "\u0631\u0634\u062a\u0647 \u0645\u062a\u0646\u06cc \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f.", "Match case": "\u062d\u0633\u0627\u0633 \u0628\u0647 \u062d\u0631\u0648\u0641 \u06a9\u0648\u0686\u06a9 \u0648 \u0628\u0632\u0631\u06af", "Find whole words only": "\u06cc\u0627\u0641\u062a\u0646 \u062f\u0642\u06cc\u0642\u0627\u064b \u06a9\u0644 \u0648\u0627\u0698\u0647", "Find in selection": "\u062f\u0631 \u06af\u0644\u0686\u06cc\u0646 \u0628\u06cc\u0627\u0628\u06cc\u062f", "Spellcheck": "\u0628\u0631\u0631\u0633\u06cc \u0627\u0645\u0644\u0627\u06cc\u06cc", "Spellcheck Language": "\u0632\u0628\u0627\u0646 \u0686\u06a9 \u0627\u0633\u067e\u0644\u06cc\u0646\u06af", "No misspellings found.": "\u063a\u0644\u0637 \u0627\u0645\u0644\u0627\u06cc\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f.", "Ignore": "\u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646", "Ignore all": "\u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646 \u0647\u0645\u0647", "Finish": "\u067e\u0627\u06cc\u0627\u0646", "Add to Dictionary": "Add to Dictionary", "Insert table": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062c\u062f\u0648\u0644", "Table properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u062c\u062f\u0648\u0644", "Delete table": "\u062d\u0630\u0641 \u062c\u062f\u0648\u0644", "Cell": "\u0633\u0644\u0648\u0644", "Row": "\u0633\u0637\u0631", "Column": "\u0633\u062a\u0648\u0646", "Cell properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0633\u0644\u0648\u0644", "Merge cells": "\u0627\u062f\u063a\u0627\u0645 \u0633\u0644\u0648\u0644\u200c\u0647\u0627", "Split cell": "\u062a\u0642\u0633\u06cc\u0645 \u0633\u0644\u0648\u0644 \u062c\u062f\u0648\u0644", "Insert row before": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u0637\u0631 \u062c\u062f\u06cc\u062f \u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631", "Insert row after": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u0637\u0631 \u062c\u062f\u06cc\u062f \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631", "Delete row": "\u062d\u0630\u0641 \u0633\u0637\u0631", "Row properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0633\u0637\u0631", "Cut row": "\u0628\u0631\u0634 \u0633\u0637\u0631", "Copy row": "\u06a9\u067e\u06cc \u0633\u0637\u0631", "Paste row before": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631\u060c \u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631", "Paste row after": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631\u060c \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631", "Insert column before": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u062a\u0648\u0646 \u062c\u062f\u06cc\u062f \u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646 \u0633\u062a\u0648\u0646", "Insert column after": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u062a\u0648\u0646 \u062c\u062f\u06cc\u062f \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0633\u062a\u0648\u0646", "Delete column": "\u062d\u0630\u0641 \u0633\u062a\u0648\u0646", "Cols": "\u062a\u0639\u062f\u0627\u062f \u0633\u062a\u0648\u0646\u200c\u0647\u0627", "Rows": "\u062a\u0639\u062f\u0627\u062f \u0633\u0637\u0631\u200c\u0647\u0627", "Width": "\u0639\u0631\u0636", "Height": "\u0627\u0631\u062a\u0641\u0627\u0639", "Cell spacing": "\u0641\u0627\u0635\u0644\u0647\u200c\u06cc \u0628\u06cc\u0646 \u0633\u0644\u0648\u0644 \u0647\u0627", "Cell padding": "\u062d\u0627\u0634\u06cc\u0647 \u0633\u0644\u0648\u0644 \u0647\u0627", "Caption": "\u0639\u0646\u0648\u0627\u0646", "Show caption": "\u0646\u0645\u0627\u06cc\u0634 \u0639\u0646\u0648\u0627\u0646", "Left": "\u0686\u067e", "Center": "\u0648\u0633\u0637", "Right": "\u0631\u0627\u0633\u062a", "Cell type": "\u0646\u0648\u0639 \u0633\u0644\u0648\u0644", "Scope": "\u0645\u062d\u062f\u0648\u062f\u0647\u200c\u06cc \u0639\u0646\u0648\u0627\u0646", "Alignment": "\u0631\u062f\u06cc\u0641 \u0628\u0646\u062f\u06cc \u0646\u0648\u0634\u062a\u0647", "H Align": "H Align", "V Align": "V Align", "Top": "Top", "Middle": "Middle", "Bottom": "Bottom", "Header cell": "\u0633\u0631\u0622\u06cc\u0646\u062f \u0633\u0644\u0648\u0644", "Row group": "\u06af\u0631\u0648\u0647 \u0633\u0637\u0631", "Column group": "\u06af\u0631\u0648\u0647 \u0633\u062a\u0648\u0646", "Row type": "\u0646\u0648\u0639 \u0633\u0637\u0631", "Header": "\u0633\u0631\u0622\u06cc\u0646\u062f", "Body": "\u0628\u062f\u0646\u0647", "Footer": "\u067e\u0627\u0646\u0648\u06cc\u0633", "Border color": "Border color", "Insert template...": "\u062f\u0631\u062c \u0627\u0644\u06af\u0648...", "Templates": "\u0627\u0644\u06af\u0648\u200c\u0647\u0627", "Template": "\u0627\u0644\u06af\u0648", "Text color": "\u0631\u0646\u06af \u0645\u062a\u0646", "Background color": "\u0631\u0646\u06af \u0632\u0645\u06cc\u0646\u0647 \u0645\u062a\u0646", "Custom...": "Custom...", "Custom color": "Custom color", "No color": "No color", "Remove color": "\u062d\u0630\u0641 \u0631\u0646\u06af", "Table of Contents": "Table of Contents", "Show blocks": "\u0646\u0645\u0627\u06cc\u0634 \u0628\u062e\u0634\u200c\u0647\u0627", "Show invisible characters": "\u0646\u0645\u0627\u06cc\u0634 \u06a9\u0627\u0631\u0627\u06a9\u062a\u0631\u0647\u0627\u06cc \u063a\u06cc\u0631 \u0642\u0627\u0628\u0644 \u0686\u0627\u067e", "Word count": "\u062a\u0639\u062f\u0627\u062f \u0648\u0627\u0698\u0647\u200c\u0647\u0627", "Count": "\u0634\u0645\u0627\u0631\u0634", "Document": "\u0633\u0646\u062f", "Selection": "\u0627\u0646\u062a\u062e\u0627\u0628", "Words": "\u06a9\u0644\u0645\u0627\u062a", "Words: {0}": "\u06a9\u0644\u0645\u0627\u062a : {0}", "{0} words": "{0} \u0648\u0627\u0698\u0647", "File": "\u067e\u0631\u0648\u0646\u062f\u0647", "Edit": "\u0648\u06cc\u0631\u0627\u06cc\u0634", "Insert": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646", "View": "\u0646\u0645\u0627\u06cc\u0634", "Format": "\u0642\u0627\u0644\u0628", "Table": "\u062c\u062f\u0648\u0644", "Tools": "\u0627\u0628\u0632\u0627\u0631\u0647\u0627", "Powered by {0}": "\u0642\u0648\u062a\u200c\u06af\u0631\u0641\u062a\u0647 \u0627\u0632 {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u067e\u06cc\u0634\u0631\u0641\u062a\u0647\u200c\u06cc \u0645\u062a\u0646. \u0628\u0631\u0627\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u0646\u0648 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc ALT-F9\u060c \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 ALT-F10 \u0648 \u0628\u0631\u0627\u06cc \u0645\u0634\u0627\u0647\u062f\u0647\u200c\u06cc \u0631\u0627\u0647\u0646\u0645\u0627 ALT-0 \u0631\u0627 \u0641\u0634\u0627\u0631 \u062f\u0647\u06cc\u062f.", "Image title": "\u0639\u0646\u0648\u0627\u0646 \u062a\u0635\u0648\u06cc\u0631", "Border width": "\u0639\u0631\u0636 \u062d\u0627\u0634\u06cc\u0647", "Border style": "\u0633\u0628\u06a9 \u062d\u0627\u0634\u06cc\u0647", "Error": "\u062e\u0637\u0627", "Warn": "\u0647\u0634\u062f\u0627\u0631", "Valid": "\u0645\u0639\u062a\u0628\u0631", "To open the popup, press Shift+Enter": "\u062c\u0647\u062a \u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u067e\u0646\u062c\u0631\u0647 \u0628\u0627\u0632\u0634\u0648\u060c \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc Shift + Enter \u0631\u0627 \u0641\u0634\u0627\u0631 \u062f\u0647\u06cc\u062f.", "Rich Text Area. Press ALT-0 for help.": "\u0646\u0627\u062d\u06cc\u0647 \u0645\u062a\u0646 \u063a\u0646\u06cc. \u062c\u0647\u062a \u0645\u0634\u0627\u0647\u062f\u0647\u0654 \u0631\u0627\u0647\u0646\u0645\u0627 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc ALT + 0 \u0631\u0627 \u0641\u0634\u0627\u0631 \u062f\u0647\u06cc\u062f.", "System Font": "\u0641\u0648\u0646\u062a \u0633\u06cc\u0633\u062a\u0645\u06cc", "Failed to upload image: {0}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u062a\u0635\u0648\u06cc\u0631: {0}", "Failed to load plugin: {0} from url {1}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0641\u0632\u0648\u0646\u0647: {0} \u0627\u0632 \u0646\u0634\u0627\u0646\u06cc \u0648\u0628 {1}", "Failed to load plugin url: {0}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0646\u0634\u0627\u0646\u06cc \u0648\u0628 \u0627\u0641\u0632\u0648\u0646\u0647: {0}", "Failed to initialize plugin: {0}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0627\u0641\u0632\u0648\u0646\u0647: {0}", "example": "\u0645\u062b\u0627\u0644", "Search": "\u062c\u0633\u062a\u062c\u0648", "All": "\u0647\u0645\u0647", "Currency": "\u0627\u0631\u0632", "Text": "\u0645\u062a\u0646", "Quotations": "\u0646\u0642\u0644\u200c\u0642\u0648\u0644\u200c\u0647\u0627", "Mathematical": "\u0631\u06cc\u0627\u0636\u06cc", "Extended Latin": "\u0644\u0627\u062a\u06cc\u0646 \u06af\u0633\u062a\u0631\u062f\u0647", "Symbols": "\u0646\u0645\u0627\u062f\u0647\u0627", "Arrows": "\u067e\u06cc\u06a9\u0627\u0646\u200c\u0647\u0627", "User Defined": "\u0628\u0647 \u062e\u0648\u0627\u0633\u062a \u06a9\u0627\u0631\u0628\u0631", "dollar sign": "\u0646\u0645\u0627\u062f \u062f\u0644\u0627\u0631", "currency sign": "\u0646\u0645\u0627\u062f \u0627\u0631\u0632", "euro-currency sign": "\u0646\u0645\u0627\u062f \u06cc\u0648\u0631\u0648", "colon sign": "\u0646\u0645\u0627\u062f \u062f\u0648\u0646\u0642\u0637\u0647", "cruzeiro sign": "\u0646\u0645\u0627\u062f \u06a9\u0631\u0648\u0632\u06cc\u0631\u0648", "french franc sign": "\u0646\u0645\u0627\u062f \u0641\u0631\u0627\u0646\u06a9 \u0641\u0631\u0627\u0646\u0633\u0647", "lira sign": "\u0646\u0645\u0627\u062f \u0644\u06cc\u0631\u0647", "mill sign": "\u0646\u0645\u0627\u062f \u0645\u06cc\u0644", "naira sign": "\u0646\u0645\u0627\u062f \u0646\u0627\u06cc\u0631\u0627", "peseta sign": "\u0646\u0645\u0627\u062f \u067e\u0632\u062a\u0627", "rupee sign": "\u0646\u0645\u0627\u062f \u0631\u0648\u067e\u06cc\u0647", "won sign": "\u0646\u0645\u0627\u062f \u0648\u0648\u0646", "new sheqel sign": "\u0646\u0645\u0627\u062f \u0634\u06a9\u0644 \u062c\u062f\u06cc\u062f", "dong sign": "\u0646\u0645\u0627\u062f \u062f\u0627\u0646\u06af", "kip sign": "\u0646\u0645\u0627\u062f \u06a9\u06cc\u067e", "tugrik sign": "\u0646\u0645\u0627\u062f \u062a\u0648\u06af\u0631\u0648\u06af", "drachma sign": "\u0646\u0645\u0627\u062f \u062f\u0631\u0627\u062e\u0645\u0627", "german penny symbol": "\u0646\u0645\u0627\u062f \u067e\u0646\u06cc \u0622\u0644\u0645\u0627\u0646\u06cc", "peso sign": "\u0646\u0645\u0627\u062f \u067e\u0632\u0648", "guarani sign": "\u0646\u0645\u0627\u062f \u06af\u0648\u0627\u0631\u0627\u0646\u06cc", "austral sign": "\u0646\u0645\u0627\u062f \u0622\u0633\u062a\u0631\u0627\u0644", "hryvnia sign": "\u0646\u0645\u0627\u062f \u06af\u0631\u06cc\u0648\u0646\u0627", "cedi sign": "\u0646\u0645\u0627\u062f \u0633\u062f\u06cc", "livre tournois sign": "\u0646\u0645\u0627\u062f \u0644\u06cc\u0648\u0631\u0647 \u062a\u0648\u0631\u0646\u0648\u0627", "spesmilo sign": "\u0646\u0645\u0627\u062f \u0627\u0633\u067e\u0633\u0645\u06cc\u0644\u0648", "tenge sign": "\u0646\u0645\u0627\u062f \u062a\u0646\u06af\u0647", "indian rupee sign": "\u0646\u0645\u0627\u062f \u0631\u0648\u067e\u06cc\u0647 \u0647\u0646\u062f\u06cc", "turkish lira sign": "\u0646\u0645\u0627\u062f \u0644\u06cc\u0631\u0647 \u062a\u0631\u06a9\u06cc", "nordic mark sign": "\u0646\u0645\u0627\u062f \u0645\u0627\u0631\u06a9 \u0646\u0631\u0648\u0698", "manat sign": "\u0646\u0645\u0627\u062f \u0645\u0646\u0627\u062a", "ruble sign": "\u0646\u0645\u0627\u062f \u0631\u0648\u0628\u0644", "yen character": "\u0646\u0648\u06cc\u0633\u0647 \u06cc\u0646", "yuan character": "\u0646\u0648\u06cc\u0633\u0647 \u06cc\u0648\u0627\u0646", "yuan character, in hong kong and taiwan": "\u0646\u0648\u06cc\u0633\u0647 \u06cc\u0648\u0627\u0646\u060c \u062f\u0631 \u0647\u0646\u06af\u200c\u06a9\u0646\u06af \u0648 \u062a\u0627\u06cc\u0648\u0627\u0646", "yen\/yuan character variant one": "\u0646\u0648\u06cc\u0633\u0647 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06cc\u0646\/\u06cc\u0648\u0627\u0646", "Loading emoticons...": "\u062f\u0631 \u062d\u0627\u0644 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0634\u06a9\u0644\u06a9\u200c\u0647\u0627...", "Could not load emoticons": "\u0634\u06a9\u0644\u06a9\u200c\u0647\u0627 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0646\u0634\u062f\u0646\u062f", "People": "\u0627\u0641\u0631\u0627\u062f", "Animals and Nature": "\u062d\u06cc\u0648\u0627\u0646\u0627\u062a \u0648 \u0637\u0628\u06cc\u0639\u062a", "Food and Drink": "\u063a\u0630\u0627 \u0648 \u0646\u0648\u0634\u06cc\u062f\u0646\u06cc", "Activity": "\u0641\u0639\u0627\u0644\u06cc\u062a", "Travel and Places": "\u0633\u0641\u0631 \u0648 \u0627\u0645\u0627\u06a9\u0646", "Objects": "\u0627\u0634\u06cc\u0627", "Flags": "\u067e\u0631\u0686\u0645\u200c\u0647\u0627", "Characters": "\u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627", "Characters (no spaces)": "\u0646\u0648\u06cc\u0633\u0647 \u0647\u0627 (\u0628\u062f\u0648\u0646 \u0641\u0627\u0635\u0644\u0647)", "{0} characters": "{0} \u06a9\u0627\u0631\u0627\u06a9\u062a\u0631", "Error: Form submit field collision.": "\u062e\u0637\u0627: \u062a\u062f\u0627\u062e\u0644 \u062f\u0631 \u062b\u0628\u062a \u0641\u0631\u0645.", "Error: No form element found.": "\u062e\u0637\u0627: \u0647\u06cc\u0686 \u0627\u0644\u0645\u0627\u0646 \u0641\u0631\u0645\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f.", "Update": "\u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc", "Color swatch": "\u0646\u0645\u0648\u0646\u0647 \u0631\u0646\u06af", "Turquoise": "\u0641\u06cc\u0631\u0648\u0632\u0647\u200c\u0627\u06cc", "Green": "\u0633\u0628\u0632", "Blue": "\u0622\u0628\u06cc", "Purple": "\u0628\u0646\u0641\u0634", "Navy Blue": "\u0633\u0631\u0645\u0647\u200c\u0627\u06cc", "Dark Turquoise": "\u0641\u06cc\u0631\u0648\u0632\u0647\u200c\u0627\u06cc \u062a\u06cc\u0631\u0647", "Dark Green": "\u0633\u0628\u0632 \u062a\u06cc\u0631\u0647", "Medium Blue": "\u0622\u0628\u06cc \u0633\u06cc\u0631", "Medium Purple": "\u0622\u0628\u06cc \u0628\u0646\u0641\u0634", "Midnight Blue": "\u0622\u0628\u06cc \u0646\u0641\u062a\u06cc", "Yellow": "\u0632\u0631\u062f", "Orange": "\u0646\u0627\u0631\u0646\u062c\u06cc", "Red": "\u0642\u0631\u0645\u0632", "Light Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc \u0631\u0648\u0634\u0646", "Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc", "Dark Yellow": "\u0632\u0631\u062f \u062a\u06cc\u0631\u0647", "Dark Orange": "\u0646\u0627\u0631\u0646\u062c\u06cc \u062a\u06cc\u0631\u0647", "Dark Red": "\u0642\u0631\u0645\u0632 \u062a\u06cc\u0631\u0647", "Medium Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc \u0646\u06cc\u0645\u0647\u200c\u0631\u0648\u0634\u0646", "Dark Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc \u062a\u06cc\u0631\u0647", "Light Green": "\u0633\u0628\u0632 \u0631\u0648\u0634\u0646", "Light Yellow": "\u0632\u0631\u062f \u0631\u0648\u0634\u0646", "Light Red": "\u0642\u0631\u0645\u0632 \u0631\u0648\u0634\u0646", "Light Purple": "\u0628\u0646\u0641\u0634 \u0631\u0648\u0634\u0646", "Light Blue": "\u0622\u0628\u06cc \u0631\u0648\u0634\u0646", "Dark Purple": "\u0628\u0646\u0641\u0634 \u062a\u06cc\u0631\u0647", "Dark Blue": "\u0622\u0628\u06cc \u062a\u06cc\u0631\u0647", "Black": "\u0633\u06cc\u0627\u0647", "White": "\u0633\u0641\u06cc\u062f", "Switch to or from fullscreen mode": "\u062a\u063a\u06cc\u06cc\u0631 \u0627\u0632 \u062d\u0627\u0644\u062a \u062a\u0645\u0627\u0645\u200c\u0635\u0641\u062d\u0647 \u06cc\u0627 \u0628\u0647 \u062d\u0627\u0644\u062a \u062a\u0645\u0627\u0645\u200c\u0635\u0641\u062d\u0647", "Open help dialog": "\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u06a9\u0627\u062f\u0631 \u0631\u0627\u0647\u0646\u0645\u0627", "history": "\u062a\u0627\u0631\u06cc\u062e\u0686\u0647", "styles": "\u0633\u0628\u06a9\u200c\u0647\u0627", "formatting": "\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc", "alignment": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc", "indentation": "\u062a\u0648\u0631\u0641\u062a\u06af\u06cc", "Font": "\u0641\u0648\u0646\u062a", "Size": "\u0627\u0646\u062f\u0627\u0632\u0647", "More...": "\u0628\u06cc\u0634\u062a\u0631...", "Select...": "\u0627\u0646\u062a\u062e\u0627\u0628...", "Preferences": "\u062a\u0631\u062c\u06cc\u062d\u0627\u062a", "Yes": "\u0628\u0644\u0647", "No": "\u062e\u06cc\u0631", "Keyboard Navigation": "\u0645\u0631\u0648\u0631 \u0628\u0627 \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u062f", "Version": "\u0646\u0633\u062e\u0647", "Code view": "\u0646\u0645\u0627\u06cc \u06a9\u062f", "Open popup menu for split buttons": "\u0645\u0646\u0648\u06cc \u0628\u0627\u0632\u0634\u0648 \u0628\u0631\u0627\u06cc \u062f\u06a9\u0645\u0647 \u0647\u0627\u06cc \u062a\u0642\u0633\u06cc\u0645 \u0634\u062f\u0647 \u0631\u0627 \u0628\u0627\u0632 \u06a9\u0646\u06cc\u062f", "List Properties": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0641\u0647\u0631\u0633\u062a", "List properties...": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0641\u0647\u0631\u0633\u062a", "Start list at number": "\u0644\u06cc\u0633\u062a \u0631\u0627 \u062f\u0631 \u0634\u0645\u0627\u0631\u0647 \u0634\u0631\u0648\u0639 \u06a9\u0646\u06cc\u062f", "Line height": "\u0628\u0644\u0646\u062f\u06cc \u062e\u0637 ", "comments": "\u0646\u0638\u0631\u0627\u062a", "Format Painter": "\u0646\u0642\u0627\u0634 \u0641\u0631\u0645\u062a", "Insert\/edit iframe": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 iframe", "Capitalization": "\u062d\u0631\u0648\u0641 \u0628\u0632\u0631\u06af", "lowercase": "\u062d\u0631\u0648\u0641 \u06a9\u0648\u0686\u06a9", "UPPERCASE": "\u062d\u0631\u0648\u0641 \u0628\u0632\u0631\u06af", "Title Case": "\u062d\u0631\u0648\u0641 \u062a\u06cc\u062a\u0631\u06cc", "permanent pen": "\u0642\u0644\u0645 \u062f\u0627\u0626\u0645\u06cc", "Permanent Pen Properties": "\u0645\u0634\u062e\u0635\u0627\u062a \u062f\u0627\u0626\u0645\u06cc \u0642\u0644\u0645", "Permanent pen properties...": "\u0645\u0634\u062e\u0635\u0627\u062a \u062f\u0627\u0626\u0645\u06cc \u0642\u0644\u0645...", "case change": "\u062a\u063a\u06cc\u06cc\u0631 \u0645\u0648\u0631\u062f", "page embed": "\u0635\u0641\u062d\u0647 \u062c\u0627\u0633\u0627\u0632\u06cc\u00a0", "Advanced sort...": "\u0645\u0631\u062a\u0628 \u0633\u0627\u0632\u06cc \u067e\u06cc\u0634\u0631\u0641\u062a\u0647", "Advanced Sort": "\u0645\u0631\u062a\u0628 \u0633\u0627\u0632\u06cc \u067e\u06cc\u0634\u0631\u0641\u062a\u0647", "Sort table by column ascending": "\u062c\u062f\u0648\u0644 \u0631\u0627 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0633\u062a\u0648\u0646 \u0628\u0647 \u0635\u0648\u0631\u062a \u0635\u0639\u0648\u062f\u06cc \u0645\u0631\u062a\u0628 \u06a9\u0646\u06cc\u062f", "Sort table by column descending": "\u062c\u062f\u0648\u0644 \u0631\u0627 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0633\u062a\u0648\u0646 \u0628\u0647 \u0635\u0648\u0631\u062a \u0646\u0632\u0648\u0644\u06cc \u0645\u0631\u062a\u0628 \u06a9\u0646\u06cc\u062f", "Sort": "\u0645\u0631\u062a\u0628 \u0633\u0627\u0632\u06cc", "Order": "\u062a\u0631\u062a\u06cc\u0628", "Sort by": "\u0645\u0631\u062a\u0628 \u0634\u062f\u0647 \u062a\u0648\u0633\u0637", "Ascending": "\u0635\u0639\u0648\u062f\u06cc", "Descending": "\u0646\u0632\u0648\u0644\u06cc", "Column {0}": "\u0633\u062a\u0648\u0646 {0}", "Row {0}": "\u0631\u062f\u06cc\u0641 {0}", "Spellcheck...": "\u0628\u0631\u0631\u0633\u06cc \u0627\u0645\u0644\u0627\u06cc\u06cc", "Misspelled word": "\u06a9\u0644\u0645\u0647 \u063a\u0644\u0637 \u0627\u0645\u0644\u0627\u06cc\u06cc", "Suggestions": "\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u0627\u062a", "Change": "\u062a\u063a\u06cc\u06cc\u0631 \u062f\u0627\u062f\u0646", "Finding word suggestions": "\u067e\u06cc\u062f\u0627 \u06a9\u0631\u062f\u0646 \u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u0627\u062a \u06a9\u0644\u0645\u0647", "Success": "\u0645\u0648\u0641\u0642", "Repair": "\u062a\u0639\u0645\u06cc\u0631", "Issue {0} of {1}": "\u0645\u0634\u06a9\u0644 {0} \u0627\u0632 {1}", "Images must be marked as decorative or have an alternative text description": "\u062a\u0635\u0648\u06cc\u0631 \u0647\u0627 \u0628\u0627\u06cc\u062f \u0628\u0647 \u0635\u0648\u0631\u062a \u0646\u0645\u0627\u06cc\u0634\u06cc \u0645\u0634\u062e\u0635 \u0634\u0648\u062f \u06cc\u0627 \u06cc\u06a9 \u0645\u062a\u0646 \u062a\u0648\u0636\u06cc\u062d\u06cc \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u062f", "Images must have an alternative text description. Decorative images are not allowed.": "\u0639\u06a9\u0633 \u0647\u0627 \u0628\u0627\u06cc\u062f \u06cc\u06a9 \u0645\u062a\u0646 \u062a\u0648\u0636\u06cc\u062d\u06cc \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u0646\u062f. \u0639\u06a9\u0633 \u0647\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634\u06cc \u0645\u062c\u0627\u0632 \u0646\u06cc\u0633\u062a\u0646\u062f.", "Or provide alternative text:": "\u06cc\u0627 \u06cc\u06a9 \u0645\u062a\u0646 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u062a\u0647\u06cc\u0647 \u06a9\u0646\u06cc\u062f:", "Make image decorative:": "\u0639\u06a9\u0633 \u0631\u0627 \u0646\u0645\u0627\u06cc\u0634\u06cc \u06a9\u0646\u06cc\u062f:", "ID attribute must be unique": "\u0634\u0646\u0627\u0633\u0647 \u0635\u0641\u062a \u0628\u0627\u06cc\u062f \u06cc\u06a9\u062a\u0627 \u0628\u0627\u0634\u062f", "Make ID unique": "\u0634\u0646\u0627\u0633\u0647 \u0631\u0627 \u06cc\u06a9\u062a\u0627 \u06a9\u0646\u06cc\u062f", "Keep this ID and remove all others": "\u0627\u06cc\u0646 \u0634\u0646\u0627\u0633\u0647 \u0631\u0627 \u0646\u06af\u0647 \u062f\u0627\u0631 \u0648 \u0647\u0645\u0647 \u0634\u0646\u0627\u0633\u0647 \u0647\u0627\u06cc \u062f\u06cc\u06af\u0631 \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646", "Remove this ID": "\u0627\u06cc\u0646 \u0634\u0646\u0627\u0633\u0647 \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646", "Remove all IDs": "\u062a\u0645\u0627\u0645 \u0634\u0646\u0627\u0633\u0647 \u0647\u0627 \u0631\u0627 \u0627\u0632 \u0628\u06cc\u0646 \u0628\u0628\u0631", "Checklist": "\u0686\u06a9 \u0644\u06cc\u0633\u062a", "Anchor": "\u0644\u0646\u06af\u0631 - \u0644\u06cc\u0646\u06a9", "Special character": "\u06a9\u0627\u0631\u0627\u06a9\u062a\u0631 \u0647\u0627\u06cc \u062e\u0627\u0635", "Color": "Color", "Document properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0633\u0646\u062f", "Image description": "\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0639\u06a9\u0633", "Image": "\u0639\u06a9\u0633", "Insert link": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0644\u06cc\u0646\u06a9", "Link": "Link", "Target": "\u0646\u062d\u0648\u0647 \u0628\u0627\u0632 \u0634\u062f\u0646 \u062f\u0631 \u0645\u0631\u0648\u0631\u06af\u0631", "Media": "Media", "Poster": "\u067e\u0648\u0633\u062a\u0631", "Print": "\u0686\u0627\u067e", "Whole words": "\u0647\u0645\u0647 \u06a9\u0644\u0645\u0647\u200c\u0647\u0627", "Find and replace": "\u062c\u0633\u062a\u200c\u0648\u200c\u062c\u0648 \u0648 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646", "Prev": "\u0642\u0628\u0644\u06cc", "Insert template": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0627\u0644\u06af\u0648", "_dir": "rtl" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/fi.js ================================================ tinymce.addI18n('fi',{ "Redo": "Tee uudelleen", "Undo": "Peru", "Cut": "Leikkaa", "Copy": "Kopioi", "Paste": "Liit\u00e4", "Select all": "Valitse kaikki", "New document": "Uusi dokumentti", "Ok": "Ok", "Cancel": "Peruuta", "Visual aids": "Visuaaliset neuvot", "Bold": "Lihavointi", "Italic": "Kursivointi", "Underline": "Alleviivaus", "Strikethrough": "Yliviivaus", "Superscript": "Yl\u00e4indeksi", "Subscript": "Alaindeksi", "Clear formatting": "Poista muotoilu", "Align left": "Tasaa vasemmalle", "Align center": "Keskit\u00e4", "Align right": "Tasaa oikealle", "Justify": "Tasaa", "Bullet list": "J\u00e4rjest\u00e4m\u00e4t\u00f6n lista", "Numbered list": "J\u00e4rjestetty lista", "Decrease indent": "Sisenn\u00e4", "Increase indent": "Loitonna", "Close": "Sulje", "Formats": "Muotoilut", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Selaimesi ei tue leikep\u00f6yd\u00e4n suoraa k\u00e4ytt\u00e4mist\u00e4. Ole hyv\u00e4 ja k\u00e4yt\u00e4 n\u00e4pp\u00e4imist\u00f6n Ctrl+X\/C\/V n\u00e4pp\u00e4inyhdistelmi\u00e4.", "Headers": "Otsikot", "Header 1": "Otsikko 1", "Header 2": "Otsikko 2", "Header 3": "Otsikko 3", "Header 4": "Otsikko 4", "Header 5": "Otsikko 5", "Header 6": "Otsikko 6", "Headings": "Otsikot", "Heading 1": "Otsikko 1", "Heading 2": "Otsikko 2", "Heading 3": "Otsikko 3", "Heading 4": "Otsikko 4", "Heading 5": "Otsikko 5", "Heading 6": "Otsikko 6", "Preformatted": "Preformatted", "Div": "Div", "Pre": "Esimuotoiltu", "Code": "Koodi", "Paragraph": "Kappale", "Blockquote": "Lainauslohko", "Inline": "Samalla rivill\u00e4", "Blocks": "Lohkot", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Liitt\u00e4minen on nyt pelk\u00e4n tekstin -tilassa. Sis\u00e4ll\u00f6t liitet\u00e4\u00e4n nyt pelkk\u00e4n\u00e4 tekstin\u00e4, kunnes otat vaihtoehdon pois k\u00e4yt\u00f6st\u00e4.", "Font Family": "Fontti", "Font Sizes": "Fonttikoko", "Class": "Luokka", "Browse for an image": "Selaa kuvia", "OR": "TAI", "Drop an image here": "Pudota kuva t\u00e4h\u00e4n", "Upload": "Vie", "Block": "Lohko", "Align": "Tasaa", "Default": "Oletus", "Circle": "Pallo", "Disc": "Ympyr\u00e4", "Square": "Neli\u00f6", "Lower Alpha": "pienet kirjaimet: a, b, c", "Lower Greek": "pienet kirjaimet: \u03b1, \u03b2, \u03b3", "Lower Roman": "pienet kirjaimet: i, ii, iii", "Upper Alpha": "isot kirjaimet: A, B, C", "Upper Roman": "isot kirjaimet: I, II, III", "Anchor": "Ankkuri", "Name": "Nimi", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id voi alkaa kirjaimella, sen j\u00e4lkeen voi k\u00e4ytt\u00e4\u00e4 kirjaimia, numeroja, viivoja, pisteit\u00e4, kaksoispistett\u00e4 ja alaviivausta", "You have unsaved changes are you sure you want to navigate away?": "Sinulla on tallentamattomia muutoksia, haluatko varmasti siirty\u00e4 toiselle sivulle?", "Restore last draft": "Palauta aiempi luonnos", "Special character": "Erikoismerkki", "Source code": "L\u00e4hdekoodi", "Insert\/Edit code sample": "Lis\u00e4\u00e4\/muokkaa koodiesimerkki", "Language": "Kieli", "Code sample": "Koodiesimerkki", "Color": "V\u00e4ri", "R": "R", "G": "G", "B": "B", "Left to right": "Vasemmalta oikealle", "Right to left": "Oikealta vasemmalle", "Emoticons": "Hymi\u00f6t", "Document properties": "Dokumentin ominaisuudet", "Title": "Otsikko", "Keywords": "Avainsanat", "Description": "Kuvaus", "Robots": "Robotit", "Author": "Tekij\u00e4", "Encoding": "Merkist\u00f6", "Fullscreen": "Koko ruutu", "Action": "Toiminto", "Shortcut": "Oikotie", "Help": "Ohje", "Address": "Osoite", "Focus to menubar": "Kohdistus valikkoon", "Focus to toolbar": "Kohdistus ty\u00f6kalupalkkiin", "Focus to element path": "Kohdistus elementtiin", "Focus to contextual toolbar": "Kohdistus kontekstuaaliseen ty\u00f6kalupalkkiin", "Insert link (if link plugin activated)": "Lis\u00e4\u00e4 linkki (jos linkki-liit\u00e4nn\u00e4inen aktiivinen)", "Save (if save plugin activated)": "Tallenna (jos tallenna-liit\u00e4nn\u00e4inen aktiivinen)", "Find (if searchreplace plugin activated)": "Etsi (jos etsikorvaa-liit\u00e4nn\u00e4inen aktiivinen)", "Plugins installed ({0}):": "Asennetut liit\u00e4nn\u00e4iset ({0}):", "Premium plugins:": "Premium liit\u00e4nn\u00e4iset:", "Learn more...": "Lis\u00e4tietoja...", "You are using {0}": "K\u00e4yt\u00e4t {0}", "Plugins": "Liit\u00e4nn\u00e4iset", "Handy Shortcuts": "K\u00e4tev\u00e4t pikan\u00e4pp\u00e4imet", "Horizontal line": "Vaakasuora viiva", "Insert\/edit image": "Lis\u00e4\u00e4\/muokkaa kuva", "Image description": "Kuvaus", "Source": "L\u00e4hde", "Dimensions": "Mittasuhteet", "Constrain proportions": "S\u00e4ilyt\u00e4 mittasuhteet", "General": "Yleiset", "Advanced": "Lis\u00e4asetukset", "Style": "Tyyli", "Vertical space": "Vertikaalinen tila", "Horizontal space": "Horisontaalinen tila", "Border": "Reunus", "Insert image": "Lis\u00e4\u00e4 kuva", "Image": "Kuva", "Image list": "Kuvalista", "Rotate counterclockwise": "Kierr\u00e4 vastap\u00e4iv\u00e4\u00e4n", "Rotate clockwise": "Kierr\u00e4 my\u00f6t\u00e4p\u00e4iv\u00e4\u00e4n", "Flip vertically": "K\u00e4\u00e4nn\u00e4 pystysuunnassa", "Flip horizontally": "K\u00e4\u00e4nn\u00e4 vaakasuunnassa", "Edit image": "Muokkaa kuvaa", "Image options": "Kuvan asetukset", "Zoom in": "L\u00e4henn\u00e4", "Zoom out": "Loitonna", "Crop": "Rajaa valintaan", "Resize": "Kuvan koon muutos", "Orientation": "Suunta", "Brightness": "Kirkkaus", "Sharpen": "Ter\u00e4vyys", "Contrast": "Kontrasti", "Color levels": "V\u00e4ritasot", "Gamma": "Gamma", "Invert": "K\u00e4\u00e4nteinen", "Apply": "Aseta", "Back": "Takaisin", "Insert date\/time": "Lis\u00e4\u00e4 p\u00e4iv\u00e4m\u00e4\u00e4r\u00e4 tai aika", "Date\/time": "P\u00e4iv\u00e4m\u00e4\u00e4r\u00e4\/aika", "Insert link": "Lis\u00e4\u00e4 linkki", "Insert\/edit link": "Lis\u00e4\u00e4\/muokkaa linkki", "Text to display": "N\u00e4ytett\u00e4v\u00e4 teksti", "Url": "Osoite", "Target": "Kohde", "None": "Ei mit\u00e4\u00e4n", "New window": "Uusi ikkuna", "Remove link": "Poista linkki", "Anchors": "Ankkurit", "Link": "Linkki", "Paste or type a link": "Sijoita tai kirjoita linkki", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Antamasi osoite n\u00e4ytt\u00e4\u00e4 olevan s\u00e4hk\u00f6postiosoite. Haluatko lis\u00e4t\u00e4 osoitteeseen vaaditun mailto: -etuliitteen?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Antamasi osoite n\u00e4ytt\u00e4\u00e4 olevan ulkoinen linkki. Haluatko lis\u00e4t\u00e4 osoitteeseen vaaditun http:\/\/ -etuliitteen?", "Link list": "Linkkilista", "Insert video": "Lis\u00e4\u00e4 video", "Insert\/edit video": "Lis\u00e4\u00e4\/muokkaa video", "Insert\/edit media": "Lis\u00e4\u00e4\/muokkaa media", "Alternative source": "Vaihtoehtoinen l\u00e4hde", "Poster": "L\u00e4hett\u00e4j\u00e4", "Paste your embed code below:": "Liit\u00e4 upotuskoodisi alapuolelle:", "Embed": "Upota", "Media": "Media", "Nonbreaking space": "Sitova v\u00e4lily\u00f6nti", "Page break": "Sivunvaihto", "Paste as text": "Liit\u00e4 tekstin\u00e4", "Preview": "Esikatselu", "Print": "Tulosta", "Save": "Tallenna", "Find": "Etsi", "Replace with": "Korvaa", "Replace": "Korvaa", "Replace all": "Korvaa kaikki", "Prev": "Edel.", "Next": "Seur.", "Find and replace": "Etsi ja korvaa", "Could not find the specified string.": "Haettua merkkijonoa ei l\u00f6ytynyt.", "Match case": "Erota isot ja pienet kirjaimet", "Whole words": "Koko sanat", "Spellcheck": "Oikolue", "Ignore": "\u00c4l\u00e4 huomioi", "Ignore all": "\u00c4l\u00e4 huomioi mit\u00e4\u00e4n", "Finish": "Lopeta", "Add to Dictionary": "Lis\u00e4\u00e4 sanakirjaan", "Insert table": "Lis\u00e4\u00e4 taulukko", "Table properties": "Taulukon ominaisuudet", "Delete table": "Poista taulukko", "Cell": "Solu", "Row": "Rivi", "Column": "Sarake", "Cell properties": "Solun ominaisuudet", "Merge cells": "Yhdist\u00e4 solut", "Split cell": "Jaa solu", "Insert row before": "Lis\u00e4\u00e4 rivi ennen", "Insert row after": "Lis\u00e4\u00e4 rivi j\u00e4lkeen", "Delete row": "Poista rivi", "Row properties": "Rivin ominaisuudet", "Cut row": "Leikkaa rivi", "Copy row": "Kopioi rivi", "Paste row before": "Liit\u00e4 rivi ennen", "Paste row after": "Liit\u00e4 rivi j\u00e4lkeen", "Insert column before": "Lis\u00e4\u00e4 rivi ennen", "Insert column after": "Lis\u00e4\u00e4 rivi j\u00e4lkeen", "Delete column": "Poista sarake", "Cols": "Sarakkeet", "Rows": "Rivit", "Width": "Leveys", "Height": "Korkeus", "Cell spacing": "Solun v\u00e4li", "Cell padding": "Solun tyhj\u00e4 tila", "Caption": "Seloste", "Left": "Vasen", "Center": "Keskell\u00e4", "Right": "Oikea", "Cell type": "Solun tyyppi", "Scope": "Laajuus", "Alignment": "Tasaus", "H Align": "H tasaus", "V Align": "V tasaus", "Top": "Yl\u00e4reuna", "Middle": "Keskikohta", "Bottom": "Alareuna", "Header cell": "Otsikkosolu", "Row group": "Riviryhm\u00e4", "Column group": "Sarakeryhm\u00e4", "Row type": "Rivityyppi", "Header": "Otsikko", "Body": "Runko", "Footer": "Alaosa", "Border color": "Reunuksen v\u00e4ri", "Insert template": "Lis\u00e4\u00e4 pohja", "Templates": "Pohjat", "Template": "Pohja", "Text color": "Tekstin v\u00e4ri", "Background color": "Taustan v\u00e4ri", "Custom...": "Mukauta...", "Custom color": "Mukautettu v\u00e4ri", "No color": "Ei v\u00e4ri\u00e4", "Table of Contents": "Sis\u00e4llysluettelo", "Show blocks": "N\u00e4yt\u00e4 lohkot", "Show invisible characters": "N\u00e4yt\u00e4 n\u00e4kym\u00e4tt\u00f6m\u00e4t merkit", "Words: {0}": "Sanat: {0}", "{0} words": "{0} sanaa", "File": "Tiedosto", "Edit": "Muokkaa", "Insert": "Lis\u00e4\u00e4", "View": "N\u00e4yt\u00e4", "Format": "Muotoilu", "Table": "Taulukko", "Tools": "Ty\u00f6kalut", "Powered by {0}": "Tehty {0}:ll\u00e4", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rikastetun tekstin alue. Paina ALT-F9 valikkoon. Paina ALT-F10 ty\u00f6kaluriviin. Paina ALT-0 ohjeeseen." }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/fr_FR.js ================================================ tinymce.addI18n('fr_FR',{ "Redo": "R\u00e9tablir", "Undo": "Annuler", "Cut": "Couper", "Copy": "Copier", "Paste": "Coller", "Select all": "S\u00e9lectionner tout", "New document": "Nouveau document", "Ok": "OK", "Cancel": "Annuler", "Visual aids": "Aides visuelles", "Bold": "Gras", "Italic": "Italique", "Underline": "Soulign\u00e9", "Strikethrough": "Barr\u00e9", "Superscript": "Exposant", "Subscript": "Indice", "Clear formatting": "Effacer la mise en forme", "Align left": "Aligner \u00e0 gauche", "Align center": "Centrer", "Align right": "Aligner \u00e0 droite", "Justify": "Justifier", "Bullet list": "Liste \u00e0 puces", "Numbered list": "Liste num\u00e9rot\u00e9e", "Decrease indent": "R\u00e9duire le retrait", "Increase indent": "Augmenter le retrait", "Close": "Fermer", "Formats": "Formats", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Votre navigateur ne supporte pas l\u2019acc\u00e8s direct au presse-papiers. Merci d'utiliser les raccourcis clavier Ctrl+X\/C\/V.", "Headers": "En-t\u00eates", "Header 1": "En-t\u00eate 1", "Header 2": "En-t\u00eate 2", "Header 3": "En-t\u00eate 3", "Header 4": "En-t\u00eate 4", "Header 5": "En-t\u00eate 5", "Header 6": "En-t\u00eate 6", "Headings": "Titres", "Heading 1": "Titre\u00a01", "Heading 2": "Titre\u00a02", "Heading 3": "Titre\u00a03", "Heading 4": "Titre\u00a04", "Heading 5": "Titre\u00a05", "Heading 6": "Titre\u00a06", "Preformatted": "Pr\u00e9format\u00e9", "Div": "Div", "Pre": "Pre", "Code": "Code", "Paragraph": "Paragraphe", "Blockquote": "Blockquote", "Inline": "En ligne", "Blocks": "Blocs", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Le presse-papiers est maintenant en mode \"texte plein\". Les contenus seront coll\u00e9s sans retenir les formatages jusqu'\u00e0 ce que vous d\u00e9sactiviez cette option.", "Fonts": "Polices", "Font Sizes": "Tailles de police", "Class": "Classe", "Browse for an image": "Rechercher une image", "OR": "OU", "Drop an image here": "D\u00e9poser une image ici", "Upload": "T\u00e9l\u00e9charger", "Block": "Bloc", "Align": "Aligner", "Default": "Par d\u00e9faut", "Circle": "Cercle", "Disc": "Disque", "Square": "Carr\u00e9", "Lower Alpha": "Alpha minuscule", "Lower Greek": "Grec minuscule", "Lower Roman": "Romain minuscule", "Upper Alpha": "Alpha majuscule", "Upper Roman": "Romain majuscule", "Anchor...": "Ancre...", "Name": "Nom", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "L'Id doit commencer par une lettre suivi par des lettres, nombres, tirets, points, deux-points ou underscores", "You have unsaved changes are you sure you want to navigate away?": "Vous avez des modifications non enregistr\u00e9es, \u00eates-vous s\u00fbr de quitter la page?", "Restore last draft": "Restaurer le dernier brouillon", "Special character...": "Caract\u00e8re sp\u00e9cial...", "Source code": "Code source", "Insert\/Edit code sample": "Ins\u00e9rer \/ modifier une exemple de code", "Language": "Langue", "Code sample...": "Exemple de code...", "Color Picker": "S\u00e9lecteur de couleurs", "R": "R", "G": "V", "B": "B", "Left to right": "Gauche \u00e0 droite", "Right to left": "Droite \u00e0 gauche", "Emoticons": "Emotic\u00f4nes", "Emoticons...": "\u00c9motic\u00f4nes...", "Metadata and Document Properties": "M\u00e9tadonn\u00e9es et propri\u00e9t\u00e9s du document", "Title": "Titre", "Keywords": "Mots-cl\u00e9s", "Description": "Description", "Robots": "Robots", "Author": "Auteur", "Encoding": "Encodage", "Fullscreen": "Plein \u00e9cran", "Action": "Action", "Shortcut": "Raccourci", "Help": "Aide", "Address": "Adresse", "Focus to menubar": "Cibler la barre de menu", "Focus to toolbar": "Cibler la barre d'outils", "Focus to element path": "Cibler le chemin vers l'\u00e9l\u00e9ment", "Focus to contextual toolbar": "Cibler la barre d'outils contextuelle", "Insert link (if link plugin activated)": "Ins\u00e9rer un lien (si le module link est activ\u00e9)", "Save (if save plugin activated)": "Enregistrer (si le module save est activ\u00e9)", "Find (if searchreplace plugin activated)": "Rechercher (si le module searchreplace est activ\u00e9)", "Plugins installed ({0}):": "Modules install\u00e9s ({0}) : ", "Premium plugins:": "Modules premium :", "Learn more...": "En savoir plus...", "You are using {0}": "Vous utilisez {0}", "Plugins": "Plugins", "Handy Shortcuts": "Raccourcis utiles", "Horizontal line": "Ligne horizontale", "Insert\/edit image": "Ins\u00e9rer\/modifier une image", "Alternative description": "Description alternative", "Accessibility": "Accessibilit\u00e9", "Image is decorative": "L'image est d\u00e9corative", "Source": "Source", "Dimensions": "Dimensions", "Constrain proportions": "Conserver les proportions", "General": "G\u00e9n\u00e9ral", "Advanced": "Avanc\u00e9", "Style": "Style", "Vertical space": "Espacement vertical", "Horizontal space": "Espacement horizontal", "Border": "Bordure", "Insert image": "Ins\u00e9rer une image", "Image...": "Image...", "Image list": "Liste d'images", "Rotate counterclockwise": "Rotation anti-horaire", "Rotate clockwise": "Rotation horaire", "Flip vertically": "Retournement vertical", "Flip horizontally": "Retournement horizontal", "Edit image": "Modifier l'image", "Image options": "Options de l'image", "Zoom in": "Zoomer", "Zoom out": "D\u00e9zoomer", "Crop": "Rogner", "Resize": "Redimensionner", "Orientation": "Orientation", "Brightness": "Luminosit\u00e9", "Sharpen": "Affiner", "Contrast": "Contraste", "Color levels": "Niveaux de couleur", "Gamma": "Gamma", "Invert": "Inverser", "Apply": "Appliquer", "Back": "Retour", "Insert date\/time": "Ins\u00e9rer date\/heure", "Date\/time": "Date\/heure", "Insert\/edit link": "Ins\u00e9rer\/modifier un lien", "Text to display": "Texte \u00e0 afficher", "Url": "Url", "Open link in...": "Ouvrir le lien dans...", "Current window": "Fen\u00eatre active", "None": "n\/a", "New window": "Nouvelle fen\u00eatre", "Open link": "Ouvrir le lien", "Remove link": "Enlever le lien", "Anchors": "Ancres", "Link...": "Lien...", "Paste or type a link": "Coller ou taper un lien", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre une adresse e-mail. Voulez-vous ajouter le pr\u00e9fixe mailto: n\u00e9cessaire?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe http:\/\/ n\u00e9cessaire?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "L'URL que vous avez saisie semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe https:\/\/ requis\u00a0?", "Link list": "Liste de liens", "Insert video": "Ins\u00e9rer une vid\u00e9o", "Insert\/edit video": "Ins\u00e9rer\/modifier une vid\u00e9o", "Insert\/edit media": "Ins\u00e9rer\/modifier un m\u00e9dia", "Alternative source": "Source alternative", "Alternative source URL": "URL de la source alternative", "Media poster (Image URL)": "Affiche de m\u00e9dia (URL de l'image)", "Paste your embed code below:": "Collez votre code d'int\u00e9gration ci-dessous :", "Embed": "Int\u00e9grer", "Media...": "M\u00e9dia...", "Nonbreaking space": "Espace ins\u00e9cable", "Page break": "Saut de page", "Paste as text": "Coller comme texte", "Preview": "Pr\u00e9visualiser", "Print...": "Imprimer...", "Save": "Enregistrer", "Find": "Chercher", "Replace with": "Remplacer par", "Replace": "Remplacer", "Replace all": "Tout remplacer", "Previous": "Pr\u00e9c\u00e9dente", "Next": "Suiv", "Find and Replace": "Trouver et remplacer", "Find and replace...": "Trouver et remplacer...", "Could not find the specified string.": "Impossible de trouver la cha\u00eene sp\u00e9cifi\u00e9e.", "Match case": "Respecter la casse", "Find whole words only": "Mot entier", "Find in selection": "Trouver dans la s\u00e9lection", "Spellcheck": "V\u00e9rification orthographique", "Spellcheck Language": "Langue du correcteur orthographique", "No misspellings found.": "Aucune faute d'orthographe trouv\u00e9e.", "Ignore": "Ignorer", "Ignore all": "Tout ignorer", "Finish": "Finie", "Add to Dictionary": "Ajouter au dictionnaire", "Insert table": "Ins\u00e9rer un tableau", "Table properties": "Propri\u00e9t\u00e9s du tableau", "Delete table": "Supprimer le tableau", "Cell": "Cellule", "Row": "Ligne", "Column": "Colonne", "Cell properties": "Propri\u00e9t\u00e9s de la cellule", "Merge cells": "Fusionner les cellules", "Split cell": "Diviser la cellule", "Insert row before": "Ins\u00e9rer une ligne avant", "Insert row after": "Ins\u00e9rer une ligne apr\u00e8s", "Delete row": "Effacer la ligne", "Row properties": "Propri\u00e9t\u00e9s de la ligne", "Cut row": "Couper la ligne", "Copy row": "Copier la ligne", "Paste row before": "Coller la ligne avant", "Paste row after": "Coller la ligne apr\u00e8s", "Insert column before": "Ins\u00e9rer une colonne avant", "Insert column after": "Ins\u00e9rer une colonne apr\u00e8s", "Delete column": "Effacer la colonne", "Cols": "Colonnes", "Rows": "Lignes", "Width": "Largeur", "Height": "Hauteur", "Cell spacing": "Espacement inter-cellulles", "Cell padding": "Espacement interne cellule", "Caption": "Titre", "Show caption": "Afficher le sous-titrage", "Left": "Gauche", "Center": "Centr\u00e9", "Right": "Droite", "Cell type": "Type de cellule", "Scope": "Etendue", "Alignment": "Alignement", "H Align": "Alignement H", "V Align": "Alignement V", "Top": "Haut", "Middle": "Milieu", "Bottom": "Bas", "Header cell": "Cellule d'en-t\u00eate", "Row group": "Groupe de lignes", "Column group": "Groupe de colonnes", "Row type": "Type de ligne", "Header": "En-t\u00eate", "Body": "Corps", "Footer": "Pied", "Border color": "Couleur de la bordure", "Insert template...": "Ins\u00e9rer un mod\u00e8le...", "Templates": "Th\u00e8mes", "Template": "Mod\u00e8le", "Text color": "Couleur du texte", "Background color": "Couleur d'arri\u00e8re-plan", "Custom...": "Personnalis\u00e9...", "Custom color": "Couleur personnalis\u00e9e", "No color": "Aucune couleur", "Remove color": "Supprimer la couleur", "Table of Contents": "Table des mati\u00e8res", "Show blocks": "Afficher les blocs", "Show invisible characters": "Afficher les caract\u00e8res invisibles", "Word count": "Nombre de mots", "Count": "Total", "Document": "Document", "Selection": "S\u00e9lection", "Words": "Mots", "Words: {0}": "Mots : {0}", "{0} words": "{0} mots", "File": "Fichier", "Edit": "Editer", "Insert": "Ins\u00e9rer", "View": "Voir", "Format": "Format", "Table": "Tableau", "Tools": "Outils", "Powered by {0}": "Propuls\u00e9 par {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zone Texte Riche. Appuyer sur ALT-F9 pour le menu. Appuyer sur ALT-F10 pour la barre d'outils. Appuyer sur ALT-0 pour de l'aide.", "Image title": "Titre d'image", "Border width": "\u00c9paisseur de la bordure", "Border style": "Style de la bordure", "Error": "Erreur", "Warn": "Avertir", "Valid": "Valide", "To open the popup, press Shift+Enter": "Pour ouvrir la popup, appuyez sur Maj+Entr\u00e9e", "Rich Text Area. Press ALT-0 for help.": "Zone de texte riche. Appuyez sur ALT-0 pour l'aide.", "System Font": "Police syst\u00e8me", "Failed to upload image: {0}": "\u00c9chec d'envoi de l'image\u00a0: {0}", "Failed to load plugin: {0} from url {1}": "\u00c9chec de chargement du plug-in\u00a0: {0} \u00e0 partir de l\u2019URL {1}", "Failed to load plugin url: {0}": "\u00c9chec de chargement de l'URL du plug-in\u00a0: {0}", "Failed to initialize plugin: {0}": "\u00c9chec d'initialisation du plug-in\u00a0: {0}", "example": "exemple", "Search": "Rechercher", "All": "Tout", "Currency": "Devise", "Text": "Texte", "Quotations": "Citations", "Mathematical": "Op\u00e9rateurs math\u00e9matiques", "Extended Latin": "Latin \u00e9tendu", "Symbols": "Symboles", "Arrows": "Fl\u00e8ches", "User Defined": "D\u00e9fini par l'utilisateur", "dollar sign": "Symbole dollar", "currency sign": "Symbole devise", "euro-currency sign": "Symbole euro", "colon sign": "Symbole col\u00f3n", "cruzeiro sign": "Symbole cruzeiro", "french franc sign": "Symbole franc fran\u00e7ais", "lira sign": "Symbole lire", "mill sign": "Symbole milli\u00e8me", "naira sign": "Symbole naira", "peseta sign": "Symbole peseta", "rupee sign": "Symbole roupie", "won sign": "Symbole won", "new sheqel sign": "Symbole nouveau ch\u00e9kel", "dong sign": "Symbole dong", "kip sign": "Symbole kip", "tugrik sign": "Symbole tougrik", "drachma sign": "Symbole drachme", "german penny symbol": "Symbole pfennig", "peso sign": "Symbole peso", "guarani sign": "Symbole guarani", "austral sign": "Symbole austral", "hryvnia sign": "Symbole hryvnia", "cedi sign": "Symbole cedi", "livre tournois sign": "Symbole livre tournois", "spesmilo sign": "Symbole spesmilo", "tenge sign": "Symbole tenge", "indian rupee sign": "Symbole roupie indienne", "turkish lira sign": "Symbole lire turque", "nordic mark sign": "Symbole du mark nordique", "manat sign": "Symbole manat", "ruble sign": "Symbole rouble", "yen character": "Sinogramme Yen", "yuan character": "Sinogramme Yuan", "yuan character, in hong kong and taiwan": "Sinogramme Yuan, Hong Kong et Taiwan", "yen\/yuan character variant one": "Sinogramme Yen\/Yuan, premi\u00e8re variante", "Loading emoticons...": "Chargement des \u00e9motic\u00f4nes en cours...", "Could not load emoticons": "\u00c9chec de chargement des \u00e9motic\u00f4nes", "People": "Personnes", "Animals and Nature": "Animaux & nature", "Food and Drink": "Nourriture & boissons", "Activity": "Activit\u00e9", "Travel and Places": "Voyages & lieux", "Objects": "Objets", "Flags": "Drapeaux", "Characters": "Caract\u00e8res", "Characters (no spaces)": "Caract\u00e8res (espaces non compris)", "{0} characters": "{0}\u00a0caract\u00e8res", "Error: Form submit field collision.": "Erreur\u00a0: conflit de champs lors de la soumission du formulaire.", "Error: No form element found.": "Erreur : aucun \u00e9l\u00e9ment de formulaire trouv\u00e9.", "Update": "Mettre \u00e0 jour", "Color swatch": "\u00c9chantillon de couleurs", "Turquoise": "Turquoise", "Green": "Vert", "Blue": "Bleu", "Purple": "Violet", "Navy Blue": "Bleu marine", "Dark Turquoise": "Turquoise fonc\u00e9", "Dark Green": "Vert fonc\u00e9", "Medium Blue": "Bleu moyen", "Medium Purple": "Violet moyen", "Midnight Blue": "Bleu de minuit", "Yellow": "Jaune", "Orange": "Orange", "Red": "Rouge", "Light Gray": "Gris clair", "Gray": "Gris", "Dark Yellow": "Jaune fonc\u00e9", "Dark Orange": "Orange fonc\u00e9", "Dark Red": "Rouge fonc\u00e9", "Medium Gray": "Gris moyen", "Dark Gray": "Gris fonc\u00e9", "Light Green": "Vert clair", "Light Yellow": "Jaune clair", "Light Red": "Rouge clair", "Light Purple": "Violet clair", "Light Blue": "Bleu clair", "Dark Purple": "Violet fonc\u00e9", "Dark Blue": "Bleu fonc\u00e9", "Black": "Noir", "White": "Blanc", "Switch to or from fullscreen mode": "Passer en ou quitter le mode plein \u00e9cran", "Open help dialog": "Ouvrir la bo\u00eete de dialogue d'aide", "history": "historique", "styles": "styles", "formatting": "mise en forme", "alignment": "alignement", "indentation": "retrait", "Font": "Police", "Size": "Taille", "More...": "Plus...", "Select...": "S\u00e9lectionner...", "Preferences": "Pr\u00e9f\u00e9rences", "Yes": "Oui", "No": "Non", "Keyboard Navigation": "Navigation au clavier", "Version": "Version", "Code view": "Affichage du code", "Open popup menu for split buttons": "Ouvrir le menu contextuel pour les boutons partag\u00e9s", "List Properties": "Propri\u00e9t\u00e9s de la liste", "List properties...": "Lister les propri\u00e9t\u00e9s...", "Start list at number": "Liste de d\u00e9part au num\u00e9ro", "Line height": "Hauteur de la ligne", "comments": "commentaires", "Format Painter": "Reproduire la mise en forme", "Insert\/edit iframe": "Ins\u00e9rer\/modifier iframe", "Capitalization": "Mise en majuscules", "lowercase": "minuscule", "UPPERCASE": "MAJUSCULE", "Title Case": "Casse du titre", "permanent pen": "feutre ind\u00e9l\u00e9bile", "Permanent Pen Properties": "Propri\u00e9t\u00e9s du feutre ind\u00e9l\u00e9bile", "Permanent pen properties...": "Propri\u00e9t\u00e9s du feutre ind\u00e9l\u00e9bile...", "case change": "changement de cas", "page embed": "int\u00e9gration de page", "Advanced sort...": "Tri avanc\u00e9...", "Advanced Sort": "Tri avanc\u00e9", "Sort table by column ascending": "Trier le tableau par colonne ascendante", "Sort table by column descending": "Trier le tableau par colonne en ordre d\u00e9croissant", "Sort": "Sorte", "Order": "Ordre", "Sort by": "Trier par", "Ascending": "Ascendant", "Descending": "Descendant", "Column {0}": "Colonne {0}", "Row {0}": "Ligne {0}", "Spellcheck...": "V\u00e9rification orthographique...", "Misspelled word": "Mot mal orthographi\u00e9", "Suggestions": "Suggestions", "Change": "Changement", "Finding word suggestions": "Trouver des suggestions de mots", "Success": "Succ\u00e8s", "Repair": "R\u00e9paration", "Issue {0} of {1}": " {0} Erreur sur {1}", "Images must be marked as decorative or have an alternative text description": "Les images doivent \u00eatre marqu\u00e9es comme d\u00e9coratives ou avoir une description textuelle alternative", "Images must have an alternative text description. Decorative images are not allowed.": "Les images doivent avoir une description textuelle alternative. Les images d\u00e9coratives ne sont pas autoris\u00e9es.", "Or provide alternative text:": "Ou fournissez un texte alternatif\u00a0:", "Make image decorative:": "Rendre l'image d\u00e9corative\u00a0:", "ID attribute must be unique": "L'attribut ID doit \u00eatre unique", "Make ID unique": "Rendre l'identifiant unique", "Keep this ID and remove all others": "Conservez cet identifiant et supprimez tous les autres", "Remove this ID": "Supprimer cet identifiant", "Remove all IDs": "Supprimer tous les identifiants", "Checklist": "Liste de contr\u00f4le", "Anchor": "Ancre", "Special character": "Caract\u00e8res sp\u00e9ciaux", "Code sample": "Extrait de code", "Color": "Couleur", "Document properties": "Propri\u00e9t\u00e9 du document", "Image description": "Description de l'image", "Image": "Image", "Insert link": "Ins\u00e9rer un lien", "Target": "Cible", "Link": "Lien", "Poster": "Publier", "Media": "M\u00e9dia", "Print": "Imprimer", "Prev": "Pr\u00e9c ", "Find and replace": "Trouver et remplacer", "Whole words": "Mots entiers", "Insert template": "Ajouter un th\u00e8me" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/he_IL.js ================================================ tinymce.addI18n('he_IL',{ "Redo": "\u05d1\u05e6\u05e2 \u05e9\u05d5\u05d1", "Undo": "\u05d1\u05d8\u05dc", "Cut": "\u05d2\u05d6\u05d5\u05e8", "Copy": "\u05d4\u05e2\u05ea\u05e7", "Paste": "\u05d4\u05d3\u05d1\u05e7", "Select all": "\u05d1\u05d7\u05e8 \u05d4\u05db\u05dc", "New document": "\u05de\u05e1\u05de\u05da \u05d7\u05d3\u05e9", "Ok": "\u05d0\u05d9\u05e9\u05d5\u05e8", "Cancel": "\u05d1\u05d9\u05d8\u05d5\u05dc", "Visual aids": "\u05e2\u05d6\u05e8\u05d9\u05dd \u05d7\u05d6\u05d5\u05ea\u05d9\u05d9\u05dd", "Bold": "\u05de\u05d5\u05d3\u05d2\u05e9", "Italic": "\u05e0\u05d8\u05d5\u05d9", "Underline": "\u05e7\u05d5 \u05ea\u05d7\u05ea\u05d5\u05df", "Strikethrough": "\u05e7\u05d5 \u05d7\u05d5\u05e6\u05d4", "Superscript": "\u05db\u05ea\u05d1 \u05e2\u05d9\u05dc\u05d9", "Subscript": "\u05db\u05ea\u05d1 \u05ea\u05d7\u05ea\u05d9", "Clear formatting": "\u05e0\u05e7\u05d4 \u05e2\u05d9\u05e6\u05d5\u05d1", "Align left": "\u05d9\u05e9\u05e8 \u05dc\u05e9\u05de\u05d0\u05dc", "Align center": "\u05de\u05e8\u05db\u05d6", "Align right": "\u05d9\u05e9\u05e8 \u05dc\u05d9\u05de\u05d9\u05df", "Justify": "\u05d9\u05d9\u05e9\u05e8", "Bullet list": "\u05e8\u05e9\u05d9\u05de\u05ea \u05ea\u05d1\u05dc\u05d9\u05d8\u05d9\u05dd", "Numbered list": "\u05e8\u05e9\u05d9\u05de\u05d4 \u05de\u05de\u05d5\u05e1\u05e4\u05e8\u05ea", "Decrease indent": "\u05d4\u05e7\u05d8\u05df \u05d4\u05d6\u05d7\u05d4", "Increase indent": "\u05d4\u05d2\u05d3\u05dc \u05d4\u05d6\u05d7\u05d4", "Close": "\u05e1\u05d2\u05d5\u05e8", "Formats": "\u05e2\u05d9\u05e6\u05d5\u05d1\u05d9\u05dd", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u05d4\u05d3\u05e4\u05d3\u05e4\u05df \u05e9\u05dc\u05da \u05d0\u05d9\u05e0\u05d5 \u05de\u05d0\u05e4\u05e9\u05e8 \u05d2\u05d9\u05e9\u05d4 \u05d9\u05e9\u05d9\u05e8\u05d4 \u05dc\u05dc\u05d5\u05d7. \u05d0\u05e0\u05d0 \u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e7\u05d9\u05e6\u05d5\u05e8\u05d9 \u05d4\u05de\u05e7\u05dc\u05d3\u05ea Ctrl+X\/C\/V \u05d1\u05de\u05e7\u05d5\u05dd.", "Headers": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea", "Header 1": "\u05db\u05d5\u05ea\u05e8\u05ea 1", "Header 2": "\u05db\u05d5\u05ea\u05e8\u05ea 2", "Header 3": "\u05db\u05d5\u05ea\u05e8\u05ea 3", "Header 4": "\u05db\u05d5\u05ea\u05e8\u05ea 4", "Header 5": "\u05db\u05d5\u05ea\u05e8\u05ea 5", "Header 6": "\u05db\u05d5\u05ea\u05e8\u05ea 6", "Headings": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea", "Heading 1": "\u05db\u05d5\u05ea\u05e8\u05ea 1", "Heading 2": "\u05db\u05d5\u05ea\u05e8\u05ea 2", "Heading 3": "\u05db\u05d5\u05ea\u05e8\u05ea 3", "Heading 4": "\u05db\u05d5\u05ea\u05e8\u05ea 4", "Heading 5": "\u05db\u05d5\u05ea\u05e8\u05ea 5", "Heading 6": "\u05db\u05d5\u05ea\u05e8\u05ea 6", "Preformatted": "\u05de\u05e2\u05d5\u05e6\u05d1 \u05de\u05e8\u05d0\u05e9", "Div": "Div", "Pre": "Pre", "Code": "\u05e7\u05d5\u05d3", "Paragraph": "\u05e4\u05e1\u05e7\u05d4", "Blockquote": "Blockquote", "Inline": "\u05d1\u05ea\u05d5\u05da \u05e9\u05d5\u05e8\u05d4", "Blocks": "\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u05d4\u05d3\u05d1\u05e7\u05d4 \u05d1\u05de\u05e6\u05d1 \u05d8\u05e7\u05e1\u05d8 \u05e8\u05d2\u05d9\u05dc. \u05ea\u05db\u05e0\u05d9\u05dd \u05d9\u05d5\u05d3\u05d1\u05e7\u05d5 \u05de\u05e2\u05ea\u05d4 \u05db\u05d8\u05e7\u05e1\u05d8 \u05e8\u05d2\u05d9\u05dc \u05e2\u05d3 \u05e9\u05ea\u05db\u05d1\u05d4 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5.", "Fonts": "\u05d2\u05d5\u05e4\u05e0\u05d9\u05dd", "Font Sizes": "\u05d2\u05d5\u05d3\u05dc \u05d2\u05d5\u05e4\u05e0\u05d9\u05dd", "Class": "\u05de\u05d7\u05dc\u05e7\u05d4", "Browse for an image": "\u05d7\u05e4\u05e9 \u05ea\u05de\u05d5\u05e0\u05d4", "OR": "OR", "Drop an image here": "\u05e9\u05d7\u05e8\u05e8 \u05ea\u05de\u05d5\u05e0\u05d4 \u05db\u05d0\u05df", "Upload": "\u05d4\u05e2\u05dc\u05d4", "Block": "\u05d1\u05dc\u05d5\u05e7", "Align": "\u05d9\u05e9\u05e8", "Default": "\u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc", "Circle": "\u05e2\u05d9\u05d2\u05d5\u05dc", "Disc": "\u05d7\u05d9\u05e9\u05d5\u05e7", "Square": "\u05e8\u05d9\u05d1\u05d5\u05e2", "Lower Alpha": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d0\u05e0\u05d2\u05dc\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea", "Lower Greek": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d9\u05d5\u05d5\u05e0\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea", "Lower Roman": "\u05e1\u05e4\u05e8\u05d5\u05ea \u05e8\u05d5\u05de\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea", "Upper Alpha": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d0\u05e0\u05d2\u05dc\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc\u05d5\u05ea", "Upper Roman": "\u05e1\u05e4\u05e8\u05d5\u05ea \u05e8\u05d5\u05de\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc\u05d5\u05ea", "Anchor...": "\u05e2\u05d5\u05d2\u05df...", "Name": "\u05e9\u05dd", "Id": "\u05de\u05d6\u05d4\u05d4", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u05d4\u05de\u05d6\u05d4\u05d4 \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05d1\u05d0\u05d5\u05ea \u05d5\u05dc\u05d0\u05d7\u05e8\u05d9\u05d4 \u05e8\u05e7 \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea, \u05de\u05e1\u05e4\u05e8\u05d9\u05dd, \u05de\u05e7\u05e4\u05d9\u05dd, \u05e0\u05e7\u05d5\u05d3\u05d5\u05ea, \u05e0\u05e7\u05d5\u05d3\u05ea\u05d9\u05d9\u05dd \u05d0\u05d5 \u05e7\u05d5\u05d5\u05d9\u05dd \u05ea\u05d7\u05ea\u05d9\u05d9\u05dd.", "You have unsaved changes are you sure you want to navigate away?": "\u05d4\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05dc\u05d0 \u05e0\u05e9\u05de\u05e8\u05d5. \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05e6\u05d0\u05ea \u05de\u05d4\u05d3\u05e3?", "Restore last draft": "\u05e9\u05d7\u05d6\u05e8 \u05d8\u05d9\u05d5\u05d8\u05d4 \u05d0\u05d7\u05e8\u05d5\u05e0\u05d4", "Special character...": "\u05ea\u05d5\u05d5\u05d9\u05dd \u05de\u05d9\u05d5\u05d7\u05d3\u05d9\u05dd...", "Source code": "\u05e7\u05d5\u05d3 \u05de\u05e7\u05d5\u05e8", "Insert\/Edit code sample": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05d3\u05d5\u05d2\u05de\u05ea \u05e7\u05d5\u05d3", "Language": "\u05e9\u05e4\u05d4", "Code sample...": "\u05d3\u05d5\u05d2\u05de\u05ea \u05e7\u05d5\u05d3...", "Color Picker": "\u05d1\u05d5\u05e8\u05e8 \u05e6\u05d1\u05e2\u05d9\u05dd", "R": "\u05d0'", "G": "\u05d9'", "B": "\u05db'", "Left to right": "\u05de\u05e9\u05de\u05d0\u05dc \u05dc\u05d9\u05de\u05d9\u05df", "Right to left": "\u05de\u05d9\u05de\u05d9\u05df \u05dc\u05e9\u05de\u05d0\u05dc", "Emoticons...": "\u05e1\u05de\u05dc\u05d9 \u05d4\u05d1\u05e2\u05d4...", "Metadata and Document Properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05de\u05d8\u05d4-\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d5\u05de\u05e1\u05de\u05da", "Title": "\u05db\u05d5\u05ea\u05e8\u05ea", "Keywords": "\u05de\u05d9\u05dc\u05d5\u05ea \u05de\u05e4\u05ea\u05d7", "Description": "\u05ea\u05d9\u05d0\u05d5\u05e8", "Robots": "\u05e8\u05d5\u05d1\u05d5\u05d8\u05d9\u05dd", "Author": "\u05de\u05d7\u05d1\u05e8", "Encoding": "\u05e7\u05d9\u05d3\u05d5\u05d3", "Fullscreen": "\u05de\u05e1\u05da \u05de\u05dc\u05d0", "Action": "\u05e4\u05e2\u05d5\u05dc\u05d4", "Shortcut": "\u05e7\u05d9\u05e6\u05d5\u05e8", "Help": "\u05e2\u05d6\u05e8\u05d4", "Address": "\u05db\u05ea\u05d5\u05d1\u05ea", "Focus to menubar": "\u05d4\u05e2\u05d1\u05e8 \u05de\u05d9\u05e7\u05d5\u05d3 \u05dc\u05e1\u05e8\u05d2\u05dc \u05d4\u05ea\u05e4\u05e8\u05d8\u05d9\u05dd", "Focus to toolbar": "\u05d4\u05e2\u05d1\u05e8 \u05de\u05d9\u05e7\u05d5\u05d3 \u05dc\u05e1\u05e8\u05d2\u05dc \u05d4\u05db\u05dc\u05d9\u05dd", "Focus to element path": "\u05e2\u05d1\u05e8 \u05de\u05d9\u05e7\u05d5\u05d3 \u05dc\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05e4\u05e8\u05d9\u05d8", "Focus to contextual toolbar": "\u05d4\u05e2\u05d1\u05e8 \u05de\u05d9\u05e7\u05d5\u05d3 \u05dc\u05e1\u05e8\u05d2\u05dc \u05ea\u05d5\u05db\u05df", "Insert link (if link plugin activated)": "\u05d4\u05db\u05e0\u05e1 \u05e7\u05d9\u05e9\u05d5\u05e8 (\u05d0\u05dd \u05ea\u05d5\u05e1\u05e3 \"\u05e7\u05d9\u05e9\u05d5\u05e8\u05d9\u05dd\" \u05e4\u05e2\u05d9\u05dc)", "Save (if save plugin activated)": "\u05e9\u05de\u05d5\u05e8 (\u05d0\u05dd \u05ea\u05d5\u05e1\u05e3 \"\u05e9\u05de\u05d9\u05e8\u05d4\" \u05e4\u05e2\u05d9\u05dc)", "Find (if searchreplace plugin activated)": "\u05d7\u05e4\u05e9 (\u05d0\u05dd \u05ea\u05d5\u05e1\u05e3 \"\u05d7\u05e4\u05e9 \u05d5\u05d4\u05d7\u05dc\u05e3\" \u05e4\u05e2\u05d9\u05dc)", "Plugins installed ({0}):": "\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05de\u05d5\u05ea\u05e7\u05e0\u05d9\u05dd ({0}):", "Premium plugins:": "\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05d1\u05ea\u05e9\u05dc\u05d5\u05dd:", "Learn more...": "\u05dc\u05de\u05d3 \u05e2\u05d5\u05d3...", "You are using {0}": "\u05d0\u05ea\\\u05d4 \u05de\u05e9\u05ea\u05de\u05e9\\\u05ea {0}", "Plugins": "\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd", "Handy Shortcuts": "\u05e7\u05d9\u05e6\u05d5\u05e8\u05d9\u05dd \u05e9\u05d9\u05de\u05d5\u05e9\u05d9\u05d9\u05dd", "Horizontal line": "\u05e7\u05d5 \u05d0\u05d5\u05e4\u05e7\u05d9", "Insert\/edit image": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05ea\u05de\u05d5\u05e0\u05d4", "Image description": "\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d4\u05ea\u05de\u05d5\u05e0\u05d4", "Source": "\u05de\u05e7\u05d5\u05e8", "Dimensions": "\u05de\u05d9\u05de\u05d3\u05d9\u05dd", "Constrain proportions": "\u05d4\u05d2\u05d1\u05dc\u05ea \u05e4\u05e8\u05d5\u05e4\u05d5\u05e8\u05e6\u05d9\u05d5\u05ea", "General": "\u05db\u05dc\u05dc\u05d9", "Advanced": "\u05de\u05ea\u05e7\u05d3\u05dd", "Style": "\u05e1\u05d2\u05e0\u05d5\u05df", "Vertical space": "\u05de\u05e8\u05d5\u05d5\u05d7 \u05d0\u05e0\u05db\u05d9", "Horizontal space": "\u05de\u05e8\u05d5\u05d5\u05d7 \u05d0\u05d5\u05e4\u05e7\u05d9", "Border": "\u05de\u05e1\u05d2\u05e8\u05ea", "Insert image": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05de\u05d5\u05e0\u05d4", "Image...": "\u05ea\u05de\u05d5\u05e0\u05d4...", "Image list": "\u05e8\u05e9\u05d9\u05de\u05ea \u05ea\u05de\u05d5\u05e0\u05d5\u05ea", "Rotate counterclockwise": "\u05e1\u05d5\u05d1\u05d1 \u05d1\u05db\u05d9\u05d5\u05d5\u05df \u05d4\u05e4\u05d5\u05da \u05dc\u05e9\u05e2\u05d5\u05df", "Rotate clockwise": "\u05e1\u05d5\u05d1\u05d1 \u05d1\u05db\u05d9\u05d5\u05d5\u05df \u05d4\u05e9\u05e2\u05d5\u05df", "Flip vertically": "\u05d4\u05e4\u05d5\u05da \u05d0\u05e0\u05db\u05d9\u05ea", "Flip horizontally": "\u05d4\u05e4\u05d5\u05da \u05d0\u05d5\u05e4\u05e7\u05d9\u05ea", "Edit image": "\u05e2\u05e8\u05d5\u05da \u05ea\u05de\u05d5\u05e0\u05d4", "Image options": "\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05ea\u05de\u05d5\u05e0\u05d4", "Zoom in": "\u05d4\u05d2\u05d3\u05dc \u05ea\u05e6\u05d5\u05d2\u05d4", "Zoom out": "\u05d4\u05e7\u05d8\u05df \u05ea\u05e6\u05d5\u05d2\u05d4", "Crop": "\u05e7\u05e6\u05e5", "Resize": "\u05e9\u05e0\u05d4 \u05d2\u05d5\u05d3\u05dc", "Orientation": "\u05db\u05d9\u05d5\u05d5\u05df \u05dc\u05d0\u05d5\u05e8\u05da \/ \u05dc\u05e8\u05d5\u05d7\u05d1", "Brightness": "\u05d1\u05d4\u05d9\u05e8\u05d5\u05ea", "Sharpen": "\u05d7\u05d3\u05d3", "Contrast": "\u05e0\u05d9\u05d2\u05d5\u05d3\u05d9\u05d5\u05ea", "Color levels": "\u05e8\u05de\u05d5\u05ea \u05e6\u05d1\u05e2\u05d9\u05dd", "Gamma": "\u05d2\u05d0\u05de\u05d4", "Invert": "\u05d4\u05d9\u05e4\u05d5\u05da \u05e6\u05d1\u05e2\u05d9\u05dd", "Apply": "\u05d9\u05d9\u05e9\u05dd", "Back": "\u05d7\u05d6\u05d5\u05e8", "Insert date\/time": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05d0\u05e8\u05d9\u05da\/\u05e9\u05e2\u05d4", "Date\/time": "\u05ea\u05d0\u05e8\u05d9\u05da\/\u05e9\u05e2\u05d4", "Insert\/Edit Link": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05e7\u05d9\u05e9\u05d5\u05e8", "Insert\/edit link": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05e7\u05d9\u05e9\u05d5\u05e8", "Text to display": "\u05d8\u05e7\u05e1\u05d8 \u05dc\u05d4\u05e6\u05d2\u05d4", "Url": "\u05db\u05ea\u05d5\u05d1\u05ea \u05e7\u05d9\u05e9\u05d5\u05e8", "Open link in...": "\u05e4\u05ea\u05d7 \u05e7\u05d9\u05e9\u05d5\u05e8 \u05d1...", "Current window": "\u05d7\u05dc\u05d5\u05df \u05e0\u05d5\u05db\u05d7\u05d9", "None": "\u05dc\u05dc\u05d0", "New window": "\u05d7\u05dc\u05d5\u05df \u05d7\u05d3\u05e9", "Remove link": "\u05de\u05d7\u05e7 \u05e7\u05d9\u05e9\u05d5\u05e8", "Anchors": "\u05e2\u05d5\u05d2\u05e0\u05d9\u05dd", "Link...": "\u05e7\u05d9\u05e9\u05d5\u05e8...", "Paste or type a link": "\u05d4\u05d3\u05d1\u05e7 \u05d0\u05d5 \u05d4\u05e7\u05dc\u05d3 \u05e7\u05d9\u05e9\u05d5\u05e8", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u05e0\u05e8\u05d0\u05d4 \u05e9\u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05e9\u05d4\u05db\u05e0\u05e1\u05ea \u05d4\u05d9\u05d0 \u05db\u05ea\u05d5\u05d1\u05ea \u05d0\u05d9\u05de\u05d9\u05d9\u05dc. \u05d4\u05d0\u05dd \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d0\u05ea \u05d4\u05e7\u05d9\u05d3\u05d5\u05de\u05ea :mailto?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u05e0\u05e8\u05d0\u05d4 \u05e9\u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05e9\u05d4\u05db\u05e0\u05e1\u05ea \u05d4\u05d9\u05d0 \u05e7\u05d9\u05e9\u05d5\u05e8 \u05d7\u05d9\u05e6\u05d5\u05e0\u05d9 \u05d4\u05d0\u05dd \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05e7\u05d9\u05d3\u05d5\u05de\u05ea http:\/\/?", "Link list": "\u05e8\u05e9\u05d9\u05de\u05ea \u05e7\u05d9\u05e9\u05d5\u05e8\u05d9\u05dd", "Insert video": "\u05d4\u05db\u05e0\u05e1 \u05e1\u05e8\u05d8\u05d5\u05df", "Insert\/edit video": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05e1\u05e8\u05d8\u05d5\u05df", "Insert\/edit media": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05de\u05d3\u05d9\u05d4", "Alternative source": "\u05de\u05e7\u05d5\u05e8 \u05de\u05e9\u05e0\u05d9", "Alternative source URL": "\u05db\u05ea\u05d5\u05d1\u05ea URL \u05dc\u05de\u05e7\u05d5\u05e8 \u05d7\u05dc\u05d5\u05e4\u05d9", "Media poster (Image URL)": "\u05e4\u05d5\u05e1\u05d8\u05e8 \u05de\u05d3\u05d9\u05d4 (\u05db\u05ea\u05d5\u05d1\u05ea URL \u05dc\u05ea\u05de\u05d5\u05e0\u05d4)", "Paste your embed code below:": "\u05d4\u05d3\u05d1\u05e7 \u05e7\u05d5\u05d3 \u05d4\u05d8\u05de\u05e2\u05d4 \u05de\u05ea\u05d7\u05ea:", "Embed": "\u05d4\u05d8\u05de\u05e2", "Media...": "\u05de\u05d3\u05d9\u05d4...", "Nonbreaking space": "\u05e8\u05d5\u05d5\u05d7 (\u05dc\u05dc\u05d0 \u05e9\u05d1\u05d9\u05e8\u05ea \u05e9\u05d5\u05e8\u05d4)", "Page break": "\u05d3\u05e3 \u05d7\u05d3\u05e9", "Paste as text": "\u05d4\u05d3\u05d1\u05e7 \u05db\u05d8\u05e7\u05e1\u05d8", "Preview": "\u05ea\u05e6\u05d5\u05d2\u05d4 \u05de\u05e7\u05d3\u05d9\u05de\u05d4", "Print...": "\u05d4\u05d3\u05e4\u05e1...", "Save": "\u05e9\u05de\u05d9\u05e8\u05d4", "Find": "\u05d7\u05e4\u05e9", "Replace with": "\u05d4\u05d7\u05dc\u05e3 \u05d1", "Replace": "\u05d4\u05d7\u05dc\u05e3", "Replace all": "\u05d4\u05d7\u05dc\u05e3 \u05d4\u05db\u05dc", "Previous": "\u05d4\u05e7\u05d5\u05d3\u05dd", "Next": "\u05d4\u05d1\u05d0", "Find and replace...": "\u05d7\u05d9\u05e4\u05d5\u05e9 \u05d5\u05d4\u05d7\u05dc\u05e4\u05d4...", "Could not find the specified string.": "\u05de\u05d7\u05e8\u05d5\u05d6\u05ea \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d4", "Match case": "\u05d4\u05d1\u05d7\u05df \u05d1\u05d9\u05df \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea \u05dc\u05d2\u05d3\u05d5\u05dc\u05d5\u05ea", "Find whole words only": "\u05d7\u05e4\u05e9 \u05de\u05d9\u05dc\u05d9\u05dd \u05e9\u05dc\u05de\u05d5\u05ea \u05d1\u05dc\u05d1\u05d3", "Spell check": "\u05d1\u05d3\u05d9\u05e7\u05ea \u05d0\u05d9\u05d5\u05ea", "Ignore": "\u05d4\u05ea\u05e2\u05dc\u05dd", "Ignore all": "\u05d4\u05ea\u05e2\u05dc\u05dd \u05de\u05d4\u05db\u05dc", "Finish": "\u05e1\u05d9\u05d9\u05dd", "Add to Dictionary": "\u05d4\u05d5\u05e1\u05e3 \u05dc\u05de\u05d9\u05dc\u05d5\u05df", "Insert table": "\u05d4\u05db\u05e0\u05e1 \u05d8\u05d1\u05dc\u05d4", "Table properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05d8\u05d1\u05dc\u05d4", "Delete table": "\u05de\u05d7\u05e7 \u05d8\u05d1\u05dc\u05d4", "Cell": "\u05ea\u05d0", "Row": "\u05e9\u05d5\u05e8\u05d4", "Column": "\u05e2\u05de\u05d5\u05d3\u05d4", "Cell properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05ea\u05d0", "Merge cells": "\u05de\u05d6\u05d2 \u05ea\u05d0\u05d9\u05dd", "Split cell": "\u05e4\u05e6\u05dc \u05ea\u05d0", "Insert row before": "\u05d4\u05d5\u05e1\u05e3 \u05e9\u05d5\u05e8\u05d4 \u05dc\u05e4\u05e0\u05d9", "Insert row after": "\u05d4\u05d5\u05e1\u05e3 \u05e9\u05d5\u05e8\u05d4 \u05d0\u05d7\u05e8\u05d9", "Delete row": "\u05de\u05d7\u05e7 \u05e9\u05d5\u05e8\u05d4", "Row properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05e9\u05d5\u05e8\u05d4", "Cut row": "\u05d2\u05d6\u05d5\u05e8 \u05e9\u05d5\u05e8\u05d4", "Copy row": "\u05d4\u05e2\u05ea\u05e7 \u05e9\u05d5\u05e8\u05d4", "Paste row before": "\u05d4\u05d3\u05d1\u05e7 \u05e9\u05d5\u05e8\u05d4 \u05dc\u05e4\u05e0\u05d9", "Paste row after": "\u05d4\u05e2\u05ea\u05e7 \u05e9\u05d5\u05e8\u05d4 \u05d0\u05d7\u05e8\u05d9", "Insert column before": "\u05d4\u05e2\u05ea\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4 \u05dc\u05e4\u05e0\u05d9", "Insert column after": "\u05d4\u05e2\u05ea\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4 \u05d0\u05d7\u05e8\u05d9", "Delete column": "\u05de\u05d7\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4", "Cols": "\u05e2\u05de\u05d5\u05d3\u05d5\u05ea", "Rows": "\u05e9\u05d5\u05e8\u05d5\u05ea", "Width": "\u05e8\u05d5\u05d7\u05d1", "Height": "\u05d2\u05d5\u05d1\u05d4", "Cell spacing": "\u05e9\u05d5\u05dc\u05d9\u05d9\u05dd \u05d7\u05d9\u05e6\u05d5\u05e0\u05d9\u05dd \u05dc\u05ea\u05d0", "Cell padding": "\u05e9\u05d5\u05dc\u05d9\u05d9\u05dd \u05e4\u05e0\u05d9\u05de\u05d9\u05d9\u05dd \u05dc\u05ea\u05d0", "Show caption": "\u05d4\u05e6\u05d2 \u05db\u05ea\u05d5\u05d1\u05d9\u05ea", "Left": "\u05e9\u05de\u05d0\u05dc", "Center": "\u05de\u05e8\u05db\u05d6", "Right": "\u05d9\u05de\u05d9\u05df", "Cell type": "\u05e1\u05d5\u05d2 \u05ea\u05d0", "Scope": "\u05d4\u05d9\u05e7\u05e3", "Alignment": "\u05d9\u05d9\u05e9\u05d5\u05e8", "H Align": "\u05d9\u05d9\u05e9\u05d5\u05e8 \u05d0\u05d5\u05e4\u05e7\u05d9", "V Align": "\u05d9\u05d9\u05e9\u05d5\u05e8 \u05d0\u05e0\u05db\u05d9", "Top": "\u05e2\u05dc\u05d9\u05d5\u05df", "Middle": "\u05d0\u05de\u05e6\u05e2", "Bottom": "\u05ea\u05d7\u05ea\u05d9\u05ea", "Header cell": "\u05db\u05d5\u05ea\u05e8\u05ea \u05dc\u05ea\u05d0", "Row group": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05e9\u05d5\u05e8\u05d5\u05ea", "Column group": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05e2\u05de\u05d5\u05d3\u05d5\u05ea", "Row type": "\u05e1\u05d5\u05d2 \u05e9\u05d5\u05e8\u05d4", "Header": "\u05db\u05d5\u05ea\u05e8\u05ea", "Body": "\u05d2\u05d5\u05e3 \u05d4\u05d8\u05d1\u05dc\u05d0", "Footer": "\u05db\u05d5\u05ea\u05e8\u05ea \u05ea\u05d7\u05ea\u05d5\u05e0\u05d4", "Border color": "\u05e6\u05d1\u05e2 \u05d2\u05d1\u05d5\u05dc", "Insert template...": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05d1\u05e0\u05d9\u05ea...", "Templates": "\u05ea\u05d1\u05e0\u05d9\u05d5\u05ea", "Template": "\u05ea\u05d1\u05e0\u05d9\u05ea", "Text color": "\u05e6\u05d1\u05e2 \u05d4\u05db\u05ea\u05d1", "Background color": "\u05e6\u05d1\u05e2 \u05e8\u05e7\u05e2", "Custom...": "\u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea...", "Custom color": "\u05e6\u05d1\u05e2 \u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea", "No color": "\u05dc\u05dc\u05d0 \u05e6\u05d1\u05e2", "Remove color": "\u05d4\u05e1\u05e8 \u05e6\u05d1\u05e2", "Table of Contents": "\u05ea\u05d5\u05db\u05df \u05e2\u05e0\u05d9\u05d9\u05e0\u05d9\u05dd", "Show blocks": "\u05d4\u05e6\u05d2 \u05ea\u05d9\u05d1\u05d5\u05ea", "Show invisible characters": "\u05d4\u05e6\u05d2 \u05ea\u05d5\u05d5\u05d9\u05dd \u05dc\u05d0 \u05e0\u05e8\u05d0\u05d9\u05dd", "Word count": "\u05e1\u05e4\u05d9\u05e8\u05ea \u05de\u05d9\u05dc\u05d9\u05dd", "Count": "\u05e1\u05e4\u05d9\u05e8\u05d4", "Document": "\u05de\u05e1\u05de\u05da", "Selection": "\u05d1\u05d7\u05d9\u05e8\u05d4", "Words": "\u05de\u05d9\u05dc\u05d9\u05dd", "Words: {0}": "\u05de\u05d9\u05dc\u05d9\u05dd: {0}", "{0} words": "{0} \u05de\u05d9\u05dc\u05d9\u05dd", "File": "\u05e7\u05d5\u05d1\u05e5", "Edit": "\u05e2\u05e8\u05d9\u05db\u05d4", "Insert": "\u05d4\u05d5\u05e1\u05e4\u05d4", "View": "\u05ea\u05e6\u05d5\u05d2\u05d4", "Format": "\u05e4\u05d5\u05e8\u05de\u05d8", "Table": "\u05d8\u05d1\u05dc\u05d4", "Tools": "\u05db\u05dc\u05d9\u05dd", "Powered by {0}": "\u05de\u05d5\u05e4\u05e2\u05dc \u05e2\"\u05d9 {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u05ea\u05d9\u05d1\u05ea \u05e2\u05e8\u05d9\u05db\u05d4 \u05d7\u05db\u05de\u05d4. \u05dc\u05d7\u05e5 Alt-F9 \u05dc\u05ea\u05e4\u05e8\u05d9\u05d8. Alt-F10 \u05dc\u05ea\u05e6\u05d5\u05d2\u05ea \u05db\u05e4\u05ea\u05d5\u05e8\u05d9\u05dd, Alt-0 \u05dc\u05e2\u05d6\u05e8\u05d4", "Image title": "\u05db\u05d5\u05ea\u05e8\u05ea \u05ea\u05de\u05d5\u05e0\u05d4", "Border width": "\u05e8\u05d5\u05d7\u05d1 \u05d2\u05d1\u05d5\u05dc", "Border style": "\u05e1\u05d2\u05e0\u05d5\u05df \u05d2\u05d1\u05d5\u05dc", "Error": "\u05e9\u05d2\u05d9\u05d0\u05d4", "Warn": "\u05d0\u05d6\u05d4\u05e8\u05d4", "Valid": "\u05d7\u05d5\u05e7\u05d9", "To open the popup, press Shift+Enter": "\u05db\u05d3\u05d9 \u05dc\u05e4\u05ea\u05d5\u05d7 \u05d0\u05ea \u05d4\u05e4\u05e8\u05d9\u05d8 \u05d4\u05de\u05d5\u05e7\u05e4\u05e5, \u05d4\u05e7\u05e9 \u05e2\u05dc Shift+Enter", "Rich Text Area. Press ALT-0 for help.": "\u05d0\u05d6\u05d5\u05e8 \u05d8\u05e7\u05e1\u05d8 \u05e2\u05e9\u05d9\u05e8. \u05d4\u05e7\u05e9 \u05e2\u05dc ALT-0 \u05dc\u05e2\u05d6\u05e8\u05d4.", "System Font": "\u05d2\u05d5\u05e4\u05df \u05de\u05e2\u05e8\u05db\u05ea", "Failed to upload image: {0}": "\u05db\u05e9\u05dc \u05d1\u05d4\u05e2\u05dc\u05d0\u05ea \u05ea\u05de\u05d5\u05e0\u05d4: {0}", "Failed to load plugin: {0} from url {1}": "\u05db\u05e9\u05dc \u05d1\u05d8\u05e2\u05d9\u05e0\u05ea \u05d9\u05d9\u05e9\u05d5\u05dd Plugin: {0} \u05de\u05db\u05ea\u05d5\u05d1\u05ea URL\u200f {1}", "Failed to load plugin url: {0}": "\u05db\u05e9\u05dc \u05d1\u05d8\u05e2\u05d9\u05e0\u05ea \u05db\u05ea\u05d5\u05d1\u05ea URL \u05e9\u05dc \u05d9\u05d9\u05e9\u05d5\u05dd Plugin\u200f: {0}", "Failed to initialize plugin: {0}": "\u05db\u05e9\u05dc \u05d1\u05d0\u05ea\u05d7\u05d5\u05dc \u05d9\u05d9\u05e9\u05d5\u05dd Plugin\u200f: {0}", "example": "\u05d3\u05d5\u05d2\u05de\u05d4", "Search": "\u05d7\u05e4\u05e9", "All": "\u05d4\u05db\u05dc", "Currency": "\u05de\u05d8\u05d1\u05e2", "Text": "\u05d8\u05e7\u05e1\u05d8", "Quotations": "\u05e9\u05d0\u05dc\u05d5\u05ea", "Mathematical": "\u05de\u05ea\u05de\u05d8\u05d9", "Extended Latin": "\u05dc\u05d8\u05d9\u05e0\u05d9\u05ea \u05de\u05d5\u05e8\u05d7\u05d1\u05ea", "Symbols": "\u05e1\u05de\u05dc\u05d9\u05dd", "Arrows": "\u05d7\u05d9\u05e6\u05d9\u05dd", "User Defined": "\u05de\u05d5\u05d2\u05d3\u05e8 \u05e2\u05dc-\u05d9\u05d3\u05d9 \u05d4\u05de\u05e9\u05ea\u05de\u05e9", "dollar sign": "\u05e1\u05d9\u05de\u05df \u05d3\u05d5\u05dc\u05e8", "currency sign": "\u05e1\u05d9\u05de\u05df \u05de\u05d8\u05d1\u05e2", "euro-currency sign": "\u05e1\u05d9\u05de\u05df \u05de\u05d8\u05d1\u05e2 \u05d0\u05d9\u05e8\u05d5", "colon sign": "\u05e1\u05d9\u05de\u05df \u05e7\u05d5\u05dc\u05d5\u05df", "cruzeiro sign": "\u05e1\u05d9\u05de\u05df \u05e7\u05e8\u05d5\u05d6\u05e8\u05d5", "french franc sign": "\u05e1\u05d9\u05de\u05df \u05e4\u05e8\u05e0\u05e7 \u05e6\u05e8\u05e4\u05ea\u05d9", "lira sign": "\u05e1\u05d9\u05de\u05df \u05dc\u05d9\u05e8\u05d4", "mill sign": "\u05e1\u05d9\u05de\u05df \u05de\u05d9\u05dc", "naira sign": "\u05e1\u05d9\u05de\u05df \u05e0\u05d0\u05d9\u05e8\u05d4", "peseta sign": "\u05e1\u05d9\u05de\u05df \u05e4\u05d6\u05d8\u05d4", "rupee sign": "\u05e1\u05d9\u05de\u05df \u05e8\u05d5\u05e4\u05d9", "won sign": "\u05e1\u05d9\u05de\u05df \u05d5\u05d5\u05df", "new sheqel sign": "\u05e1\u05d9\u05de\u05df \u05e9\u05e7\u05dc \u05d7\u05d3\u05e9", "dong sign": "\u05e1\u05d9\u05de\u05df \u05d3\u05d5\u05e0\u05d2", "kip sign": "\u05e1\u05d9\u05de\u05df \u05e7\u05d9\u05e4", "tugrik sign": "\u05e1\u05d9\u05de\u05df \u05d8\u05d5\u05d2\u05e8\u05d9\u05e7", "drachma sign": "\u05e1\u05d9\u05de\u05df \u05d3\u05e8\u05db\u05de\u05d4", "german penny symbol": "\u05e1\u05de\u05dc \u05e4\u05e0\u05d9 \u05d2\u05e8\u05de\u05e0\u05d9", "peso sign": "\u05e1\u05d9\u05de\u05df \u05e4\u05d6\u05d5", "guarani sign": "\u05e1\u05d9\u05de\u05df \u05d2\u05d5\u05d0\u05e8\u05e0\u05d9\u05ea", "austral sign": "\u05e1\u05d9\u05de\u05df \u05d0\u05d5\u05e1\u05d8\u05e8\u05dc", "hryvnia sign": "\u05e1\u05d9\u05de\u05df \u05e8\u05d9\u05d1\u05e0\u05d9\u05d4", "cedi sign": "\u05e1\u05d9\u05de\u05df \u05e1\u05d3\u05d9", "livre tournois sign": "\u05e1\u05d9\u05de\u05df \u05dc\u05d1\u05e8\u05d4 \u05d8\u05d5\u05e8\u05e0\u05d5", "spesmilo sign": "\u05e1\u05d9\u05de\u05df \u05e1\u05e4\u05e1\u05de\u05d9\u05dc\u05d5", "tenge sign": "\u05e1\u05d9\u05de\u05df \u05d8\u05e0\u05d2\u05d4", "indian rupee sign": "\u05e1\u05d9\u05de\u05df \u05e8\u05d5\u05e4\u05d9 \u05d4\u05d5\u05d3\u05d9", "turkish lira sign": "\u05e1\u05d9\u05de\u05df \u05dc\u05d9\u05e8\u05d4 \u05d8\u05d5\u05e8\u05e7\u05d9\u05ea", "nordic mark sign": "\u05e1\u05d9\u05de\u05df \u05de\u05d0\u05e8\u05e7 \u05e1\u05e7\u05e0\u05d3\u05d9\u05e0\u05d1\u05d9", "manat sign": "\u05e1\u05d9\u05de\u05df \u05de\u05d0\u05e0\u05d0\u05d8", "ruble sign": "\u05e1\u05d9\u05de\u05df \u05e8\u05d5\u05d1\u05dc", "yen character": "\u05ea\u05d5 \u05d9\u05df", "yuan character": "\u05ea\u05d5 \u05d9\u05d5\u05d0\u05df", "yuan character, in hong kong and taiwan": "\u05ea\u05d5 \u05d9\u05d5\u05d0\u05df, \u05d1\u05d4\u05d5\u05e0\u05d2 \u05e7\u05d5\u05e0\u05d2 \u05d5\u05d1\u05d8\u05d9\u05d9\u05d5\u05d5\u05d0\u05df", "yen\/yuan character variant one": "\u05de\u05e9\u05ea\u05e0\u05d4 \u05d0\u05d7\u05d3 \u05e9\u05dc \u05ea\u05d5 \u05d9\u05d5\u05d0\u05df\/\u05d9\u05df", "Loading emoticons...": "\u05d8\u05d5\u05e2\u05df \u05e1\u05de\u05dc\u05d9 \u05d4\u05d1\u05e2\u05d4...", "Could not load emoticons": "\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05d4\u05d9\u05d4 \u05dc\u05d8\u05e2\u05d5\u05df \u05e1\u05de\u05dc\u05d9 \u05d4\u05d1\u05e2\u05d4", "People": "\u05d0\u05e0\u05e9\u05d9\u05dd", "Animals and Nature": "\u05d1\u05e2\u05dc\u05d9-\u05d7\u05d9\u05d9\u05dd \u05d5\u05d8\u05d1\u05e2", "Food and Drink": "\u05d0\u05d5\u05db\u05dc \u05d5\u05e9\u05ea\u05d9\u05d9\u05d4", "Activity": "\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea", "Travel and Places": "\u05e0\u05e1\u05d9\u05e2\u05d4 \u05d5\u05de\u05e7\u05d5\u05de\u05d5\u05ea", "Objects": "\u05d0\u05d5\u05d1\u05d9\u05d9\u05e7\u05d8\u05d9\u05dd", "Flags": "\u05d3\u05d2\u05dc\u05d9\u05dd", "Characters": "\u05ea\u05d5\u05d5\u05d9\u05dd", "Characters (no spaces)": "\u05ea\u05d5\u05d5\u05d9\u05dd (\u05dc\u05dc\u05d0 \u05e8\u05d5\u05d5\u05d7\u05d9\u05dd)", "{0} characters": "{0} \u05ea\u05d5\u05d5\u05d9\u05dd", "Error: Form submit field collision.": "\u05e9\u05d2\u05d9\u05d0\u05d4: \u05d4\u05ea\u05e0\u05d2\u05e9\u05d5\u05ea \u05d1\u05e9\u05d3\u05d4 \u05e9\u05dc\u05d9\u05d7\u05ea \u05d8\u05d5\u05e4\u05e1.", "Error: No form element found.": "\u05e9\u05d2\u05d9\u05d0\u05d4: \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0 \u05e8\u05db\u05d9\u05d1 \u05d8\u05d5\u05e4\u05e1.", "Update": "\u05e2\u05d3\u05db\u05df", "Color swatch": "\u05d3\u05d5\u05d2\u05de\u05d0\u05d5\u05ea \u05e6\u05d1\u05e2", "Turquoise": "\u05d8\u05d5\u05e8\u05e7\u05d9\u05d6", "Green": "\u05d9\u05e8\u05d5\u05e7", "Blue": "\u05db\u05d7\u05d5\u05dc", "Purple": "\u05e1\u05d2\u05d5\u05dc", "Navy Blue": "\u05db\u05d7\u05d5\u05dc \u05e6\u05d9", "Dark Turquoise": "\u05d8\u05d5\u05e8\u05e7\u05d9\u05d6 \u05db\u05d4\u05d4", "Dark Green": "\u05d9\u05e8\u05d5\u05e7 \u05db\u05d4\u05d4", "Medium Blue": "\u05db\u05d7\u05d5\u05dc \u05d1\u05d9\u05e0\u05d5\u05e0\u05d9", "Medium Purple": "\u05e1\u05d2\u05d5\u05dc \u05d1\u05d9\u05e0\u05d5\u05e0\u05d9", "Midnight Blue": "\u05db\u05d7\u05d5\u05dc \u05d7\u05e6\u05d5\u05ea", "Yellow": "\u05e6\u05d4\u05d5\u05d1", "Orange": "\u05db\u05ea\u05d5\u05dd", "Red": "\u05d0\u05d3\u05d5\u05dd", "Light Gray": "\u05d0\u05e4\u05d5\u05e8 \u05d1\u05d4\u05d9\u05e8", "Gray": "\u05d0\u05e4\u05d5\u05e8", "Dark Yellow": "\u05e6\u05d4\u05d5\u05d1 \u05db\u05d4\u05d4", "Dark Orange": "\u05db\u05ea\u05d5\u05dd \u05db\u05d4\u05d4", "Dark Red": "\u05d0\u05d3\u05d5\u05dd \u05db\u05d4\u05d4", "Medium Gray": "\u05d0\u05e4\u05d5\u05e8 \u05d1\u05d9\u05e0\u05d5\u05e0\u05d9", "Dark Gray": "\u05d0\u05e4\u05d5\u05e8 \u05db\u05d4\u05d4", "Light Green": "\u05d9\u05e8\u05d5\u05e7 \u05d1\u05d4\u05d9\u05e8", "Light Yellow": "\u05e6\u05d4\u05d5\u05d1 \u05d1\u05d4\u05d9\u05e8", "Light Red": "\u05d0\u05d3\u05d5\u05dd \u05d1\u05d4\u05d9\u05e8", "Light Purple": "\u05e1\u05d2\u05d5\u05dc \u05d1\u05d4\u05d9\u05e8", "Light Blue": "\u05db\u05d7\u05d5\u05dc \u05d1\u05d4\u05d9\u05e8", "Dark Purple": "\u05e1\u05d2\u05d5\u05dc \u05db\u05d4\u05d4", "Dark Blue": "\u05db\u05d7\u05d5\u05dc \u05db\u05d4\u05d4", "Black": "\u05e9\u05d7\u05d5\u05e8", "White": "\u05dc\u05d1\u05df", "Switch to or from fullscreen mode": "\u05d4\u05d7\u05dc\u05e3 \u05dc\u05de\u05e6\u05d1 \u05de\u05e1\u05da \u05de\u05dc\u05d0 \u05d0\u05d5 \u05e6\u05d0 \u05de\u05de\u05e0\u05d5", "Open help dialog": "\u05e4\u05ea\u05d7 \u05ea\u05d9\u05d1\u05ea \u05d3\u05d5-\u05e9\u05d9\u05d7 \u05e9\u05dc \u05e2\u05d6\u05e8\u05d4", "history": "\u05d4\u05d9\u05e1\u05d8\u05d5\u05e8\u05d9\u05d4", "styles": "\u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea", "formatting": "\u05e2\u05d9\u05e6\u05d5\u05d1", "alignment": "\u05d9\u05d9\u05e9\u05d5\u05e8", "indentation": "\u05d4\u05d6\u05d7\u05d4", "permanent pen": "\u05e2\u05d8 \u05e7\u05d1\u05d5\u05e2", "comments": "\u05d4\u05e2\u05e8\u05d5\u05ea", "Format Painter": "\u05e6\u05d9\u05d9\u05e8 \u05e2\u05d9\u05e6\u05d5\u05d1", "Insert\/edit iframe": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05d7\u05dc\u05d5\u05df \u05de\u05e1\u05d2\u05e8\u05ea", "Capitalization": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05e8\u05d9\u05e9\u05d9\u05d5\u05ea", "lowercase": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea", "UPPERCASE": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05e8\u05d9\u05e9\u05d9\u05d5\u05ea", "Title Case": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05db\u05d5\u05ea\u05e8\u05ea", "Permanent Pen Properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05e2\u05d8 \u05e7\u05d1\u05d5\u05e2\u05d9\u05dd", "Permanent pen properties...": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05e2\u05d8 \u05e7\u05d1\u05d5\u05e2\u05d9\u05dd...", "Font": "\u05d2\u05d5\u05e4\u05df", "Size": "\u05d2\u05d5\u05d3\u05dc", "More...": "\u05e2\u05d5\u05d3...", "Spellcheck Language": "\u05e9\u05e4\u05ea \u05d1\u05d3\u05d9\u05e7\u05ea \u05d0\u05d9\u05d5\u05ea", "Select...": "\u05d1\u05d7\u05e8...", "Preferences": "\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea", "Yes": "\u05db\u05df", "No": "\u05dc\u05d0", "Keyboard Navigation": "\u05e0\u05d9\u05d5\u05d5\u05d8 \u05d1\u05de\u05e7\u05dc\u05d3\u05ea", "Version": "\u05d2\u05e8\u05e1\u05d4", "Anchor": "\u05de\u05e7\u05d5\u05dd \u05e2\u05d9\u05d2\u05d5\u05df", "Special character": "\u05ea\u05d5\u05d5\u05d9\u05dd \u05de\u05d9\u05d5\u05d7\u05d3\u05d9\u05dd", "Code sample": "\u05d3\u05d5\u05d2\u05de\u05ea \u05e7\u05d5\u05d3", "Color": "\u05e6\u05d1\u05e2", "Emoticons": "\u05de\u05d7\u05d5\u05d5\u05ea", "Document properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05de\u05e1\u05de\u05da", "Image": "\u05ea\u05de\u05d5\u05e0\u05d4", "Insert link": "\u05d4\u05db\u05e0\u05e1 \u05e7\u05d9\u05e9\u05d5\u05e8", "Target": "\u05de\u05d8\u05e8\u05d4", "Link": "\u05e7\u05d9\u05e9\u05d5\u05e8", "Poster": "\u05e4\u05d5\u05e1\u05d8\u05e8", "Media": "\u05de\u05d3\u05d9\u05d4", "Print": "\u05d4\u05d3\u05e4\u05e1", "Prev": "\u05e7\u05d5\u05d3\u05dd", "Find and replace": "\u05d7\u05e4\u05e9 \u05d5\u05d4\u05d7\u05dc\u05e3", "Whole words": "\u05de\u05d9\u05dc\u05d4 \u05e9\u05dc\u05de\u05d4", "Spellcheck": "\u05d1\u05d5\u05d3\u05e7 \u05d0\u05d9\u05d5\u05ea", "Caption": "\u05db\u05d9\u05ea\u05d5\u05d1", "Insert template": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05d1\u05e0\u05d9\u05ea", "_dir": "rtl" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/hr.js ================================================ tinymce.addI18n('hr',{ "Redo": "Ponovi", "Undo": "Poni\u0161ti", "Cut": "Izre\u017ei", "Copy": "Kopiraj", "Paste": "Zalijepi", "Select all": "Odaberi sve", "New document": "Novi dokument", "Ok": "U redu", "Cancel": "Odustani", "Visual aids": "Vizualna pomo\u0107", "Bold": "Podebljano", "Italic": "Kurziv", "Underline": "Podcrtaj", "Strikethrough": "Prekri\u017ei", "Superscript": "Eksponent", "Subscript": "Indeks", "Clear formatting": "Izbri\u0161i oblikovanje", "Align left": "Poravnaj lijevo", "Align center": "Poravnaj po sredini", "Align right": "Poravnaj desno", "Justify": "Obostrano poravnanje", "Bullet list": "Popis s oznakama", "Numbered list": "Numerirani popis", "Decrease indent": "Smanji uvla\u010denje", "Increase indent": "Pove\u0107aj uvla\u010denje", "Close": "Zatvori", "Formats": "Formati", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Va\u0161 preglednik ne podr\u017eava izravan pristup me\u0111uspremniku. Umjesto toga upotrijebite tipkovni\u010dke pre\u010dace Ctrl\u00a0+\u00a0X\/C\/V.", "Headers": "Zaglavlja", "Header 1": "Zaglavlje 1", "Header 2": "Zaglavlje 2", "Header 3": "Zaglavlje 3", "Header 4": "Zaglavlje 4", "Header 5": "Zaglavlje 5", "Header 6": "Zaglavlje 6", "Headings": "Zaglavlja", "Heading 1": "Zaglavlje 1", "Heading 2": "Zaglavlje 2", "Heading 3": "Zaglavlje 3", "Heading 4": "Zaglavlje 4", "Heading 5": "Zaglavlje 5", "Heading 6": "Zaglavlje 6", "Preformatted": "Prethodno oblikovano", "Div": "Div", "Pre": "Pre", "Code": "Kod", "Paragraph": "Odlomak", "Blockquote": "Blockquote", "Inline": "U retku", "Blocks": "Blokovi", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Akcija zalijepi od sada lijepi \u010disti tekst. Sadr\u017eaj \u0107e biti zaljepljen kao \u010disti tekst sve dok ne isklju\u010dite ovu opciju.", "Fonts": "Fontovi", "Font Sizes": "Veli\u010dine fonta", "Class": "Razred", "Browse for an image": "Potra\u017eite sliku", "OR": "ILI", "Drop an image here": "Ispustite sliku ovdje", "Upload": "U\u010ditaj", "Block": "Blok", "Align": "Poravnaj", "Default": "Zadano", "Circle": "Krug", "Disc": "To\u010dka", "Square": "Kvadrat", "Lower Alpha": "Mala slova", "Lower Greek": "Mala gr\u010dka slova", "Lower Roman": "Mala rimska slova", "Upper Alpha": "Velika slova", "Upper Roman": "Velika rimska slova", "Anchor...": "Fiksna to\u010dka...", "Name": "Ime", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id treba po\u010dinjati slovom, a nakon toga slijede samo slova, brojevi, crtice, to\u010dke, dvoto\u010dke i podvlake.", "You have unsaved changes are you sure you want to navigate away?": "Postoje ne pohranjene izmjene, jeste li sigurni da \u017eelite oti\u0107i?", "Restore last draft": "Vrati posljednju skicu", "Special character...": "Poseban znak...", "Source code": "Izvorni kod", "Insert\/Edit code sample": "Umetni\/Uredi primjer k\u00f4da", "Language": "Jezik", "Code sample...": "Primjerak k\u00f4da...", "Color Picker": "Izabira\u010d boja", "R": "R", "G": "G", "B": "B", "Left to right": "S lijeva na desno", "Right to left": "S desna na lijevo", "Emoticons...": "Emotikoni...", "Metadata and Document Properties": "Metapodaci i svojstva dokumenta", "Title": "Naslov", "Keywords": "Klju\u010dne rije\u010di", "Description": "Opis", "Robots": "Roboti pretra\u017eiva\u010da", "Author": "Autor", "Encoding": "Kodna stranica", "Fullscreen": "Cijeli ekran", "Action": "Action", "Shortcut": "Shortcut", "Help": "Help", "Address": "Address", "Focus to menubar": "Focus to menubar", "Focus to toolbar": "Focus to toolbar", "Focus to element path": "Focus to element path", "Focus to contextual toolbar": "Focus to contextual toolbar", "Insert link (if link plugin activated)": "Insert link (if link plugin activated)", "Save (if save plugin activated)": "Save (if save plugin activated)", "Find (if searchreplace plugin activated)": "Find (if searchreplace plugin activated)", "Plugins installed ({0}):": "Plugins installed ({0}):", "Premium plugins:": "Premium plugins:", "Learn more...": "Learn more...", "You are using {0}": "You are using {0}", "Plugins": "Dodaci", "Handy Shortcuts": "Korisni pre\u010daci", "Horizontal line": "Horizontalna linija", "Insert\/edit image": "Umetni\/izmijeni sliku", "Image description": "Opis slike", "Source": "Izvor", "Dimensions": "Dimenzije", "Constrain proportions": "Zadr\u017ei proporcije", "General": "Op\u0107enito", "Advanced": "Napredno", "Style": "Stil", "Vertical space": "Okomit razmak", "Horizontal space": "Horizontalan razmak", "Border": "Rub", "Insert image": "Umetni sliku", "Image...": "Slika...", "Image list": "Image list", "Rotate counterclockwise": "Rotiraj lijevo", "Rotate clockwise": "Rotiraj desno", "Flip vertically": "Obrni vertikalno", "Flip horizontally": "Obrni horizontalno", "Edit image": "Uredi sliku", "Image options": "Opcije slike", "Zoom in": "Pove\u0107aj", "Zoom out": "Smanji", "Crop": "Obre\u017ei", "Resize": "Promjeni veli\u010dinu", "Orientation": "Orijentacija", "Brightness": "Svjetlina", "Sharpen": "Izo\u0161travanje", "Contrast": "Kontrast", "Color levels": "Razine boje", "Gamma": "Gamma", "Invert": "Invertiraj", "Apply": "Primijeni", "Back": "Natrag", "Insert date\/time": "Umetni datum\/vrijeme", "Date\/time": "Datum\/vrijeme", "Insert\/Edit Link": "Umetni\/uredi poveznicu", "Insert\/edit link": "Umetni\/izmijeni poveznicu", "Text to display": "Tekst za prikaz", "Url": "Url", "Open link in...": "Otvori poveznicu u...", "Current window": "Trenuta\u010dni prozor", "None": "Ni\u0161ta", "New window": "Novi prozor", "Remove link": "Ukloni poveznicu", "Anchors": "Kra\u0107e poveznice", "Link...": "Poveznica...", "Paste or type a link": "Zalijepi ili upi\u0161i link", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Izgleda da je URL koji ste upisali e-mail adresa. \u017delite li dodati obavezan mailto: prefiks?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Izgleda da je URL koji ste upisali vanjski link. \u017delite li dodati obavezan http:\/\/ prefiks?", "Link list": "Link list", "Insert video": "Umetni video", "Insert\/edit video": "Umetni\/izmijeni video", "Insert\/edit media": "Umetni\/uredi mediju", "Alternative source": "Alternativni izvor", "Alternative source URL": "URL alternativnog izvora", "Media poster (Image URL)": "Medijski poster (URL slike)", "Paste your embed code below:": "Umetnite va\u0161 kod za ugradnju ispod:", "Embed": "Ugradi", "Media...": "Mediji...", "Nonbreaking space": "Neprekidaju\u0107i razmak", "Page break": "Prijelom stranice", "Paste as text": "Zalijepi kao tekst", "Preview": "Pregled", "Print...": "Ispi\u0161i...", "Save": "Spremi", "Find": "Tra\u017ei", "Replace with": "Zamijeni s", "Replace": "Zamijeni", "Replace all": "Zamijeni sve", "Previous": "Prethodno", "Next": "Slijede\u0107i", "Find and replace...": "Prona\u0111i i zamijeni...", "Could not find the specified string.": "Tra\u017eeni tekst nije prona\u0111en", "Match case": "Pazi na mala i velika slova", "Find whole words only": "Prona\u0111i samo cijele rije\u010di", "Spell check": "Provjera pravopisa", "Ignore": "Zanemari", "Ignore all": "Zanemari sve", "Finish": "Zavr\u0161i", "Add to Dictionary": "Dodaj u rje\u010dnik", "Insert table": "Umetni tablicu", "Table properties": "Svojstva tablice", "Delete table": "Izbri\u0161i tablicu", "Cell": "Polje", "Row": "Redak", "Column": "Stupac", "Cell properties": "Svojstva polja", "Merge cells": "Spoji polja", "Split cell": "Razdvoji polja", "Insert row before": "Umetni redak prije", "Insert row after": "Umetni redak nakon", "Delete row": "Izbri\u0161i redak", "Row properties": "Svojstva redka", "Cut row": "Izre\u017ei redak", "Copy row": "Kopiraj redak", "Paste row before": "Zalijepi redak prije", "Paste row after": "Zalijepi redak nakon", "Insert column before": "Umetni stupac prije", "Insert column after": "Umetni stupac nakon", "Delete column": "Izbri\u0161i stupac", "Cols": "Stupci", "Rows": "Redci", "Width": "\u0160irina", "Height": "Visina", "Cell spacing": "Razmak izme\u0111u polja", "Cell padding": "Razmak unutar polja", "Show caption": "Prika\u017ei natpis", "Left": "Lijevo", "Center": "Sredina", "Right": "Desno", "Cell type": "Vrsta polja", "Scope": "Doseg", "Alignment": "Poravnanje", "H Align": "H Poravnavanje", "V Align": "V Poravnavanje", "Top": "Vrh", "Middle": "Sredina", "Bottom": "Dno", "Header cell": "Polje zaglavlja", "Row group": "Grupirani redci", "Column group": "Grupirani stupci", "Row type": "Vrsta redka", "Header": "Zaglavlje", "Body": "Sadr\u017eaj", "Footer": "Podno\u017eje", "Border color": "Boja ruba", "Insert template...": "Umetni predlo\u017eak...", "Templates": "Predlo\u0161ci", "Template": "Predlo\u017eak", "Text color": "Boja teksta", "Background color": "Boja pozadine", "Custom...": "Prilago\u0111eno...", "Custom color": "Prilago\u0111ena boja", "No color": "Bez boje", "Remove color": "Ukloni boju", "Table of Contents": "Sadr\u017eaj", "Show blocks": "Prika\u017ei blokove", "Show invisible characters": "Prika\u017ei nevidljive znakove", "Word count": "Broj rije\u010di", "Count": "Broj", "Document": "Dokument", "Selection": "Odabir", "Words": "Rije\u010di", "Words: {0}": "Rije\u010di: {0}", "{0} words": "{0} rije\u010d(i)", "File": "Datoteka", "Edit": "Izmijeni", "Insert": "Umetni", "View": "Pogled", "Format": "Oblikuj", "Table": "Tablica", "Tools": "Alati", "Powered by {0}": "Omogu\u0107uje {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Pritisni ALT-F9 za izbornik. Pritisni ALT-F10 za alatnu traku. Pritisni ALT-0 za pomo\u0107", "Image title": "Naslov slike", "Border width": "\u0160irina granice", "Border style": "Stil granice", "Error": "Pogre\u0161ka", "Warn": "Upozori", "Valid": "Valjano", "To open the popup, press Shift+Enter": "Da biste otvorili sko\u010dni prozor, pritisnite Shift\u00a0+\u00a0Enter", "Rich Text Area. Press ALT-0 for help.": "Podru\u010dje oboga\u0107enog teksta. Pritisnite ALT-0 za pomo\u0107.", "System Font": "Font sustava", "Failed to upload image: {0}": "U\u010ditavanje slike nije uspjelo: {0}", "Failed to load plugin: {0} from url {1}": "U\u010ditavanje dodatka nije uspjelo: {0} s URL-a {1}", "Failed to load plugin url: {0}": "U\u010ditavanje dodatka nije uspjelo: {0}", "Failed to initialize plugin: {0}": "Pokretanje dodatka nije uspjelo: {0}", "example": "primjer", "Search": "Tra\u017ei", "All": "Svi", "Currency": "Valuta", "Text": "Tekst", "Quotations": "Navodnici", "Mathematical": "Matemati\u010dki", "Extended Latin": "Pro\u0161ireni latinski", "Symbols": "Simboli", "Arrows": "Strelice", "User Defined": "Korisni\u010dki definirano", "dollar sign": "znak za dolar", "currency sign": "znak za valutu", "euro-currency sign": "znak za valutu \u2013 euro", "colon sign": "znak za kolon", "cruzeiro sign": "znak za cruzeiro", "french franc sign": "znak za francuski franak", "lira sign": "znak za liru", "mill sign": "znak za mill", "naira sign": "znak za nairu", "peseta sign": "znak za pezetu", "rupee sign": "znak za rupiju", "won sign": "znak za von", "new sheqel sign": "znak za novi \u0161ekel", "dong sign": "znak za dong", "kip sign": "znak za kip", "tugrik sign": "znak za tugrik", "drachma sign": "znak za drahmu", "german penny symbol": "simbol za njema\u010dki peni", "peso sign": "znak za pezo", "guarani sign": "znak za gvarani", "austral sign": "znak za austral", "hryvnia sign": "znak za grivnju", "cedi sign": "znak za cedi", "livre tournois sign": "znak za livre tournois", "spesmilo sign": "znak za spesmilo", "tenge sign": "znak za tengu", "indian rupee sign": "znak za indijsku rupiju", "turkish lira sign": "znak za tursku liru", "nordic mark sign": "znak za nordijsku marku", "manat sign": "znak za manat", "ruble sign": "znak za rubalj", "yen character": "znak za jen", "yuan character": "znak za juan", "yuan character, in hong kong and taiwan": "znak za juan, u Hong Kongu i Tajvanu", "yen\/yuan character variant one": "znak za jen\/juan, prva varijanta", "Loading emoticons...": "U\u010ditavanje emotikona...", "Could not load emoticons": "Nije mogu\u0107e u\u010ditati emotikone", "People": "Osobe", "Animals and Nature": "\u017divotinje i priroda", "Food and Drink": "Hrana i pi\u0107e", "Activity": "Aktivnosti", "Travel and Places": "Putovanje i mjesta", "Objects": "Predmeti", "Flags": "Zastave", "Characters": "Znakovi", "Characters (no spaces)": "Znakovi (bez razmaka)", "{0} characters": "{0} znakova", "Error: Form submit field collision.": "Pogre\u0161ka: sukob polja za podno\u0161enje obrasca.", "Error: No form element found.": "Pogre\u0161ka: nema elementa oblika.", "Update": "A\u017euriraj", "Color swatch": "Uzorak boje", "Turquoise": "Tirkizna", "Green": "Zelena", "Blue": "Plava", "Purple": "Ljubi\u010dasta", "Navy Blue": "Mornarsko plava", "Dark Turquoise": "Tamnotirkizna", "Dark Green": "Tamnozelena", "Medium Blue": "Srednje plava", "Medium Purple": "Srednje ljubi\u010dasta", "Midnight Blue": "Pono\u0107no plava", "Yellow": "\u017duta", "Orange": "Naran\u010dasta", "Red": "Crvena", "Light Gray": "Svijetlosiva", "Gray": "Siva", "Dark Yellow": "Tamno\u017euta", "Dark Orange": "Tamnonaran\u010dasta", "Dark Red": "Tamnocrvena", "Medium Gray": "Srednje siva", "Dark Gray": "Tamnosiva", "Light Green": "Svjetlozelena", "Light Yellow": "Svjetlo\u017euta", "Light Red": "Svjetlocrvena", "Light Purple": "Svjetloljubi\u010dasta", "Light Blue": "Svjetloplava", "Dark Purple": "Tamnoljubi\u010dasta", "Dark Blue": "Tamnoplava", "Black": "Crna", "White": "Bijela", "Switch to or from fullscreen mode": "Prebacivanje u prikaz preko cijelog zaslona ili iz njega", "Open help dialog": "Otvori dijalo\u0161ki okvir za pomo\u0107", "history": "povijest", "styles": "stilovi", "formatting": "oblikovanje", "alignment": "poravnanje", "indentation": "uvlaka", "permanent pen": "trajna olovka", "comments": "komentari", "Format Painter": "Prenositelj oblikovanja", "Insert\/edit iframe": "Umetni\/uredi iframe oznaku", "Capitalization": "Velika slova", "lowercase": "mala slova", "UPPERCASE": "VELIKA SLOVA", "Title Case": "Pisanje naslova", "Permanent Pen Properties": "Trajna svojstva olovke", "Permanent pen properties...": "Trajna svojstva olovke...", "Font": "Font", "Size": "Veli\u010dina", "More...": "Vi\u0161e...", "Spellcheck Language": "Jezik provjere pravopisa", "Select...": "Odaberi...", "Preferences": "Postavke", "Yes": "Da", "No": "Ne", "Keyboard Navigation": "Navigacija na tipkovnici", "Version": "Ina\u010dica", "Anchor": "Sidro", "Special character": "Poseban znak", "Color": "Boja", "Emoticons": "Emotikoni", "Document properties": "Svojstva dokumenta", "Image": "Slika", "Insert link": "Umetni poveznicu", "Target": "Meta", "Link": "Link", "Poster": "Poster", "Media": "Media", "Print": "Ispis", "Prev": "Prethodni", "Find and replace": "Prona\u0111i i zamijeni", "Whole words": "Cijele rije\u010di", "Spellcheck": "Provjeri pravopis", "Caption": "Natpis", "Insert template": "Umetni predlo\u017eak" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/hu_HU.js ================================================ tinymce.addI18n('hu_HU',{ "Redo": "Ism\u00e9t", "Undo": "Visszavon\u00e1s", "Cut": "Kiv\u00e1g\u00e1s", "Copy": "M\u00e1sol\u00e1s", "Paste": "Beilleszt\u00e9s", "Select all": "Minden kijel\u00f6l\u00e9se", "New document": "\u00daj dokumentum", "Ok": "Rendben", "Cancel": "M\u00e9gse", "Visual aids": "Vizu\u00e1lis seg\u00e9deszk\u00f6z\u00f6k", "Bold": "F\u00e9lk\u00f6v\u00e9r", "Italic": "D\u0151lt", "Underline": "Al\u00e1h\u00fazott", "Strikethrough": "\u00c1th\u00fazott", "Superscript": "Fels\u0151 index", "Subscript": "Als\u00f3 index", "Clear formatting": "Form\u00e1z\u00e1s t\u00f6rl\u00e9se", "Align left": "Balra igaz\u00edt", "Align center": "K\u00f6z\u00e9pre igaz\u00edt", "Align right": "Jobbra igaz\u00edt", "Justify": "Sorkiz\u00e1rt", "Bullet list": "Listajeles lista", "Numbered list": "Sz\u00e1mozott lista", "Decrease indent": "Beh\u00faz\u00e1s cs\u00f6kkent\u00e9se", "Increase indent": "Beh\u00faz\u00e1s n\u00f6vel\u00e9se", "Close": "Bez\u00e1r", "Formats": "Form\u00e1tumok", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "A b\u00f6ng\u00e9sz\u0151d nem t\u00e1mogatja a k\u00f6zvetlen hozz\u00e1f\u00e9r\u00e9st a v\u00e1g\u00f3laphoz. K\u00e9rlek, haszn\u00e1ld a Ctrl+X\/C\/V billenty\u0171ket.", "Headers": "C\u00edmsorok", "Header 1": "C\u00edmsor 1", "Header 2": "C\u00edmsor 2", "Header 3": "C\u00edmsor 3", "Header 4": "C\u00edmsor 4", "Header 5": "C\u00edmsor 5", "Header 6": "C\u00edmsor 6", "Headings": "Fejl\u00e9cek", "Heading 1": "1. fejl\u00e9c", "Heading 2": "2. fejl\u00e9c", "Heading 3": "3. fejl\u00e9c", "Heading 4": "4. fejl\u00e9c", "Heading 5": "5. fejl\u00e9c", "Heading 6": "6. fejl\u00e9c", "Preformatted": "El\u0151form\u00e1zott", "Div": "Div", "Pre": "Pre", "Code": "K\u00f3d", "Paragraph": "Bekezd\u00e9s", "Blockquote": "Id\u00e9zetblokk", "Inline": "Foly\u00f3 sz\u00f6veg", "Blocks": "Blokkok", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Beilleszt\u00e9s mostant\u00f3l egyszer\u0171 sz\u00f6veg m\u00f3dban. A tartalmak mostant\u00f3l egyszer\u0171 sz\u00f6vegk\u00e9nt lesznek beillesztve, am\u00edg nem kapcsolod ki ezt az opci\u00f3t.", "Fonts": "Bet\u0171t\u00edpusok", "Font Sizes": "Bet\u0171m\u00e9retek", "Class": "Oszt\u00e1ly", "Browse for an image": "K\u00e9p keres\u00e9se tall\u00f3z\u00e1ssal", "OR": "VAGY", "Drop an image here": "H\u00fazz ide egy k\u00e9pet", "Upload": "Felt\u00f6lt\u00e9s", "Block": "Blokk", "Align": "Igaz\u00edt\u00e1s", "Default": "Alap\u00e9rtelmezett", "Circle": "K\u00f6r", "Disc": "Pont", "Square": "N\u00e9gyzet", "Lower Alpha": "Kisbet\u0171", "Lower Greek": "Kis g\u00f6r\u00f6g sz\u00e1m", "Lower Roman": "Kis r\u00f3mai sz\u00e1m", "Upper Alpha": "Nagybet\u0171", "Upper Roman": "Nagy r\u00f3mai sz\u00e1m", "Anchor...": "Horgony...", "Name": "N\u00e9v", "Id": "Azonos\u00edt\u00f3", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Az azonos\u00edt\u00f3nak bet\u0171vel kell kezd\u0151dnie, azut\u00e1n csak bet\u0171ket, sz\u00e1mokat, gondolatjeleket, pontokat, kett\u0151spontokat vagy al\u00e1h\u00faz\u00e1st tartalmazhat.", "You have unsaved changes are you sure you want to navigate away?": "Nem mentett m\u00f3dos\u00edt\u00e1said vannak, biztos hogy el akarsz navig\u00e1lni?", "Restore last draft": "Utols\u00f3 piszkozat vissza\u00e1ll\u00edt\u00e1sa", "Special character...": "Speci\u00e1lis karakter...", "Source code": "Forr\u00e1sk\u00f3d", "Insert\/Edit code sample": "K\u00f3dminta besz\u00far\u00e1sa\/szerkeszt\u00e9se", "Language": "Nyelv", "Code sample...": "K\u00f3dminta...", "Color Picker": "Sz\u00ednv\u00e1laszt\u00f3", "R": "R", "G": "G", "B": "B", "Left to right": "Balr\u00f3l jobbra", "Right to left": "Jobbr\u00f3l balra", "Emoticons": "Vigyorok", "Emoticons...": "Hangulatjelek...", "Metadata and Document Properties": "Metaadatok \u00e9s a dokumentum tulajdons\u00e1gai", "Title": "C\u00edm", "Keywords": "Kulcsszavak", "Description": "Le\u00edr\u00e1s", "Robots": "Robotok", "Author": "Szerz\u0151", "Encoding": "K\u00f3dol\u00e1s", "Fullscreen": "Teljes k\u00e9perny\u0151", "Action": "M\u0171velet", "Shortcut": "Parancsikon", "Help": "S\u00fag\u00f3", "Address": "C\u00edm", "Focus to menubar": "F\u00f3kusz a men\u00fcre", "Focus to toolbar": "F\u00f3kusz az eszk\u00f6zt\u00e1rra", "Focus to element path": "F\u00f3kusz az elemek \u00fatvonal\u00e1ra", "Focus to contextual toolbar": "F\u00f3kusz a k\u00f6rnyezetf\u00fcgg\u0151 eszk\u00f6zt\u00e1rra", "Insert link (if link plugin activated)": "Hivatkoz\u00e1s besz\u00far\u00e1sa (ha a hivatkoz\u00e1s b\u0151v\u00edtm\u00e9ny enged\u00e9lyezett)", "Save (if save plugin activated)": "Ment\u00e9s (ha a ment\u00e9s b\u0151v\u00edtm\u00e9ny enged\u00e9lyezett)", "Find (if searchreplace plugin activated)": "Keres\u00e9s (ha a keres\u00e9s \u00e9s csere b\u0151v\u00edtm\u00e9ny enged\u00e9lyezett)", "Plugins installed ({0}):": "Telep\u00edtett b\u0151v\u00edtm\u00e9nyek ({0}):", "Premium plugins:": "Pr\u00e9mium b\u0151v\u00edtm\u00e9nyek:", "Learn more...": "Tudj meg t\u00f6bbet...", "You are using {0}": "Haszn\u00e1latban: {0}", "Plugins": "Pluginek", "Handy Shortcuts": "Hasznos linkek", "Horizontal line": "V\u00edzszintes vonal", "Insert\/edit image": "K\u00e9p beilleszt\u00e9se\/szerkeszt\u00e9se", "Alternative description": "Alternat\u00edv le\u00edr\u00e1s", "Accessibility": "Akad\u00e1lymentes\u00edt\u00e9s", "Image is decorative": "Dekor\u00e1ci\u00f3s k\u00e9p", "Source": "Forr\u00e1s", "Dimensions": "M\u00e9retek", "Constrain proportions": "M\u00e9retar\u00e1ny", "General": "\u00c1ltal\u00e1nos", "Advanced": "Halad\u00f3", "Style": "St\u00edlus", "Vertical space": "Vertik\u00e1lis hely", "Horizontal space": "Horizont\u00e1lis hely", "Border": "Szeg\u00e9ly", "Insert image": "K\u00e9p beilleszt\u00e9se", "Image...": "K\u00e9p...", "Image list": "K\u00e9p lista", "Rotate counterclockwise": "Forgat\u00e1s az \u00f3ramutat\u00f3 j\u00e1r\u00e1s\u00e1val ellent\u00e9tesen", "Rotate clockwise": "Forgat\u00e1s az \u00f3ramutat\u00f3 j\u00e1r\u00e1s\u00e1val megegyez\u0151en", "Flip vertically": "F\u00fcgg\u0151leges t\u00fckr\u00f6z\u00e9s", "Flip horizontally": "V\u00edzszintes t\u00fckr\u00f6z\u00e9s", "Edit image": "K\u00e9p szerkeszt\u00e9se", "Image options": "K\u00e9p be\u00e1ll\u00edt\u00e1sok", "Zoom in": "Nagy\u00edt\u00e1s", "Zoom out": "Kicsiny\u00edt\u00e9s", "Crop": "K\u00e9p v\u00e1g\u00e1s", "Resize": "\u00c1tm\u00e9retez\u00e9s", "Orientation": "K\u00e9p t\u00e1jol\u00e1s", "Brightness": "F\u00e9nyer\u0151", "Sharpen": "\u00c9less\u00e9g", "Contrast": "Kontraszt", "Color levels": "Sz\u00ednszint", "Gamma": "Gamma", "Invert": "Inverz k\u00e9p", "Apply": "Ment\u00e9s", "Back": "Vissza", "Insert date\/time": "D\u00e1tum\/id\u0151 beilleszt\u00e9se", "Date\/time": "D\u00e1tum\/id\u0151", "Insert\/edit link": "Hivatkoz\u00e1s beilleszt\u00e9se\/szerkeszt\u00e9se", "Text to display": "Megjelen\u0151 sz\u00f6veg", "Url": "Url", "Open link in...": "Hivatkoz\u00e1s megnyit\u00e1sa...", "Current window": "Jelenlegi ablak", "None": "Nincs", "New window": "\u00daj ablak", "Open link": "Hivatkoz\u00e1s megnyit\u00e1sa", "Remove link": "Hivatkoz\u00e1s t\u00f6rl\u00e9se", "Anchors": "Horgonyok", "Link...": "Hivatkoz\u00e1s...", "Paste or type a link": "Hivatkoz\u00e1s be\u00edr\u00e1sa vagy beilleszt\u00e9se", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "A megadott URL email c\u00edmnek t\u0171nik. Szeretn\u00e9d hozz\u00e1adni a sz\u00fcks\u00e9ges mailto: el\u0151tagot?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "A megadott URL k\u00fcls\u0151 c\u00edmnek t\u0171nik. Szeretn\u00e9d hozz\u00e1adni a sz\u00fcks\u00e9ges http:\/\/ el\u0151tagot?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Az URL amit megadt\u00e1l k\u00fcls\u0151 hivatkoz\u00e1s. Szeretn\u00e9d https:\/\/ el\u0151taggal megnyitni?", "Link list": "Hivatkoz\u00e1slista", "Insert video": "Vide\u00f3 beilleszt\u00e9se", "Insert\/edit video": "Vide\u00f3 beilleszt\u00e9se\/szerkeszt\u00e9se", "Insert\/edit media": "M\u00e9dia besz\u00far\u00e1sa\/beilleszt\u00e9se", "Alternative source": "Alternat\u00edv forr\u00e1s", "Alternative source URL": "Alternat\u00edv forr\u00e1s URL", "Media poster (Image URL)": "M\u00e9dia poszter (k\u00e9p URL)", "Paste your embed code below:": "Illeszd be a be\u00e1gyaz\u00f3 k\u00f3dot alulra:", "Embed": "Be\u00e1gyaz\u00e1s", "Media...": "M\u00e9dia...", "Nonbreaking space": "Nem t\u00f6rhet\u0151 sz\u00f3k\u00f6z", "Page break": "Oldalt\u00f6r\u00e9s", "Paste as text": "Beilleszt\u00e9s sz\u00f6vegk\u00e9nt", "Preview": "El\u0151n\u00e9zet", "Print...": "Nyomtat\u00e1s...", "Save": "Ment\u00e9s", "Find": "Keres\u00e9s", "Replace with": "Csere erre", "Replace": "Csere", "Replace all": "Az \u00f6sszes cser\u00e9je", "Previous": "El\u0151z\u0151", "Next": "K\u00f6vetkez\u0151", "Find and Replace": "Keres\u00e9s \u00e9s csere", "Find and replace...": "Keres\u00e9s \u00e9s csere...", "Could not find the specified string.": "A be\u00edrt kifejez\u00e9s nem tal\u00e1lhat\u00f3.", "Match case": "Kis \u00e9s nagybet\u0171k megk\u00fcl\u00f6nb\u00f6ztet\u00e9se", "Find whole words only": "Csak teljes szavak keres\u00e9se", "Find in selection": "Keres\u00e9s a kiv\u00e1laszt\u00e1sban", "Spellcheck": "Helyes\u00edr\u00e1s ellen\u0151rz\u00e9s", "Spellcheck Language": "Helyes\u00edr\u00e1s-ellen\u0151rz\u00e9s nyelve", "No misspellings found.": "Nincsenek el\u00edr\u00e1sok.", "Ignore": "Figyelmen k\u00edv\u00fcl hagy", "Ignore all": "Mindent figyelmen k\u00edv\u00fcl hagy", "Finish": "Befejez\u00e9s", "Add to Dictionary": "Sz\u00f3t\u00e1rhoz ad", "Insert table": "T\u00e1bl\u00e1zat beilleszt\u00e9se", "Table properties": "T\u00e1bl\u00e1zat tulajdons\u00e1gok", "Delete table": "T\u00e1bl\u00e1zat t\u00f6rl\u00e9se", "Cell": "Cella", "Row": "Sor", "Column": "Oszlop", "Cell properties": "Cella tulajdons\u00e1gok", "Merge cells": "Cell\u00e1k egyes\u00edt\u00e9se", "Split cell": "Cell\u00e1k sz\u00e9tv\u00e1laszt\u00e1sa", "Insert row before": "Sor besz\u00far\u00e1sa el\u00e9", "Insert row after": "Sor besz\u00far\u00e1sa m\u00f6g\u00e9", "Delete row": "Sor t\u00f6rl\u00e9se", "Row properties": "Sor tulajdons\u00e1gai", "Cut row": "Sor kiv\u00e1g\u00e1sa", "Copy row": "Sor m\u00e1sol\u00e1sa", "Paste row before": "Sor beilleszt\u00e9se el\u00e9", "Paste row after": "Sor beilleszt\u00e9se m\u00f6g\u00e9", "Insert column before": "Oszlop besz\u00far\u00e1sa el\u00e9", "Insert column after": "Oszlop besz\u00far\u00e1sa m\u00f6g\u00e9", "Delete column": "Oszlop t\u00f6rl\u00e9se", "Cols": "Oszlopok", "Rows": "Sorok", "Width": "Sz\u00e9less\u00e9g", "Height": "Magass\u00e1g", "Cell spacing": "Cell\u00e1k t\u00e1vols\u00e1ga", "Cell padding": "Cella m\u00e9rete", "Caption": "Felirat", "Show caption": "C\u00edm megjelen\u00edt\u00e9se", "Left": "Bal", "Center": "K\u00f6z\u00e9p", "Right": "Jobb", "Cell type": "Cella t\u00edpusa", "Scope": "Hat\u00f3k\u00f6r", "Alignment": "Igaz\u00edt\u00e1s", "H Align": "V\u00edzszintes igaz\u00edt\u00e1s", "V Align": "F\u00fcgg\u0151leges igaz\u00edt\u00e1s", "Top": "Fel\u00fcl", "Middle": "K\u00f6z\u00e9pen", "Bottom": "Alul", "Header cell": "Fejl\u00e9c cella", "Row group": "Sor csoport", "Column group": "Oszlop csoport", "Row type": "Sor t\u00edpus", "Header": "Fejl\u00e9c", "Body": "Sz\u00f6vegt\u00f6rzs", "Footer": "L\u00e1bl\u00e9c", "Border color": "Szeg\u00e9ly sz\u00edne", "Insert template...": "Sablon besz\u00far\u00e1sa...", "Templates": "Sablonok", "Template": "Sablon", "Text color": "Sz\u00f6veg sz\u00edne", "Background color": "H\u00e1tt\u00e9r sz\u00edn", "Custom...": "Egy\u00e9ni...", "Custom color": "Egy\u00e9ni sz\u00edn", "No color": "Nincs sz\u00edn", "Remove color": "Sz\u00edn t\u00f6rl\u00e9se", "Table of Contents": "Tartalomjegyz\u00e9k", "Show blocks": "Blokkok mutat\u00e1sa", "Show invisible characters": "L\u00e1thatatlan karakterek mutat\u00e1sa", "Word count": "Szavak sz\u00e1ma", "Count": "Sz\u00e1m", "Document": "Dokumentum", "Selection": "Kiv\u00e1laszt\u00e1s", "Words": "Szavak", "Words: {0}": "Szavak: {0}", "{0} words": "{0} sz\u00f3", "File": "F\u00e1jl", "Edit": "Szerkeszt\u00e9s", "Insert": "Beilleszt\u00e9s", "View": "N\u00e9zet", "Format": "Form\u00e1tum", "Table": "T\u00e1bl\u00e1zat", "Tools": "Eszk\u00f6z\u00f6k", "Powered by {0}": "\u00dczemelteti: {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text ter\u00fclet. Nyomj ALT-F9-et a men\u00fch\u00f6z. Nyomj ALT-F10-et az eszk\u00f6zt\u00e1rhoz. Nyomj ALT-0-t a s\u00fag\u00f3hoz", "Image title": "K\u00e9p c\u00edme", "Border width": "Szeg\u00e9ly vastags\u00e1ga", "Border style": "Szeg\u00e9ly st\u00edlusa", "Error": "Hiba", "Warn": "Figyelmeztet\u00e9s", "Valid": "\u00c9rv\u00e9nyes", "To open the popup, press Shift+Enter": "A felugr\u00f3 ablak megnyit\u00e1s\u00e1hoz nyomja meg a Shift+Enter billenty\u0171t", "Rich Text Area. Press ALT-0 for help.": "Vizu\u00e1lis szerkeszt\u0151 ter\u00fclet. Nyomjon ALT-0-t a s\u00fag\u00f3hoz.", "System Font": "Rendszer-bet\u0171t\u00edpus", "Failed to upload image: {0}": "Nem siker\u00fclt felt\u00f6lteni a k\u00e9pet: {0}", "Failed to load plugin: {0} from url {1}": "Nem siker\u00fclt bet\u00f6lteni a be\u00e9p\u00fcl\u0151 modult: {0} err\u0151l a webc\u00edmr\u0151l: {1}", "Failed to load plugin url: {0}": "Nem siker\u00fclt bet\u00f6lteni a be\u00e9p\u00fcl\u0151 modul url-\u00e9t: {0}", "Failed to initialize plugin: {0}": "Nem siker\u00fclt inicializ\u00e1lni a be\u00e9p\u00fcl\u0151 modult: {0}", "example": "p\u00e9lda", "Search": "Keres\u00e9s", "All": "Minden", "Currency": "P\u00e9nznem", "Text": "Sz\u00f6veg", "Quotations": "Id\u00e9z\u0151jelek", "Mathematical": "Matematikai", "Extended Latin": "B\u0151v\u00edtett latin", "Symbols": "Szimb\u00f3lumok", "Arrows": "Nyilak", "User Defined": "Felhaszn\u00e1l\u00f3 \u00e1ltal meghat\u00e1rozott", "dollar sign": "doll\u00e1r jel", "currency sign": "valuta jel", "euro-currency sign": "euro-valuta jel", "colon sign": "kett\u0151spont", "cruzeiro sign": "cruzeiro jel", "french franc sign": "francia frank jel", "lira sign": "l\u00edra jel", "mill sign": "mill jel", "naira sign": "naira jel", "peseta sign": "peseta jel", "rupee sign": "r\u00fapia jel", "won sign": "won jel", "new sheqel sign": "\u00faj shekel jel", "dong sign": "dong jel", "kip sign": "kip jel", "tugrik sign": "tugrik jel", "drachma sign": "drachma jel", "german penny symbol": "n\u00e9met penny jel", "peso sign": "peso jel", "guarani sign": "guarani jel", "austral sign": "austral jel", "hryvnia sign": "hrivnya jel", "cedi sign": "cedi jel", "livre tournois sign": "livre tournois jel", "spesmilo sign": "spesmilo jel", "tenge sign": "tenge jel", "indian rupee sign": "r\u00fapel jel", "turkish lira sign": "t\u00f6r\u00f6k l\u00edra jel", "nordic mark sign": "\u00e9szaki m\u00e1rka jel", "manat sign": "manat jel", "ruble sign": "rubel jel", "yen character": "jen karakter", "yuan character": "j\u00fcan karakter", "yuan character, in hong kong and taiwan": "hongkongi \u00e9s tajvani j\u00fcan karakter", "yen\/yuan character variant one": "jen\/j\u00fcan karaktervari\u00e1ns", "Loading emoticons...": "Hangulatjelek bet\u00f6lt\u00e9se...", "Could not load emoticons": "Nem siker\u00fclt a hangulatjelek bet\u00f6lt\u00e9se", "People": "Emberek", "Animals and Nature": "\u00c1llatok \u00e9s term\u00e9szet", "Food and Drink": "\u00c9tel, ital", "Activity": "Tev\u00e9kenys\u00e9gek", "Travel and Places": "Utaz\u00e1s \u00e9s helyek", "Objects": "T\u00e1rgyak", "Flags": "Z\u00e1szl\u00f3k", "Characters": "Karakterek", "Characters (no spaces)": "Karakterek (sz\u00f3k\u00f6z\u00f6k n\u00e9lk\u00fcl)", "{0} characters": "{0} karakter", "Error: Form submit field collision.": "Hiba: \u00dctk\u00f6z\u00e9s t\u00f6rt\u00e9nt az \u0171rlap elk\u00fcld\u00e9sekor.", "Error: No form element found.": "Hiba: Nem tal\u00e1lhat\u00f3 \u0171rlap elem.", "Update": "Friss\u00edt\u00e9s", "Color swatch": "Sz\u00ednpaletta", "Turquoise": "T\u00fcrkiz", "Green": "Z\u00f6ld", "Blue": "K\u00e9k", "Purple": "Lila", "Navy Blue": "Tengerk\u00e9k", "Dark Turquoise": "S\u00f6t\u00e9tt\u00fcrkiz", "Dark Green": "S\u00f6t\u00e9tz\u00f6ld", "Medium Blue": "Kir\u00e1lyk\u00e9k", "Medium Purple": "K\u00f6z\u00e9plila", "Midnight Blue": "\u00c9jf\u00e9lk\u00e9k", "Yellow": "S\u00e1rga", "Orange": "Narancss\u00e1rga", "Red": "Piros", "Light Gray": "Vil\u00e1gossz\u00fcrke", "Gray": "Sz\u00fcrke", "Dark Yellow": "S\u00f6t\u00e9ts\u00e1rga", "Dark Orange": "S\u00f6t\u00e9t narancss\u00e1rga", "Dark Red": "S\u00f6t\u00e9tv\u00f6r\u00f6s", "Medium Gray": "K\u00f6z\u00e9psz\u00fcrke", "Dark Gray": "S\u00f6t\u00e9tsz\u00fcrke", "Light Green": "Vil\u00e1gosz\u00f6ld", "Light Yellow": "Vil\u00e1goss\u00e1rga", "Light Red": "Vil\u00e1gospiros", "Light Purple": "Vil\u00e1goslila", "Light Blue": "Vil\u00e1gosk\u00e9k", "Dark Purple": "S\u00f6t\u00e9tlila", "Dark Blue": "S\u00f6t\u00e9tk\u00e9k", "Black": "Fekete", "White": "Feh\u00e9r", "Switch to or from fullscreen mode": "Teljes vagy norm\u00e1l k\u00e9perny\u0151s m\u00f3dra v\u00e1lt\u00e1s", "Open help dialog": "S\u00fag\u00f3ablak megnyit\u00e1sa", "history": "el\u0151zm\u00e9nyek", "styles": "st\u00edlusok", "formatting": "form\u00e1z\u00e1s", "alignment": "igaz\u00edt\u00e1s", "indentation": "beh\u00faz\u00e1s", "Font": "Bet\u0171t\u00edpus", "Size": "M\u00e9ret", "More...": "Tov\u00e1bbiak...", "Select...": "V\u00e1lasszon...", "Preferences": "Preferenci\u00e1k", "Yes": "Igen", "No": "Nem", "Keyboard Navigation": "Billenty\u0171zettel val\u00f3 navig\u00e1l\u00e1s", "Version": "Verzi\u00f3", "Code view": "K\u00f3d n\u00e9zet", "Open popup menu for split buttons": "Felugr\u00f3 men\u00fc megnyit\u00e1sa az osztott gombokhoz", "List Properties": "Lista tulajdons\u00e1gai", "List properties...": "Lista tulajdons\u00e1gai...", "Start list at number": "Lista kezd\u00e9se ett\u0151l a sz\u00e1mt\u00f3l", "Line height": "Sor magass\u00e1ga", "comments": "megjegyz\u00e9sek", "Format Painter": "Form\u00e1tumm\u00e1sol\u00f3", "Insert\/edit iframe": "iframe besz\u00far\u00e1sa\/szerkeszt\u00e9se", "Capitalization": "Nagybet\u0171s \u00edr\u00e1s", "lowercase": "kisbet\u0171s", "UPPERCASE": "NAGYBET\u0170S", "Title Case": "C\u00edm szerinti \u00edr\u00e1sm\u00f3d", "permanent pen": "sz\u00f6vegkiemel\u0151", "Permanent Pen Properties": "Tart\u00f3s toll tulajdons\u00e1gai", "Permanent pen properties...": "Tart\u00f3s toll tulajdons\u00e1gai...", "case change": "esetv\u00e1lt\u00e1s", "page embed": "oldal be\u00e1gyaz\u00e1s", "Advanced sort...": "Speci\u00e1lis rendez\u00e9s... ", "Advanced Sort": "Speci\u00e1lis rendez\u00e9s", "Sort table by column ascending": "T\u00e1bl\u00e1zat rendez\u00e9se oszlop szerint n\u00f6vekv\u0151 sorrendben", "Sort table by column descending": "T\u00e1bl\u00e1zat rendez\u00e9se oszlop szerint cs\u00f6kken\u0151 sorrendben", "Sort": "Rendez\u00e9s", "Order": "Sorrend", "Sort by": "Rendez\u00e9s", "Ascending": "N\u00f6vekv\u0151", "Descending": "Cs\u00f6kken\u0151", "Column {0}": "Oszlop {0}", "Row {0}": "Sor {0}", "Spellcheck...": "Helyes\u00edr\u00e1s ellen\u0151rz\u00e9s...", "Misspelled word": "Helytelen\u00fcl \u00edrt sz\u00f3", "Suggestions": "Javaslatok", "Change": "V\u00e1ltoz\u00e1s", "Finding word suggestions": "Sz\u00f3javaslatok keres\u00e9se", "Success": "Siker", "Repair": "Jav\u00edt\u00e1s", "Issue {0} of {1}": "Probl\u00e9ma {0} - {1}", "Images must be marked as decorative or have an alternative text description": "A k\u00e9peket dekor\u00e1ci\u00f3k\u00e9nt kell megjel\u00f6lni, vagy alternat\u00edv sz\u00f6veges le\u00edr\u00e1ssal kell ell\u00e1tni", "Images must have an alternative text description. Decorative images are not allowed.": "A k\u00e9peknek alternat\u00edv sz\u00f6veges le\u00edr\u00e1ssal kell rendelkezni\u00fck. Dekor\u00e1ci\u00f3s k\u00e9pek nem megengedettek.", "Or provide alternative text:": "Vagy adjon meg alternat\u00edv sz\u00f6veget:", "Make image decorative:": "Dekor\u00e1ci\u00f3s k\u00e9p:", "ID attribute must be unique": "Az azonos\u00edt\u00f3 attrib\u00fatumnak egyedinek kell lennie", "Make ID unique": "Egyedi azonos\u00edt\u00f3 l\u00e9trehoz\u00e1sa", "Keep this ID and remove all others": "Ennek kiv\u00e9tel\u00e9vel az \u00f6sszes azonos\u00edt\u00f3 elt\u00e1vol\u00edt\u00e1sa", "Remove this ID": "Azonos\u00edt\u00f3 elt\u00e1vol\u00edt\u00e1sa", "Remove all IDs": "\u00d6sszes azonos\u00edt\u00f3 elt\u00e1vol\u00edt\u00e1sa", "Checklist": "Ellen\u0151rz\u0151 lista", "Anchor": "Horgony", "Special character": "Speci\u00e1lis karakter", "Code sample": "K\u00f3d p\u00e9lda", "Color": "Sz\u00edn", "Document properties": "Dokumentum tulajdons\u00e1gai", "Image description": "K\u00e9p le\u00edr\u00e1sa", "Image": "K\u00e9p", "Insert link": "Hivatkoz\u00e1s beilleszt\u00e9se", "Target": "C\u00e9l", "Link": "Hivatkoz\u00e1s", "Poster": "El\u0151n\u00e9zeti k\u00e9p", "Media": "M\u00e9dia", "Print": "Nyomtat\u00e1s", "Prev": "El\u0151z\u0151", "Find and replace": "Keres\u00e9s \u00e9s csere", "Whole words": "Csak ha ez a teljes sz\u00f3", "Insert template": "Sablon beilleszt\u00e9se" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/id.js ================================================ tinymce.addI18n('id',{ "Redo": "Ulang", "Undo": "Batalkan", "Cut": "Potong", "Copy": "Salin", "Paste": "Rekat", "Select all": "Pilih semua", "New document": "Dokumen baru", "Ok": "Ok", "Cancel": "Batal", "Visual aids": "Alat bantu visual", "Bold": "Tebal", "Italic": "Miring", "Underline": "Garis bawah", "Strikethrough": "Coret", "Superscript": "Superskrip", "Subscript": "Subskrip", "Clear formatting": "Kosongkan format", "Align left": "Rata kiri", "Align center": "Rata tengah", "Align right": "Rata kanan", "Justify": "Rata penuh", "Bullet list": "Daftar bersimbol", "Numbered list": "Daftar bernomor", "Decrease indent": "Kurangi inden", "Increase indent": "Tambah inden", "Close": "Tutup", "Formats": "Format", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Browser anda tidak mendukung akses langsung ke papan klip. Silakan gunakan pintasan Ctrl+X\/C\/V dari keyboard.", "Headers": "Judul", "Header 1": "Judul 1", "Header 2": "Judul 2", "Header 3": "Judul 3", "Header 4": "Judul 4", "Header 5": "Judul 5", "Header 6": "Judul 6", "Headings": "Kepala", "Heading 1": "Kepala 1", "Heading 2": "Kepala 2", "Heading 3": "Kepala 3", "Heading 4": "Kepala 4", "Heading 5": "Kepala 5", "Heading 6": "Kepala 6", "Preformatted": "Praformat", "Div": "Div", "Pre": "Pre", "Code": "Kode", "Paragraph": "Paragraf", "Blockquote": "Kutipan", "Inline": "Baris", "Blocks": "Blok", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Penempelan sekarang dalam modus teks biasa. Konten sekarang akan disisipkan sebagai teks biasa sampai Anda memadamkan pilihan ini.", "Fonts": "Huruf", "Font Sizes": "Ukuran Huruf", "Class": "Kelas", "Browse for an image": "Jelajahi gambar", "OR": "ATAU", "Drop an image here": "Simpan gambar di sini", "Upload": "Unggah", "Block": "Blok", "Align": "Sejajarkan", "Default": "Bawaan", "Circle": "Lingkaran", "Disc": "Cakram", "Square": "Kotak", "Lower Alpha": "Huruf Kecil", "Lower Greek": "Huruf Kecil Yunani", "Lower Roman": "Huruf Kecil Romawi", "Upper Alpha": "Huruf Besar", "Upper Roman": "Huruf Besar Romawi", "Anchor...": "Jangkar..", "Name": "Nama", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id harus dimulai dengan huruf, dan hanya diikuti oleh huruf, angka, koma, titik, titik koma atau garis bawah.", "You have unsaved changes are you sure you want to navigate away?": "Anda memiliki perubahan yang belum disimpan, yakin ingin beralih ?", "Restore last draft": "Muat kembali draft sebelumnya", "Special character...": "Karakter khusus...", "Source code": "Kode sumber", "Insert\/Edit code sample": "Tambah\/Edit contoh kode", "Language": "Bahasa", "Code sample...": "Sampel kode...", "Color Picker": "Pemilih warna", "R": "M", "G": "H", "B": "B", "Left to right": "Kiri ke kanan", "Right to left": "Kanan ke kiri", "Emoticons...": "Emotikon...", "Metadata and Document Properties": "Metadata dan Properti Dokumen", "Title": "Judul", "Keywords": "Kata kunci", "Description": "Deskripsi", "Robots": "Robot", "Author": "Penulis", "Encoding": "Enkoding", "Fullscreen": "Layar penuh", "Action": "Tindakan", "Shortcut": "Pintasan", "Help": "Bantuan", "Address": "Alamat", "Focus to menubar": "Fokus ke menubar", "Focus to toolbar": "Fokus ke toolbar", "Focus to element path": "Fokus ke jalur elemen", "Focus to contextual toolbar": "Fokus ke toolbar kontekstual", "Insert link (if link plugin activated)": "Masukan link (jika plugin diaktifkan)", "Save (if save plugin activated)": "Simpan (jika plugin simpan diaktifkan)", "Find (if searchreplace plugin activated)": "Cari (jika plugin searchplace diaktifkan)", "Plugins installed ({0}):": "Plugin terpasang ({0})", "Premium plugins:": "Plugin premium:", "Learn more...": "Pelajari selengkapnya...", "You are using {0}": "Anda menggunakan {0}", "Plugins": "Plugin", "Handy Shortcuts": "Pintasan Praktis", "Horizontal line": "Garis horisontal", "Insert\/edit image": "Sisip\/sunting gambar", "Image description": "Deskripsi gambar", "Source": "Sumber", "Dimensions": "Dimensi", "Constrain proportions": "Samakan proporsi", "General": "Umum", "Advanced": "Lanjutan", "Style": "Gaya", "Vertical space": "Spasi vertikal", "Horizontal space": "Spasi horisontal", "Border": "Batas", "Insert image": "Sisipkan gambar", "Image...": "Gambar...", "Image list": "Daftar gambar", "Rotate counterclockwise": "Putar berlawananjarumjam", "Rotate clockwise": "Putar searahjarumjam", "Flip vertically": "Balik vertikal", "Flip horizontally": "Balik horisontal", "Edit image": "Sunting gambar", "Image options": "Opsi gambar", "Zoom in": "Perbesar", "Zoom out": "Perkecil", "Crop": "Krop", "Resize": "Ubah ukuran", "Orientation": "Orientasi", "Brightness": "Kecerahan", "Sharpen": "Ketajaman", "Contrast": "Kontras", "Color levels": "Tingakt warna", "Gamma": "Gamma", "Invert": "Kebalikan", "Apply": "Terapkan", "Back": "Kembali", "Insert date\/time": "Sisipkan tanggal\/waktu", "Date\/time": "Tanggal\/waktu", "Insert\/Edit Link": "Masukkan\/Edit Tautan", "Insert\/edit link": "Sisip\/sunting tautan", "Text to display": "Teks yang ditampilkan", "Url": "Tautan", "Open link in...": "Buka tautan dalam...", "Current window": "Jendela saat ini", "None": "Tidak ada", "New window": "Jendela baru", "Remove link": "Buang tautan", "Anchors": "Jangkar", "Link...": "Tautan...", "Paste or type a link": "Tempel atau ketik sebuah tautan", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Tautan yang anda masukkan sepertinya adalah alamat email. Apakah Anda ingin menambahkan prefiks mailto: yang dibutuhkan?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Tautan yang anda masukkan sepertinya adalah tautan eksternal. Apakah Anda ingin menambahkan prefiks http:\/\/ yang dibutuhkan?", "Link list": "Daftar tautan", "Insert video": "Sisipkan video", "Insert\/edit video": "Sisip\/sunting video", "Insert\/edit media": "Sisip\/sunting media", "Alternative source": "Sumber alternatif", "Alternative source URL": "URL Sumber alternatif", "Media poster (Image URL)": "Poster media (URL gambar)", "Paste your embed code below:": "Tempel kode yang diembed dibawah ini:", "Embed": "Embed", "Media...": "Media...", "Nonbreaking space": "Spasi", "Page break": "Baris baru", "Paste as text": "Tempel sebagai teks biasa", "Preview": "Pratinjau", "Print...": "Cetak...", "Save": "Simpan", "Find": "Cari", "Replace with": "Ganti dengan", "Replace": "Ganti", "Replace all": "Ganti semua", "Previous": "Sebelumnya", "Next": "Berikutnya", "Find and replace...": "Cari dan ganti...", "Could not find the specified string.": "Tidak dapat menemukan string yang dimaksud.", "Match case": "Samakan besar kecil huruf", "Find whole words only": "Cari hanya kata utuh", "Spell check": "Periksa ejaan", "Ignore": "Abaikan", "Ignore all": "Abaikan semua", "Finish": "Selesai", "Add to Dictionary": "Tambahkan ke kamus", "Insert table": "Sisipkan tabel", "Table properties": "Properti tabel", "Delete table": "Hapus tabel", "Cell": "Sel", "Row": "Baris", "Column": "Kolom", "Cell properties": "Properti sel", "Merge cells": "Gabung sel", "Split cell": "Bagi sel", "Insert row before": "Sisipkan baris sebelum", "Insert row after": "Sisipkan baris setelah", "Delete row": "Hapus baris", "Row properties": "Properti baris", "Cut row": "Penggal baris", "Copy row": "Salin baris", "Paste row before": "Tempel baris sebelum", "Paste row after": "Tempel baris setelah", "Insert column before": "Sisipkan kolom sebelum", "Insert column after": "Sisipkan kolom setelah", "Delete column": "Hapus kolom", "Cols": "Kolom", "Rows": "Baris", "Width": "Lebar", "Height": "Tinggi", "Cell spacing": "Spasi sel ", "Cell padding": "Lapisan sel", "Show caption": "Perlihatkan keterangan", "Left": "Kiri", "Center": "Tengah", "Right": "Kanan", "Cell type": "Tipe sel", "Scope": "Skup", "Alignment": "Penjajaran", "H Align": "Rata Samping", "V Align": "Rata Atas", "Top": "Atas", "Middle": "Tengah", "Bottom": "Bawah", "Header cell": "Judul sel", "Row group": "Kelompok baris", "Column group": "Kelompok kolom", "Row type": "Tipe baris", "Header": "Judul", "Body": "Body", "Footer": "Footer", "Border color": "Warna batas", "Insert template...": "Masukkan template...", "Templates": "Templat", "Template": "Templat", "Text color": "Warna teks", "Background color": "Warna latar", "Custom...": "Atur sendiri...", "Custom color": "Warna sendiri", "No color": "Tidak berwarna", "Remove color": "Hapus warna", "Table of Contents": "Daftar Isi", "Show blocks": "Tampilkan blok", "Show invisible characters": "Tampilkan karakter tak tampak", "Word count": "Hitungan kata", "Count": "Hitungan", "Document": "Dokumen", "Selection": "Pemilihan", "Words": "Kata", "Words: {0}": "Kata: {0}", "{0} words": "{0} kata", "File": "Berkas", "Edit": "Sunting", "Insert": "Sisip", "View": "Tampilan", "Format": "Format", "Table": "Tabel", "Tools": "Alat", "Powered by {0}": "Didukung oleh {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Area teks kaya. Tekan ALT-F9 untuk menu. Tekan ALT-F10 untuk toolbar. Tekan ALT-0 untuk bantuan", "Image title": "Judul gambar", "Border width": "Lebar pinggiran", "Border style": "Gaya pinggiran", "Error": "Kesalahan", "Warn": "Peringatkan", "Valid": "Valid", "To open the popup, press Shift+Enter": "Untuk membuka popup, tekan Shift+Enter", "Rich Text Area. Press ALT-0 for help.": "Area Teks Kaya. Tekan ALT-0 untuk bantuan.", "System Font": "Huruf Sistem", "Failed to upload image: {0}": "Gagal mengunggah gambar: {0}", "Failed to load plugin: {0} from url {1}": "Gagal memuat plugin: {0} dari url {1}", "Failed to load plugin url: {0}": "Gagal memuat url plugin: {0}", "Failed to initialize plugin: {0}": "Gagal memulai plugin: {0}", "example": "contoh", "Search": "Cari", "All": "Semua", "Currency": "Mata Uang", "Text": "Teks", "Quotations": "Kutipan", "Mathematical": "Matematis", "Extended Latin": "Latin Diperluas", "Symbols": "Simbol", "Arrows": "Panah", "User Defined": "Ditentukan Pengguna", "dollar sign": "tanda dolar", "currency sign": "tanda mata uang", "euro-currency sign": "tanda mata uang eropa", "colon sign": "tanda titik dua", "cruzeiro sign": "tanda cruzeiro", "french franc sign": "tanda franc prancis", "lira sign": "tanda lira", "mill sign": "tanda mill", "naira sign": "tanda naira", "peseta sign": "tanda peseta", "rupee sign": "tanda rupee", "won sign": "tanda won", "new sheqel sign": "tanda sheqel baru", "dong sign": "tanda dong", "kip sign": "tanda kip", "tugrik sign": "tanda tugrik", "drachma sign": "tanda drachma", "german penny symbol": "simbol penny jerman", "peso sign": "tanda peso", "guarani sign": "tanda guarani", "austral sign": "tanda austral", "hryvnia sign": "tanda hryvnia", "cedi sign": "tanda cedi", "livre tournois sign": "tanda livre tournois", "spesmilo sign": "tanda spesmilo", "tenge sign": "tanda tenge", "indian rupee sign": "tanda rupee india", "turkish lira sign": "tanda lira turki", "nordic mark sign": "tanda mark nordik", "manat sign": "tanda manat", "ruble sign": "tanda ruble", "yen character": "karakter yen", "yuan character": "karakter yuan", "yuan character, in hong kong and taiwan": "karakter yuan, di hong kong dan taiwan", "yen\/yuan character variant one": "varian satu karakter yen\/yuan", "Loading emoticons...": "Memuat emotikon...", "Could not load emoticons": "Tidak dapat memuat emotikon", "People": "Orang", "Animals and Nature": "Hewan dan Alam", "Food and Drink": "Makanan dan Minuman", "Activity": "Aktivitas", "Travel and Places": "Perjalanan dan Lokasi", "Objects": "Objek", "Flags": "Bendera", "Characters": "Karakter", "Characters (no spaces)": "Karakter (tanpa spasi)", "{0} characters": "{0} karakter", "Error: Form submit field collision.": "Kesalahan: Benturan bidang pengiriman bentuk.", "Error: No form element found.": "Kesalahan: tidak ditemukan elemen bentuk.", "Update": "Perbarui", "Color swatch": "Contoh warna", "Turquoise": "Turquoise", "Green": "Hijau", "Blue": "Biru", "Purple": "Ungu", "Navy Blue": "Biru Navy", "Dark Turquoise": "Turquoise Gelap", "Dark Green": "Hijau Gelap", "Medium Blue": "Biru Medium", "Medium Purple": "Ungu Medium", "Midnight Blue": "Biru Midnight", "Yellow": "Kuning", "Orange": "Jingga", "Red": "Merah", "Light Gray": "Abu Muda", "Gray": "Abu-abu", "Dark Yellow": "Kuning Gelap", "Dark Orange": "Jingga Gelap", "Dark Red": "Merah Gelap", "Medium Gray": "Abu Medium", "Dark Gray": "Abu Gelap", "Light Green": "Hijau Muda", "Light Yellow": "Kuning Muda", "Light Red": "Merah Muda", "Light Purple": "Ungu Muda", "Light Blue": "Biru Muda", "Dark Purple": "Ungu Gelap", "Dark Blue": "Biru Gelap", "Black": "Hitam", "White": "Putih", "Switch to or from fullscreen mode": "Alihkan ke atau dari mode layar penuh", "Open help dialog": "Buka dialog bantuan", "history": "riwayat", "styles": "gaya", "formatting": "pemformatan", "alignment": "penyejajaran", "indentation": "indentasi", "permanent pen": "pena permanen", "comments": "komentar", "Format Painter": "Format Pelukis", "Insert\/edit iframe": "Masukkan\/edit iframe", "Capitalization": "Kapitalisasi", "lowercase": "huruf kecil", "UPPERCASE": "HURUF BESAR", "Title Case": "Huruf Judul", "Permanent Pen Properties": "Properti Pena Permanen", "Permanent pen properties...": "Properti pena permanen...", "Font": "Huruf", "Size": "Ukuran", "More...": "Lainnya...", "Spellcheck Language": "Periksa Ejaan Bahasa", "Select...": "Pilih...", "Preferences": "Preferensi", "Yes": "Ya", "No": "Tidak", "Keyboard Navigation": "Navigasi Keyboard", "Version": "Versi", "Anchor": "Jangkar", "Special character": "Spesial karakter", "Code sample": "Contoh kode", "Color": "Warna", "Emoticons": "Emotikon", "Document properties": "Properti dokumwn", "Image": "Gambar", "Insert link": "Sisipkan tautan", "Target": "Jendela tujuan", "Link": "Tautan", "Poster": "Penulis", "Media": "Media", "Print": "Cetak", "Prev": "Sebelumnya", "Find and replace": "Cari dan ganti", "Whole words": "Semua kata", "Spellcheck": "Periksa ejaan", "Caption": "Caption", "Insert template": "Sisipkan templat" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/it_IT.js ================================================ tinymce.addI18n('it_IT',{ "Redo": "Ripristina", "Undo": "Annulla", "Cut": "Taglia", "Copy": "Copia", "Paste": "Incolla", "Select all": "Seleziona tutto", "New document": "Nuovo documento", "Ok": "OK", "Cancel": "Annulla", "Visual aids": "Aiuti visivi", "Bold": "Grassetto", "Italic": "Corsivo", "Underline": "Sottolineato", "Strikethrough": "Barrato", "Superscript": "Apice", "Subscript": "Pedice", "Clear formatting": "Cancella la formattazione", "Align left": "Allinea a sinistra", "Align center": "Allinea al centro", "Align right": "Allinea a destra", "Justify": "Giustifica", "Bullet list": "Elenco puntato", "Numbered list": "Elenco numerato", "Decrease indent": "Riduci rientro", "Increase indent": "Aumenta rientro", "Close": "Chiudi", "Formats": "Formati", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Il browser non supporta l'accesso diretto alla cartella degli appunti. Usare i tasti di scelta rapida Ctrl+X\/C\/V.", "Headers": "Intestazioni", "Header 1": "Intestazione 1", "Header 2": "Intestazione 2", "Header 3": "Intestazione 3", "Header 4": "Intestazione 4", "Header 5": "Intestazione 5", "Header 6": "Intestazione 6", "Headings": "Titoli", "Heading 1": "Titolo 1", "Heading 2": "Titolo 2", "Heading 3": "Titolo 3", "Heading 4": "Titolo 4", "Heading 5": "Titolo 5", "Heading 6": "Titolo 6", "Preformatted": "Preformattato", "Div": "Div", "Pre": "Pre", "Code": "Codice", "Paragraph": "Paragrafo", "Blockquote": "Blockquote", "Inline": "In linea", "Blocks": "Blocchi", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Incolla \u00e8 in modalit\u00e0 testo normale. I contenuti saranno incollati come testo normale se non viene disattivata questa opzione.", "Fonts": "Caratteri", "Font Sizes": "Dimensioni caratteri", "Class": "Classe", "Browse for an image": "Cerca un'immagine", "OR": "OPPURE", "Drop an image here": "Rilasciare un'immagine qui", "Upload": "Carica", "Block": "Blocco", "Align": "Allinea", "Default": "Predefinito", "Circle": "Circolo", "Disc": "Disco", "Square": "Quadrato", "Lower Alpha": "Alfabetico minuscolo", "Lower Greek": "Greco minuscolo", "Lower Roman": "Romano minuscolo", "Upper Alpha": "Alfabetico maiuscolo", "Upper Roman": "Romano maiuscolo", "Anchor...": "Ancoraggio...", "Name": "Nome", "Id": "ID", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "L'ID dovrebbe cominciare con una lettera, seguita unicamente da lettere, numeri, linee, punti, due punti o caratteri di sottolineatura.", "You have unsaved changes are you sure you want to navigate away?": "Ci sono modifiche non salvate, si \u00e8 sicuro di volere uscire?", "Restore last draft": "Ripristina l'ultima bozza", "Special characters...": "Caratteri speciali...", "Source code": "Codice sorgente", "Insert\/Edit code sample": "Inserisci\/modifica esempio di codice", "Language": "Lingua", "Code sample...": "Esempio di codice...", "Color Picker": "Selezione colori", "R": "R", "G": "G", "B": "B", "Left to right": "Da sinistra a destra", "Right to left": "Da destra a sinistra", "Emoticons...": "Emoticon...", "Metadata and Document Properties": "Metadata e propriet\u00e0 del documento", "Title": "Titolo", "Keywords": "Parole chiave", "Description": "Descrizione", "Robots": "Robot", "Author": "Autore", "Encoding": "Codifica", "Fullscreen": "A tutto schermo", "Action": "Azione", "Shortcut": "Collegamento", "Help": "Guida", "Address": "Indirizzo", "Focus to menubar": "Imposta stato attivo per la barra dei menu", "Focus to toolbar": "Imposta stato attivo per la barra degli strumenti", "Focus to element path": "Imposta stato attivo per il percorso dell'elemento", "Focus to contextual toolbar": "Imposta stato attivo per la barra degli strumenti contestuale", "Insert link (if link plugin activated)": "Inserisci un collegamento (se \u00e8 attivato l'apposito plugin)", "Save (if save plugin activated)": "Salva (se \u00e8 attivato l'apposito plugin)", "Find (if searchreplace plugin activated)": "Trova (se \u00e8 attivato l'apposito plugin)", "Plugins installed ({0}):": "Plugin installati ({0}):", "Premium plugins:": "Plugin Premium:", "Learn more...": "Maggiori informazioni...", "You are using {0}": "Si sta utilizzando {0}", "Plugins": "Plugin", "Handy Shortcuts": "Scorciatoie utili", "Horizontal line": "Linea orizzontale", "Insert\/edit image": "Inserisci\/modifica immagine", "Image description": "Descrizione immagine", "Source": "Fonte", "Dimensions": "Dimensioni", "Constrain proportions": "Mantieni proporzioni", "General": "Generali", "Advanced": "Avanzate", "Style": "Stile", "Vertical space": "Spazio verticale", "Horizontal space": "Spazio orizzontale", "Border": "Bordo", "Insert image": "Inserisci immagine", "Image...": "Immagine...", "Image list": "Elenco immagini", "Rotate counterclockwise": "Ruota in senso antiorario", "Rotate clockwise": "Ruota in senso orario", "Flip vertically": "Rifletti verticalmente", "Flip horizontally": "Rifletti orizzontalmente", "Edit image": "Modifica immagine", "Image options": "Opzioni immagine", "Zoom in": "Ingrandisci", "Zoom out": "Zoom indietro", "Crop": "Ritaglia", "Resize": "Ridimensiona", "Orientation": "Orientamento", "Brightness": "Luminosit\u00e0", "Sharpen": "Nitidezza", "Contrast": "Contrasto", "Color levels": "Livelli di colore", "Gamma": "Gamma", "Invert": "Inverti", "Apply": "Applica", "Back": "Indietro", "Insert date\/time": "Inserisci data\/ora", "Date\/time": "Data\/ora", "Insert\/Edit Link": "Inserisci\/modifica collegamento", "Insert\/edit link": "Inserisci\/modifica collegamento", "Text to display": "Testo da visualizzare", "Url": "URL", "Open link in...": "Apri collegamento in...", "Current window": "Finestra corrente", "None": "Nessuno", "New window": "Nuova finestra", "Remove link": "Rimuovi collegamento", "Anchors": "Ancoraggi", "Link...": "Collegamento...", "Paste or type a link": "Incolla o digita un collegamento", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL inserito sembra essere un indirizzo email. Si vuole aggiungere il necessario prefisso mailto:?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL inserito sembra essere un collegamento esterno. Si vuole aggiungere il necessario prefisso http:\/\/?", "Link list": "Elenco collegamenti", "Insert video": "Inserisci video", "Insert\/edit video": "Inserisci\/modifica video", "Insert\/edit media": "Inserisci\/modifica oggetti multimediali", "Alternative source": "Sorgente alternativa", "Alternative source URL": "URL sorgente alternativa", "Media poster (Image URL)": "Poster dell'oggetto multimediale (URL dell'immagine)", "Paste your embed code below:": "Incolla il codice d'incorporamento di seguito:", "Embed": "Incorpora", "Media...": "Oggetto multimediale...", "Nonbreaking space": "Spazio indivisibile", "Page break": "Interruzione di pagina", "Paste as text": "Incolla senza formattazioni", "Preview": "Anteprima", "Print...": "Stampa...", "Save": "Salva", "Find": "Trova", "Replace with": "Sostituisci con", "Replace": "Sostituisci", "Replace all": "Sostituisci tutto", "Previous": "Indietro", "Next": "Avanti", "Find and replace...": "Trova e sostituisci...", "Could not find the specified string.": "Impossibile trovare la stringa specificata.", "Match case": "Maiuscole\/minuscole", "Find whole words only": "Trova solo parole intere", "Spell check": "Controllo ortografia", "Ignore": "Ignora", "Ignore all": "Ignora tutto", "Finish": "Fine", "Add to Dictionary": "Aggiungi al dizionario", "Insert table": "Inserisci tabella", "Table properties": "Propriet\u00e0 della tabella", "Delete table": "Elimina tabella", "Cell": "Cella", "Row": "Riga", "Column": "Colonna", "Cell properties": "Propriet\u00e0 cella", "Merge cells": "Unisci le celle", "Split cell": "Dividi la cella", "Insert row before": "Inserisci riga prima", "Insert row after": "Inserisci riga dopo", "Delete row": "Elimina riga", "Row properties": "Propriet\u00e0 della riga", "Cut row": "Taglia riga", "Copy row": "Copia riga", "Paste row before": "Incolla riga prima", "Paste row after": "Incolla riga dopo", "Insert column before": "Inserisci colonna prima", "Insert column after": "Inserisci colonna dopo", "Delete column": "Elimina colonna", "Cols": "Colonne", "Rows": "Righe", "Width": "Larghezza", "Height": "Altezza", "Cell spacing": "Spaziatura tra celle", "Cell padding": "Spaziatura interna celle", "Show caption": "Mostra didascalia", "Left": "Sinistra", "Center": "Centro", "Right": "Destra", "Cell type": "Tipo di cella", "Scope": "Ambito", "Alignment": "Allineamento", "H Align": "Allineamento H", "V Align": "Allineamento V", "Top": "In alto", "Middle": "Centrato", "Bottom": "In basso", "Header cell": "Cella d'intestazione", "Row group": "Gruppo di righe", "Column group": "Gruppo di colonne", "Row type": "Tipo di riga", "Header": "Intestazione", "Body": "Corpo", "Footer": "Pi\u00e8 di pagina", "Border color": "Colore del bordo", "Insert template...": "Inserisci modello...", "Templates": "Modelli", "Template": "Modello", "Text color": "Colore testo", "Background color": "Colore dello sfondo", "Custom...": "Personalizzato...", "Custom color": "Colore personalizzato", "No color": "Nessun colore", "Remove color": "Rimuovi colore", "Table of Contents": "Sommario", "Show blocks": "Mostra blocchi", "Show invisible characters": "Mostra caratteri invisibili", "Word count": "Conteggio parole", "Words: {0}": "Parole: {0}", "{0} words": "{0} parole", "File": "File", "Edit": "Modifica", "Insert": "Inserisci", "View": "Visualizza", "Format": "Formato", "Table": "Tabella", "Tools": "Strumenti", "Powered by {0}": "Con tecnologia {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Area di testo RTF. Premere ALT-F9 per il menu. Premere ALT-F10 per la barra degli strumenti. Premere ALT-0 per la guida.", "Image title": "Titolo immagine", "Border width": "Larghezza del bordo", "Border style": "Stile del bordo", "Error": "Errore", "Warn": "Avviso", "Valid": "Valido", "To open the popup, press Shift+Enter": "Per aprire il popup, premere Shift+Invio", "Rich Text Area. Press ALT-0 for help.": "Area di testo RTF. Premere ALT-0 per la guida.", "System Font": "Carattere di sistema", "Failed to upload image: {0}": "Caricamento immagine fallito: {0}", "Failed to load plugin: {0} from url {1}": "Caricamento plugin fallito: {0} dall'URL {1}", "Failed to load plugin url: {0}": "Caricamento URL plugin fallito: {0}", "Failed to initialize plugin: {0}": "Inizializzazione plugin fallita: {0}", "example": "esempio", "Search": "Cerca", "All": "Tutto", "Currency": "Valuta", "Text": "Testo", "Quotations": "Citazioni", "Mathematical": "Caratteri matematici", "Extended Latin": "Latino esteso", "Symbols": "Simboli", "Arrows": "Frecce", "User Defined": "Definito dall'utente", "dollar sign": "simbolo del dollaro", "currency sign": "simbolo di valuta", "euro-currency sign": "simbolo dell'euro", "colon sign": "simbolo del col\u00f3n", "cruzeiro sign": "simbolo del cruzeiro", "french franc sign": "simbolo del franco francese", "lira sign": "simbolo della lira", "mill sign": "simbolo del mill", "naira sign": "simbolo della naira", "peseta sign": "simbolo della peseta", "rupee sign": "simbolo della rup\u00eca", "won sign": "simbolo del won", "new sheqel sign": "simbolo del nuovo shekel", "dong sign": "simbolo del dong", "kip sign": "simbolo del kip", "tugrik sign": "simbolo del tugrik", "drachma sign": "simbolo della dracma", "german penny symbol": "simbolo del pfennig tedesco", "peso sign": "simbolo del peso", "guarani sign": "simbolo del guaran\u00ec", "austral sign": "simbolo dell'austral", "hryvnia sign": "simbolo della hryvnia", "cedi sign": "simbolo del cedi", "livre tournois sign": "simbolo della lira di Tours", "spesmilo sign": "simbolo dello spesmilo", "tenge sign": "simbolo del tenge", "indian rupee sign": "simbolo della rup\u00eca indiana", "turkish lira sign": "simbolo della lira turca", "nordic mark sign": "simbolo del marco nordico", "manat sign": "simbolo del manat", "ruble sign": "simbolo del rublo", "yen character": "simbolo dello yen", "yuan character": "simbolo dello yuan", "yuan character, in hong kong and taiwan": "simbolo dello yuan, Hong Kong e Taiwan", "yen\/yuan character variant one": "simbolo yen\/yuan variante uno", "Loading emoticons...": "Caricamento emoticon in corso", "Could not load emoticons": "Impossibile caricare emoticon", "People": "Persone", "Animals and Nature": "Animali e natura", "Food and Drink": "Cibi e bevande", "Activity": "Attivit\u00e0", "Travel and Places": "Viaggi e luoghi", "Objects": "Oggetti", "Flags": "Bandiere", "Characters": "Caratteri", "Characters (no spaces)": "Caratteri (senza spazi)", "Error: Form submit field collision.": "Errore: Conflitto di campi nel modulo inviato.", "Error: No form element found.": "Errore: Nessun elemento di modulo trovato.", "Update": "Aggiorna", "Color swatch": "Campione di colore", "Turquoise": "Turchese", "Green": "Verde", "Blue": "Blu", "Purple": "Viola", "Navy Blue": "Blu scuro", "Dark Turquoise": "Turchese scuro", "Dark Green": "Verde scuro", "Medium Blue": "Blu medio", "Medium Purple": "Viola medio", "Midnight Blue": "Blu notte", "Yellow": "Giallo", "Orange": "Arancio", "Red": "Rosso", "Light Gray": "Grigio chiaro", "Gray": "Grigio", "Dark Yellow": "Giallo scuro", "Dark Orange": "Arancio scuro", "Dark Red": "Rosso scuro", "Medium Gray": "Grigio medio", "Dark Gray": "Grigio scuro", "Black": "Nero", "White": "Bianco", "Switch to or from fullscreen mode": "Attiva\/disattiva la modalit\u00e0 schermo intero", "Open help dialog": "Apri la finestra di aiuto", "history": "cronologia", "styles": "stili", "formatting": "formattazione", "alignment": "allineamento", "indentation": "indentazione", "permanent pen": "penna indelebile", "comments": "commenti" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/ja.js ================================================ tinymce.addI18n('ja',{ "Redo": "\u3084\u308a\u76f4\u3057", "Undo": "\u5143\u306b\u623b\u3059", "Cut": "\u5207\u308a\u53d6\u308a", "Copy": "\u30b3\u30d4\u30fc", "Paste": "\u8cbc\u308a\u4ed8\u3051", "Select all": "\u3059\u3079\u3066\u9078\u629e", "New document": "\u65b0\u898f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8", "Ok": "OK", "Cancel": "\u53d6\u6d88", "Visual aids": "\u8868\u306e\u67a0\u7dda\u3092\u70b9\u7dda\u3067\u8868\u793a", "Bold": "\u592a\u5b57", "Italic": "\u659c\u4f53", "Underline": "\u4e0b\u7dda", "Strikethrough": "\u53d6\u6d88\u7dda", "Superscript": "\u4e0a\u4ed8\u304d", "Subscript": "\u4e0b\u4ed8\u304d", "Clear formatting": "\u66f8\u5f0f\u3092\u30af\u30ea\u30a2", "Align left": "\u5de6\u63c3\u3048", "Align center": "\u4e2d\u592e\u63c3\u3048", "Align right": "\u53f3\u63c3\u3048", "Justify": "\u4e21\u7aef\u63c3\u3048", "Bullet list": "\u7b87\u6761\u66f8\u304d", "Numbered list": "\u756a\u53f7\u4ed8\u304d\u7b87\u6761\u66f8\u304d", "Decrease indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u6e1b\u3089\u3059", "Increase indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u5897\u3084\u3059", "Close": "\u9589\u3058\u308b", "Formats": "\u66f8\u5f0f", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u304a\u4f7f\u3044\u306e\u30d6\u30e9\u30a6\u30b6\u3067\u306f\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u6a5f\u80fd\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002\u30ad\u30fc\u30dc\u30fc\u30c9\u306e\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\uff08Ctrl+X, Ctrl+C, Ctrl+V\uff09\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Headers": "\u30d8\u30c3\u30c0\u30fc", "Header 1": "\u30d8\u30c3\u30c0\u30fc 1", "Header 2": "\u30d8\u30c3\u30c0\u30fc 2", "Header 3": "\u30d8\u30c3\u30c0\u30fc 3", "Header 4": "\u30d8\u30c3\u30c0\u30fc 4", "Header 5": "\u30d8\u30c3\u30c0\u30fc 5", "Header 6": "\u30d8\u30c3\u30c0\u30fc 6", "Headings": "\u898b\u51fa\u3057", "Heading 1": "\u898b\u51fa\u30571", "Heading 2": "\u898b\u51fa\u30572", "Heading 3": "\u898b\u51fa\u30573", "Heading 4": "\u898b\u51fa\u30574", "Heading 5": "\u898b\u51fa\u30575", "Heading 6": "\u898b\u51fa\u30576", "Preformatted": "\u66f8\u5f0f\u8a2d\u5b9a\u6e08\u307f", "Div": "Div", "Pre": "Pre", "Code": "\u30b3\u30fc\u30c9", "Paragraph": "\u6bb5\u843d", "Blockquote": "Blockquote", "Inline": "\u30a4\u30f3\u30e9\u30a4\u30f3", "Blocks": "\u30d6\u30ed\u30c3\u30af", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u8cbc\u308a\u4ed8\u3051\u306f\u73fe\u5728\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u30e2\u30fc\u30c9\u3067\u3059\u3002\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u30aa\u30d5\u306b\u3057\u306a\u3044\u9650\u308a\u5185\u5bb9\u306f\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051\u3089\u308c\u307e\u3059\u3002", "Fonts": "\u30d5\u30a9\u30f3\u30c8", "Font Sizes": "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba", "Class": "\u30af\u30e9\u30b9", "Browse for an image": "\u753b\u50cf\u3092\u53c2\u7167", "OR": "OR", "Drop an image here": "\u3053\u3053\u306b\u753b\u50cf\u3092\u30c9\u30ed\u30c3\u30d7", "Upload": "\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9", "Block": "\u30d6\u30ed\u30c3\u30af", "Align": "\u914d\u7f6e", "Default": "\u30c7\u30d5\u30a9\u30eb\u30c8", "Circle": "\u5186", "Disc": "\u70b9", "Square": "\u56db\u89d2", "Lower Alpha": "\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8", "Lower Greek": "\u5c0f\u6587\u5b57\u306e\u30ae\u30ea\u30b7\u30e3\u6587\u5b57", "Lower Roman": "\u5c0f\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57", "Upper Alpha": "\u5927\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8", "Upper Roman": "\u5927\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57", "Anchor...": "\u30a2\u30f3\u30ab\u30fc...", "Name": "\u30a2\u30f3\u30ab\u30fc\u540d", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID\u306f\u6587\u5b57\u3067\u59cb\u307e\u308a\u3001\u6587\u5b57\u3001\u6570\u5b57\u3001\u30c0\u30c3\u30b7\u30e5\u3001\u30c9\u30c3\u30c8\u3001\u30b3\u30ed\u30f3\u307e\u305f\u306f\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2\u3067\u59cb\u307e\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002", "You have unsaved changes are you sure you want to navigate away?": "\u307e\u3060\u4fdd\u5b58\u3057\u3066\u3044\u306a\u3044\u5909\u66f4\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u672c\u5f53\u306b\u3053\u306e\u30da\u30fc\u30b8\u3092\u96e2\u308c\u307e\u3059\u304b\uff1f", "Restore last draft": "\u524d\u56de\u306e\u4e0b\u66f8\u304d\u3092\u5fa9\u6d3b\u3055\u305b\u308b", "Special character...": "\u7279\u6b8a\u6587\u5b57...", "Source code": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9", "Insert\/Edit code sample": "\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb\u306e\u633f\u5165\u30fb\u7de8\u96c6", "Language": "\u8a00\u8a9e", "Code sample...": "\u30b3\u30fc\u30c9\u306e\u30b5\u30f3\u30d7\u30eb...", "Color Picker": "\u30ab\u30e9\u30fc\u30d4\u30c3\u30ab\u30fc", "R": "R", "G": "G", "B": "B", "Left to right": "\u5de6\u304b\u3089\u53f3", "Right to left": "\u53f3\u304b\u3089\u5de6", "Emoticons": "\u7d75\u6587\u5b57", "Emoticons...": "\u7d75\u6587\u5b57...", "Metadata and Document Properties": "\u30e1\u30bf\u30c7\u30fc\u30bf\u3068\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30d7\u30ed\u30d1\u30c6\u30a3", "Title": "\u30bf\u30a4\u30c8\u30eb", "Keywords": "\u30ad\u30fc\u30ef\u30fc\u30c9", "Description": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u5185\u5bb9", "Robots": "\u30ed\u30dc\u30c3\u30c4", "Author": "\u8457\u8005", "Encoding": "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0", "Fullscreen": "\u5168\u753b\u9762\u8868\u793a", "Action": "\u30a2\u30af\u30b7\u30e7\u30f3", "Shortcut": "\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8", "Help": "\u30d8\u30eb\u30d7", "Address": "\u30a2\u30c9\u30ec\u30b9", "Focus to menubar": "\u30e1\u30cb\u30e5\u30fc\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9", "Focus to toolbar": "\u30c4\u30fc\u30eb\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9", "Focus to element path": "\u8981\u7d20\u30d1\u30b9\u306b\u30d5\u30a9\u30fc\u30ab\u30b9", "Focus to contextual toolbar": "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u30c4\u30fc\u30eb\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9", "Insert link (if link plugin activated)": "\u30ea\u30f3\u30af\u3092\u633f\u5165 (\u30ea\u30f3\u30af\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)", "Save (if save plugin activated)": "\u4fdd\u5b58 (\u4fdd\u5b58\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)", "Find (if searchreplace plugin activated)": "\u691c\u7d22(\u7f6e\u63db\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)", "Plugins installed ({0}):": "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e08\u30d7\u30e9\u30b0\u30a4\u30f3 ({0}):", "Premium plugins:": "\u30d7\u30ec\u30df\u30a2\u30e0\u30d7\u30e9\u30b0\u30a4\u30f3:", "Learn more...": "\u8a73\u7d30...", "You are using {0}": "\u3042\u306a\u305f\u306f {0} \u4f7f\u7528\u4e2d", "Plugins": "\u30d7\u30e9\u30b0\u30a4\u30f3", "Handy Shortcuts": "\u4fbf\u5229\u306a\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8", "Horizontal line": "\u6c34\u5e73\u7f6b\u7dda", "Insert\/edit image": "\u753b\u50cf\u306e\u633f\u5165\u30fb\u7de8\u96c6", "Alternative description": "\u4ee3\u66ff\u306e\u8aac\u660e\u6587", "Accessibility": "\u30a2\u30af\u30bb\u30b7\u30d3\u30ea\u30c6\u30a3", "Image is decorative": "\u753b\u50cf\u306f\u88c5\u98fe\u753b\u50cf", "Source": "\u753b\u50cf\u306e\u30bd\u30fc\u30b9", "Dimensions": "\u753b\u50cf\u30b5\u30a4\u30ba\uff08\u6a2a\u30fb\u7e26\uff09", "Constrain proportions": "\u7e26\u6a2a\u6bd4\u3092\u4fdd\u6301\u3059\u308b", "General": "\u4e00\u822c", "Advanced": "\u8a73\u7d30\u8a2d\u5b9a", "Style": "\u30b9\u30bf\u30a4\u30eb", "Vertical space": "\u7e26\u65b9\u5411\u306e\u4f59\u767d", "Horizontal space": "\u6a2a\u65b9\u5411\u306e\u4f59\u767d", "Border": "\u67a0\u7dda", "Insert image": "\u753b\u50cf\u306e\u633f\u5165", "Image...": "\u753b\u50cf..", "Image list": "\u753b\u50cf\u4e00\u89a7", "Rotate counterclockwise": "\u53cd\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2", "Rotate clockwise": "\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2", "Flip vertically": "\u4e0a\u4e0b\u306b\u53cd\u8ee2", "Flip horizontally": "\u6c34\u5e73\u306b\u53cd\u8ee2", "Edit image": "\u753b\u50cf\u306e\u7de8\u96c6", "Image options": "\u753b\u50cf\u30aa\u30d7\u30b7\u30e7\u30f3", "Zoom in": "\u30ba\u30fc\u30e0\u30a4\u30f3", "Zoom out": "\u30ba\u30fc\u30e0\u30a2\u30a6\u30c8", "Crop": "\u30af\u30ed\u30c3\u30d7", "Resize": "\u30ea\u30b5\u30a4\u30ba", "Orientation": "\u5411\u304d", "Brightness": "\u660e\u308b\u3055", "Sharpen": "\u30b7\u30e3\u30fc\u30d7\u5316", "Contrast": "\u30b3\u30f3\u30c8\u30e9\u30b9\u30c8", "Color levels": "\u30ab\u30e9\u30fc\u30ec\u30d9\u30eb", "Gamma": "\u30ac\u30f3\u30de", "Invert": "\u53cd\u8ee2", "Apply": "\u9069\u7528", "Back": "\u623b\u308b", "Insert date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b", "Date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b", "Insert\/edit link": "\u30ea\u30f3\u30af\u306e\u633f\u5165\u30fb\u7de8\u96c6", "Text to display": "\u30ea\u30f3\u30af\u5143\u30c6\u30ad\u30b9\u30c8", "Url": "\u30ea\u30f3\u30af\u5148URL", "Open link in...": "\u30ea\u30f3\u30af\u306e\u958b\u304d\u65b9...", "Current window": "\u540c\u3058\u30a6\u30a3\u30f3\u30c9\u30a6", "None": "\u306a\u3057", "New window": "\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6", "Open link": "\u30ea\u30f3\u30af\u3092\u958b\u304f", "Remove link": "\u30ea\u30f3\u30af\u306e\u524a\u9664", "Anchors": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09", "Link...": "\u30ea\u30f3\u30af...", "Paste or type a link": "\u30ea\u30f3\u30af\u3092\u30da\u30fc\u30b9\u30c8\u307e\u305f\u306f\u5165\u529b", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u3088\u3046\u3067\u3059\u3002\u300cmailto:\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u5916\u90e8\u30ea\u30f3\u30af\u306e\u3088\u3046\u3067\u3059\u3002\u300chttp:\/\/\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u5916\u90e8\u30ea\u30f3\u30af\u306e\u3088\u3046\u3067\u3059\u3002\u5fc5\u8981\u306a\u300chttps:\/\/\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f", "Link list": "\u30ea\u30f3\u30af\u4e00\u89a7", "Insert video": "\u52d5\u753b", "Insert\/edit video": "\u52d5\u753b\u306e\u633f\u5165\u30fb\u7de8\u96c6", "Insert\/edit media": "\u30e1\u30c7\u30a3\u30a2\u306e\u633f\u5165\u30fb\u7de8\u96c6", "Alternative source": "\u4ee3\u66ff\u52d5\u753b\u306e\u5834\u6240", "Alternative source URL": "\u4ee3\u66ff\u30bd\u30fc\u30b9URL", "Media poster (Image URL)": "\u30e1\u30c7\u30a3\u30a2\u30dd\u30b9\u30bf\u30fc (\u753b\u50cfURL)", "Paste your embed code below:": "\u57cb\u3081\u8fbc\u307f\u7528\u30b3\u30fc\u30c9\u3092\u4e0b\u8a18\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002", "Embed": "\u57cb\u3081\u8fbc\u307f", "Media...": "\u30e1\u30c7\u30a3\u30a2\u2026", "Nonbreaking space": "\u56fa\u5b9a\u30b9\u30da\u30fc\u30b9\uff08 \uff09", "Page break": "\u30da\u30fc\u30b8\u533a\u5207\u308a", "Paste as text": "\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051", "Preview": "\u30d7\u30ec\u30d3\u30e5\u30fc", "Print...": "\u5370\u5237...", "Save": "\u4fdd\u5b58", "Find": "\u691c\u7d22", "Replace with": "\u7f6e\u304d\u63db\u3048\u308b\u6587\u5b57", "Replace": "\u7f6e\u304d\u63db\u3048", "Replace all": "\u5168\u3066\u3092\u7f6e\u304d\u63db\u3048\u308b", "Previous": "\u524d\u3078", "Next": "\u6b21", "Find and Replace": "\u691c\u7d22\u3068\u7f6e\u63db", "Find and replace...": "\u7f6e\u63db...", "Could not find the specified string.": "\u304a\u63a2\u3057\u306e\u6587\u5b57\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002", "Match case": "\u5927\u6587\u5b57\u30fb\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3059\u308b", "Find whole words only": "\u8a9e\u5168\u4f53\u3092\u542b\u3080\u3082\u306e\u306e\u307f\u691c\u7d22", "Find in selection": "\u9078\u629e\u90e8\u5206\u3067\u691c\u7d22", "Spellcheck": "\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af", "Spellcheck Language": "\u8a00\u8a9e\u306e\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af", "No misspellings found.": "\u30b9\u30da\u30eb\u30df\u30b9\u306f\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f", "Ignore": "\u7121\u8996", "Ignore all": "\u5168\u3066\u3092\u7121\u8996", "Finish": "\u7d42\u4e86", "Add to Dictionary": "\u8f9e\u66f8\u306b\u8ffd\u52a0", "Insert table": "\u8868\u306e\u633f\u5165", "Table properties": "\u8868\u306e\u8a73\u7d30\u8a2d\u5b9a", "Delete table": "\u8868\u306e\u524a\u9664", "Cell": "\u30bb\u30eb", "Row": "\u884c", "Column": "\u5217", "Cell properties": "\u30bb\u30eb\u306e\u8a73\u7d30\u8a2d\u5b9a", "Merge cells": "\u30bb\u30eb\u306e\u7d50\u5408", "Split cell": "\u30bb\u30eb\u306e\u5206\u5272", "Insert row before": "\u4e0a\u5074\u306b\u884c\u3092\u633f\u5165", "Insert row after": "\u4e0b\u5074\u306b\u884c\u3092\u633f\u5165", "Delete row": "\u884c\u306e\u524a\u9664", "Row properties": "\u884c\u306e\u8a73\u7d30\u8a2d\u5b9a", "Cut row": "\u884c\u306e\u5207\u308a\u53d6\u308a", "Copy row": "\u884c\u306e\u30b3\u30d4\u30fc", "Paste row before": "\u4e0a\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051", "Paste row after": "\u4e0b\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051", "Insert column before": "\u5de6\u5074\u306b\u5217\u3092\u633f\u5165", "Insert column after": "\u53f3\u5074\u306b\u5217\u3092\u633f\u5165", "Delete column": "\u5217\u306e\u524a\u9664", "Cols": "\u5217\u6570", "Rows": "\u884c\u6570", "Width": "\u5e45", "Height": "\u9ad8\u3055", "Cell spacing": "\u30bb\u30eb\u306e\u9593\u9694", "Cell padding": "\u30bb\u30eb\u5185\u4f59\u767d\uff08\u30d1\u30c7\u30a3\u30f3\u30b0\uff09", "Caption": "\u8868\u984c", "Show caption": "\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3\u306e\u8868\u793a", "Left": "\u5de6\u5bc4\u305b", "Center": "\u4e2d\u592e\u63c3\u3048", "Right": "\u53f3\u5bc4\u305b", "Cell type": "\u30bb\u30eb\u30bf\u30a4\u30d7", "Scope": "\u30b9\u30b3\u30fc\u30d7", "Alignment": "\u914d\u7f6e", "H Align": "\u6c34\u5e73\u65b9\u5411\u306e\u914d\u7f6e", "V Align": "\u5782\u76f4\u65b9\u5411\u306e\u914d\u7f6e", "Top": "\u4e0a", "Middle": "\u4e2d\u592e", "Bottom": "\u4e0b", "Header cell": "\u30d8\u30c3\u30c0\u30fc\u30bb\u30eb", "Row group": "\u884c\u30b0\u30eb\u30fc\u30d7", "Column group": "\u5217\u30b0\u30eb\u30fc\u30d7", "Row type": "\u884c\u30bf\u30a4\u30d7", "Header": "\u30d8\u30c3\u30c0\u30fc", "Body": "\u30dc\u30c7\u30a3\u30fc", "Footer": "\u30d5\u30c3\u30bf\u30fc", "Border color": "\u67a0\u7dda\u306e\u8272", "Insert template...": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165..", "Templates": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u540d", "Template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8", "Text color": "\u30c6\u30ad\u30b9\u30c8\u306e\u8272", "Background color": "\u80cc\u666f\u8272", "Custom...": "\u30ab\u30b9\u30bf\u30e0...", "Custom color": "\u30ab\u30b9\u30bf\u30e0\u30ab\u30e9\u30fc", "No color": "\u30ab\u30e9\u30fc\u306a\u3057", "Remove color": "\u8272\u8a2d\u5b9a\u3092\u89e3\u9664", "Table of Contents": "\u76ee\u6b21", "Show blocks": "\u6587\u7ae0\u306e\u533a\u5207\u308a\u3092\u70b9\u7dda\u3067\u8868\u793a", "Show invisible characters": "\u4e0d\u53ef\u8996\u6587\u5b57\u3092\u8868\u793a", "Word count": "\u6587\u5b57\u6570\u30ab\u30a6\u30f3\u30c8", "Count": "\u30ab\u30a6\u30f3\u30c8", "Document": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8", "Selection": "\u9078\u629e", "Words": "\u5358\u8a9e\u6570", "Words: {0}": "\u5358\u8a9e\u6570: {0}", "{0} words": "{0} \u30ef\u30fc\u30c9", "File": "\u30d5\u30a1\u30a4\u30eb", "Edit": "\u7de8\u96c6", "Insert": "\u633f\u5165", "View": "\u8868\u793a", "Format": "\u66f8\u5f0f", "Table": "\u8868", "Tools": "\u30c4\u30fc\u30eb", "Powered by {0}": "Powered by {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u66f8\u5f0f\u4ed8\u304d\u30c6\u30ad\u30b9\u30c8\u306e\u7de8\u96c6\u753b\u9762\u3002ALT-F9\u3067\u30e1\u30cb\u30e5\u30fc\u3001ALT-F10\u3067\u30c4\u30fc\u30eb\u30d0\u30fc\u3001ALT-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002", "Image title": "\u753b\u50cf\u30bf\u30a4\u30c8\u30eb", "Border width": "\u67a0\u7dda\u5e45", "Border style": "\u67a0\u7dda\u30b9\u30bf\u30a4\u30eb", "Error": "\u30a8\u30e9\u30fc", "Warn": "\u8b66\u544a", "Valid": "\u6709\u52b9", "To open the popup, press Shift+Enter": "\u30dd\u30c3\u30d7\u30a2\u30c3\u30d7\u3092\u958b\u304f\u306b\u306f\u3001Shift+Enter\u3092\u62bc\u3057\u3066\u304f\u3060\u3055\u3044", "Rich Text Area. Press ALT-0 for help.": "\u30ea\u30c3\u30c1\u30c6\u30ad\u30b9\u30c8\u30a8\u30ea\u30a2\u3002Alt-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002", "System Font": "\u30b7\u30b9\u30c6\u30e0\u30d5\u30a9\u30f3\u30c8", "Failed to upload image: {0}": "\u753b\u50cf{0}\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f", "Failed to load plugin: {0} from url {1}": "URL{1}\u304b\u3089\u306e\u30d7\u30e9\u30b0\u30a4\u30f3{0}\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u307e\u3057\u305f", "Failed to load plugin url: {0}": "\u30d7\u30e9\u30b0\u30a4\u30f3\u306eURL{0}\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f", "Failed to initialize plugin: {0}": "\u30d7\u30e9\u30b0\u30a4\u30f3{0}\u306e\u521d\u671f\u5316\u306b\u5931\u6557\u3057\u307e\u3057\u305f", "example": "\u4f8b", "Search": "\u691c\u7d22", "All": "\u3059\u3079\u3066", "Currency": "\u901a\u8ca8", "Text": "\u30c6\u30ad\u30b9\u30c8", "Quotations": "\u5f15\u7528", "Mathematical": "\u6570\u5b66\u8a18\u53f7", "Extended Latin": "\u30e9\u30c6\u30f3\u6587\u5b57\u62e1\u5f35", "Symbols": "\u8a18\u53f7", "Arrows": "\u77e2\u5370", "User Defined": "\u30e6\u30fc\u30b6\u30fc\u5b9a\u7fa9", "dollar sign": "\u30c9\u30eb\u8a18\u53f7", "currency sign": "\u901a\u8ca8\u8a18\u53f7", "euro-currency sign": "\u30e6\u30fc\u30ed\u8a18\u53f7", "colon sign": "\u30b3\u30ed\u30f3\u8a18\u53f7", "cruzeiro sign": "\u30af\u30eb\u30bc\u30a4\u30ed\u8a18\u53f7", "french franc sign": "\u30d5\u30e9\u30f3\u30b9\u30d5\u30e9\u30f3\u8a18\u53f7", "lira sign": "\u30ea\u30e9\u8a18\u53f7", "mill sign": "\u30df\u30eb\u8a18\u53f7", "naira sign": "\u30ca\u30a4\u30e9\u8a18\u53f7", "peseta sign": "\u30da\u30bb\u30bf\u8a18\u53f7", "rupee sign": "\u30eb\u30d4\u30fc\u8a18\u53f7", "won sign": "\u30a6\u30a9\u30f3\u8a18\u53f7", "new sheqel sign": "\u65b0\u30b7\u30a7\u30b1\u30eb\u8a18\u53f7", "dong sign": "\u30c9\u30f3\u8a18\u53f7", "kip sign": "\u30ad\u30fc\u30d7\u8a18\u53f7", "tugrik sign": "\u30c8\u30a5\u30b0\u30eb\u30b0\u8a18\u53f7", "drachma sign": "\u30c9\u30e9\u30af\u30de\u8a18\u53f7", "german penny symbol": "\u30c9\u30a4\u30c4\u30da\u30cb\u30fc\u8a18\u53f7", "peso sign": "\u30da\u30bd\u8a18\u53f7", "guarani sign": "\u30ac\u30e9\u30cb\u8a18\u53f7", "austral sign": "\u30a2\u30a6\u30b9\u30c8\u30e9\u30eb\u8a18\u53f7", "hryvnia sign": "\u30d5\u30ea\u30f4\u30cb\u30e3\u8a18\u53f7", "cedi sign": "\u30bb\u30c7\u30a3\u8a18\u53f7", "livre tournois sign": "\u30c8\u30a5\u30fc\u30eb\u30dd\u30f3\u30c9\u8a18\u53f7", "spesmilo sign": "\u30b9\u30da\u30b9\u30df\u30fc\u30ed\u8a18\u53f7", "tenge sign": "\u30c6\u30f3\u30b2\u8a18\u53f7", "indian rupee sign": "\u30a4\u30f3\u30c9\u30eb\u30d4\u30fc\u8a18\u53f7", "turkish lira sign": "\u30c8\u30eb\u30b3\u30ea\u30e9\u8a18\u53f7", "nordic mark sign": "\u5317\u6b27\u30de\u30eb\u30af\u8a18\u53f7", "manat sign": "\u30de\u30ca\u30c8\u8a18\u53f7", "ruble sign": "\u30eb\u30fc\u30d6\u30eb\u8a18\u53f7", "yen character": "\u5186\u8a18\u53f7", "yuan character": "\u4eba\u6c11\u5143\u8a18\u53f7", "yuan character, in hong kong and taiwan": "\u9999\u6e2f\u304a\u3088\u3073\u53f0\u6e7e\u306b\u304a\u3051\u308b\u5143\u8a18\u53f7", "yen\/yuan character variant one": "\u5186\/\u5143\u8a18\u53f7\u306e\u30d0\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3", "Loading emoticons...": "\u7d75\u6587\u5b57\u3092\u8aad\u307f\u8fbc\u3093\u3067\u3044\u307e\u3059...", "Could not load emoticons": "\u7d75\u6587\u5b57\u304c\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f\u3002", "People": "\u4eba", "Animals and Nature": "\u52d5\u7269\u3068\u81ea\u7136", "Food and Drink": "\u98df\u3079\u7269\u3068\u98f2\u307f\u7269", "Activity": "\u884c\u52d5", "Travel and Places": "\u65c5\u884c\u3068\u5834\u6240", "Objects": "\u7269", "Flags": "\u65d7", "Characters": "\u6587\u5b57\u6570", "Characters (no spaces)": "\u6587\u5b57\u6570 (\u30b9\u30da\u30fc\u30b9\u306a\u3057)", "{0} characters": "{0}\u6587\u5b57", "Error: Form submit field collision.": "\u30a8\u30e9\u30fc\uff1a\u30d5\u30a9\u30fc\u30e0\u9001\u4fe1\u30d5\u30a3\u30fc\u30eb\u30c9\u304c\u7af6\u5408\u3057\u3066\u3044\u307e\u3059\u3002", "Error: No form element found.": "\u30a8\u30e9\u30fc\uff1a\u30d5\u30a9\u30fc\u30e0\u8981\u7d20\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002", "Update": "\u66f4\u65b0", "Color swatch": "\u8272\u306e\u898b\u672c", "Turquoise": "\u30bf\u30fc\u30b3\u30a4\u30ba", "Green": "\u30b0\u30ea\u30fc\u30f3", "Blue": "\u30d6\u30eb\u30fc", "Purple": "\u30d1\u30fc\u30d7\u30eb", "Navy Blue": "\u30cd\u30a4\u30d3\u30fc", "Dark Turquoise": "\u30c0\u30fc\u30af\u30bf\u30fc\u30b3\u30a4\u30ba", "Dark Green": "\u30c0\u30fc\u30af\u30b0\u30ea\u30fc\u30f3", "Medium Blue": "\u30e1\u30c7\u30a3\u30a2\u30e0\u30d6\u30eb\u30fc", "Medium Purple": "\u30df\u30c7\u30a3\u30a2\u30e0\u30d1\u30fc\u30d7\u30eb", "Midnight Blue": "\u30df\u30c3\u30c9\u30ca\u30a4\u30c8\u30d6\u30eb\u30fc", "Yellow": "\u30a4\u30a8\u30ed\u30fc", "Orange": "\u30aa\u30ec\u30f3\u30b8", "Red": "\u30ec\u30c3\u30c9", "Light Gray": "\u30e9\u30a4\u30c8\u30b0\u30ec\u30fc", "Gray": "\u30b0\u30ec\u30fc", "Dark Yellow": "\u30c0\u30fc\u30af\u30a4\u30a8\u30ed\u30fc", "Dark Orange": "\u30c0\u30fc\u30af\u30aa\u30ec\u30f3\u30b8", "Dark Red": "\u30c0\u30fc\u30af\u30ec\u30c3\u30c9", "Medium Gray": "\u30df\u30c7\u30a3\u30a2\u30e0\u30b0\u30ec\u30fc", "Dark Gray": "\u30c0\u30fc\u30af\u30b0\u30ec\u30fc", "Light Green": "\u30e9\u30a4\u30c8\u30b0\u30ea\u30fc\u30f3", "Light Yellow": "\u30e9\u30a4\u30c8\u30a4\u30a8\u30ed\u30fc", "Light Red": "\u30e9\u30a4\u30c8\u30ec\u30c3\u30c9", "Light Purple": "\u30e9\u30a4\u30c8\u30d1\u30fc\u30d7\u30eb", "Light Blue": "\u30e9\u30a4\u30c8\u30d6\u30eb\u30fc", "Dark Purple": "\u30c0\u30fc\u30af\u30d1\u30fc\u30d7\u30eb", "Dark Blue": "\u30c0\u30fc\u30af\u30d6\u30eb\u30fc", "Black": "\u30d6\u30e9\u30c3\u30af", "White": "\u30db\u30ef\u30a4\u30c8", "Switch to or from fullscreen mode": "\u30d5\u30eb\u30b9\u30af\u30ea\u30fc\u30f3\u30e2\u30fc\u30c9\u5207\u66ff", "Open help dialog": "\u30d8\u30eb\u30d7\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u958b\u304f", "history": "\u5c65\u6b74", "styles": "\u30b9\u30bf\u30a4\u30eb", "formatting": "\u66f8\u5f0f", "alignment": "\u914d\u7f6e", "indentation": "\u30a4\u30f3\u30c7\u30f3\u30c8", "Font": "\u30d5\u30a9\u30f3\u30c8", "Size": "\u30b5\u30a4\u30ba", "More...": "\u8a73\u7d30...", "Select...": "\u9078\u629e...", "Preferences": "\u30d7\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9", "Yes": "\u306f\u3044", "No": "\u3044\u3044\u3048", "Keyboard Navigation": "\u30ad\u30fc\u30dc\u30fc\u30c9\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3", "Version": "\u30d0\u30fc\u30b8\u30e7\u30f3", "Code view": "\u30b3\u30fc\u30c9\u8868\u793a", "Open popup menu for split buttons": "\u5206\u5272\u30dc\u30bf\u30f3\u306e\u30dd\u30c3\u30d7\u30a2\u30c3\u30d7\u30e1\u30cb\u30e5\u30fc\u3092\u958b\u304f", "List Properties": "\u7b87\u6761\u66f8\u304d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3", "List properties...": "\u7b87\u6761\u66f8\u304d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3...", "Start list at number": "\u756a\u53f7\u30ea\u30b9\u30c8\u306e\u958b\u59cb", "Line height": "\u884c\u306e\u9ad8\u3055", "comments": "\u30b3\u30e1\u30f3\u30c8", "Format Painter": "\u66f8\u5f0f\u306e\u30b3\u30d4\u30fc\/\u8cbc\u308a\u4ed8\u3051", "Insert\/edit iframe": "iframe\u306e\u633f\u5165\/\u7de8\u96c6", "Capitalization": "\u5927\u6587\u5b57\u5316", "lowercase": "\u5c0f\u6587\u5b57", "UPPERCASE": "\u5927\u6587\u5b57", "Title Case": "\u30bf\u30a4\u30c8\u30eb\u6587\u5b57", "permanent pen": "\u86cd\u5149\u30da\u30f3", "Permanent Pen Properties": "\u86cd\u5149\u30da\u30f3\u306e\u30d7\u30ed\u30d1\u30c6\u30a3", "Permanent pen properties...": "\u86cd\u5149\u30da\u30f3\u306e\u30d7\u30ed\u30d1\u30c6\u30a3...", "case change": "\u5927\u6587\u5b57\/\u5c0f\u6587\u5b57\u306e\u5909\u66f4", "page embed": "\u30da\u30fc\u30b8\u57cb\u3081\u8fbc\u307f", "Advanced sort...": "\u9ad8\u5ea6\u306a\u4e26\u3079\u66ff\u3048...", "Advanced Sort": "\u9ad8\u5ea6\u306a\u4e26\u3079\u66ff\u3048", "Sort table by column ascending": "\u5217\u306e\u6607\u9806\u3067\u8868\u3092\u4e26\u3079\u66ff\u3048\u308b", "Sort table by column descending": "\u5217\u306e\u964d\u9806\u3067\u8868\u3092\u4e26\u3079\u66ff\u3048\u308b", "Sort": "\u4e26\u3079\u66ff\u3048", "Order": "\u9806\u5e8f", "Sort by": "\u4e26\u3073\u66ff\u3048", "Ascending": "\u6607\u9806", "Descending": "\u964d\u9806", "Column {0}": "\u5217 {0}", "Row {0}": "\u884c {0}", "Spellcheck...": "\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af ...", "Misspelled word": "\u30b9\u30da\u30eb\u30df\u30b9\u306e\u5358\u8a9e", "Suggestions": "\u63d0\u6848", "Change": "\u5909\u66f4", "Finding word suggestions": "\u5358\u8a9e\u306e\u63d0\u6848\u3092\u691c\u7d22", "Success": "\u6210\u529f", "Repair": "\u4fee\u5fa9", "Issue {0} of {1}": "{1}\u306e{0}\u3092\u767a\u884c", "Images must be marked as decorative or have an alternative text description": "\u753b\u50cf\u306f\u88c5\u98fe\u3068\u3057\u3066\u30de\u30fc\u30af\u3059\u308b\u304b\u3001\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8\u306e\u8aac\u660e\u304c\u5fc5\u8981\u3067\u3059", "Images must have an alternative text description. Decorative images are not allowed.": "\u753b\u50cf\u306b\u306f\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8\u306e\u8aac\u660e\u304c\u5fc5\u8981\u3067\u3059\u3002\u88c5\u98fe\u7684\u306a\u753b\u50cf\u306f\u8a31\u53ef\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002", "Or provide alternative text:": "\u307e\u305f\u306f\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8\u3092\u63d0\u4f9b:", "Make image decorative:": "\u753b\u50cf\u3092\u88c5\u98fe\u7684\u306b\u3059\u308b:", "ID attribute must be unique": "ID\u306e\u5c5e\u6027\u306f\u4e00\u610f\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059", "Make ID unique": "ID\u3092\u4e00\u610f\u306b\u3059\u308b", "Keep this ID and remove all others": "\u3053\u306eID\u3092\u4fdd\u6301\u3057\u3001\u4ed6\u306e\u3059\u3079\u3066\u3092\u524a\u9664\u3057\u307e\u3059", "Remove this ID": "\u3053\u306eID\u3092\u524a\u9664\u3057\u307e\u3059", "Remove all IDs": "\u3059\u3079\u3066\u306eID\u3092\u524a\u9664\u3057\u307e\u3059", "Checklist": "\u30c1\u30a7\u30c3\u30af\u30ea\u30b9\u30c8", "Anchor": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09", "Special character": "\u7279\u6b8a\u6587\u5b57", "Code sample": "\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb", "Color": "\u30ab\u30e9\u30fc", "Document properties": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30d7\u30ed\u30d1\u30c6\u30a3", "Image description": "\u753b\u50cf\u306e\u8aac\u660e\u6587", "Image": "\u753b\u50cf", "Insert link": "\u30ea\u30f3\u30af", "Target": "\u30bf\u30fc\u30b2\u30c3\u30c8\u5c5e\u6027", "Link": "\u30ea\u30f3\u30af", "Poster": "\u4ee3\u66ff\u753b\u50cf\u306e\u5834\u6240", "Media": "\u30e1\u30c7\u30a3\u30a2", "Print": "\u5370\u5237", "Prev": "\u524d", "Find and replace": "\u691c\u7d22\u3068\u7f6e\u304d\u63db\u3048", "Whole words": "\u5358\u8a9e\u5358\u4f4d\u3067\u691c\u7d22\u3059\u308b", "Insert template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/kab.js ================================================ tinymce.addI18n('kab',{ "Redo": "Err-d", "Undo": "Semmet", "Cut": "Gzem", "Copy": "N\u0263el", "Paste": "Sente\u1e0d", "Select all": "Fren kulec", "New document": "Attaftar amaynut", "Ok": "Ih", "Cancel": "Semmet", "Visual aids": "Visual aids", "Bold": "Tira tazurant", "Italic": "Tira yeknan", "Underline": "Aderrer", "Strikethrough": "Strikethrough", "Superscript": "Superscript", "Subscript": "Subscript", "Clear formatting": "Clear formatting", "Align left": "Tarigla \u0263er zelma\u1e0d", "Align center": "Di tlemast", "Align right": "tarigla \u0263er zelma\u1e0d", "Justify": "Justify", "Bullet list": "Tabdart s tlillac", "Numbered list": "Tabdart s wu\u1e6d\u1e6dunen", "Decrease indent": "Simc\u1e6du\u1e25 asi\u1e93i", "Increase indent": "Sim\u0263ur asi\u1e93i", "Close": "Mdel", "Formats": "Imasalen", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.", "Headers": "Izwal", "Header 1": "Azwel 1", "Header 2": "Azwel 2", "Header 3": "Azwel 3", "Header 4": "Azwel 4", "Header 5": "Header 5", "Header 6": "Azwel 6", "Headings": "Izewlen", "Heading 1": "Inixf 1", "Heading 2": "Inixf 2", "Heading 3": "Inixf 3", "Heading 4": "Inixf 4", "Heading 5": "Inixf 5", "Heading 6": "Inixf 6", "Preformatted": "Yettwamsel si tazwara", "Div": "Div", "Pre": "Pre", "Code": "Tangalt", "Paragraph": "taseddart", "Blockquote": "Tanebdurt", "Inline": "Inline", "Blocks": "I\u1e25edran", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.", "Fonts": "Tisefsa", "Font Sizes": "Tiddi n tsefsit", "Class": "Asmil", "Browse for an image": "Snirem iwakken ad tferne\u1e0d tugna", "OR": "Ih", "Drop an image here": "Ssers tugna dagi", "Upload": "Sili", "Block": "Sew\u1e25el", "Align": "Settef", "Default": "Lex\u1e63as", "Circle": "Tawinest", "Disc": "A\u1e0debsi", "Square": "Amku\u1e93", "Lower Alpha": "Alpha ame\u1e93yan", "Lower Greek": "Grik ame\u1e93yan", "Lower Roman": "Ruman amectu\u1e25", "Upper Alpha": "Alfa ameqran", "Upper Roman": "Ruman ameqran", "Anchor...": "Tamdeyt...", "Name": "Isem", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "id ilaq ad ibdu s usekkil, ad yettwa\u1e0dfer kan s isekkilen, im\u1e0danen, ijerri\u1e0den, tinqi\u1e0din, snat n tenqi\u1e0din ne\u0263 ijerri\u1e0den n wadda.", "You have unsaved changes are you sure you want to navigate away?": "Ibeddilen ur twaskelsen ara teb\u0263i\u1e0d ad teff\u0263e\u1e0d ?", "Restore last draft": "Restore last draft", "Special character...": "Isekkilen uzzigen...", "Source code": "Tangalt ta\u0263balut", "Insert\/Edit code sample": "Ger\/\u1e92reg tangalt n umedya", "Language": "Tutlayt", "Code sample...": "Amedya n tengalt...", "Color Picker": "Amelqa\u1e0d n yini", "R": "R", "G": "G", "B": "B", "Left to right": "Seg zelma\u1e0d \u0263er yefus", "Right to left": "Seg yefus \u0263er zelma\u1e0d", "Emoticons...": "Tigitin n u\u1e25ulfu...", "Metadata and Document Properties": "Idfersefka akked yiraten n yisemli", "Title": "Azwel", "Keywords": "Awalen yufraren", "Description": "Aglam", "Robots": "Robots", "Author": "Ameskar", "Encoding": "Asettengel", "Fullscreen": "Agdil a\u010duran", "Action": "Tigawt", "Shortcut": "Anegzum", "Help": "Tallalt", "Address": "Tansa", "Focus to menubar": "Asa\u1e0des \u0263ef tfeggagt n wumu\u0263", "Focus to toolbar": "Asa\u1e0des \u0263ef tfeggagt n ifecka", "Focus to element path": "Asa\u1e0des \u0263ef ubrid n uferdis", "Focus to contextual toolbar": "Asa\u1e0des \u0263ef tfeggagt n ifecka tanattalt", "Insert link (if link plugin activated)": "Ger ase\u0263wen (ma yermed uzegrir n use\u0263wen)", "Save (if save plugin activated)": "Sekles (ma yermed uzegrir save)", "Find (if searchreplace plugin activated)": "Nadi (ma yermed uzegrir searchreplace)", "Plugins installed ({0}):": "Izegriren yettwasbedden ({0}):", "Premium plugins:": "Izegriren premium :", "Learn more...": "\u1e92er ugar...", "You are using {0}": "Tsseqdace\u1e0d {0}", "Plugins": "Isi\u0263zifen", "Handy Shortcuts": "Inegzumen", "Horizontal line": "Ajerri\u1e0d aglawan", "Insert\/edit image": "Ger\/\u1e92reg tugna", "Image description": "Aglam n tugna", "Source": "A\u0263balu", "Dimensions": "Tisekta", "Constrain proportions": "Constrain proportions", "General": "Amatu", "Advanced": "Ana\u1e93i", "Style": "A\u0263anib", "Vertical space": "Talunt taratakt", "Horizontal space": "Talunt taglawant", "Border": "Iri", "Insert image": "Ger tugna", "Image...": "Tugna...", "Image list": "Tabdart n tugniwin", "Rotate counterclockwise": "Tuzya mgal tamrilt", "Rotate clockwise": "Tuzya yugdan tamrilt", "Flip vertically": "Tuzya taratakt", "Flip horizontally": "Tuzttya tagrawant", "Edit image": "\u1e92reg tugna", "Image options": "Tixti\u1e5biyin n tugna", "Zoom in": "Zoom in", "Zoom out": "Zoom out", "Crop": "Rogner", "Resize": "Beddel tiddi", "Orientation": "Ta\u0263da", "Brightness": "Tafat", "Sharpen": "Affiner", "Contrast": "Contrast", "Color levels": "Iswiren n yini", "Gamma": "Gamma", "Invert": "Tti", "Apply": "Snes", "Back": "Tu\u0263alin", "Insert date\/time": "Ger azemz\/asrag", "Date\/time": "Azemz\/Asrag", "Insert\/Edit Link": "Ger\/\u1e92reg as\u0263en", "Insert\/edit link": "Ger\/\u1e93reg azday", "Text to display": "A\u1e0dris ara yettwabeqq\u1e0den", "Url": "Url", "Open link in...": "Ldi as\u0263en di...", "Current window": "Asfaylu amiran", "None": "Ulac", "New window": "Asfaylu amaynut", "Remove link": "Kkes azday", "Anchors": "Timdyin", "Link...": "As\u0263en...", "Paste or type a link": "Sente\u1e0d ne\u0263 sekcem ase\u0263wen", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL i teskecme\u1e0d tettban-d d tansa email. teb\u0263i\u1e0d ad s-ternu\u1e0d azwir mailto : ?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL i teskecme\u1e0d tettban-d d azday uffi\u0263. Teb\u0263i\u1e0d ad s-ternu\u1e0d azwir http:\/\/ ?", "Link list": "Tabdart n is\u0263ewnen", "Insert video": "Ger avidyu", "Insert\/edit video": "Ger\/\u1e93reg avidyu", "Insert\/edit media": "Ger\/\u1e92reg amiya", "Alternative source": "A\u0263balu amlellay", "Alternative source URL": "A\u0263balu n URL amlellay", "Media poster (Image URL)": "Abeqqi\u1e0d n umidya (URL n tugna)", "Paste your embed code below:": "Paste your embed code below:", "Embed": "Embed", "Media...": "Amidya...", "Nonbreaking space": "Talunt ur nettwagzam ara", "Page break": "Angaz n usebter", "Paste as text": "Sente\u1e0d d a\u1e0dris", "Preview": "Sken", "Print...": "Siggez...", "Save": "Sekles", "Find": "Nadi", "Replace with": "Semselsi s", "Replace": "Semselsi", "Replace all": "Semselsi kulec", "Previous": "Uzwir", "Next": "Win \u0263ers", "Find and replace...": "Nadi semselsi...", "Could not find the specified string.": "Ur d-nufi ara azrar i d-yettunefken.", "Match case": "Match case", "Find whole words only": "Af-d awal ummid kan", "Spell check": "Selken ta\u0263dirawt", "Ignore": "Zgel", "Ignore all": "Zgel kulec", "Finish": "Fak", "Add to Dictionary": "Rnu-t s amawal", "Insert table": "Ger tafelwit", "Table properties": "Iraten n tfelwit", "Delete table": "Kkes tafelwit", "Cell": "Taxxamt", "Row": "Adur", "Column": "Tagejdit", "Cell properties": "Iraten n texxamt", "Merge cells": "Seddukel tixxamin", "Split cell": "B\u1e0du tixxamin", "Insert row before": "Ger adur deffir", "Insert row after": "Ger adur sdat", "Delete row": "Kkes tagejdit", "Row properties": "Iraten n udur", "Cut row": "Gzem adur", "Copy row": "N\u0263el adur", "Paste row before": "Sente\u1e0d adur sdat", "Paste row after": "Sente\u1e0d adur deffir", "Insert column before": "Sente\u1e0d tagejdit sdat", "Insert column after": "Sente\u1e0d tagejdit deffir", "Delete column": "Kkes tagejdit", "Cols": "Tigejda", "Rows": "Aduren", "Width": "Tehri", "Height": "Te\u0263zi", "Cell spacing": "Tlunt ger texxamin", "Cell padding": "Tama n texxamt", "Show caption": "Sken taw\u1e6d\u1e6dfa", "Left": "\u0194er zelma\u1e0d", "Center": "Di tlemmast", "Right": "\u0194er yefus", "Cell type": "Anaw n texxamt", "Scope": "Scope", "Alignment": "Tarigla", "H Align": "Tarigla taglawant", "V Align": "Tarigla taratakt", "Top": "Uksawen", "Middle": "Di tlemmast", "Bottom": "Uksar", "Header cell": "Tasen\u1e6di\u1e0dt n texxamt", "Row group": "Agraw n waduren", "Column group": "Agraw n tgejda", "Row type": "Anaw n wadur", "Header": "Tasenti\u1e0dt", "Body": "Tafka", "Footer": "A\u1e0dar", "Border color": "Ini n yiri", "Insert template...": "Ger tane\u0263ruft...", "Templates": "Timudimin", "Template": "Tine\u0263rufin", "Text color": "Ini n u\u1e0dris", "Background color": "Ini n ugilal", "Custom...": "Custom...", "Custom color": "Custom color", "No color": "Ulac ini", "Remove color": "Kkes ini", "Table of Contents": "Tafelwit n ugbur", "Show blocks": "Beqqe\u1e0d i\u1e25edran", "Show invisible characters": "Beqqe\u1e0d isekkilen uffiren", "Word count": "Am\u1e0dan n wawalen", "Count": "A\u0263rud", "Document": "Isemli", "Selection": "Tafrayt", "Words": "Awalen", "Words: {0}": "Words: {0}", "{0} words": "{0} n wawalen", "File": "Afaylu", "Edit": "\u1e92reg", "Insert": "Ger", "View": "Tamu\u0263li", "Format": "Amasal", "Table": "Tafelwit", "Tools": "Ifecka", "Powered by {0}": "Iteddu s {0} ", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help", "Image title": "Azwel n tugna", "Border width": "Tehri n yiri", "Border style": "A\u0263anib n yiri", "Error": "Tucc\u1e0da", "Warn": "\u0190eyyen", "Valid": "Ame\u0263tu", "To open the popup, press Shift+Enter": "Iwakken ad teldi\u1e0d asfaylu udhim, ssed Shift+Kcem", "Rich Text Area. Press ALT-0 for help.": "Ta\u0263zut n u\u1e0dris anesba\u0263ur. Ssed ALT-0 i tallelt.", "System Font": "Anagraw n tsefsa", "Failed to upload image: {0}": "Tucc\u1e0da deg usili n tugna: {0}", "Failed to load plugin: {0} from url {1}": "Tucc\u1e0da deg usili n usi\u0263zef: {0} seg url {1}", "Failed to load plugin url: {0}": "Tucc\u1e0da deg usali n usi\u0263zef: {0}", "Failed to initialize plugin: {0}": "Tucc\u1e0da deg wallus n uwennez n usi\u0263zef: {0}", "example": "amedya", "Search": "Nadi", "All": "Akk", "Currency": "Adrim", "Text": "A\u1e0dris", "Quotations": "Tinebdurin", "Mathematical": "Inemhalen usnaken", "Extended Latin": "Talatinit ye\u1e93len", "Symbols": "Izamulen", "Arrows": "Tineccabin", "User Defined": "Yesbadu-t useqdac", "dollar sign": "Azamul n dular", "currency sign": "Azamul n wedrim", "euro-currency sign": "azamul n euro", "colon sign": "azamul n kulun", "cruzeiro sign": "azamul n krutayru", "french franc sign": "azamul n f\u1e5bank afransi", "lira sign": "azamul n lira", "mill sign": "azamul n mil", "naira sign": "azamul n nayra", "peseta sign": "azamul n pizi\u1e6da", "rupee sign": "azamul n urupi", "won sign": "azamul n wun", "new sheqel sign": "azamul n ciqel amaynut", "dong sign": "azamul n dung", "kip sign": "azamul n kip", "tugrik sign": "azamul n tugrik", "drachma sign": "azamul n d\u1e5bacma", "german penny symbol": "azamul n pini almani", "peso sign": "azamul n pizu", "guarani sign": "azamul n gwa\u1e5bani", "austral sign": "azamul n ustral", "hryvnia sign": "azamul n hrivniya", "cedi sign": "azamul n siddi", "livre tournois sign": "azamul lira aturnwa", "spesmilo sign": "azamul n spismilu", "tenge sign": "azamul n tingi", "indian rupee sign": "azamul n urupi ahindi", "turkish lira sign": "azamul n lira a\u1e6durki", "nordic mark sign": "azamul n ma\u1e5bk n ugafa", "manat sign": "azamul n mana\u1e6d", "ruble sign": "azamul n rubl", "yen character": "azamul n yan", "yuan character": "azamul n yuwan", "yuan character, in hong kong and taiwan": "asekkil n yuwan, di hunkung akked \u1e6daywan", "yen\/yuan character variant one": "yan\/yuwan tasenfelt n usekkil yiwen", "Loading emoticons...": "Asali n tignitin n u\u1e25ulfu...", "Could not load emoticons": "Tucc\u1e0da deg usali n tignitin n u\u1e25ulfu", "People": "L\u0263aci", "Animals and Nature": "i\u0263ersiwen akked ugama", "Food and Drink": "Tu\u010d\u010dit akked tisit", "Activity": "Armud", "Travel and Places": "Asikel akked ime\u1e0dqan", "Objects": "Ti\u0263awsiwin", "Flags": "Annayen", "Characters": "Isekkilen", "Characters (no spaces)": "Isekkilen (tallunin ur ttekkint ara)", "{0} characters": "{0} n yisekkilen", "Error: Form submit field collision.": "Tucc\u1e0da: amgirred n wurtan di tuzzna n tferkit.", "Error: No form element found.": "Ulac aferdis n tferkit i yettwafen.", "Update": "Leqqem", "Color swatch": "Talemmict n yini", "Turquoise": "Ajenjari", "Green": "Azegzaw", "Blue": "Anili", "Purple": "Amidadi", "Navy Blue": "Anili n yilel", "Dark Turquoise": "Ajenjari a\u0263mayan", "Dark Green": "Azegzaw a\u0263mayan", "Medium Blue": "Anili alemmas", "Medium Purple": "Amidadi alemmas", "Midnight Blue": "Anili n yi\u1e0d", "Yellow": "Awra\u0263", "Orange": "A\u010d\u010dinawi", "Red": "Azegga\u0263", "Light Gray": "Amelli\u0263di afaw", "Gray": "Amelli\u0263di", "Dark Yellow": "Awra\u0263 a\u0263mayan", "Dark Orange": "A\u010dinawi a\u0263mayan", "Dark Red": "Azegga\u0263 a\u0263mayan", "Medium Gray": "Amelli\u0263di alemmas", "Dark Gray": "Amelli\u0263di a\u0263mayan", "Light Green": "Azegzaw afaw", "Light Yellow": "Awra\u0263 afaw", "Light Red": "Azegga\u0263 afaw", "Light Purple": "Amidadi afaw", "Light Blue": "Anili afaw", "Dark Purple": "Amidadi a\u0263mayan", "Dark Blue": "Anili a\u0263mayan", "Black": "Aberkan", "White": "Amellal", "Switch to or from fullscreen mode": "Kcem ne\u0263 ffe\u0263 agdil a\u010d\u010duran", "Open help dialog": "Ldi tankult n udiwenni n tallelt", "history": "Amazray", "styles": "i\u0263unab", "formatting": "amsal", "alignment": "aderrec", "indentation": "asi\u1e93i", "permanent pen": "imru ama\u0263lal", "comments": "iwenniten", "Format Painter": "Sisleg amsal", "Insert\/edit iframe": "Ger\/\u1e92reg akatar", "Capitalization": "Selket s asekkil ameqran", "lowercase": "asekkil amec\u1e6du\u1e25", "UPPERCASE": "ASEKKIL AMEQRAN", "Title Case": "Taj\u1e5but n uzwel", "Permanent Pen Properties": "Iraten n yimru ama\u0263lal", "Permanent pen properties...": "Iraten n yimru ama\u0263lal...", "Font": "Tasefsit", "Size": "Tiddi", "More...": "Ugar...", "Spellcheck Language": "Tutlayt n umse\u0263ti n tira", "Select...": "Fren...", "Preferences": "Imenyafen", "Yes": "Ih", "No": "Ala", "Keyboard Navigation": "Tunigin s unasiw", "Version": "Lqem", "Anchor": "Tamdeyt", "Special character": "Askil uslig", "Code sample": "Tikkest n tengalt", "Color": "Ini", "Emoticons": "Emoticons", "Document properties": "Iraten n warat", "Image": "Tugna", "Insert link": "Ger azday", "Target": "Target", "Link": "Ase\u0263wen", "Poster": "Poster", "Media": "Amidya", "Print": "Siggez", "Prev": "Win yezrin", "Find and replace": "Nadi semselsi", "Whole words": "Awal ummid", "Spellcheck": "Ase\u0263ti n tira", "Caption": "Caption", "Insert template": "Ger tamuddimt" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/nb_NO.js ================================================ tinymce.addI18n('nb_NO',{ "Redo": "Gj\u00f8r om", "Undo": "Angre", "Cut": "Klipp ut", "Copy": "Kopier", "Paste": "Lim inn", "Select all": "Marker alt", "New document": "Nytt dokument", "Ok": "Ok", "Cancel": "Avbryt", "Visual aids": "Visuelle hjelpemidler", "Bold": "Fet", "Italic": "Kursiv", "Underline": "Understreking", "Strikethrough": "Gjennomstreking", "Superscript": "Hevet skrift", "Subscript": "Senket skrift", "Clear formatting": "Fjern formateringer", "Align left": "Venstrejuster", "Align center": "Midtstill", "Align right": "H\u00f8yrejuster", "Justify": "Blokkjuster", "Bullet list": "Punktliste", "Numbered list": "Nummerliste", "Decrease indent": "Reduser innrykk", "Increase indent": "\u00d8k innrykk", "Close": "Lukk", "Formats": "Stiler", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Nettleseren din st\u00f8tter ikke direkte tilgang til utklippsboken. Bruk istedet tastatursnarveiene Ctrl+X\/C\/V.", "Headers": "Overskrifter", "Header 1": "Overskrift 1", "Header 2": "Overskrift 2", "Header 3": "Overskrift 3", "Header 4": "Overskrift 4", "Header 5": "Overskrift 5", "Header 6": "Overskrift 6", "Headings": "Overskrifter", "Heading 1": "Overskrift 1", "Heading 2": "Overskrift 2", "Heading 3": "Overskrift 3", "Heading 4": "Overskrift 4", "Heading 5": "Overskrift 5", "Heading 6": "Overskrift 6", "Preformatted": "Forh\u00e5ndsformatert", "Div": "Div", "Pre": "Pre", "Code": "Kode", "Paragraph": "Avsnitt", "Blockquote": "Blockquote", "Inline": "Innkapslet", "Blocks": "Blokker", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Lim inn er n\u00e5 i ren-tekst modus. Kopiert innhold vil bli limt inn som ren tekst inntil du sl\u00e5r av dette valget.", "Fonts": "Fonter", "Font Sizes": "Fontst\u00f8rrelser", "Class": "Klasse", "Browse for an image": "S\u00f8k etter bilde", "OR": "OR", "Drop an image here": "Slipp et bilde her", "Upload": "Last opp", "Block": "Blokk", "Align": "Juster", "Default": "Normal", "Circle": "\u00c5pen sirkel", "Disc": "Fylt sirkel", "Square": "Fylt firkant", "Lower Alpha": "Minuskler", "Lower Greek": "Greske minuskler", "Lower Roman": "Romerske minuskler", "Upper Alpha": "Versaler", "Upper Roman": "Romerske versaler", "Anchor...": "Lenke", "Name": "Navn", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id burde starte med en bokstav, bare fulgt av bokstaver, nummer, streker, punktum, koloner eller understreker.", "You have unsaved changes are you sure you want to navigate away?": "Du har ikke arkivert endringene. Vil du fortsette uten \u00e5 arkivere?", "Restore last draft": "Gjenopprett siste utkast", "Special character...": "Spesialtegn...", "Source code": "Kildekode", "Insert\/Edit code sample": "Sett inn\/endre kodeeksempel", "Language": "Spr\u00e5k", "Code sample...": "Kodeeksempel", "Color Picker": "Fargevelger", "R": "R", "G": "G", "B": "B", "Left to right": "Venstre til h\u00f8yre", "Right to left": "H\u00f8yre til venstre", "Emoticons": "Hum\u00f8rfjes", "Emoticons...": "Emoticons..", "Metadata and Document Properties": "Metadata og dokumentverdier", "Title": "Tittel", "Keywords": "N\u00f8kkelord", "Description": "Beskrivelse", "Robots": "Roboter", "Author": "Forfatter", "Encoding": "Tegnkoding", "Fullscreen": "Fullskjerm", "Action": "Handling", "Shortcut": "Snarvei", "Help": "Hjelp", "Address": "Adresse", "Focus to menubar": "Fokus p\u00e5 menylinje", "Focus to toolbar": "Fokus p\u00e5 verkt\u00f8ylinje", "Focus to element path": "Fokus p\u00e5 elementsti", "Focus to contextual toolbar": "Fokus p\u00e5 kontekstuell verkt\u00f8ylinje", "Insert link (if link plugin activated)": "Sett inn lenke (dersom lenketillegg er aktivert)", "Save (if save plugin activated)": "Lagre (dersom lagretillegg er aktivert)", "Find (if searchreplace plugin activated)": "Finn (dersom tillegg for s\u00f8k og erstatt er aktivert)", "Plugins installed ({0}):": "Installerte tillegg ({0}):", "Premium plugins:": "Premiumtillegg:", "Learn more...": "Les mer ...", "You are using {0}": "Du bruker {0}", "Plugins": "Tillegg", "Handy Shortcuts": "Nyttige snarveier", "Horizontal line": "Horisontal linje", "Insert\/edit image": "Sett inn\/endre bilde", "Alternative description": "Alternativ beskrivelse", "Accessibility": "Tilgjengelighet", "Image is decorative": "Bilde er dekorasjon", "Source": "Bildelenke", "Dimensions": "Dimensjoner", "Constrain proportions": "Behold proporsjoner", "General": "Generelt", "Advanced": "Avansert", "Style": "Stil", "Vertical space": "Vertikal marg", "Horizontal space": "Horisontal marg", "Border": "Ramme", "Insert image": "Sett inn bilde", "Image...": "Bilde...", "Image list": "Bildeliste", "Rotate counterclockwise": "Roter mot venstre", "Rotate clockwise": "Roter mot h\u00f8yre", "Flip vertically": "Speilvend vertikalt", "Flip horizontally": "Speilvend horisontalt", "Edit image": "Rediger bilde", "Image options": "Bilde innstillinger", "Zoom in": "Zoom inn", "Zoom out": "Zoom ut", "Crop": "Beskj\u00e6r", "Resize": "Skaler", "Orientation": "Orientering", "Brightness": "Lysstyrke", "Sharpen": "Skarphet", "Contrast": "Kontrast", "Color levels": "Fargeniv\u00e5", "Gamma": "Gamma", "Invert": "Inverter", "Apply": "Utf\u00f8r", "Back": "Tilbake", "Insert date\/time": "Sett inn dato\/tid", "Date\/time": "Dato\/tid", "Insert\/edit link": "Sett inn\/endre lenke", "Text to display": "Tekst som skal vises", "Url": "Url", "Open link in...": "\u00c5pne lenke i..", "Current window": "N\u00e5v\u00e6rende vindu", "None": "Ingen", "New window": "Nytt vindu", "Open link": "\u00c5pne lenke", "Remove link": "Fjern lenke", "Anchors": "Anker", "Link...": "Lenke...", "Paste or type a link": "Lim inn eller skriv en lenke", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Oppgitte URL ser ut til \u00e5 v\u00e6re en epost-adresse. \u00d8nsker du \u00e5 sette inn p\u00e5krevet mailto: prefiks forran epost-adressen?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Oppgitt URL ser ut til \u00e5 v\u00e6re en e-postadresse. \u00d8nsker du \u00e5 sette inn p\u00e5krevd mailto:-prefiks foran e-postadressen?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Nettadressen du fylte inn ser ut til \u00e5 v\u00e6re en ekstern. \u00d8nsker du \u00e5 legge til p\u00e5krevd 'https:\/\/'-prefiks?", "Link list": "Lenkeliste", "Insert video": "Sett inn video", "Insert\/edit video": "Sett inn\/rediger video", "Insert\/edit media": "Sett inn\/endre media", "Alternative source": "Alternativ kilde", "Alternative source URL": "Alternativ kilde URL", "Media poster (Image URL)": "Mediaposter (bilde-URL)", "Paste your embed code below:": "Lim inn inkluderings-koden nedenfor", "Embed": "Inkluder", "Media...": "Media..", "Nonbreaking space": "Hardt mellomrom", "Page break": "Sideskifte", "Paste as text": "Lim inn som tekst", "Preview": "Forh\u00e5ndsvisning", "Print...": "Skriv ut...", "Save": "Arkiver", "Find": "Finn", "Replace with": "Erstatt med", "Replace": "Erstatt", "Replace all": "Erstatt alle", "Previous": "Forrige", "Next": "Neste", "Find and Replace": "Finn og erstatt", "Find and replace...": "Finn og erstatt...", "Could not find the specified string.": "Kunne ikke finne den spesifiserte teksten", "Match case": "Match store og sm\u00e5 bokstaver", "Find whole words only": "Finn kun hele ord", "Find in selection": "Finn i utvalg", "Spellcheck": "Stavekontroll", "Spellcheck Language": "Stavekontroller spr\u00e5k", "No misspellings found.": "Ingen feilstaving funnet", "Ignore": "Ignorer", "Ignore all": "Ignorer alle", "Finish": "Avslutt", "Add to Dictionary": "Legg til i ordliste", "Insert table": "Sett inn tabell", "Table properties": "Tabell egenskaper", "Delete table": "Slett tabell", "Cell": "Celle", "Row": "Rad", "Column": "Kolonne", "Cell properties": "Celle egenskaper", "Merge cells": "Sl\u00e5 sammen celler", "Split cell": "Splitt celle", "Insert row before": "Sett inn rad f\u00f8r", "Insert row after": "Sett in rad etter", "Delete row": "Slett rad", "Row properties": "Rad egenskaper", "Cut row": "Klipp ut rad", "Copy row": "Kopier rad", "Paste row before": "Lim inn rad f\u00f8r", "Paste row after": "Lim inn rad etter", "Insert column before": "Sett inn kolonne f\u00f8r", "Insert column after": "Sett inn kolonne etter", "Delete column": "Slett kolonne", "Cols": "Kolonner", "Rows": "Rader", "Width": "Bredde", "Height": "H\u00f8yde", "Cell spacing": "Celleavstand", "Cell padding": "Cellemarg", "Caption": "Tittel", "Show caption": "Vis bildetekst", "Left": "Venstre", "Center": "Midtstilt", "Right": "H\u00f8yre", "Cell type": "Celletype", "Scope": "Omfang", "Alignment": "Justering", "H Align": "H Justering", "V Align": "V Justering", "Top": "Topp", "Middle": "Midten", "Bottom": "Bunn", "Header cell": "Topptekst-celle", "Row group": "Radgruppe", "Column group": "Kolonnegruppe", "Row type": "Rad-type", "Header": "Topptekst", "Body": "Br\u00f8dtekst", "Footer": "Bunntekst", "Border color": "Rammefarge", "Insert template...": "Sett inn mal..", "Templates": "Maler", "Template": "Mal", "Text color": "Tekstfarge", "Background color": "Bakgrunnsfarge", "Custom...": "Tilpass...", "Custom color": "Tilpasset farge", "No color": "Ingen farge", "Remove color": "Fjern farge", "Table of Contents": "Innholdsfortegnelse", "Show blocks": "Vis blokker", "Show invisible characters": "Vis skjulte tegn", "Word count": "Ordtelling", "Count": "Opptelling", "Document": "Dokument", "Selection": "Utvalg", "Words": "Ord", "Words: {0}": "Antall ord: {0}", "{0} words": "{0} ord", "File": "Arkiv", "Edit": "Rediger", "Insert": "Sett inn", "View": "Vis", "Format": "Format", "Table": "Tabell", "Tools": "Verkt\u00f8y", "Powered by {0}": "Redigert med {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Tekstredigering. Tast ALT-F9 for meny. Tast ALT-F10 for verkt\u00f8ys-rader. Tast ALT-0 for hjelp.", "Image title": "Bildetittel", "Border width": "Bordbredde", "Border style": "Bordstil", "Error": "Feil", "Warn": "Advarsel", "Valid": "Gyldig", "To open the popup, press Shift+Enter": "For \u00e5 \u00e5pne popup, trykk Shift+Enter", "Rich Text Area. Press ALT-0 for help.": "Rik-tekstomr\u00e5de. Trykk ALT-0 for hjelp.", "System Font": "Systemfont", "Failed to upload image: {0}": "Opplasting av bilde feilet: {0}", "Failed to load plugin: {0} from url {1}": "Kunne ikke laste tillegg: {0} from url {1}", "Failed to load plugin url: {0}": "Kunne ikke laste tillegg url: {0}", "Failed to initialize plugin: {0}": "Kunne ikke initialisere tillegg: {0}", "example": "eksempel", "Search": "S\u00f8k", "All": "Alle", "Currency": "Valuta", "Text": "Tekst", "Quotations": "Sitater", "Mathematical": "Matematisk", "Extended Latin": "Utvidet latin", "Symbols": "Symboler", "Arrows": "Piler", "User Defined": "Brukerdefinert", "dollar sign": "dollartegn", "currency sign": "valutasymbol", "euro-currency sign": "Euro-valutasymbol", "colon sign": "kolon-symbol", "cruzeiro sign": "cruzeiro-symbol", "french franc sign": "franske franc-symbol", "lira sign": "lire-symbol", "mill sign": "mill-symbol", "naira sign": "naira-symbol", "peseta sign": "peseta-symbol", "rupee sign": "rupee-symbol", "won sign": "won-symbol", "new sheqel sign": "Ny sheqel-symbol", "dong sign": "dong-symbol", "kip sign": "kip-symbol", "tugrik sign": "tugrik-symbol", "drachma sign": "drachma-symbol", "german penny symbol": "tysk penny-symbol", "peso sign": "peso-symbol", "guarani sign": "quarani-symbol", "austral sign": "austral-symbol", "hryvnia sign": "hryvina-symbol", "cedi sign": "credi-symbol", "livre tournois sign": "livre tournois-symbol", "spesmilo sign": "spesmilo-symbol", "tenge sign": "tenge-symbol", "indian rupee sign": "indisk rupee-symbol", "turkish lira sign": "tyrkisk lire-symbol", "nordic mark sign": "nordisk mark-symbol", "manat sign": "manat-symbol", "ruble sign": "ruble-symbol", "yen character": "yen-symbol", "yuan character": "yuan-symbol", "yuan character, in hong kong and taiwan": "yuan-symbol, i Hongkong og Taiwan", "yen\/yuan character variant one": "yen\/yuan-symbol variant en", "Loading emoticons...": "Laster emoticons..", "Could not load emoticons": "Kunne ikke laste emoticons", "People": "Mennesker", "Animals and Nature": "Dyr og natur", "Food and Drink": "Mat og drikke", "Activity": "Aktivitet", "Travel and Places": "Reise og steder", "Objects": "Objekter", "Flags": "Flagg", "Characters": "Tegn", "Characters (no spaces)": "Tegn (uten mellomrom)", "{0} characters": "{0} tegn", "Error: Form submit field collision.": "Feil: Skjemafelt innsendingskollisjon.", "Error: No form element found.": "Feil: Intet skjemafelt funnet.", "Update": "Oppdater", "Color swatch": "Fargepalett", "Turquoise": "Turkis", "Green": "Gr\u00f8nn", "Blue": "Bl\u00e5", "Purple": "Lilla", "Navy Blue": "Marinebl\u00e5", "Dark Turquoise": "M\u00f8rk turkis", "Dark Green": "M\u00f8rkegr\u00f8nn", "Medium Blue": "Mellombl\u00e5", "Medium Purple": "Medium lilla", "Midnight Blue": "Midnattbl\u00e5", "Yellow": "Gul", "Orange": "Oransje", "Red": "R\u00f8d", "Light Gray": "Lys gr\u00e5", "Gray": "Gr\u00e5", "Dark Yellow": "M\u00f8rk gul", "Dark Orange": "M\u00f8rk oransje", "Dark Red": "M\u00f8rker\u00f8d", "Medium Gray": "Medium gr\u00e5", "Dark Gray": "M\u00f8rk gr\u00e5", "Light Green": "Lys gr\u00f8nn", "Light Yellow": "Lys gul", "Light Red": "Lys r\u00f8d", "Light Purple": "Lys lilla", "Light Blue": "Lys bl\u00e5", "Dark Purple": "M\u00f8rk lilla", "Dark Blue": "M\u00f8rk bl\u00e5", "Black": "Svart", "White": "Hvit", "Switch to or from fullscreen mode": "Bytt til eller fra fullskjermmodus", "Open help dialog": "\u00c5pne hjelp-dialog", "history": "historikk", "styles": "stiler", "formatting": "formatering", "alignment": "justering", "indentation": "innrykk", "Font": "Skrift", "Size": "St\u00f8rrelse", "More...": "Mer...", "Select...": "Velg...", "Preferences": "Innstillinger", "Yes": "Ja", "No": "Nei", "Keyboard Navigation": "Navigering med tastaturet", "Version": "Versjon", "Code view": "Kodevisning", "Open popup menu for split buttons": "\u00c5pne sprettoppmeny for splitt-knapper", "List Properties": "Listeegenskaper", "List properties...": "Listeegenskaper ...", "Start list at number": "Start liste p\u00e5 nummer", "Line height": "Linjeh\u00f8yde", "comments": "kommentarer", "Format Painter": "Kopier format", "Insert\/edit iframe": "Sett inn \/ rediger iframe", "Capitalization": "Store\/sm\u00e5 bokstaver", "lowercase": "sm\u00e5 bokstaver", "UPPERCASE": "STORE BOKSTAVER", "Title Case": "Tittelbokstav", "permanent pen": "permanent penn", "Permanent Pen Properties": "Permanente egenskaper for penn", "Permanent pen properties...": "Permanente egenskaper for penn...", "case change": "st\u00f8rrelseendring", "page embed": "sideinnebygging", "Advanced sort...": "Avansert sortering ...", "Advanced Sort": "Avansert sortering", "Sort table by column ascending": "Sorter tabell etter kolonne stigende", "Sort table by column descending": "Sorter tabell etter kolonne synkende", "Sort": "Sorter", "Order": "Rekkef\u00f8lge", "Sort by": "Sorter etter", "Ascending": "Stigende", "Descending": "Synkende", "Column {0}": "Kolonne {0}", "Row {0}": "Rad {0}", "Spellcheck...": "Stavekontroll ...", "Misspelled word": "Feilstavet ord", "Suggestions": "Forslag", "Change": "Endre", "Finding word suggestions": "Finner ordforslag", "Success": "Vellykket", "Repair": "Reparer", "Issue {0} of {1}": "Problem {0} av {1}", "Images must be marked as decorative or have an alternative text description": "Bilder m\u00e5 markeres som dekorasjon eller ha en alternativ tekstbeskrivelse", "Images must have an alternative text description. Decorative images are not allowed.": "Bilder m\u00e5 ha en alternativ tekstbeskrivelse. Dekorasjonbilder er ikke tillatt.", "Or provide alternative text:": "Eller fyll inn en alternative tekst:", "Make image decorative:": "Marker bilde som dekorasjon:", "ID attribute must be unique": "'ID'-attributtet m\u00e5 v\u00e6re unikt", "Make ID unique": "Gj\u00f8r 'ID' unik", "Keep this ID and remove all others": "Behold denne 'ID'-en og fjern alle andre", "Remove this ID": "Fjern denne 'ID'", "Remove all IDs": "Fjern alle 'ID'-er", "Checklist": "Avkryssingsliste", "Anchor": "Anker", "Special character": "Spesialtegn", "Code sample": "Kodeeksempel", "Color": "Farge", "Document properties": "Dokumentegenskaper", "Image description": "Bildebeskrivelse", "Image": "Bilde", "Insert link": "Sett inn lenke", "Target": "M\u00e5l", "Link": "Lenke", "Poster": "Plakatbilde", "Media": "Media", "Print": "Skriv ut", "Prev": "Forrige", "Find and replace": "Finn og erstatt", "Whole words": "Hele ord", "Insert template": "Sett inn mal" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/nl.js ================================================ tinymce.addI18n('nl',{ "Redo": "Opnieuw uitvoeren", "Undo": "Ongedaan maken", "Cut": "Knippen", "Copy": "Kopi\u00ebren", "Paste": "Plakken", "Select all": "Alles selecteren", "New document": "Nieuw document", "Ok": "OK", "Cancel": "Annuleren", "Visual aids": " Visuele hulpmiddelen", "Bold": "Vet", "Italic": "Cursief", "Underline": "Onderstrepen", "Strikethrough": "Doorhalen", "Superscript": "Superscript", "Subscript": "Subscript", "Clear formatting": "Opmaak wissen", "Align left": "Links uitlijnen", "Align center": "Centreren", "Align right": "Rechts uitlijnen", "Justify": "Uitvullen", "Bullet list": "Lijst met opsommingstekens", "Numbered list": "Genummerde lijst", "Decrease indent": "Inspringing verkleinen", "Increase indent": "Inspringing vergroten", "Close": "Sluiten", "Formats": "Opmaken", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Jouw browser ondersteunt geen rechtstreekse toegang tot het klembord. Gebruik in plaats daarvan de sneltoetsen Ctrl+X\/C\/V.", "Headers": "Kopteksten", "Header 1": "Koptekst 1", "Header 2": "Koptekst 2", "Header 3": "Koptekst 3", "Header 4": "Koptekst 4", "Header 5": "Koptekst 5", "Header 6": "Koptekst 6", "Headings": "Koppen", "Heading 1": "Kop 1", "Heading 2": "Kop 2", "Heading 3": "Kop 3", "Heading 4": "Kop 4", "Heading 5": "Kop 5", "Heading 6": "Kop 6", "Preformatted": "Vooraf opgemaakt", "Div": "Div", "Pre": "Pre", "Code": "Code", "Paragraph": "Alinea", "Blockquote": "Blockquote", "Inline": "Inline", "Blocks": "Blokken", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Plakken gebeurt nu als platte tekst. Tekst wordt nu ingevoegd zonder opmaak tot deze optie uitgeschakeld wordt.", "Fonts": "Lettertypes", "Font Sizes": "Tekengroottes", "Class": "Klasse", "Browse for an image": "Afbeelding zoeken", "OR": "OF", "Drop an image here": "Hier een afbeelding neerzetten", "Upload": "Uploaden", "Block": "Blok", "Align": "Uitlijnen", "Default": "Standaard", "Circle": "Cirkel", "Disc": "Bolletje", "Square": "Vierkant", "Lower Alpha": "Kleine letters", "Lower Greek": "Griekse letters", "Lower Roman": "Romeinse cijfers klein", "Upper Alpha": "Hoofdletters", "Upper Roman": "Romeinse cijfers groot", "Anchor...": "Anker...", "Name": "Naam", "Id": "ID", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID moet beginnen met een letter, gevolgd door letters, nummers, streepjes, punten, dubbele punten of underscores.", "You have unsaved changes are you sure you want to navigate away?": "U hebt niet alles opgeslagen bent u zeker dat u de pagina wenst te verlaten?", "Restore last draft": "Herstel het laatste concept", "Special character...": "Speciaal teken...", "Source code": "Broncode", "Insert\/Edit code sample": "Broncode invoegen\/bewerken", "Language": "Programmeertaal", "Code sample...": "Codevoorbeeld...", "Color Picker": "Kleurenkiezer", "R": "Rood", "G": "Groen", "B": "Blauw", "Left to right": "Links naar rechts", "Right to left": "Rechts naar links", "Emoticons": "Emoticons", "Emoticons...": "Emoticons...", "Metadata and Document Properties": "Metadata en documenteigenschappen", "Title": "Titel", "Keywords": "Sleutelwoorden", "Description": "Omschrijving", "Robots": "Robots", "Author": "Auteur", "Encoding": "Codering", "Fullscreen": "Volledig scherm", "Action": "Actie", "Shortcut": "Snelkoppeling", "Help": "Help", "Address": "Adres", "Focus to menubar": "Menubalk selecteren", "Focus to toolbar": "Werkbalk selecteren", "Focus to element path": "Element pad selecteren", "Focus to contextual toolbar": "Contextuele werkbalk selecteren", "Insert link (if link plugin activated)": "Link invoegen (als link plug-in geactiveerd is)", "Save (if save plugin activated)": "Opslaan (als opslaan plug-in ingeschakeld is)", "Find (if searchreplace plugin activated)": "Zoeken (als zoeken\/vervangen plug-in ingeschakeld is)", "Plugins installed ({0}):": "Plug-ins ge\u00efnstalleerd ({0}):", "Premium plugins:": "Premium plug-ins:", "Learn more...": "Leer meer...", "You are using {0}": "Je gebruikt {0}", "Plugins": "Plug-ins", "Handy Shortcuts": "Handige snelkoppelingen", "Horizontal line": "Horizontale lijn", "Insert\/edit image": "Afbeelding invoegen\/bewerken", "Alternative description": "Alternatieve beschrijving", "Accessibility": "Toegankelijkheid", "Image is decorative": "Afbeelding is decoratief", "Source": "Bron", "Dimensions": "Afmetingen", "Constrain proportions": "Verhoudingen behouden", "General": "Algemeen", "Advanced": "Geavanceerd", "Style": "Stijl", "Vertical space": "Verticale ruimte", "Horizontal space": "Horizontale ruimte", "Border": "Rand", "Insert image": "Afbeelding invoegen", "Image...": "Afbeelding...", "Image list": "Afbeeldingenlijst", "Rotate counterclockwise": "Linksom draaien", "Rotate clockwise": "Rechtsom draaien", "Flip vertically": "Verticaal spiegelen", "Flip horizontally": "Horizontaal spiegelen", "Edit image": "Bewerk afbeelding", "Image options": "Afbeelding opties", "Zoom in": "Inzoomen", "Zoom out": "Uitzoomen", "Crop": "Uitsnijden", "Resize": "Formaat aanpassen", "Orientation": "Orientatie", "Brightness": "Helderheid", "Sharpen": "Scherpte", "Contrast": "Contrast", "Color levels": "Kleurniveau's", "Gamma": "Gamma", "Invert": "Omkeren", "Apply": "Toepassen", "Back": "Terug", "Insert date\/time": "Voeg datum\/tijd in", "Date\/time": "Datum\/tijd", "Insert\/edit link": "Hyperlink invoegen\/bewerken", "Text to display": "Linktekst", "Url": "Url", "Open link in...": "Link openen in...", "Current window": "Huidige venster", "None": "Geen", "New window": "Nieuw venster", "Open link": "Open koppeling", "Remove link": "Link verwijderen", "Anchors": "Anker", "Link...": "Link...", "Paste or type a link": "Plak of typ een link", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "De ingegeven URL lijkt op een e-mailadres. Wil je er \"mailto:\" aan toevoegen?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "De ingegeven URL verwijst naar een extern adres. Wil je er \"http:\/\/\" aan toevoegen?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "De ingevoerde URL verwijst naar een extern adres. Wilt u er het vereiste voorvoegsel https:\/\/ aan toevoegen?", "Link list": "Linklijst", "Insert video": "Video invoegen", "Insert\/edit video": "Video invoegen\/bewerken", "Insert\/edit media": "Media invoegen\/bewerken", "Alternative source": "Alternatieve bron", "Alternative source URL": "Alternatief bron-URL", "Media poster (Image URL)": "Mediaposter (afbeeldings-url)", "Paste your embed code below:": "Plak u in te sluiten code hieronder:", "Embed": "Insluiten", "Media...": "Media...", "Nonbreaking space": "Vaste spatie invoegen", "Page break": "Pagina einde", "Paste as text": "Plakken als tekst", "Preview": "Voorbeeld", "Print...": "Afdrukken... ", "Save": "Opslaan", "Find": "Zoeken", "Replace with": "Vervangen door", "Replace": "Vervangen", "Replace all": "Alles vervangen", "Previous": "Vorige", "Next": "Volgende", "Find and Replace": "Zoek en vervang", "Find and replace...": "Zoeken en vervangen...", "Could not find the specified string.": "Geen resultaten gevonden", "Match case": "Identieke hoofd\/kleine letters", "Find whole words only": "Alleen hele woorden zoeken", "Find in selection": "Zoek in selectie", "Spellcheck": "Spellingscontrole", "Spellcheck Language": "Spellingscontrole taal", "No misspellings found.": "Geen foute vertalingen", "Ignore": "Negeren", "Ignore all": "Alles negeren", "Finish": "Einde", "Add to Dictionary": "Toevoegen aan woordenlijst", "Insert table": "Tabel invoegen", "Table properties": "Tabel eigenschappen", "Delete table": "Verwijder tabel", "Cell": "Cel", "Row": "Rij", "Column": "Kolom", "Cell properties": "Cel eigenschappen", "Merge cells": "Cellen samenvoegen", "Split cell": "Cel splitsen", "Insert row before": "Voeg rij boven toe", "Insert row after": "Voeg rij onder toe", "Delete row": "Verwijder rij", "Row properties": "Rij eigenschappen", "Cut row": "Knip rij", "Copy row": "Kopieer rij", "Paste row before": "Plak rij boven", "Paste row after": "Plak rij onder", "Insert column before": "Voeg kolom in voor", "Insert column after": "Voeg kolom in na", "Delete column": "Verwijder kolom", "Cols": "Kolommen", "Rows": "Rijen", "Width": "Breedte", "Height": "Hoogte", "Cell spacing": "Celruimte", "Cell padding": "Ruimte binnen cel", "Caption": "Onderschrift", "Show caption": "Bijschrift weergeven", "Left": "Links", "Center": "Midden", "Right": "Rechts", "Cell type": "Celtype", "Scope": "Bereik", "Alignment": "Uitlijning", "H Align": "Links uitlijnen", "V Align": "Boven uitlijnen", "Top": "Bovenaan", "Middle": "Centreren", "Bottom": "Onderaan", "Header cell": "Kopcel", "Row group": "Rijgroep", "Column group": "Kolomgroep", "Row type": "Rijtype", "Header": "Koptekst", "Body": "Body", "Footer": "Voettekst", "Border color": "Randkleur", "Insert template...": "Sjabloon invoegen...", "Templates": "Sjablonen", "Template": "Sjabloon", "Text color": "Tekstkleur", "Background color": "Achtergrondkleur", "Custom...": "Eigen...", "Custom color": "Eigen kleur", "No color": "Geen kleur", "Remove color": "Kleur verwijderen", "Table of Contents": "Inhoudsopgave", "Show blocks": "Blokken tonen", "Show invisible characters": "Onzichtbare karakters tonen", "Word count": "Aantal woorden", "Count": "Telling", "Document": "Document", "Selection": "Selectie", "Words": "Woorden", "Words: {0}": "Woorden: {0}", "{0} words": "{0} woorden", "File": "Bestand", "Edit": "Bewerken", "Insert": "Invoegen", "View": "Beeld", "Format": "Opmaak", "Table": "Tabel", "Tools": "Gereedschap", "Powered by {0}": "Gemaakt door {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Druk ALT-F9 voor het menu. Druk ALT-F10 voor de toolbar. Druk ALT-0 voor help.", "Image title": "Afbeeldingstitel", "Border width": "Randbreedte", "Border style": "Randstijl", "Error": "Fout", "Warn": "Waarschuwen", "Valid": "Geldig", "To open the popup, press Shift+Enter": "Druk op Shift+Enter om de pop-up te openen", "Rich Text Area. Press ALT-0 for help.": " Gebied met opgemaakte tekst. Druk op ALT-0 voor hulp.", "System Font": "Systeemlettertype", "Failed to upload image: {0}": "Niet gelukt om afbeelding te uploaden: {0}", "Failed to load plugin: {0} from url {1}": "Niet gelukt om plug-in te laden: {0} vanaf URL {1}", "Failed to load plugin url: {0}": "Niet gelukt om URL plug-in te laden: {0}", "Failed to initialize plugin: {0}": "Niet gelukt om plug-in te initialiseren: {0}", "example": "voorbeeld", "Search": "Zoeken", "All": "Alle", "Currency": "Valuta", "Text": "Tekst", "Quotations": "Citaten", "Mathematical": "Wiskundig", "Extended Latin": "Latijn uitgebreid ", "Symbols": "Symbolen", "Arrows": "Pijlen", "User Defined": "Door gebruiker gedefinieerd ", "dollar sign": "dollarteken", "currency sign": "valutateken", "euro-currency sign": "euroteken", "colon sign": "colon-teken", "cruzeiro sign": "cruzeiro-teken", "french franc sign": "franse franc-teken", "lira sign": "lire-teken", "mill sign": "mill-teken", "naira sign": "naira-teken", "peseta sign": "peseta-teken", "rupee sign": "roepie-teken", "won sign": "won-teken", "new sheqel sign": "nieuwe sheqel-teken", "dong sign": "dong-teken", "kip sign": "kip-teken", "tugrik sign": "tugrik-teken", "drachma sign": "drachme-teken", "german penny symbol": "duitse pfennig-teken", "peso sign": "peso-teken", "guarani sign": "guarani-teken", "austral sign": "austral-teken", "hryvnia sign": "hryvnia-teken", "cedi sign": "cedi-teken", "livre tournois sign": "livre tournois-teken", "spesmilo sign": "spesmilo-teken", "tenge sign": "tenge-teken", "indian rupee sign": "indiaase roepie-teken", "turkish lira sign": "turkse lire-teken", "nordic mark sign": "noorse mark-teken", "manat sign": "manat-teken", "ruble sign": "roebel-teken", "yen character": "yen-teken", "yuan character": "yuan-teken", "yuan character, in hong kong and taiwan": "yuan-teken (Hong Kong en Taiwan)", "yen\/yuan character variant one": "yen\/yuan variant 1-teken", "Loading emoticons...": "Emoticons laden...", "Could not load emoticons": "Kan emoticons niet laden", "People": "Personen", "Animals and Nature": "Dieren en natuur", "Food and Drink": "Eten en drinken", "Activity": "Activiteit", "Travel and Places": "Reizen en plaatsen", "Objects": "Objecten", "Flags": "Vlaggen", "Characters": "Tekens", "Characters (no spaces)": "Tekens (geen spaties)", "{0} characters": "{0} karakters", "Error: Form submit field collision.": "Fout: Veldconflict bij versturen formulier.", "Error: No form element found.": "Fout: Geen formulierelement gevonden.", "Update": "Bijwerken", "Color swatch": "Kleurenwaaier", "Turquoise": "Turquoise", "Green": "Groen", "Blue": "Blauw", "Purple": "Paars", "Navy Blue": "Marineblauw", "Dark Turquoise": "Donkerturquoise", "Dark Green": "Donkergroen", "Medium Blue": "Middelblauw", "Medium Purple": "Middelpaars", "Midnight Blue": "Middernachtblauw", "Yellow": "Geel", "Orange": "Oranje", "Red": "Rood", "Light Gray": "Lichtgrijs", "Gray": "Grijs", "Dark Yellow": "Donkergeel", "Dark Orange": "Donkeroranje", "Dark Red": "Donkerrood", "Medium Gray": "Middelgrijs", "Dark Gray": "Donkergrijs", "Light Green": "Lichtgroen", "Light Yellow": "Lichtgeel", "Light Red": "Lichtrood", "Light Purple": "Lichtpaars", "Light Blue": "Lichtblauw", "Dark Purple": "Donkerpaars", "Dark Blue": "Donkerblauw", "Black": "Zwart", "White": "Wit", "Switch to or from fullscreen mode": "Overschakelen naar of vanuit de volledig scherm-modus", "Open help dialog": "Help-scherm openen", "history": "geschiedenis", "styles": "stijlen", "formatting": "opmaak", "alignment": "uitlijning", "indentation": "inspringing", "Font": "Lettertype", "Size": "Formaat", "More...": "Meer...", "Select...": "Selecteer...", "Preferences": "Voorkeuren", "Yes": "Ja", "No": "Nee", "Keyboard Navigation": "Toetsenbord navigatie", "Version": "Versie", "Code view": "Code bekijken", "Open popup menu for split buttons": "Open het pop-up menu voor gesplitste knoppen", "List Properties": "Lijsteigenschappen", "List properties...": "Lijsteigenschappen...", "Start list at number": "Begin lijst met nummer", "Line height": "Lijnhoogte", "comments": "opmerkingen", "Format Painter": "Opmaak overnemen", "Insert\/edit iframe": "Iframe toevoegen\/aanpassen", "Capitalization": "Hoofdletter gebruik", "lowercase": "kleine letters", "UPPERCASE": "HOOFDLETTERS", "Title Case": "Titel hoofdletter gebruik", "permanent pen": "permanent pen", "Permanent Pen Properties": "Permantente Pen eigenschappen", "Permanent pen properties...": "Permantente pen eigenschappen...", "case change": "hoofdlettergebruik veranderen", "page embed": "pagina insluiten", "Advanced sort...": "Geavanceerd sorteren...", "Advanced Sort": "Geavanceerd sorteren", "Sort table by column ascending": "Sorteer tabel per kolom in oplopende volgorde", "Sort table by column descending": "Sorteer tabel per kolom in aflopende volgorde", "Sort": "Sorteren", "Order": "Volgorde", "Sort by": "Sorteren op", "Ascending": "Oplopend", "Descending": "Aflopend", "Column {0}": "Kolom {0}", "Row {0}": "Rij {0}", "Spellcheck...": "Spellingscontrole...", "Misspelled word": "Fout gespeld woord", "Suggestions": "Suggesties", "Change": "Wijzigen", "Finding word suggestions": "Woordsuggesties zoeken", "Success": "Gelukt", "Repair": "Herstellen", "Issue {0} of {1}": "Probleem {0} van {1}", "Images must be marked as decorative or have an alternative text description": "Afbeeldingen moeten als decoratief gemarkeerd zijn of moeten een alternatieve tekstbeschrijving hebben", "Images must have an alternative text description. Decorative images are not allowed.": "Afbeeldingen moeten een alternatieve tekstbeschrijving hebben. Decoratieve afbeeldingen zijn niet toegelaten.", "Or provide alternative text:": "Of geef een alternatieve tekst:", "Make image decorative:": "Afbeelding decoratief maken:", "ID attribute must be unique": "ID attribuut moet uniek zijn", "Make ID unique": "ID uniek maken", "Keep this ID and remove all others": "Dit ID behouden en alle andere verwijderen", "Remove this ID": "Dit ID verwijderen", "Remove all IDs": "Alle ID's verwijderen", "Checklist": "Controlelijst", "Anchor": "Anker", "Special character": "Speciale karakters", "Code sample": "Broncode voorbeeld", "Color": "Kleur", "Document properties": "Document eigenschappen", "Image description": "Afbeelding omschrijving", "Image": "Afbeelding", "Insert link": "Hyperlink invoegen", "Target": "Doel", "Link": "Link", "Poster": "Poster", "Media": "Media", "Print": "Print", "Prev": "Vorige", "Find and replace": "Zoek en vervang", "Whole words": "Alleen hele woorden", "Insert template": "Sjabloon invoegen" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/nl_BE.js ================================================ tinymce.addI18n('nl_BE',{ "Redo": "Opnieuw doen", "Undo": "Ongedaan maken", "Cut": "Knippen", "Copy": "Kopi\u00ebren", "Paste": "Plakken", "Select all": "Alles selecteren", "New document": "Nieuw document", "Ok": "Ok", "Cancel": "Annuleren", "Visual aids": "Visuele hulpmiddelen", "Bold": "Vet", "Italic": "Cursief", "Underline": "Onderlijnd", "Strikethrough": "Doorstreept", "Superscript": "Superscript", "Subscript": "Subscript", "Clear formatting": "Opmaak verwijderen", "Align left": "Links uitlijnen", "Align center": "Centreren", "Align right": "Rechts uitlijnen", "Justify": "Distribueren", "Bullet list": "Ongeordende lijst", "Numbered list": "Geordende lijst", "Decrease indent": "Inspringing verkleinen", "Increase indent": "Inspringing vergroten", "Close": "Sluiten", "Formats": "Formaten", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Uw browser ondersteunt geen directe toegang tot het klembord. Gelieve de CTRL+X\/C\/V toetsen te gebruiken.", "Headers": "Kopteksten", "Header 1": "Koptekst 1", "Header 2": "Koptekst 2", "Header 3": "Koptekst 3", "Header 4": "Koptekst 4", "Header 5": "Koptekst 5", "Header 6": "Koptekst 6", "Headings": "Hoofdingen", "Heading 1": "Hoofding 1", "Heading 2": "Hoofding 2", "Heading 3": "Hoofding 3", "Heading 4": "Hoofding 4", "Heading 5": "Hoofding 5", "Heading 6": "Hoofding 6", "Preformatted": "Gepreformateerd", "Div": "Div", "Pre": "Pre", "Code": "Code", "Paragraph": "Paragraaf", "Blockquote": "Citaat", "Inline": "In tekstregel", "Blocks": "Blokken", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Plakken is nu in gewone tekst modus. Elementen zullen nu als gewone tekst geplakt worden tot u deze optie uit schakelt.", "Fonts": "Lettertypen", "Font Sizes": "Lettergrootte", "Class": "Class", "Browse for an image": "Een afbeelding zoeken", "OR": "OF", "Drop an image here": "Plaats hier een afbeelding", "Upload": "Uploaden", "Block": "Vierkant", "Align": "Aligneer", "Default": "Standaard", "Circle": "Cirkel", "Disc": "Schijf", "Square": "Vierkant", "Lower Alpha": "Kleine letters", "Lower Greek": "Klein Grieks schrift", "Lower Roman": "Klein Latijns schrift", "Upper Alpha": "Hoofdletters", "Upper Roman": "Hoofdletters Latijns", "Anchor...": "Anker...", "Name": "Naam", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Een id moet met een letter beginnen, gevolgd door letters, nummers, strepen, punten, dubbele punten of liggende streepjes.", "You have unsaved changes are you sure you want to navigate away?": "U heeft niet opgeslagen wijzigingen bent u zeker dat u de pagina wilt verlaten?", "Restore last draft": "Laatste concept herstellen", "Special character...": "Speciaal karakter...", "Source code": "Broncode", "Insert\/Edit code sample": "Codevoorbeeld invoegen\/bewerken", "Language": "Taal", "Code sample...": "Codevoorbeeld...", "Color Picker": "Kleurenkiezer", "R": "R", "G": "G", "B": "B", "Left to right": "Links naar rechts", "Right to left": "Rechts naar links", "Emoticons": "Emoticons", "Emoticons...": "Emoticons...", "Metadata and Document Properties": "Metadata en Document Eigenschappen", "Title": "Titel", "Keywords": "Sleutelwoorden", "Description": "Omschrijving", "Robots": "Robots", "Author": "Auteur", "Encoding": "Bestandscodering", "Fullscreen": "Schermvullend", "Action": "Actie", "Shortcut": "Snelkoppeling", "Help": "Help", "Address": "Adres", "Focus to menubar": "Focus naar menubalk", "Focus to toolbar": "Focus naar werkbalk", "Focus to element path": "Focus naar elementenpad", "Focus to contextual toolbar": "Focus naar contextuele werkbalk", "Insert link (if link plugin activated)": "Link invoegen (als link plug-in geactiveerd is)", "Save (if save plugin activated)": "Opslaan (als opslaan plug-in geactiveerd is)", "Find (if searchreplace plugin activated)": "Zoeken (als zoeken\/vervangen plug-in geactiveerd is)", "Plugins installed ({0}):": "Ge\u00efnstalleerde plugins ({0}):", "Premium plugins:": "Premium plug-ins:", "Learn more...": "Leer meer...", "You are using {0}": "U gebruikt {0}", "Plugins": "Plug-ins", "Handy Shortcuts": "Handige snelkoppelingen", "Horizontal line": "Horizontale lijn", "Insert\/edit image": "Afbeelding invoegen\/bewerken", "Alternative description": "Alternatieve beschrijving", "Accessibility": "Toegankelijkheid", "Image is decorative": "Afbeelding is decoratief", "Source": "Bron", "Dimensions": "Afmetingen", "Constrain proportions": "Verhoudingen begrenzen", "General": "Algemeen", "Advanced": "Geavanceerd", "Style": "Stijl", "Vertical space": "Verticale ruimte", "Horizontal space": "Horizontale ruimte", "Border": "Rand", "Insert image": "Afbeelding invoegen", "Image...": "Afbeelding...", "Image list": "Afbeeldingenlijst", "Rotate counterclockwise": "Linksom draaien", "Rotate clockwise": "Rechtsom draaien", "Flip vertically": "Verticaal spiegelen", "Flip horizontally": "Horizontaal spiegelen", "Edit image": "Afbeelding bewerken", "Image options": "Afbeeldingsopties", "Zoom in": "Inzoomen", "Zoom out": "Uitzoomen", "Crop": "Bijsnijden", "Resize": "Herschalen", "Orientation": "Ori\u00ebntatie", "Brightness": "Helderheid", "Sharpen": "Verscherpen", "Contrast": "Contrast", "Color levels": "Kleurniveau's", "Gamma": "Gamma", "Invert": "Omkeren", "Apply": "Toepassen", "Back": "Terug", "Insert date\/time": "Datum\/tijd invoegen", "Date\/time": "Datum\/tijd", "Insert\/edit link": "Link invoegen\/bewerken", "Text to display": "Weer te geven tekst", "Url": "Url", "Open link in...": "Link openen in...", "Current window": "Huidig venster", "None": "Geen", "New window": "Nieuw venster", "Open link": "Link openen", "Remove link": "Link verwijderen", "Anchors": "Ankers", "Link...": "Link...", "Paste or type a link": "Link plakken of typen", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "De ingevoerde URL lijkt op een e-mailadres. Wilt u er het vereiste voorvoegsel mailto: aan toevoegen?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "De ingevoerde URL lijkt op een externe link. Wilt u er het vereiste voorvoegsel http:\/\/ aan toevoegen?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "De ingevoerde URL lijkt op een externe link. Wilt u er het vereiste voorvoegsel https:\/\/ aan toevoegen?", "Link list": "Link lijst", "Insert video": "Video invoegen", "Insert\/edit video": "Video invoegen\/bewerken", "Insert\/edit media": "Media invoegen\/bewerken", "Alternative source": "Alternatieve bron", "Alternative source URL": "Alternatieve bron URL", "Media poster (Image URL)": "Mediaposter (Afbeelding URL)", "Paste your embed code below:": "Plak de in te sluiten code hieronder:", "Embed": "Insluiten", "Media...": "Media...", "Nonbreaking space": "Vaste spatie", "Page break": "Pagina-einde", "Paste as text": "Plakken als tekst", "Preview": "Voorbeeld", "Print...": "Afdrukken...", "Save": "Opslaan", "Find": "Zoeken", "Replace with": "Vervangen door", "Replace": "Vervangen", "Replace all": "Alles vervangen", "Previous": "Vorige", "Next": "Volgende", "Find and Replace": "Zoeken en Vervangen", "Find and replace...": "Zoeken en vervangen...", "Could not find the specified string.": "Kon de gespecificeerde string niet vinden.", "Match case": "Hoofdlettergevoelig", "Find whole words only": "Enkel volledige woorden", "Find in selection": "Zoeken in selectie", "Spellcheck": "Spellingscontrole", "Spellcheck Language": "Spellingscontrole Taal", "No misspellings found.": "Geen spelfouten gevonden.", "Ignore": "Negeren", "Ignore all": "Alles negeren", "Finish": "Voltooien", "Add to Dictionary": "Aan woordenboek toevoegen", "Insert table": "Tabel invoegen", "Table properties": "Tabeleigenschappen", "Delete table": "Tabel verwijderen", "Cell": "Cel", "Row": "Rij", "Column": "Kolom", "Cell properties": "Celeigenschappen", "Merge cells": "Cellen samenvoegen", "Split cell": "Cel splitsen", "Insert row before": "Rij boven invoegen", "Insert row after": "Rij onder invoegen", "Delete row": "Rij verwijderen", "Row properties": "Rijeigenschappen", "Cut row": "Rij knippen", "Copy row": "Rij kopi\u00ebren", "Paste row before": "Rij boven plakken", "Paste row after": "Rij onder plakken", "Insert column before": "Kolom invoegen voor", "Insert column after": "Kolom invoegen na", "Delete column": "Kolom verwijderen", "Cols": "Kolommen", "Rows": "Rijen", "Width": "Breedte\\v", "Height": "Hoogte", "Cell spacing": "Celafstand", "Cell padding": "Celopvulling", "Caption": "Bijschrift", "Show caption": "Bijschrift tonen", "Left": "Links", "Center": "Midden", "Right": "Rechts", "Cell type": "Celtype", "Scope": "Bereik", "Alignment": "Uitlijning", "H Align": "H uitlijnen", "V Align": "V uitlijnen", "Top": "Boven", "Middle": "Midden", "Bottom": "Onder", "Header cell": "Koptekstcel", "Row group": "Rijgroep", "Column group": "Kolomgroep", "Row type": "Rijtype", "Header": "Koptekst", "Body": "Hoofdtekst", "Footer": "Voettekst", "Border color": "Randkleur", "Insert template...": "Sjabloon invoegen...", "Templates": "Sjablonen", "Template": "Sjabloon", "Text color": "Tekstkleur", "Background color": "Achtergrondkleur", "Custom...": "Aangepast...", "Custom color": "Aangepaste kleur", "No color": "Geen kleur", "Remove color": "Kleur verwijderen", "Table of Contents": "Inhoudsopgave", "Show blocks": "Blokken tonen", "Show invisible characters": "Onzichtbare tekens tonen", "Word count": "Aantal woorden", "Count": "Tellen", "Document": "Document", "Selection": "Selectie", "Words": "Woorden", "Words: {0}": "Woorden: {0}", "{0} words": "{0} woorden", "File": "Bestand", "Edit": "Bewerken", "Insert": "Invoegen", "View": "Tonen", "Format": "Formaat", "Table": "Tabel", "Tools": "Gereedschappen", "Powered by {0}": "Aangedreven door {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Druk op Alt-F9 voor menu. Druk op Alt-F10 voor gereedschapsbalk. Druk op Alt-0 voor help", "Image title": "Afbeeldingstitel", "Border width": "Randbreedte", "Border style": "Randstijl", "Error": "Fout", "Warn": "Waarschuwen", "Valid": "Geldig", "To open the popup, press Shift+Enter": "Druk op Shift+Enter om de pop-up te openen", "Rich Text Area. Press ALT-0 for help.": "Rich Text Area. Druk op Alt-0 voor help.", "System Font": "Systeemlettertype", "Failed to upload image: {0}": "Afbeelding uploaden niet gelukt: {0}", "Failed to load plugin: {0} from url {1}": "Plug-in laden niet gelukt: {0} vanaf url {1}", "Failed to load plugin url: {0}": "Plug-in URL laden niet gelukt: {0}", "Failed to initialize plugin: {0}": "Plug-in initialiseren niet gelukt: {0}", "example": "voorbeeld", "Search": "Zoeken", "All": "Alle", "Currency": "Valuta", "Text": "Tekst", "Quotations": "Citaten", "Mathematical": "Wiskundig", "Extended Latin": "Latijn uitgebreid", "Symbols": "Symbolen", "Arrows": "Pijlen", "User Defined": "Gebruiker Gedefinieerd", "dollar sign": "dollar teken", "currency sign": "valuta teken", "euro-currency sign": "euro valuta teken", "colon sign": "colon teken", "cruzeiro sign": "cruzeiro teken", "french franc sign": "franse frank teken", "lira sign": "lire teken", "mill sign": "mill teken", "naira sign": "naira teken", "peseta sign": "peseta teken", "rupee sign": "roepie teken", "won sign": "won teken", "new sheqel sign": "nieuwe shekel teken", "dong sign": "dong teken", "kip sign": "kip teken", "tugrik sign": "tugrik teken", "drachma sign": "drachme teken", "german penny symbol": "duitse pfennig teken", "peso sign": "peso teken", "guarani sign": "guarani teken", "austral sign": "austral teken", "hryvnia sign": "hryvnia teken", "cedi sign": "cedi teken", "livre tournois sign": "tours pond teken", "spesmilo sign": "spesmilo teken", "tenge sign": "tenge teken", "indian rupee sign": "indische roepie teken", "turkish lira sign": "turkse lira teken", "nordic mark sign": "noordse mark teken", "manat sign": "manat teken", "ruble sign": "roebel teken", "yen character": "yen karakter", "yuan character": "yuan karakter", "yuan character, in hong kong and taiwan": "yuan karakter, in hong kong en taiwan", "yen\/yuan character variant one": "yen\/yuan karakter variant een", "Loading emoticons...": "Emoticons laden...", "Could not load emoticons": "Kon emoticons niet laden", "People": "Mensen", "Animals and Nature": "Dieren en natuur", "Food and Drink": "Voedsel en drank", "Activity": "Activiteit", "Travel and Places": "Reizen en plaatsen", "Objects": "Voorwerpen", "Flags": "Vlaggen", "Characters": "Karakters", "Characters (no spaces)": "Karakters (zonder spaties)", "{0} characters": "{0} karakters", "Error: Form submit field collision.": "Fout: Veldconflict bij versturen formulier.", "Error: No form element found.": "Fout: Geen formulierelement gevonden.", "Update": "Updaten", "Color swatch": "Kleurenstaal", "Turquoise": "Turkoois", "Green": "Groen", "Blue": "Blauw", "Purple": "Paars", "Navy Blue": "Marineblauw", "Dark Turquoise": "Donker turkoois", "Dark Green": "Donker groen", "Medium Blue": "Middelblauw", "Medium Purple": "Middelpaars", "Midnight Blue": "Middernachtblauw", "Yellow": "Geel", "Orange": "Oranje", "Red": "Rood", "Light Gray": "Lichtgrijs", "Gray": "Grijs", "Dark Yellow": "Donker Geel", "Dark Orange": "Donker Oranje", "Dark Red": "Donker Rood", "Medium Gray": "Middel Grijs", "Dark Gray": "Donker Grijs", "Light Green": "Licht Groen", "Light Yellow": "Licht Geel", "Light Red": "Licht Rood", "Light Purple": "Licht Paars", "Light Blue": "Licht Blauw", "Dark Purple": "Donker Paars", "Dark Blue": "Donker Blauw", "Black": "Zwart", "White": "Wit", "Switch to or from fullscreen mode": "Schakelen naar of vanuit volledige schermmodus", "Open help dialog": "Helpdialoog openen", "history": "geschiedenis", "styles": "stijlen", "formatting": "opmaak", "alignment": "uitlijning", "indentation": "inspringing", "Font": "Lettertype", "Size": "Grootte", "More...": "Meer...", "Select...": "Selecteren...", "Preferences": "Voorkeuren", "Yes": "Ja", "No": "Nee", "Keyboard Navigation": "Toetsenbord navigatie", "Version": "Versie", "Code view": "Codeweergave", "Open popup menu for split buttons": "Open pop-up menu voor gesplitste knoppen", "List Properties": "Lijst Eigenschappen", "List properties...": "Lijst eigenschappen...", "Start list at number": "Begin lijst bij nummer", "Line height": "Regelhoogte", "comments": "opmerkingen", "Format Painter": "Format Painter", "Insert\/edit iframe": "iFrame invoegen\/bewerken", "Capitalization": "Hoofdlettergebruik", "lowercase": "kleine letters", "UPPERCASE": "HOOFDLETTERS", "Title Case": "Titel hoofdlettergebruik", "permanent pen": "permanente pen", "Permanent Pen Properties": "Permanent Pen Eigenschappen", "Permanent pen properties...": "Permanent pen eigenschappen...", "case change": "hoofdlettergebruik veranderen", "page embed": "pagina insluiten", "Advanced sort...": "Geavanceerd sorteren...", "Advanced Sort": "Geavanceerd Sorteren", "Sort table by column ascending": "Sorteer tabel per kolom in oplopende volgorde", "Sort table by column descending": "Sorteer tabel per kolom in aflopende volgorde", "Sort": "Sorteren", "Order": "Ordenen", "Sort by": "Sorteren op", "Ascending": "Oplopend", "Descending": "Aflopend", "Column {0}": "Kolom {0}", "Row {0}": "Rij {0}", "Spellcheck...": "Spellingscontrole...", "Misspelled word": "Fout gespeld woord", "Suggestions": "Suggesties", "Change": "Wijzigen", "Finding word suggestions": "Woordsuggesties zoeken", "Success": "Gelukt", "Repair": "Herstellen", "Issue {0} of {1}": "Probleem {0} van {1}", "Images must be marked as decorative or have an alternative text description": "Afbeeldingen markeren als decoratief of alternatieve tekstbeschrijving geven", "Images must have an alternative text description. Decorative images are not allowed.": "Afbeeldingen moeten een alternatieve tekstbeschrijving hebben. Decoratieve afbeeldingen zijn niet toegelaten.", "Or provide alternative text:": "Of voorzie alternatieve tekst:", "Make image decorative:": "Afbeelding decoratief maken", "ID attribute must be unique": "ID attribuut moet uniek zijn", "Make ID unique": "ID uniek maken", "Keep this ID and remove all others": "Dit ID behouden en alle andere verwijderen", "Remove this ID": "Dit ID verwijderen", "Remove all IDs": "Alle IDs verwijderen", "Checklist": "Controlelijst" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/pl.js ================================================ tinymce.addI18n('pl',{ "Redo": "Powt\u00f3rz", "Undo": "Cofnij", "Cut": "Wytnij", "Copy": "Kopiuj", "Paste": "Wklej", "Select all": "Zaznacz wszystko", "New document": "Nowy dokument", "Ok": "Ok", "Cancel": "Anuluj", "Visual aids": "Pomoce wizualne", "Bold": "Pogrubienie", "Italic": "Kursywa", "Underline": "Podkre\u015blenie", "Strikethrough": "Przekre\u015blenie", "Superscript": "Indeks g\u00f3rny", "Subscript": "Indeks dolny", "Clear formatting": "Wyczy\u015b\u0107 formatowanie", "Align left": "Wyr\u00f3wnaj do lewej", "Align center": "Wyr\u00f3wnaj do \u015brodka", "Align right": "Wyr\u00f3wnaj do prawej", "Justify": "Wyjustuj", "Bullet list": "Lista wypunktowana", "Numbered list": "Lista numerowana", "Decrease indent": "Zmniejsz wci\u0119cie", "Increase indent": "Zwi\u0119ksz wci\u0119cie", "Close": "Zamknij", "Formats": "Formaty", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Twoja przegl\u0105darka nie obs\u0142uguje bezpo\u015bredniego dost\u0119pu do schowka. U\u017cyj zamiast tego kombinacji klawiszy Ctrl+X\/C\/V.", "Headers": "Nag\u0142\u00f3wki", "Header 1": "Nag\u0142\u00f3wek 1", "Header 2": "Nag\u0142\u00f3wek 2", "Header 3": "Nag\u0142\u00f3wek 3", "Header 4": "Nag\u0142\u00f3wek 4", "Header 5": "Nag\u0142\u00f3wek 5", "Header 6": "Nag\u0142\u00f3wek 6", "Headings": "Nag\u0142\u00f3wki", "Heading 1": "Nag\u0142\u00f3wek 1", "Heading 2": "Nag\u0142\u00f3wek 2", "Heading 3": "Nag\u0142\u00f3wek 3", "Heading 4": "Nag\u0142\u00f3wek 4", "Heading 5": "Nag\u0142\u00f3wek 5", "Heading 6": "Nag\u0142\u00f3wek 6", "Preformatted": "Wst\u0119pne formatowanie", "Div": "Div", "Pre": "Pre", "Code": "Kod", "Paragraph": "Akapit", "Blockquote": "Blok cytatu", "Inline": "W tek\u015bcie", "Blocks": "Bloki", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Wklejanie jest w trybie tekstowym. Zawarto\u015b\u0107 zostanie wklejona jako zwyk\u0142y tekst dop\u00f3ki nie wy\u0142\u0105czysz tej opcji.", "Fonts": "Fonty", "Font Sizes": "Rozmiar fontu", "Class": "Klasa", "Browse for an image": "Przegl\u0105daj za zdj\u0119ciem", "OR": "LUB", "Drop an image here": "Upu\u015b\u0107 obraz tutaj", "Upload": "Prze\u015blij", "Block": "Zablokuj", "Align": "Wyr\u00f3wnaj", "Default": "Domy\u015blne", "Circle": "K\u00f3\u0142ko", "Disc": "Dysk", "Square": "Kwadrat", "Lower Alpha": "Ma\u0142e litery", "Lower Greek": "Ma\u0142e greckie", "Lower Roman": "Ma\u0142e rzymskie", "Upper Alpha": "Wielkie litery", "Upper Roman": "Wielkie rzymskie", "Anchor...": "Kotwica...", "Name": "Nazwa", "Id": "Identyfikator", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Identyfikator powinien zaczyna\u0107 si\u0119 liter\u0105, dozwolone s\u0105 tylko litery, numery, uko\u015bniki, kropki, dwukropki i podkre\u015blniki - tzw. pod\u0142ogi", "You have unsaved changes are you sure you want to navigate away?": "Masz niezapisane zmiany. Czy na pewno chcesz opu\u015bci\u0107 stron\u0119?", "Restore last draft": "Przywr\u00f3\u0107 ostatni szkic", "Special character...": "Znak specjalny...", "Source code": "Kod \u017ar\u00f3d\u0142owy", "Insert\/Edit code sample": "Dodaj\/Edytuj przyk\u0142adowy kod", "Language": "J\u0119zyk", "Code sample...": "Przyk\u0142ad kodu...", "Color Picker": "Selektor kolor\u00f3w", "R": "R", "G": "G", "B": "B", "Left to right": "Od lewej do prawej", "Right to left": "Od prawej do lewej", "Emoticons": "Ikony emocji", "Emoticons...": "Emotikony...", "Metadata and Document Properties": "Metadane i w\u0142a\u015bciwo\u015bci dokumentu", "Title": "Tytu\u0142", "Keywords": "S\u0142owa kluczowe", "Description": "Opis", "Robots": "Roboty", "Author": "Autor", "Encoding": "Kodowanie", "Fullscreen": "Pe\u0142ny ekran", "Action": "Akcja", "Shortcut": "Skr\u00f3t", "Help": "Pomoc", "Address": "Adres", "Focus to menubar": "Skup si\u0119 na pasku menu", "Focus to toolbar": "Skupi\u0107 si\u0119 na pasku", "Focus to element path": "Skup si\u0119 na \u015bcie\u017cce elementu", "Focus to contextual toolbar": "Skupi\u0107 si\u0119 na pasku narz\u0119dzi kontekstowych", "Insert link (if link plugin activated)": "Wstaw \u0142\u0105cze (je\u015bli w\u0142\u0105czysz wtyczk\u0119 link\u00f3w)", "Save (if save plugin activated)": "Zapisz (je\u015bli aktywowana jest wtyczka do zapisu)", "Find (if searchreplace plugin activated)": "Znajd\u017a (je\u015bli w\u0142\u0105czysz wtyczk\u0119 do wyszukiwania)", "Plugins installed ({0}):": "Zainstalowane wtyczki ({0}):", "Premium plugins:": "Wtyczki Premium:", "Learn more...": "Dowiedz si\u0119 wi\u0119cej...", "You are using {0}": "U\u017cywasz {0}", "Plugins": "Pluginy", "Handy Shortcuts": "Przydatne skr\u00f3ty", "Horizontal line": "Pozioma linia", "Insert\/edit image": "Wstaw\/edytuj obrazek", "Alternative description": "Alternatywny opis", "Accessibility": "Dost\u0119pno\u015b\u0107", "Image is decorative": "Obraz jest dekoracyjny", "Source": "\u0179r\u00f3d\u0142o", "Dimensions": "Wymiary", "Constrain proportions": "Zachowaj proporcje", "General": "Og\u00f3lne", "Advanced": "Zaawansowane", "Style": "Styl", "Vertical space": "Odst\u0119p pionowy", "Horizontal space": "Odst\u0119p poziomy", "Border": "Ramka", "Insert image": "Wstaw obrazek", "Image...": "Obraz...", "Image list": "Lista obrazk\u00f3w", "Rotate counterclockwise": "Obr\u00f3\u0107 w lewo", "Rotate clockwise": "Obr\u00f3\u0107 w prawo", "Flip vertically": "Przerzu\u0107 w pionie", "Flip horizontally": "Przerzu\u0107 w poziomie", "Edit image": "Edytuj obrazek", "Image options": "Opcje obrazu", "Zoom in": "Powi\u0119ksz", "Zoom out": "Pomniejsz", "Crop": "Przytnij", "Resize": "Zmiana rozmiaru", "Orientation": "Orientacja", "Brightness": "Jasno\u015b\u0107", "Sharpen": "Wyostrz", "Contrast": "Kontrast", "Color levels": "Poziom koloru", "Gamma": "Gamma", "Invert": "Odwr\u00f3\u0107", "Apply": "Zaakceptuj", "Back": "Cofnij", "Insert date\/time": "Wstaw dat\u0119\/czas", "Date\/time": "Data\/Czas", "Insert\/edit link": "Wstaw\/edytuj \u0142\u0105cze", "Text to display": "Tekst do wy\u015bwietlenia", "Url": "URL", "Open link in...": "Otw\u00f3rz \u0142\u0105cze w...", "Current window": "Bie\u017c\u0105ce okno", "None": "\u017baden", "New window": "Nowe okno", "Open link": "Otw\u00f3rz \u0142\u0105cze", "Remove link": "Usu\u0144 \u0142\u0105cze", "Anchors": "Kotwice", "Link...": "\u0141\u0105cze...", "Paste or type a link": "Wklej lub wpisz adres \u0142\u0105cza", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na adres e-mail. Czy chcesz doda\u0107 mailto: jako prefiks?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na link zewn\u0119trzny. Czy chcesz doda\u0107 http:\/\/ jako prefiks?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Wprowadzony przez Ciebie adres URL wydaje si\u0119 by\u0107 \u0142\u0105czem zewn\u0119trznym. Czy chcesz doda\u0107 wymagany prefiks https:\/\/?", "Link list": "Lista link\u00f3w", "Insert video": "Wstaw wideo", "Insert\/edit video": "Wstaw\/edytuj wideo", "Insert\/edit media": "Wstaw\/Edytuj media", "Alternative source": "Alternatywne \u017ar\u00f3d\u0142o", "Alternative source URL": "Alternatywny URL \u017ar\u00f3d\u0142a", "Media poster (Image URL)": "Plakat (URL obrazu)", "Paste your embed code below:": "Wklej tutaj kod do osadzenia:", "Embed": "Osad\u017a", "Media...": "Multimedia...", "Nonbreaking space": "Nie\u0142amliwa spacja", "Page break": "Podzia\u0142 strony", "Paste as text": "Wklej jako zwyk\u0142y tekst", "Preview": "Podgl\u0105d", "Print...": "Drukuj...", "Save": "Zapisz", "Find": "Znajd\u017a", "Replace with": "Zamie\u0144 na", "Replace": "Zamie\u0144", "Replace all": "Zamie\u0144 wszystko", "Previous": "Poprzedni", "Next": "Nast.", "Find and Replace": "Znajd\u017a i Zamie\u0144", "Find and replace...": "Znajd\u017a i zamie\u0144...", "Could not find the specified string.": "Nie znaleziono szukanego tekstu.", "Match case": "Dopasuj wielko\u015b\u0107 liter", "Find whole words only": "Znajd\u017a tylko ca\u0142e wyrazy", "Find in selection": "Znajd\u017a w zaznaczeniu", "Spellcheck": "Sprawdzanie pisowni", "Spellcheck Language": "J\u0119zyk sprawdzania pisowni", "No misspellings found.": "Brak b\u0142\u0119d\u00f3w pisowni", "Ignore": "Ignoruj", "Ignore all": "Ignoruj wszystko", "Finish": "Zako\u0144cz", "Add to Dictionary": "Dodaj do s\u0142ownika", "Insert table": "Wstaw tabel\u0119", "Table properties": "W\u0142a\u015bciwo\u015bci tabeli", "Delete table": "Usu\u0144 tabel\u0119", "Cell": "Kom\u00f3rka", "Row": "Wiersz", "Column": "Kolumna", "Cell properties": "W\u0142a\u015bciwo\u015bci kom\u00f3rki", "Merge cells": "\u0141\u0105cz kom\u00f3rki", "Split cell": "Podziel kom\u00f3rk\u0119", "Insert row before": "Wstaw wiersz przed", "Insert row after": "Wstaw wiersz po", "Delete row": "Usu\u0144 wiersz", "Row properties": "W\u0142a\u015bciwo\u015bci wiersza", "Cut row": "Wytnij wiersz", "Copy row": "Kopiuj wiersz", "Paste row before": "Wklej wiersz przed", "Paste row after": "Wklej wiersz po", "Insert column before": "Wstaw kolumn\u0119 przed", "Insert column after": "Wstaw kolumn\u0119 po", "Delete column": "Usu\u0144 kolumn\u0119", "Cols": "Kol.", "Rows": "Wiersz.", "Width": "Szeroko\u015b\u0107", "Height": "Wysoko\u015b\u0107", "Cell spacing": "Odst\u0119py kom\u00f3rek", "Cell padding": "Dope\u0142nienie kom\u00f3rki", "Caption": "Tytu\u0142", "Show caption": "Poka\u017c podpis", "Left": "Lewo", "Center": "\u015arodek", "Right": "Prawo", "Cell type": "Typ kom\u00f3rki", "Scope": "Kontekst", "Alignment": "Wyr\u00f3wnanie", "H Align": "Wyr\u00f3wnanie w pionie", "V Align": "Wyr\u00f3wnanie w poziomie", "Top": "G\u00f3ra", "Middle": "\u015arodek", "Bottom": "D\u00f3\u0142", "Header cell": "Kom\u00f3rka nag\u0142\u00f3wka", "Row group": "Grupa wierszy", "Column group": "Grupa kolumn", "Row type": "Typ wiersza", "Header": "Nag\u0142\u00f3wek", "Body": "Tre\u015b\u0107", "Footer": "Stopka", "Border color": "Kolor ramki", "Insert template...": "Wstaw szablon...", "Templates": "Szablony", "Template": "Szablon", "Text color": "Kolor tekstu", "Background color": "Kolor t\u0142a", "Custom...": "Niestandardowy...", "Custom color": "Kolor niestandardowy", "No color": "Bez koloru", "Remove color": "Usu\u0144 kolor", "Table of Contents": "Spis tre\u015bci", "Show blocks": "Poka\u017c bloki", "Show invisible characters": "Poka\u017c niewidoczne znaki", "Word count": "Liczba s\u0142\u00f3w", "Count": "Liczba", "Document": "Dokument", "Selection": "Zaznaczenie", "Words": "S\u0142owa", "Words: {0}": "S\u0142\u00f3w: {0}", "{0} words": "{0} s\u0142\u00f3w", "File": "Plik", "Edit": "Edycja", "Insert": "Wstaw", "View": "Widok", "Format": "Format", "Table": "Tabela", "Tools": "Narz\u0119dzia", "Powered by {0}": "Powered by {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Obszar Edycji. ALT-F9 - menu. ALT-F10 - pasek narz\u0119dzi. ALT-0 - pomoc", "Image title": "Tytu\u0142 obrazu", "Border width": "Grubo\u015b\u0107 ramki", "Border style": "Styl ramki", "Error": "B\u0142\u0105d", "Warn": "Ostrze\u017cenie", "Valid": "Prawid\u0142owe", "To open the popup, press Shift+Enter": "Aby otworzy\u0107 okienko, naci\u015bnij Shift+Enter", "Rich Text Area. Press ALT-0 for help.": "Obszar tekstu sformatowanego. Naci\u015bnij ALT-0, aby uzyska\u0107 pomoc.", "System Font": "Font systemowy", "Failed to upload image: {0}": "Nie uda\u0142o si\u0119 przes\u0142a\u0107 obrazu: {0}", "Failed to load plugin: {0} from url {1}": "Nie uda\u0142o si\u0119 za\u0142adowa\u0107 dodatku: {0} spod adresu url {1}", "Failed to load plugin url: {0}": "Nie uda\u0142o si\u0119 za\u0142adowa\u0107 adresu url dodatku: {0}", "Failed to initialize plugin: {0}": "Nie mo\u017cna zainicjowa\u0107 dodatku: {0}", "example": "przyk\u0142ad", "Search": "Wyszukaj", "All": "Wszystkie", "Currency": "Waluta", "Text": "Tekst", "Quotations": "Cudzys\u0142owy", "Mathematical": "Matematyczne", "Extended Latin": "Rozszerzony \u0142aci\u0144ski", "Symbols": "Symbole", "Arrows": "Strza\u0142ki", "User Defined": "W\u0142asny", "dollar sign": "znak dolara", "currency sign": "znak waluty", "euro-currency sign": "znak euro", "colon sign": "znak colon", "cruzeiro sign": "znak cruzeiro", "french franc sign": "znak franka francuskiego", "lira sign": "znak liry", "mill sign": "znak mill", "naira sign": "znak nairy", "peseta sign": "znak pesety", "rupee sign": "znak rupii", "won sign": "znak wona", "new sheqel sign": "znak nowego szekla", "dong sign": "znak donga", "kip sign": "znak kipa", "tugrik sign": "znak tugrika", "drachma sign": "znak drachmy", "german penny symbol": "znak feniga", "peso sign": "znak peso", "guarani sign": "znak guarani", "austral sign": "znak australa", "hryvnia sign": "znak hrywny", "cedi sign": "znak cedi", "livre tournois sign": "znak livre tournois", "spesmilo sign": "znak spesmilo", "tenge sign": "znak tenge", "indian rupee sign": "znak rupii indyjskiej", "turkish lira sign": "znak liry tureckiej", "nordic mark sign": "znak nordic mark", "manat sign": "znak manata", "ruble sign": "znak rubla", "yen character": "znak jena", "yuan character": "znak juana", "yuan character, in hong kong and taiwan": "znak juana w Hongkongu i na Tajwanie", "yen\/yuan character variant one": "jen\/juan, wariant pierwszy", "Loading emoticons...": "\u0141adowanie emotikon\u00f3w...", "Could not load emoticons": "Nie mo\u017cna za\u0142adowa\u0107 emotikon\u00f3w", "People": "Ludzie", "Animals and Nature": "Zwierz\u0119ta i natura", "Food and Drink": "Jedzenie i picie", "Activity": "Aktywno\u015b\u0107", "Travel and Places": "Podr\u00f3\u017ce i miejsca", "Objects": "Obiekty", "Flags": "Flagi", "Characters": "Znaki", "Characters (no spaces)": "Znaki (bez spacji)", "{0} characters": "{0} znak\u00f3w", "Error: Form submit field collision.": "B\u0142\u0105d: kolizja pola przesy\u0142ania formularza.", "Error: No form element found.": "B\u0142\u0105d: nie znaleziono elementu formularza.", "Update": "Aktualizuj", "Color swatch": "Pr\u00f3bka koloru", "Turquoise": "Turkusowy", "Green": "Zielony", "Blue": "Niebieski", "Purple": "Purpurowy", "Navy Blue": "Ciemnoniebieski", "Dark Turquoise": "Ciemnoturkusowy", "Dark Green": "Ciemnozielony", "Medium Blue": "\u015arednioniebieski", "Medium Purple": "\u015aredniopurpurowy", "Midnight Blue": "Nocny b\u0142\u0119kit", "Yellow": "\u017b\u00f3\u0142ty", "Orange": "Pomara\u0144czowy", "Red": "Czerwony", "Light Gray": "Jasnoszary", "Gray": "Szary", "Dark Yellow": "Ciemno\u017c\u00f3\u0142ty", "Dark Orange": "Ciemnopomara\u0144czowy", "Dark Red": "Ciemnoczerwony", "Medium Gray": "\u015arednioszary", "Dark Gray": "Ciemnoszary", "Light Green": "Jasnozielony", "Light Yellow": "Jasno\u017c\u00f3\u0142ty", "Light Red": "Jasnoczerwony", "Light Purple": "Jasnopurpurowy", "Light Blue": "Jasnoniebieski", "Dark Purple": "Ciemnopurpurowy", "Dark Blue": "Ciemnoniebieski", "Black": "Czarny", "White": "Bia\u0142y", "Switch to or from fullscreen mode": "W\u0142\u0105cz lub wy\u0142\u0105cz tryb pe\u0142noekranowy", "Open help dialog": "Otw\u00f3rz okno dialogowe pomocy", "history": "historia", "styles": "style", "formatting": "formatowanie", "alignment": "wyr\u00f3wnanie", "indentation": "wci\u0119cie", "Font": "Font", "Size": "Rozmiar", "More...": "Wi\u0119cej...", "Select...": "Wybierz...", "Preferences": "Ustawienia", "Yes": "Tak", "No": "Nie", "Keyboard Navigation": "Nawigacja za pomoc\u0105 klawiatury", "Version": "Wersja", "Code view": "Widok kodu", "Open popup menu for split buttons": "Otw\u00f3rz menu podr\u0119czne dla przycisk\u00f3w", "List Properties": "Ustawienia Listy", "List properties...": "Ustawienia listy...", "Start list at number": "Rozpocznij numeracj\u0119 od", "Line height": "Wysoko\u015b\u0107 Linii", "comments": "komentarze", "Format Painter": "Malarz format\u00f3w", "Insert\/edit iframe": "Wstaw\/edytuj iframe", "Capitalization": "Jak w zdaniu", "lowercase": "ma\u0142e litery", "UPPERCASE": "WIELKIE LITERY", "Title Case": "Jak Nazwy W\u0142asne", "permanent pen": "marker", "Permanent Pen Properties": "W\u0142a\u015bciwo\u015bci markera", "Permanent pen properties...": "W\u0142a\u015bciwo\u015bci markera...", "case change": "Zmie\u0144 wielko\u015b\u0107", "page embed": "strona osadzona", "Advanced sort...": "Sortowanie zaawansowane...", "Advanced Sort": "Sortowanie Zaawansowane", "Sort table by column ascending": "Sortuj tabel\u0119 po kolumnie rosn\u0105co", "Sort table by column descending": "Sortuj tabel\u0119 po kolumnie malej\u0105co", "Sort": "Sortuj", "Order": "Kolejno\u015b\u0107", "Sort by": "Sortuj wed\u0142ug", "Ascending": "Rosn\u0105co", "Descending": "Malej\u0105co", "Column {0}": "Kolumna {0}", "Row {0}": "Wiersz {0}", "Spellcheck...": "Sprawd\u017a pisowni\u0119...", "Misspelled word": "B\u0142\u0119dna pisownia", "Suggestions": "Sugestie", "Change": "Zmie\u0144", "Finding word suggestions": "Wyszukiwanie propozycji s\u0142\u00f3w", "Success": "Sukces", "Repair": "Napraw", "Issue {0} of {1}": "Problem {0} z {1}", "Images must be marked as decorative or have an alternative text description": "Obrazy musz\u0105 by\u0107 oznaczone jako dekoracyjne lub posiada\u0107 alternatywny opis tekstowy.", "Images must have an alternative text description. Decorative images are not allowed.": "Obrazki musz\u0105 mie\u0107 tekst alternatywny. Dekoracyjne obrazy nie s\u0105 dozwolone.", "Or provide alternative text:": "lub dodaj tekst alternatywny:", "Make image decorative:": "Uczy\u0144 obraz dekoracyjnym:", "ID attribute must be unique": "ID atrybutu musi by\u0107 unikalny", "Make ID unique": "Utw\u00f3rz unikalny ID", "Keep this ID and remove all others": "Zachowaj to ID oraz usu\u0144 inne", "Remove this ID": "Usu\u0144 to ID", "Remove all IDs": "Usu\u0144 wszystkie ID", "Checklist": "Checklista", "Anchor": "Kotwica", "Special character": "Znak specjalny", "Code sample": "Przyk\u0142ad kodu \u017ar\u00f3d\u0142owego", "Color": "Kolor", "Document properties": "W\u0142a\u015bciwo\u015bci dokumentu", "Image description": "Opis obrazka", "Image": "Obraz", "Insert link": "Wstaw \u0142\u0105cze", "Target": "Cel", "Link": "Adres \u0142\u0105cza", "Poster": "Plakat", "Media": "Media", "Print": "Drukuj", "Prev": "Poprz.", "Find and replace": "Znajd\u017a i zamie\u0144", "Whole words": "Ca\u0142e s\u0142owa", "Insert template": "Wstaw szablon" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/pt_BR.js ================================================ tinymce.addI18n('pt_BR',{ "Redo": "Refazer", "Undo": "Desfazer", "Cut": "Cortar", "Copy": "Copiar", "Paste": "Colar", "Select all": "Selecionar tudo", "New document": "Novo documento", "Ok": "Ok", "Cancel": "Cancelar", "Visual aids": "Ajuda visual", "Bold": "Negrito", "Italic": "It\u00e1lico", "Underline": "Sublinhado", "Strikethrough": "Tachado", "Superscript": "Sobrescrito", "Subscript": "Subscrito", "Clear formatting": "Limpar formata\u00e7\u00e3o", "Align left": "Alinhar \u00e0 esquerda", "Align center": "Centralizar", "Align right": "Alinhar \u00e0 direita", "Justify": "Justificar", "Bullet list": "Lista n\u00e3o ordenada", "Numbered list": "Lista ordenada", "Decrease indent": "Diminuir recuo", "Increase indent": "Aumentar recuo", "Close": "Fechar", "Formats": "Formatos", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Seu navegador n\u00e3o suporta acesso direto \u00e0 \u00e1rea de transfer\u00eancia. Por favor use os atalhos Ctrl+X - C - V do teclado", "Headers": "Cabe\u00e7alhos", "Header 1": "Cabe\u00e7alho 1", "Header 2": "Cabe\u00e7alho 2", "Header 3": "Cabe\u00e7alho 3", "Header 4": "Cabe\u00e7alho 4", "Header 5": "Cabe\u00e7alho 5", "Header 6": "Cabe\u00e7alho 6", "Headings": "T\u00edtulos", "Heading 1": "T\u00edtulo 1", "Heading 2": "T\u00edtulo 2", "Heading 3": "T\u00edtulo 3", "Heading 4": "T\u00edtulo 4", "Heading 5": "T\u00edtulo 5", "Heading 6": "T\u00edtulo 6", "Preformatted": "Pr\u00e9-formatado", "Div": "Div", "Pre": "Pre", "Code": "C\u00f3digo", "Paragraph": "Par\u00e1grafo", "Blockquote": "Aspas", "Inline": "Em linha", "Blocks": "Blocos", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 agora em modo texto plano. O conte\u00fado ser\u00e1 colado como texto plano at\u00e9 voc\u00ea desligar esta op\u00e7\u00e3o.", "Fonts": "Fontes", "Font Sizes": "Tamanhos da fonte", "Class": "Classe", "Browse for an image": "Procure uma imagem", "OR": "OU", "Drop an image here": "Solte uma imagem aqui", "Upload": "Carregar", "Block": "Bloco", "Align": "Alinhamento", "Default": "Padr\u00e3o", "Circle": "C\u00edrculo", "Disc": "Disco", "Square": "Quadrado", "Lower Alpha": "a. b. c. ...", "Lower Greek": "\u03b1. \u03b2. \u03b3. ...", "Lower Roman": "i. ii. iii. ...", "Upper Alpha": "A. B. C. ...", "Upper Roman": "I. II. III. ...", "Anchor...": "\u00c2ncora...", "Name": "Nome", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id deve come\u00e7ar com uma letra, seguido apenas por letras, n\u00fameros, tra\u00e7os, pontos, dois pontos ou sublinhados.", "You have unsaved changes are you sure you want to navigate away?": "Voc\u00ea tem mudan\u00e7as n\u00e3o salvas. Voc\u00ea tem certeza que deseja sair?", "Restore last draft": "Restaurar \u00faltimo rascunho", "Special character...": "Caractere especial...", "Source code": "C\u00f3digo fonte", "Insert\/Edit code sample": "Inserir\/Editar c\u00f3digo de exemplo", "Language": "Idioma", "Code sample...": "Exemplo de c\u00f3digo...", "Color Picker": "Seletor de Cores", "R": "R", "G": "G", "B": "B", "Left to right": "Da esquerda para a direita", "Right to left": "Da direita para a esquerda", "Emoticons": "Emoticons", "Emoticons...": "Emojis...", "Metadata and Document Properties": "Metadados e Propriedades do Documento", "Title": "T\u00edtulo", "Keywords": "Palavras-chave", "Description": "Descri\u00e7\u00e3o", "Robots": "Rob\u00f4s", "Author": "Autor", "Encoding": "Codifica\u00e7\u00e3o", "Fullscreen": "Tela cheia", "Action": "A\u00e7\u00e3o", "Shortcut": "Atalho", "Help": "Ajuda", "Address": "Endere\u00e7o", "Focus to menubar": "Foco no menu", "Focus to toolbar": "Foco na barra de ferramentas", "Focus to element path": "Foco no caminho do elemento", "Focus to contextual toolbar": "Foco na barra de ferramentas contextual", "Insert link (if link plugin activated)": "Inserir link (se o plugin de link estiver ativado)", "Save (if save plugin activated)": "Salvar (se o plugin de salvar estiver ativado)", "Find (if searchreplace plugin activated)": "Procurar (se o plugin de procurar e substituir estiver ativado)", "Plugins installed ({0}):": "Plugins instalados ({0}):", "Premium plugins:": "Plugins premium:", "Learn more...": "Saiba mais...", "You are using {0}": "Voc\u00ea est\u00e1 usando {0}", "Plugins": "Plugins", "Handy Shortcuts": "Atalhos \u00fateis", "Horizontal line": "Linha horizontal", "Insert\/edit image": "Inserir\/editar imagem", "Alternative description": "Descri\u00e7\u00e3o alternativa", "Accessibility": "Acessibilidade", "Image is decorative": "A imagem \u00e9 decorativa", "Source": "Endere\u00e7o da imagem", "Dimensions": "Dimens\u00f5es", "Constrain proportions": "Manter propor\u00e7\u00f5es", "General": "Geral", "Advanced": "Avan\u00e7ado", "Style": "Estilo", "Vertical space": "Espa\u00e7amento vertical", "Horizontal space": "Espa\u00e7amento horizontal", "Border": "Borda", "Insert image": "Inserir imagem", "Image...": "Imagem...", "Image list": "Lista de Imagens", "Rotate counterclockwise": "Girar em sentido hor\u00e1rio", "Rotate clockwise": "Girar em sentido anti-hor\u00e1rio", "Flip vertically": "Virar verticalmente", "Flip horizontally": "Virar horizontalmente", "Edit image": "Editar imagem", "Image options": "Op\u00e7\u00f5es de Imagem", "Zoom in": "Aumentar zoom", "Zoom out": "Diminuir zoom", "Crop": "Cortar", "Resize": "Redimensionar", "Orientation": "Orienta\u00e7\u00e3o", "Brightness": "Brilho", "Sharpen": "Aumentar nitidez", "Contrast": "Contraste", "Color levels": "N\u00edveis de cor", "Gamma": "Gama", "Invert": "Inverter", "Apply": "Aplicar", "Back": "Voltar", "Insert date\/time": "Inserir data\/hora", "Date\/time": "data\/hora", "Insert\/edit link": "Inserir\/editar link", "Text to display": "Texto para mostrar", "Url": "Url", "Open link in...": "Abrir link em...", "Current window": "Janela atual", "None": "Nenhum", "New window": "Nova janela", "Open link": "Abrir link", "Remove link": "Remover link", "Anchors": "\u00c2ncoras", "Link...": "Link...", "Paste or type a link": "Cole ou digite um Link", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "A URL que voc\u00ea informou parece ser um link externo. Deseja incluir o prefixo http:\/\/?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "A URL informada parece ser um link externo. Voc\u00ea quer adicionar o prefixo necess\u00e1rio https:\/\/ ?", "Link list": "Lista de Links", "Insert video": "Inserir v\u00eddeo", "Insert\/edit video": "Inserir\/editar v\u00eddeo", "Insert\/edit media": "Inserir\/editar imagem", "Alternative source": "Fonte alternativa", "Alternative source URL": "Endere\u00e7o URL alternativo", "Media poster (Image URL)": "Post de m\u00eddia (URL da Imagem)", "Paste your embed code below:": "Insira o c\u00f3digo de incorpora\u00e7\u00e3o abaixo:", "Embed": "Incorporar", "Media...": "M\u00eddia...", "Nonbreaking space": "Espa\u00e7o n\u00e3o separ\u00e1vel", "Page break": "Quebra de p\u00e1gina", "Paste as text": "Colar como texto", "Preview": "Pr\u00e9-visualizar", "Print...": "Imprimir...", "Save": "Salvar", "Find": "Localizar", "Replace with": "Substituir por", "Replace": "Substituir", "Replace all": "Substituir tudo", "Previous": "Anterior", "Next": "Pr\u00f3ximo", "Find and Replace": "Localizar e substituir", "Find and replace...": "Encontrar e substituir...", "Could not find the specified string.": "N\u00e3o foi poss\u00edvel encontrar o termo especificado", "Match case": "Diferenciar mai\u00fasculas e min\u00fasculas", "Find whole words only": "Encontrar somente palavras inteiras", "Find in selection": "Localizar na sele\u00e7\u00e3o", "Spellcheck": "Corretor ortogr\u00e1fico", "Spellcheck Language": "Idioma de verifica\u00e7\u00e3o ortogr\u00e1fica", "No misspellings found.": "Sem erros ortogr\u00e1ficos", "Ignore": "Ignorar", "Ignore all": "Ignorar tudo", "Finish": "Finalizar", "Add to Dictionary": "Adicionar ao Dicion\u00e1rio", "Insert table": "Inserir tabela", "Table properties": "Propriedades da tabela", "Delete table": "Excluir tabela", "Cell": "C\u00e9lula", "Row": "Linha", "Column": "Coluna", "Cell properties": "Propriedades da c\u00e9lula", "Merge cells": "Agrupar c\u00e9lulas", "Split cell": "Dividir c\u00e9lula", "Insert row before": "Inserir linha antes", "Insert row after": "Inserir linha depois", "Delete row": "Excluir linha", "Row properties": "Propriedades da linha", "Cut row": "Recortar linha", "Copy row": "Copiar linha", "Paste row before": "Colar linha antes", "Paste row after": "Colar linha depois", "Insert column before": "Inserir coluna antes", "Insert column after": "Inserir coluna depois", "Delete column": "Excluir coluna", "Cols": "Colunas", "Rows": "Linhas", "Width": "Largura", "Height": "Altura", "Cell spacing": "Espa\u00e7amento da c\u00e9lula", "Cell padding": "Espa\u00e7amento interno da c\u00e9lula", "Caption": "Legenda", "Show caption": "Mostrar descri\u00e7\u00e3o", "Left": "Esquerdo", "Center": "Centro", "Right": "Direita", "Cell type": "Tipo de c\u00e9lula", "Scope": "Escopo", "Alignment": "Alinhamento", "H Align": "Alinhamento H", "V Align": "Alinhamento V", "Top": "Superior", "Middle": "Meio", "Bottom": "Inferior", "Header cell": "C\u00e9lula cabe\u00e7alho", "Row group": "Agrupar linha", "Column group": "Agrupar coluna", "Row type": "Tipo de linha", "Header": "Cabe\u00e7alho", "Body": "Corpo", "Footer": "Rodap\u00e9", "Border color": "Cor da borda", "Insert template...": "Inserir modelo...", "Templates": "Modelos", "Template": "Modelo", "Text color": "Cor do texto", "Background color": "Cor do fundo", "Custom...": "Personalizado...", "Custom color": "Cor personalizada", "No color": "Nenhuma cor", "Remove color": "Remover cor", "Table of Contents": "\u00edndice de Conte\u00fado", "Show blocks": "Mostrar blocos", "Show invisible characters": "Exibir caracteres invis\u00edveis", "Word count": "Contador de palavras", "Count": "Contar", "Document": "Documento", "Selection": "Sele\u00e7\u00e3o", "Words": "Palavras", "Words: {0}": "Palavras: {0}", "{0} words": "{0} palavras", "File": "Arquivo", "Edit": "Editar", "Insert": "Inserir", "View": "Visualizar", "Format": "Formatar", "Table": "Tabela", "Tools": "Ferramentas", "Powered by {0}": "Distribu\u00eddo por {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto formatado. Pressione ALT-F9 para exibir o menu, ALT-F10 para exibir a barra de ferramentas ou ALT-0 para exibir a ajuda", "Image title": "T\u00edtulo da imagem", "Border width": "Espessura da borda", "Border style": "Estilo da borda", "Error": "Erro", "Warn": "Aviso", "Valid": "V\u00e1lido", "To open the popup, press Shift+Enter": "Para abrir a popup, aperte Shit+Enter", "Rich Text Area. Press ALT-0 for help.": "\u00c1rea Rich Text. Aperte ALT-0 para ajuda.", "System Font": "Fonte do sistema", "Failed to upload image: {0}": "Falha no upload da imagem: {0}", "Failed to load plugin: {0} from url {1}": "Falha ao carregar plugin: {0} da url {1}", "Failed to load plugin url: {0}": "Falha ao carregar url do plugin: {0}", "Failed to initialize plugin: {0}": "Falha ao inicializar plugin: {0}", "example": "exemplo", "Search": "Pesquisar", "All": "Tudo", "Currency": "Moeda", "Text": "Texto", "Quotations": "Cita\u00e7\u00f5es", "Mathematical": "Matem\u00e1tico", "Extended Latin": "Latino estendido", "Symbols": "S\u00edmbolos", "Arrows": "Setas", "User Defined": "Definido pelo Usu\u00e1rio", "dollar sign": "s\u00edmbolo de d\u00f3lar", "currency sign": "s\u00edmbolo de moeda", "euro-currency sign": "s\u00edmbolo de euro", "colon sign": "s\u00edmbolo de dois pontos", "cruzeiro sign": "s\u00edmbolo de cruzeiro", "french franc sign": "s\u00edmbolo de franco franc\u00eas", "lira sign": "s\u00edmbolo de lira", "mill sign": "s\u00edmbolo do mill", "naira sign": "s\u00edmbolo da naira", "peseta sign": "s\u00edmbolo da peseta", "rupee sign": "s\u00edmbolo da r\u00fapia", "won sign": "s\u00edmbolo do won", "new sheqel sign": "s\u00edmbolo do novo sheqel", "dong sign": "s\u00edmbolo do dong", "kip sign": "s\u00edmbolo do kip", "tugrik sign": "s\u00edmbolo do tugrik", "drachma sign": "s\u00edmbolo do drachma", "german penny symbol": "s\u00edmbolo de centavo alem\u00e3o", "peso sign": "s\u00edmbolo do peso", "guarani sign": "s\u00edmbolo do guarani", "austral sign": "s\u00edmbolo do austral", "hryvnia sign": "s\u00edmbolo do hryvnia", "cedi sign": "s\u00edmbolo do cedi", "livre tournois sign": "s\u00edmbolo do livre tournois", "spesmilo sign": "s\u00edmbolo do spesmilo", "tenge sign": "s\u00edmbolo do tenge", "indian rupee sign": "s\u00edmbolo de r\u00fapia indiana", "turkish lira sign": "s\u00edmbolo de lira turca", "nordic mark sign": "s\u00edmbolo do marco n\u00f3rdico", "manat sign": "s\u00edmbolo do manat", "ruble sign": "s\u00edmbolo do rublo", "yen character": "caractere do yen", "yuan character": "caractere do yuan", "yuan character, in hong kong and taiwan": "caractere do yuan, em Hong Kong e Taiwan", "yen\/yuan character variant one": "varia\u00e7\u00e3o do caractere de yen\/yuan", "Loading emoticons...": "Carregando emojis...", "Could not load emoticons": "N\u00e3o foi poss\u00edvel carregar emojis", "People": "Pessoas", "Animals and Nature": "Animais e Natureza", "Food and Drink": "Comida e Bebida", "Activity": "Atividade", "Travel and Places": "Viagem e Lugares", "Objects": "Objetos", "Flags": "Bandeiras", "Characters": "Caracteres", "Characters (no spaces)": "Caracteres (sem espa\u00e7os)", "{0} characters": "{0} caracteres", "Error: Form submit field collision.": "Erro: colis\u00e3o de bot\u00e3o de envio do formul\u00e1rio.", "Error: No form element found.": "Erro: elemento de formul\u00e1rio n\u00e3o encontrado.", "Update": "Atualizar", "Color swatch": "Amostra de cor", "Turquoise": "Turquesa", "Green": "Verde", "Blue": "Azul", "Purple": "Roxo", "Navy Blue": "Azul marinho", "Dark Turquoise": "Turquesa escuro", "Dark Green": "Verde escuro", "Medium Blue": "Azul m\u00e9dio", "Medium Purple": "Roxo m\u00e9dio", "Midnight Blue": "Azul meia-noite", "Yellow": "Amarelo", "Orange": "Laranja", "Red": "Vermelho", "Light Gray": "Cinza claro", "Gray": "Cinza", "Dark Yellow": "Amarelo escuro", "Dark Orange": "Laranja escuro", "Dark Red": "Vermelho escuro", "Medium Gray": "Cinza m\u00e9dio", "Dark Gray": "Cinza escuro", "Light Green": "Verde claro", "Light Yellow": "Amarelo claro", "Light Red": "Vermelho claro", "Light Purple": "Roxo claro", "Light Blue": "Azul claro", "Dark Purple": "Roxo escuro", "Dark Blue": "Azul escuro", "Black": "Preto", "White": "Branco", "Switch to or from fullscreen mode": "Abrir ou fechar modo de tela cheia", "Open help dialog": "Abrir janela de ajuda", "history": "hist\u00f3rico", "styles": "estilos", "formatting": "formata\u00e7\u00e3o", "alignment": "alinhamento", "indentation": "indenta\u00e7\u00e3o", "Font": "Fonte", "Size": "Tamanho", "More...": "Mais...", "Select...": "Selecionar...", "Preferences": "Prefer\u00eancias", "Yes": "Sim", "No": "N\u00e3o", "Keyboard Navigation": "Navega\u00e7\u00e3o por Teclado", "Version": "Vers\u00e3o", "Code view": "Ver c\u00f3digo", "Open popup menu for split buttons": "Abrir menu popup para bot\u00f5es com divis\u00e3o", "List Properties": "Listar Propriedades", "List properties...": "Listar propriedades...", "Start list at number": "Iniciar a lista no n\u00famero", "Line height": "Altura da linha", "comments": "coment\u00e1rios", "Format Painter": "Pincel de Formata\u00e7\u00e3o", "Insert\/edit iframe": "Inserir\/editar iframe", "Capitalization": "Capitaliza\u00e7\u00e3o", "lowercase": "min\u00fasculos", "UPPERCASE": "MAI\u00daSCULAS", "Title Case": "T\u00edtulo do caso", "permanent pen": "caneta permanente", "Permanent Pen Properties": "Propriedades da caneta permanente", "Permanent pen properties...": "Propriedades de caneta permanentes...", "case change": "mudar caixa", "page embed": "embutir p\u00e1gina", "Advanced sort...": "Ordena\u00e7\u00e3o avan\u00e7ada...", "Advanced Sort": "Ordena\u00e7\u00e3o Avan\u00e7ada...", "Sort table by column ascending": "Ordenar tabela por coluna ascendente", "Sort table by column descending": "Ordenar tabela por coluna descendente", "Sort": "Ordenar", "Order": "Ordem", "Sort by": "Ordenar por", "Ascending": "Ascendente", "Descending": "Descendente", "Column {0}": "Coluna {0}", "Row {0}": "Linha {0}", "Spellcheck...": "Verifica\u00e7\u00e3o ortogr\u00e1fica", "Misspelled word": "Palavra com erro ortogr\u00e1fico", "Suggestions": "Sugest\u00f5es", "Change": "Mudar", "Finding word suggestions": "Encontrando sugest\u00f5es de palavras", "Success": "Sucesso", "Repair": "Reparo", "Issue {0} of {1}": "Problema {0} de {1}", "Images must be marked as decorative or have an alternative text description": "Imagens precisam ser marcadas como decorativas ou terem uma descri\u00e7\u00e3o alternativa de texto", "Images must have an alternative text description. Decorative images are not allowed.": "Imagens precisam ter uma descri\u00e7\u00e3o alternativa de texto. Imagens decorativas n\u00e3o s\u00e3o permitidas.", "Or provide alternative text:": "Ou informe um texto alternativo:", "Make image decorative:": "Fa\u00e7a imagem decorativa:", "ID attribute must be unique": "O atributo ID precisa ser \u00fanico", "Make ID unique": "Fa\u00e7a um ID \u00fanico", "Keep this ID and remove all others": "Mantenha esse ID e remova todos os outros", "Remove this ID": "Remova esse ID", "Remove all IDs": "Remova todos os IDs", "Checklist": "Lista de checagem", "Anchor": "\u00c2ncora", "Special character": "Caracteres especiais", "Code sample": "Exemplo de c\u00f3digo", "Color": "Cor", "Document properties": "Propriedades do documento", "Image description": "Inserir descri\u00e7\u00e3o", "Image": "Imagem", "Insert link": "Inserir link", "Target": "Alvo", "Link": "Link", "Poster": "Autor", "Media": "imagem", "Print": "Imprimir", "Prev": "Anterior", "Find and replace": "Localizar e substituir", "Whole words": "Palavras inteiras", "Insert template": "Inserir modelo" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/pt_PT.js ================================================ tinymce.addI18n('pt_PT',{ "Redo": "Refazer", "Undo": "Anular", "Cut": "Cortar", "Copy": "Copiar", "Paste": "Colar", "Select all": "Selecionar tudo", "New document": "Novo documento", "Ok": "Ok", "Cancel": "Cancelar", "Visual aids": "Ajuda visual", "Bold": "Negrito", "Italic": "It\u00e1lico", "Underline": "Sublinhado", "Strikethrough": "Rasurado", "Superscript": "Superior \u00e0 linha", "Subscript": "Inferior \u00e0 linha", "Clear formatting": "Limpar formata\u00e7\u00e3o", "Align left": "Alinhar \u00e0 esquerda", "Align center": "Alinhar ao centro", "Align right": "Alinhar \u00e0 direita", "Justify": "Justificar", "Bullet list": "Lista com marcas", "Numbered list": "Lista numerada", "Decrease indent": "Diminuir avan\u00e7o", "Increase indent": "Aumentar avan\u00e7o", "Close": "Fechar", "Formats": "Formatos", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "O seu navegador n\u00e3o suporta acesso direto \u00e0 \u00e1rea de transfer\u00eancia. Por favor, use os atalhos Ctrl+X\/C\/V do seu teclado.", "Headers": "Cabe\u00e7alhos", "Header 1": "Cabe\u00e7alho 1", "Header 2": "Cabe\u00e7alho 2", "Header 3": "Cabe\u00e7alho 3", "Header 4": "Cabe\u00e7alho 4", "Header 5": "Cabe\u00e7alho 5", "Header 6": "Cabe\u00e7alho 6", "Headings": "T\u00edtulos", "Heading 1": "T\u00edtulo 1", "Heading 2": "T\u00edtulo 2", "Heading 3": "T\u00edtulo 3", "Heading 4": "T\u00edtulo 4", "Heading 5": "T\u00edtulo 5", "Heading 6": "T\u00edtulo 6", "Preformatted": "Pr\u00e9-formatado", "Div": "Div", "Pre": "Pre", "Code": "C\u00f3digo", "Paragraph": "Par\u00e1grafo", "Blockquote": "Blockquote", "Inline": "Inline", "Blocks": "Blocos", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 em modo de texto simples. O conte\u00fado ser\u00e1 colado como texto simples at\u00e9 desativar esta op\u00e7\u00e3o.", "Fonts": "Tipos de letra", "Font Sizes": "Tamanhos dos tipos de letra", "Class": "Classe", "Browse for an image": "Procurar uma imagem", "OR": "OU", "Drop an image here": "Largar aqui uma imagem", "Upload": "Carregar", "Block": "Bloco", "Align": "Alinhar", "Default": "Padr\u00e3o", "Circle": "C\u00edrculo", "Disc": "Disco", "Square": "Quadrado", "Lower Alpha": "a. b. c. ...", "Lower Greek": "\\u03b1. \\u03b2. \\u03b3. ...", "Lower Roman": "i. ii. iii. ...", "Upper Alpha": "A. B. C. ...", "Upper Roman": "I. II. III. ...", "Anchor...": "\u00c2ncora...", "Name": "Nome", "Id": "ID", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "O ID deve come\u00e7ar com uma letra, seguido apenas por letras, n\u00fameros, pontos, dois pontos, tra\u00e7os ou sobtra\u00e7os.", "You have unsaved changes are you sure you want to navigate away?": "Existem altera\u00e7\u00f5es que ainda n\u00e3o foram guardadas. Tem a certeza que pretende sair?", "Restore last draft": "Restaurar o \u00faltimo rascunho", "Special character...": "Car\u00e1ter especial...", "Source code": "C\u00f3digo fonte", "Insert\/Edit code sample": "Inserir\/editar amostra de c\u00f3digo", "Language": "Idioma", "Code sample...": "Amostra de c\u00f3digo...", "Color Picker": "Seletor de cores", "R": "R", "G": "G", "B": "B", "Left to right": "Da esquerda para a direita", "Right to left": "Da direita para a esquerda", "Emoticons": "Emo\u00e7\u00f5es", "Emoticons...": "\u00cdcones expressivos...", "Metadata and Document Properties": "Metadados e propriedades do documento", "Title": "T\u00edtulo", "Keywords": "Palavras-chave", "Description": "Descri\u00e7\u00e3o", "Robots": "Rob\u00f4s", "Author": "Autor", "Encoding": "Codifica\u00e7\u00e3o", "Fullscreen": "Ecr\u00e3 completo", "Action": "A\u00e7\u00e3o", "Shortcut": "Atalho", "Help": "Ajuda", "Address": "Endere\u00e7o", "Focus to menubar": "Foco na barra de menu", "Focus to toolbar": "Foco na barra de ferramentas", "Focus to element path": "Foco no caminho do elemento", "Focus to contextual toolbar": "Foco na barra de contexto", "Insert link (if link plugin activated)": "Inserir hiperliga\u00e7\u00e3o (se o plugin de liga\u00e7\u00f5es estiver ativado)", "Save (if save plugin activated)": "Guardar (se o plugin de guardar estiver ativado)", "Find (if searchreplace plugin activated)": "Pesquisar (se o plugin pesquisar e substituir estiver ativado)", "Plugins installed ({0}):": "Plugins instalados ({0}):", "Premium plugins:": "Plugins comerciais:", "Learn more...": "Saiba mais...", "You are using {0}": "Est\u00e1 a usar {0}", "Plugins": "Plugins", "Handy Shortcuts": "Atalhos \u00fateis", "Horizontal line": "Linha horizontal", "Insert\/edit image": "Inserir\/editar imagem", "Alternative description": "Descri\u00e7\u00e3o alternativa", "Accessibility": "Acessibilidade", "Image is decorative": "Imagem \u00e9 decorativa", "Source": "Localiza\u00e7\u00e3o", "Dimensions": "Dimens\u00f5es", "Constrain proportions": "Manter propor\u00e7\u00f5es", "General": "Geral", "Advanced": "Avan\u00e7ado", "Style": "Estilo", "Vertical space": "Espa\u00e7amento vertical", "Horizontal space": "Espa\u00e7amento horizontal", "Border": "Contorno", "Insert image": "Inserir imagem", "Image...": "Imagem...", "Image list": "Lista de imagens", "Rotate counterclockwise": "Rota\u00e7\u00e3o anti-hor\u00e1ria", "Rotate clockwise": "Rota\u00e7\u00e3o hor\u00e1ria", "Flip vertically": "Inverter verticalmente", "Flip horizontally": "Inverter horizontalmente", "Edit image": "Editar imagem", "Image options": "Op\u00e7\u00f5es de imagem", "Zoom in": "Mais zoom", "Zoom out": "Menos zoom", "Crop": "Recortar", "Resize": "Redimensionar", "Orientation": "Orienta\u00e7\u00e3o", "Brightness": "Brilho", "Sharpen": "Mais nitidez", "Contrast": "Contraste", "Color levels": "N\u00edveis de cor", "Gamma": "Gama", "Invert": "Inverter", "Apply": "Aplicar", "Back": "Voltar", "Insert date\/time": "Inserir data\/hora", "Date\/time": "Data\/hora", "Insert\/edit link": "Inserir\/editar liga\u00e7\u00e3o", "Text to display": "Texto a exibir", "Url": "URL", "Open link in...": "Abrir liga\u00e7\u00e3o em...", "Current window": "Janela atual", "None": "Nenhum", "New window": "Nova janela", "Open link": "Abrir liga\u00e7\u00e3o", "Remove link": "Remover liga\u00e7\u00e3o", "Anchors": "\u00c2ncora", "Link...": "Liga\u00e7\u00e3o...", "Paste or type a link": "Copiar ou escrever uma hiperliga\u00e7\u00e3o", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "O URL que indicou parece ser um endere\u00e7o de email. Quer adicionar o prefixo mailto: tal como necess\u00e1rio?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "O URL que indicou parece ser um endere\u00e7o web. Quer adicionar o prefixo http:\/\/ tal como necess\u00e1rio?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "O URL que introduziu parece ser uma liga\u00e7\u00e3o externa. Deseja adicionar-lhe o prefixo https:\/\/ ?", "Link list": "Lista de liga\u00e7\u00f5es", "Insert video": "Inserir v\u00eddeo", "Insert\/edit video": "Inserir\/editar v\u00eddeo", "Insert\/edit media": "Inserir\/editar media", "Alternative source": "Localiza\u00e7\u00e3o alternativa", "Alternative source URL": "URL da origem alternativa", "Media poster (Image URL)": "Publicador de media (URL da imagem)", "Paste your embed code below:": "Colar c\u00f3digo para embeber:", "Embed": "Embeber", "Media...": "Media...", "Nonbreaking space": "Espa\u00e7o n\u00e3o quebr\u00e1vel", "Page break": "Quebra de p\u00e1gina", "Paste as text": "Colar como texto", "Preview": "Pr\u00e9-visualizar", "Print...": "Imprimir...", "Save": "Guardar", "Find": "Pesquisar", "Replace with": "Substituir por", "Replace": "Substituir", "Replace all": "Substituir tudo", "Previous": "Anterior", "Next": "Pr\u00f3ximo", "Find and Replace": "Pesquisar e substituir", "Find and replace...": "Localizar e substituir...", "Could not find the specified string.": "N\u00e3o foi poss\u00edvel localizar o termo especificado.", "Match case": "Diferenciar mai\u00fasculas e min\u00fasculas", "Find whole words only": "Localizar apenas palavras inteiras", "Find in selection": "Pesquisar na selec\u00e7\u00e3o", "Spellcheck": "Corretor ortogr\u00e1fico", "Spellcheck Language": "Idioma de verifica\u00e7\u00e3o lingu\u00edstica", "No misspellings found.": "N\u00e3o foram encontrados erros ortogr\u00e1ficos.", "Ignore": "Ignorar", "Ignore all": "Ignorar tudo", "Finish": "Concluir", "Add to Dictionary": "Adicionar ao dicion\u00e1rio", "Insert table": "Inserir tabela", "Table properties": "Propriedades da tabela", "Delete table": "Eliminar tabela", "Cell": "C\u00e9lula", "Row": "Linha", "Column": "Coluna", "Cell properties": "Propriedades da c\u00e9lula", "Merge cells": "Unir c\u00e9lulas", "Split cell": "Dividir c\u00e9lula", "Insert row before": "Inserir linha antes", "Insert row after": "Inserir linha depois", "Delete row": "Eliminar linha", "Row properties": "Propriedades da linha", "Cut row": "Cortar linha", "Copy row": "Copiar linha", "Paste row before": "Colar linha antes", "Paste row after": "Colar linha depois", "Insert column before": "Inserir coluna antes", "Insert column after": "Inserir coluna depois", "Delete column": "Eliminar coluna", "Cols": "Colunas", "Rows": "Linhas", "Width": "Largura", "Height": "Altura", "Cell spacing": "Espa\u00e7amento entre c\u00e9lulas", "Cell padding": "Espa\u00e7amento interno da c\u00e9lula", "Caption": "Legenda", "Show caption": "Mostrar legenda", "Left": "Esquerda", "Center": "Centro", "Right": "Direita", "Cell type": "Tipo de c\u00e9lula", "Scope": "Escopo", "Alignment": "Alinhamento", "H Align": "Alinhamento H", "V Align": "Alinhamento V", "Top": "Superior", "Middle": "Meio", "Bottom": "Inferior", "Header cell": "C\u00e9lula de cabe\u00e7alho", "Row group": "Agrupar linha", "Column group": "Agrupar coluna", "Row type": "Tipo de linha", "Header": "Cabe\u00e7alho", "Body": "Corpo", "Footer": "Rodap\u00e9", "Border color": "Cor de contorno", "Insert template...": "Inserir modelo...", "Templates": "Modelos", "Template": "Tema", "Text color": "Cor do texto", "Background color": "Cor de fundo", "Custom...": "Personalizada...", "Custom color": "Cor personalizada", "No color": "Sem cor", "Remove color": "Remover cor", "Table of Contents": "\u00cdndice", "Show blocks": "Mostrar blocos", "Show invisible characters": "Mostrar caracteres invis\u00edveis", "Word count": "Contagem de palavras", "Count": "Contagem", "Document": "Documento", "Selection": "Sele\u00e7\u00e3o", "Words": "Palavras", "Words: {0}": "Palavras: {0}", "{0} words": "{0} palavras", "File": "Ficheiro", "Edit": "Editar", "Insert": "Inserir", "View": "Ver", "Format": "Formatar", "Table": "Tabela", "Tools": "Ferramentas", "Powered by {0}": "Criado em {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Caixa de texto formatado. Pressione ALT-F9 para exibir o menu. Pressione ALT-F10 para exibir a barra de ferramentas. Pressione ALT-0 para exibir a ajuda", "Image title": "T\u00edtulo da imagem", "Border width": "Largura do limite", "Border style": "Estilo do limite", "Error": "Erro", "Warn": "Aviso", "Valid": "V\u00e1lido", "To open the popup, press Shift+Enter": "Para abrir o pop-up, prima Shift+Enter", "Rich Text Area. Press ALT-0 for help.": "\u00c1rea de texto formatado. Prima ALT-0 para exibir a ajuda.", "System Font": "Tipo de letra do sistema", "Failed to upload image: {0}": "Falha ao carregar imagem: {0}", "Failed to load plugin: {0} from url {1}": "Falha ao carregar plugin: {0} do URL {1}", "Failed to load plugin url: {0}": "Falha ao carregar o URL do plugin: {0}", "Failed to initialize plugin: {0}": "Falha ao inicializar plugin: {0}", "example": "exemplo", "Search": "Pesquisar", "All": "Tudo", "Currency": "Moeda", "Text": "Texto", "Quotations": "Aspas", "Mathematical": "Matem\u00e1tico", "Extended Latin": "Carateres latinos estendidos", "Symbols": "S\u00edmbolos", "Arrows": "Setas", "User Defined": "Definido pelo utilizador", "dollar sign": "cifr\u00e3o", "currency sign": "sinal monet\u00e1rio", "euro-currency sign": "sinal monet\u00e1rio do euro", "colon sign": "sinal de dois pontos", "cruzeiro sign": "sinal de cruzeiro", "french franc sign": "sinal de franco franc\u00eas", "lira sign": "sinal de lira", "mill sign": "sinal de por mil", "naira sign": "sinal de naira", "peseta sign": "sinal de peseta", "rupee sign": "sinal de r\u00fapia", "won sign": "sinal de won", "new sheqel sign": "sinal de novo sheqel", "dong sign": "sinal de dong", "kip sign": "sinal kip", "tugrik sign": "sinal tugrik", "drachma sign": "sinal drachma", "german penny symbol": "sinal de penny alem\u00e3o", "peso sign": "sinal de peso", "guarani sign": "sinal de guarani", "austral sign": "sinal de austral", "hryvnia sign": "sinal hryvnia", "cedi sign": "sinal de cedi", "livre tournois sign": "sinal de libra de tours", "spesmilo sign": "sinal de spesmilo", "tenge sign": "sinal de tengue", "indian rupee sign": "sinal de rupia indiana", "turkish lira sign": "sinal de lira turca", "nordic mark sign": "sinal de marca n\u00f3rdica", "manat sign": "sinal manat", "ruble sign": "sinal de rublo", "yen character": "sinal de iene", "yuan character": "sinal de iuane", "yuan character, in hong kong and taiwan": "sinal de iuane, em Hong Kong e Taiwan", "yen\/yuan character variant one": "variante um de sinal de iene\/iuane", "Loading emoticons...": "A carregar \u00edcones expressivos...", "Could not load emoticons": "N\u00e3o foi poss\u00edvel carregar \u00edcones expressivos", "People": "Pessoas", "Animals and Nature": "Animais e natureza", "Food and Drink": "Comida e bebida", "Activity": "Atividade", "Travel and Places": "Viagens e lugares", "Objects": "Objetos", "Flags": "Bandeiras", "Characters": "Carateres", "Characters (no spaces)": "Carateres (sem espa\u00e7os)", "{0} characters": "{0} carateres", "Error: Form submit field collision.": "Erro: conflito no campo de submiss\u00e3o de formul\u00e1rio.", "Error: No form element found.": "Erro: nenhum elemento de formul\u00e1rio encontrado.", "Update": "Atualizar", "Color swatch": "Cole\u00e7\u00e3o de cores", "Turquoise": "Turquesa", "Green": "Verde", "Blue": "Azul", "Purple": "P\u00farpura", "Navy Blue": "Azul-atl\u00e2ntico", "Dark Turquoise": "Turquesa escuro", "Dark Green": "Verde escuro", "Medium Blue": "Azul interm\u00e9dio", "Medium Purple": "P\u00farpura interm\u00e9dio", "Midnight Blue": "Azul muito escuro", "Yellow": "Amarelo", "Orange": "Laranja", "Red": "Vermelho", "Light Gray": "Cinzento claro", "Gray": "Cinzento", "Dark Yellow": "Amarelo escuro", "Dark Orange": "Laranja escuro", "Dark Red": "Vermelho escuro", "Medium Gray": "Cinzento m\u00e9dio", "Dark Gray": "Cinzento escuro", "Light Green": "Verde claro", "Light Yellow": "Amarelo claro", "Light Red": "Vermelho claro", "Light Purple": "P\u00farpura claro", "Light Blue": "Azul claro", "Dark Purple": "P\u00farpura escuro", "Dark Blue": "Azul escuro", "Black": "Preto", "White": "Branco", "Switch to or from fullscreen mode": "Entrar ou sair do modo de ecr\u00e3 inteiro", "Open help dialog": "Abrir caixa de di\u00e1logo Ajuda", "history": "hist\u00f3rico", "styles": "estilos", "formatting": "formata\u00e7\u00e3o", "alignment": "alinhamento", "indentation": "avan\u00e7o", "Font": "Tipo de letra", "Size": "Tamanho", "More...": "Mais...", "Select...": "Selecionar...", "Preferences": "Prefer\u00eancias", "Yes": "Sim", "No": "N\u00e3o", "Keyboard Navigation": "Navega\u00e7\u00e3o com teclado", "Version": "Vers\u00e3o", "Code view": "Vista do c\u00f3digo-fonte", "Open popup menu for split buttons": "Abrir o menu popup para bot\u00f5es divididos", "List Properties": "Propriedades da lista", "List properties...": "Propriedades da lista\u2026", "Start list at number": "Come\u00e7ar a lista pelo n\u00famero", "Line height": "Altura da linha", "comments": "coment\u00e1rios", "Format Painter": "Pincel de formata\u00e7\u00e3o", "Insert\/edit iframe": "Inserir\/editar iframe", "Capitalization": "Capitaliza\u00e7\u00e3o", "lowercase": "min\u00fasculas", "UPPERCASE": "MAI\u00daSCULAS", "Title Case": "Iniciais mai\u00fasculas", "permanent pen": "caneta permanente", "Permanent Pen Properties": "Propriedades da Caneta Permanente", "Permanent pen properties...": "Propriedades da caneta permanente...", "case change": "mudan\u00e7a de capitaliza\u00e7\u00e3o", "page embed": "incorporar p\u00e1gina", "Advanced sort...": "Ordena\u00e7\u00e3o avan\u00e7ada\u2026", "Advanced Sort": "Ordena\u00e7\u00e3o avan\u00e7ada", "Sort table by column ascending": "Ordenar tabela por coluna ascendente", "Sort table by column descending": "Ordenar tabela por coluna descendente", "Sort": "Ordenar", "Order": "Ordem", "Sort by": "Ordenar por", "Ascending": "Ascendente", "Descending": "Descendente", "Column {0}": "Coluna {0}", "Row {0}": "Linha {0}", "Spellcheck...": "Verifica\u00e7\u00e3o ortogr\u00e1fica...", "Misspelled word": "Palavra mal escrita", "Suggestions": "Sugest\u00f5es", "Change": "Alterar", "Finding word suggestions": "Encontrar sugest\u00f5es de palavras", "Success": "Sucesso", "Repair": "Reparar", "Issue {0} of {1}": "Problema {0} de {1}", "Images must be marked as decorative or have an alternative text description": "As imagens devem ser marcadas como decorativas ou ter uma descri\u00e7\u00e3o textual alternativa", "Images must have an alternative text description. Decorative images are not allowed.": "As imagens devem ter uma descri\u00e7\u00e3o textual alternativa. N\u00e3o s\u00e3o permitidas imagens meramente decorativas.", "Or provide alternative text:": "Ou forne\u00e7a um texto alternativo:", "Make image decorative:": "Marque a imagem como decorativa:", "ID attribute must be unique": "O atributo ID tem de ser \u00fanico", "Make ID unique": "Tornar o ID \u00fanico", "Keep this ID and remove all others": "Mantenha este ID e remova todos os outros", "Remove this ID": "Remover este ID", "Remove all IDs": "Remover todos os IDs", "Checklist": "Lista de verifica\u00e7\u00e3o", "Anchor": "\u00c2ncora", "Special character": "Car\u00e1cter especial", "Code sample": "Amostra de c\u00f3digo", "Color": "Cor", "Document properties": "Propriedades do documento", "Image description": "Descri\u00e7\u00e3o da imagem", "Image": "Imagem", "Insert link": "Inserir liga\u00e7\u00e3o", "Target": "Alvo", "Link": "Liga\u00e7\u00e3o", "Poster": "Autor", "Media": "Media", "Print": "Imprimir", "Prev": "Anterior", "Find and replace": "Pesquisar e substituir", "Whole words": "Palavras completas", "Insert template": "Inserir modelo" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/ro.js ================================================ tinymce.addI18n('ro',{ "Redo": "Refacere", "Undo": "Anulare", "Cut": "Decupare", "Copy": "Copiere", "Paste": "Lipire", "Select all": "Selecteaz\u0103 tot", "New document": "Document nou", "Ok": "Ok", "Cancel": "Revocare", "Visual aids": "Ajutoare vizuale", "Bold": "Aldin", "Italic": "Cursiv", "Underline": "Subliniere", "Strikethrough": "T\u0103iere", "Superscript": "Exponent", "Subscript": "Indice", "Clear formatting": "\u00cendep\u0103rtare formatare", "Align left": "Aliniere st\u00e2nga", "Align center": "Aliniere centru", "Align right": "Aliniere dreapta", "Justify": "Aliniere st\u00e2nga-dreapta", "Bullet list": "List\u0103 marcatori", "Numbered list": "List\u0103 numerotat\u0103", "Decrease indent": "Mic\u0219orare indent", "Increase indent": "M\u0103rire indent", "Close": "\u00cenchidere", "Formats": "Formate", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Browser-ul dumneavoastr\u0103 nu are acces direct la clipboard. V\u0103 rug\u0103m s\u0103 folosi\u021bi \u00een schimb scurt\u0103turile de tastatur\u0103 Ctrl+X\/C\/V.", "Headers": "Antete", "Header 1": "Antet 1", "Header 2": "Antet 2", "Header 3": "Antet 3", "Header 4": "Antet 4", "Header 5": "Antet 5", "Header 6": "Antet 6", "Headings": "Rubrici", "Heading 1": "Titlu 1", "Heading 2": "Titlu 2", "Heading 3": "Titlu 3", "Heading 4": "Titlu 4", "Heading 5": "Titlu 5", "Heading 6": "Titlu 6", "Preformatted": "Preformatat", "Div": "Div", "Pre": "Pre", "Code": "Cod", "Paragraph": "Paragraf", "Blockquote": "Blockquote", "Inline": "\u00cen linie", "Blocks": "Blocuri", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Functia \"lipe\u015fte\" este acum \u00een modul text simplu. Continutul va fi acum inserat ca text simplu p\u00e2n\u0103 c\u00e2nd aceast\u0103 op\u021biune va fi dezactivat.", "Fonts": "Fonturi", "Font Sizes": "Dimensiuni font", "Class": "Clas\u0103", "Browse for an image": "C\u0103uta\u021bi o imagine", "OR": "OR", "Drop an image here": "Glisa\u021bi o imagine aici", "Upload": "\u00cenc\u0103rcare", "Block": "Sec\u021biune", "Align": "Aliniere", "Default": "Implicit", "Circle": "Cerc", "Disc": "Disc", "Square": "P\u0103trat", "Lower Alpha": "Minuscule Alfanumerice", "Lower Greek": "Minuscule Grecesti", "Lower Roman": "Minuscule Romane", "Upper Alpha": "Majuscule Alfanumerice", "Upper Roman": "Majuscule Romane", "Anchor...": "Ancor\u0103\u2026", "Name": "Nume", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id-ul trebuie s\u0103 inceap\u0103 cu o liter\u0103, urmat\u0103 exclusiv de litere, numere, cratime, puncte, punct \u0219i virgul\u0103 sau underscore-uri.", "You have unsaved changes are you sure you want to navigate away?": "Ave\u021bi modific\u0103ri nesalvate! Sunte\u0163i sigur c\u0103 dori\u0163i s\u0103 ie\u015fiti?", "Restore last draft": "Restaurare la ultima salvare", "Special character...": "Caracter special\u2026", "Source code": "Codul surs\u0103", "Insert\/Edit code sample": "Inserare\/Editare mostr\u0103 cod", "Language": "Limba", "Code sample...": "Mostr\u0103 cod\u2026", "Color Picker": "Selector culori", "R": "R", "G": "G", "B": "B", "Left to right": "St\u00e2nga la dreapta", "Right to left": "Dreapta la st\u00e2nga", "Emoticons": "Emoticoane", "Emoticons...": "Emoticoane\u2026", "Metadata and Document Properties": "Meta date \u0219i Propriet\u0103\u021bi Document", "Title": "Titlu", "Keywords": "Cuvinte cheie", "Description": "Descriere", "Robots": "Robo\u021bi", "Author": "Autor", "Encoding": "Codare", "Fullscreen": "Pe tot ecranul", "Action": "Ac\u0163iune", "Shortcut": "Comand\u0103 rapid\u0103", "Help": "Ajutor", "Address": "Adres\u0103", "Focus to menubar": "Centrare pe bara de meniuri", "Focus to toolbar": "Centrare pe bara de unelte", "Focus to element path": "Centrare pe calea elementului", "Focus to contextual toolbar": "Centrare pe bara de unelte contextual\u0103", "Insert link (if link plugin activated)": "Inserare link (dac\u0103 modulul de link-uri este activat)", "Save (if save plugin activated)": "Salvare (dac\u0103 modulul de salvare este activat)", "Find (if searchreplace plugin activated)": "C\u0103utare (dac\u0103 modulul de c\u0103utare \u0219i \u00eenlocuire este activat)", "Plugins installed ({0}):": "Module instalate ({0}):", "Premium plugins:": "Module premium:", "Learn more...": "Afla\u021bi mai multe\u2026", "You are using {0}": "Folosi\u021bi {0}", "Plugins": "Inserturi", "Handy Shortcuts": "Comenzi rapide accesibile", "Horizontal line": "Linie orizontal\u0103", "Insert\/edit image": "Inserare\/editarea imaginilor", "Alternative description": "Descriere alternativ\u0103", "Accessibility": "Accesibilitate", "Image is decorative": "Imaginea este decorativ\u0103", "Source": "Surs\u0103", "Dimensions": "Dimensiuni", "Constrain proportions": "Constr\u00e2nge propor\u021biile", "General": "General", "Advanced": "Avansat", "Style": "Stil", "Vertical space": "Spa\u021biul vertical", "Horizontal space": "Spa\u021biul orizontal", "Border": "Bordur\u0103", "Insert image": "Inserare imagine", "Image...": "Imagine\u2026", "Image list": "List\u0103 de imagini", "Rotate counterclockwise": "Rotire \u00een sensul antiorar", "Rotate clockwise": "Rotire \u00een sensul orar", "Flip vertically": "R\u0103sturn\u0103 vertical", "Flip horizontally": "R\u0103sturn\u0103 orizontal", "Edit image": "Editare imagine", "Image options": "Op\u021biuni imagine", "Zoom in": "M\u0103rire", "Zoom out": "Mic\u015forare", "Crop": "Decupare", "Resize": "Redimensionare", "Orientation": "Orientare", "Brightness": "Str\u0103lucire", "Sharpen": "Accentuare", "Contrast": "Contrast", "Color levels": "Niveluri de culoare", "Gamma": "Gamma", "Invert": "Invers\u0103", "Apply": "Salveaz\u0103", "Back": "\u00cenapoi", "Insert date\/time": "Insereaz\u0103 data\/ora", "Date\/time": "Data\/ora", "Insert\/edit link": "Inserare\/editare link", "Text to display": "Text de afi\u0219at", "Url": "Url", "Open link in...": "Deschide link \u00een\u2026", "Current window": "Fereastra curent\u0103", "None": "Nici unul", "New window": "Fereastr\u0103 nou\u0103", "Open link": "Deschide leg\u0103tur\u0103", "Remove link": "\u0218terge link-ul", "Anchors": "Ancor\u0103", "Link...": "Link\u2026", "Paste or type a link": "Introduce\u021bi un link", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL-ul introdus pare s\u0103 fie o adres\u0103 de e-mail. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul mailto: ?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL-ul introdus pare s\u0103 fie o adres\u0103 web. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul http:\/\/ ?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Adresa URL pe care a\u021bi introdus-o pare a fi un leg\u0103tur\u0103 extern\u0103. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul https:\/\/ necesar?", "Link list": "List\u0103 linkuri", "Insert video": "Inserare video", "Insert\/edit video": "Inserare\/editare video", "Insert\/edit media": "Inserare\/editare media", "Alternative source": "Surs\u0103 alternativ\u0103", "Alternative source URL": "URL surs\u0103 alternativ\u0103", "Media poster (Image URL)": "Poster media (URL imagine)", "Paste your embed code below:": "Insera\u021bi codul:", "Embed": "Embed", "Media...": "Media\u2026", "Nonbreaking space": "Spa\u021biu neseparator", "Page break": "\u00centrerupere de pagin\u0103", "Paste as text": "Lipe\u015fte ca text", "Preview": "Previzualizare", "Print...": "Tip\u0103rire\u2026", "Save": "Salveaz\u0103", "Find": "Caut\u0103", "Replace with": "\u00cenlocuie\u015fte cu", "Replace": "\u00cenlocuie\u015fte", "Replace all": "\u00cenlocuie\u015fte toate", "Previous": "Anterior", "Next": "Precedent", "Find and Replace": "G\u0103si\u021bi \u0219i \u00eenlocui\u021bi", "Find and replace...": "C\u0103utare \u0219i \u00eenlocuire\u2026", "Could not find the specified string.": "Nu am putut g\u0103si \u0219irul specificat.", "Match case": "Distinge majuscule\/minuscule", "Find whole words only": "G\u0103se\u0219te doar cuvintele \u00eentregi", "Find in selection": "G\u0103si\u021bi \u00een selec\u021bie", "Spellcheck": "Verificarea ortografic\u0103", "Spellcheck Language": "Verificare ortografic\u0103 a limbii", "No misspellings found.": "Nu s-au g\u0103sit gre\u0219eli de ortografie.", "Ignore": "Ignor\u0103", "Ignore all": "Ignor\u0103 toate", "Finish": "Finalizeaz\u0103", "Add to Dictionary": "Adaug\u0103 \u00een Dic\u021bionar", "Insert table": "Insereaz\u0103 tabel\u0103", "Table properties": "Propriet\u0103\u021bi tabel\u0103", "Delete table": "\u0218terge tabel\u0103", "Cell": "Celul\u0103", "Row": "Linie", "Column": "Coloan\u0103", "Cell properties": "Propriet\u0103\u021bi celul\u0103", "Merge cells": "\u00cembinarea celulelor", "Split cell": "\u00cemp\u0103r\u021birea celulelor", "Insert row before": "Insereaz\u0103 \u00eenainte de linie", "Insert row after": "Insereaz\u0103 dup\u0103 linie", "Delete row": "\u0218terge linia", "Row properties": "Propriet\u0103\u021bi linie", "Cut row": "Taie linie", "Copy row": "Copiaz\u0103 linie", "Paste row before": "Lipe\u015fte \u00eenainte de linie", "Paste row after": "Lipe\u015fte linie dup\u0103", "Insert column before": "Insereaza \u00eenainte de coloan\u0103", "Insert column after": "Insereaza dup\u0103 coloan\u0103", "Delete column": "\u0218terge coloana", "Cols": "Coloane", "Rows": "Linii", "Width": "L\u0103\u0163ime", "Height": "\u00cen\u0103l\u0163ime", "Cell spacing": "Spa\u021biere celule", "Cell padding": "Spa\u021biere", "Caption": "Titlu", "Show caption": "Afi\u0219are captur\u0103", "Left": "St\u00e2nga", "Center": "Centru", "Right": "Dreapta", "Cell type": "Tip celul\u0103", "Scope": "Domeniu", "Alignment": "Aliniament", "H Align": "Aliniere H", "V Align": "Aliniere V", "Top": "Sus", "Middle": "Mijloc", "Bottom": "Jos", "Header cell": "Antet celul\u0103", "Row group": "Grup de linii", "Column group": "Grup de coloane", "Row type": "Tip de linie", "Header": "Antet", "Body": "Corp", "Footer": "Subsol", "Border color": "Culoare bordur\u0103", "Insert template...": "Inserare \u0219ablon\u2026", "Templates": "\u015eabloane", "Template": "\u0218ablon", "Text color": "Culoare text", "Background color": "Culoare fundal", "Custom...": "Personalizat...", "Custom color": "Culoare personalizat\u0103", "No color": "F\u0103r\u0103 culoare", "Remove color": "Eliminare culoare", "Table of Contents": "Cuprins", "Show blocks": "Afi\u0219are blocuri", "Show invisible characters": "Afi\u0219are caractere invizibile", "Word count": "Num\u0103r\u0103toare cuvinte", "Count": "Num\u0103r\u0103toare", "Document": "Document", "Selection": "Selec\u021bie", "Words": "Cuvinte", "Words: {0}": "Cuvinte: {0}", "{0} words": "{0} cuvinte", "File": "Fil\u0103", "Edit": "Editeaz\u0103", "Insert": "Insereaz\u0103", "View": "Vezi", "Format": "Formateaz\u0103", "Table": "Tabel\u0103", "Tools": "Unelte", "Powered by {0}": "Sus\u021binut de {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zon\u0103 cu Rich Text. Apas\u0103 ALT-F9 pentru meniu. Apas\u0103 ALT-F10 pentru bara de unelte. Apas\u0103 ALT-0 pentru ajutor", "Image title": "Titlu imagine", "Border width": "Grosime chenar", "Border style": "Stil chenar", "Error": "Eroare", "Warn": "Aten\u021bionare", "Valid": "Valid", "To open the popup, press Shift+Enter": "Pentru a deschide fereastra popup, ap\u0103sa\u021bi Shift+Enter", "Rich Text Area. Press ALT-0 for help.": "Zon\u0103 Text Formatat. Ap\u0103sa\u021bi ALT-0 pentru ajutor.", "System Font": "Font Sistem", "Failed to upload image: {0}": "Nu s-a putut \u00eenc\u0103rca imaginea: {0}", "Failed to load plugin: {0} from url {1}": "Nu s-a putut \u00eenc\u0103rca modulul: {0} de la URL-ul {1}", "Failed to load plugin url: {0}": "Nu s-a putut \u00eenc\u0103rca URL-ul modulului: {0}", "Failed to initialize plugin: {0}": "Nu s-a putut ini\u021bializa modulul: {0}", "example": "exemplu", "Search": "C\u0103utare", "All": "Tot", "Currency": "Moned\u0103", "Text": "Text", "Quotations": "Ghilimele", "Mathematical": "Simboluri matematice", "Extended Latin": "Simboluri alfabet latin extins", "Symbols": "Simboluri", "Arrows": "S\u0103ge\u021bi", "User Defined": "Definite de utilizator", "dollar sign": "simbol dolar", "currency sign": "simbol moned\u0103", "euro-currency sign": "simbol euro", "colon sign": "dou\u0103 puncte", "cruzeiro sign": "simbol cruzeiro", "french franc sign": "simbol franc francez", "lira sign": "simbol lir\u0103", "mill sign": "simbol mill", "naira sign": "simbol naira", "peseta sign": "simbol peset\u0103", "rupee sign": "simbol rupie", "won sign": "simbol won", "new sheqel sign": "simbol shekel nou", "dong sign": "simbol dong", "kip sign": "simbol kip", "tugrik sign": "simbol tugrik", "drachma sign": "simbol drahm\u0103", "german penny symbol": "simbol peni german", "peso sign": "simbol peso", "guarani sign": "simbol guarani", "austral sign": "simbol austral", "hryvnia sign": "simbol grivn\u0103", "cedi sign": "simbol cedi", "livre tournois sign": "simbol livr\u0103 tournois", "spesmilo sign": "simbol spesmilo", "tenge sign": "simbol tenge", "indian rupee sign": "simbol rupie indian\u0103", "turkish lira sign": "simbol lir\u0103 turceasc\u0103", "nordic mark sign": "simbol marc\u0103 nordic\u0103", "manat sign": "simbol manat", "ruble sign": "simbol rubl\u0103", "yen character": "simbol yen", "yuan character": "simbol yuan", "yuan character, in hong kong and taiwan": "simbol yuan \u00een Hong Kong \u0219i Taiwan", "yen\/yuan character variant one": "simbol yen\/yuan prima variant\u0103", "Loading emoticons...": "Se \u00eencarc\u0103 emoticoanele\u2026", "Could not load emoticons": "Nu s-au putut \u00eenc\u0103rca emoticoanele", "People": "Persoane", "Animals and Nature": "Animale \u0219i natur\u0103", "Food and Drink": "M\u00e2ncare \u0219i b\u0103uturi", "Activity": "Activit\u0103\u021bi", "Travel and Places": "C\u0103l\u0103torii \u0219i loca\u021bii", "Objects": "Obiecte", "Flags": "Steaguri", "Characters": "Caractere", "Characters (no spaces)": "Caractere (f\u0103r\u0103 spa\u021bii)", "{0} characters": "{0} caractere", "Error: Form submit field collision.": "Eroare: Coliziune c\u00e2mpuri la trimiterea formularului.", "Error: No form element found.": "Eroare: Niciun element de formular g\u0103sit.", "Update": "Actualizare", "Color swatch": "Mostr\u0103 de culori", "Turquoise": "Turcoaz", "Green": "Verde", "Blue": "Albastru", "Purple": "Mov", "Navy Blue": "Albastru marin", "Dark Turquoise": "Turcoaz \u00eenchis", "Dark Green": "Verde \u00eenchis", "Medium Blue": "Albastru mediu", "Medium Purple": "Mov mediu", "Midnight Blue": "Albastru \u00eenchis", "Yellow": "Galben", "Orange": "Portocaliu", "Red": "Ro\u0219u", "Light Gray": "Gri deschis", "Gray": "Gri", "Dark Yellow": "Galben \u00eenchis", "Dark Orange": "Portocaliu \u00eenchis", "Dark Red": "Ro\u0219u \u00eenchis", "Medium Gray": "Gri mediu", "Dark Gray": "Gri \u00eenchis", "Light Green": "Verde deschis", "Light Yellow": "Galben deschis", "Light Red": "Ro\u015fu deschis", "Light Purple": "Violet deschis", "Light Blue": "Albastru deschis", "Dark Purple": "Violet \u00eenchis", "Dark Blue": "Negru \u00eenchis", "Black": "Negru", "White": "Alb", "Switch to or from fullscreen mode": "Comutare pe sau de la modul ecran complet", "Open help dialog": "Deschide dialogul de ajutor", "history": "istoric", "styles": "stiluri", "formatting": "formatare", "alignment": "aliniere", "indentation": "indentare", "Font": "Font", "Size": "Dimensiuni", "More...": "Mai multe...", "Select...": "Selectare...", "Preferences": "Preferin\u021be", "Yes": "Da", "No": "Nu", "Keyboard Navigation": "Navigare de la tastatur\u0103", "Version": "Versiune", "Code view": "Vizualizare cod", "Open popup menu for split buttons": "Deschide\u021bi meniul pop-up pentru butoanele divizate", "List Properties": "Propriet\u0103\u021bi list\u0103", "List properties...": "Propriet\u0103\u021bi list\u0103...", "Start list at number": "\u00cencepe\u021bi lista la num\u0103rul", "Line height": "\u00cen\u0103l\u021bimea liniei", "comments": "comentarii", "Format Painter": "Descriptor de formate", "Insert\/edit iframe": "Inserare\/editare icadru", "Capitalization": "Scriere cu majuscule", "lowercase": "litere mici", "UPPERCASE": "MAJUSCULE", "Title Case": "Ini\u021bial\u0103 majuscul\u0103", "permanent pen": "stilou permanent", "Permanent Pen Properties": "Propriet\u0103\u021bile stiloului permanent", "Permanent pen properties...": "Propriet\u0103\u021bile stiloului permanent...", "case change": "schimbarea cazului", "page embed": "\u00eencorporare pagin\u0103", "Advanced sort...": "Sortare avansat\u0103...", "Advanced Sort": "Sortare avansat\u0103", "Sort table by column ascending": "Sorta\u021bi tabelul dup\u0103 coloan\u0103 cresc\u0103toare", "Sort table by column descending": "Sorta\u021bi tabelul dup\u0103 coloan\u0103 descresc\u0103toare", "Sort": "Sortare", "Order": "Ordonare", "Sort by": "Soreaz\u0103 dup\u0103", "Ascending": "Cresc\u0103tor", "Descending": "Descresc\u0103tor", "Column {0}": "Coloan\u0103 {0}", "Row {0}": "R\u00e2nd {0}", "Spellcheck...": "Verificare a ortografiei...", "Misspelled word": "Cuv\u00e2nt scris gre\u0219it", "Suggestions": "Sugestii", "Change": "Schimbare", "Finding word suggestions": "G\u0103se\u0219te sugestii de cuvinte", "Success": "Succes", "Repair": "Repar\u0103", "Issue {0} of {1}": "Num\u0103rul {0} din {1}", "Images must be marked as decorative or have an alternative text description": "Imaginile trebuie s\u0103 fie marcate ca decorative sau s\u0103 aib\u0103 o descriere alternativ\u0103 a textului", "Images must have an alternative text description. Decorative images are not allowed.": "Imaginile trebuie s\u0103 aib\u0103 o descriere alternativ\u0103 a textului. Imaginile decorative nu sunt permise.", "Or provide alternative text:": "Sau furniza\u021bi un text alternativ:", "Make image decorative:": "Face\u021bi imaginea decorativ\u0103:", "ID attribute must be unique": "Atributul ID trebuie s\u0103 fie unic", "Make ID unique": "Face\u021bi ID-ul unic", "Keep this ID and remove all others": "P\u0103stra\u021bi acest ID \u0219i elimina\u021bi pe toate celelalte", "Remove this ID": "Elimina\u021bi acest ID", "Remove all IDs": "Elimina\u021bi toate ID-urile", "Checklist": "Lista de verificare", "Anchor": "Ancor\u0103", "Special character": "Caractere speciale", "Color": "Culoare", "Document properties": "Propriet\u0103\u021bi document", "Image description": "Descrierea imaginii", "Image": "Imagine", "Insert link": "Inserare link", "Link": "Link", "Target": "\u021aint\u0103", "Media": "Media", "Poster": "Poster", "Print": "Tip\u0103re\u0219te", "Whole words": "Doar cuv\u00eentul \u00eentreg", "Find and replace": "Caut\u0103 \u015fi \u00eenlocuie\u015fte", "Prev": "Anterior", "Insert template": "Insereaz\u0103 \u0219ablon" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/ru.js ================================================ tinymce.addI18n('ru',{ "Redo": "\u0412\u0435\u0440\u043d\u0443\u0442\u044c", "Undo": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c", "Cut": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c", "Copy": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c", "Select all": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0441\u0435", "New document": "\u041d\u043e\u0432\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442", "Ok": "OK", "Cancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c", "Visual aids": "\u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0438", "Bold": "\u0416\u0438\u0440\u043d\u044b\u0439 \u0448\u0440\u0438\u0444\u0442", "Italic": "\u041a\u0443\u0440\u0441\u0438\u0432", "Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u0435", "Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u0435", "Superscript": "\u041d\u0430\u0434\u0441\u0442\u0440\u043e\u0447\u043d\u044b\u0439", "Subscript": "\u041f\u043e\u0434\u0441\u0442\u0440\u043e\u0447\u043d\u044b\u0439", "Clear formatting": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "Align left": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u043f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", "Align center": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u043f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", "Align right": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u043f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", "Justify": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u0442\u0435\u0441\u0442 \u043f\u043e \u0448\u0438\u0440\u0438\u043d\u0435", "Bullet list": "\u041c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", "Numbered list": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", "Decrease indent": "\u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f", "Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f", "Close": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c", "Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u044b", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u043f\u0440\u044f\u043c\u043e\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0431\u0443\u0444\u0435\u0440\u0443 \u043e\u0431\u043c\u0435\u043d\u0430. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u044f \u043a\u043b\u0430\u0432\u0438\u0448: Ctrl+X\/C\/V.", "Headers": "\u0412\u0435\u0440\u0445\u043d\u0438\u0435 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b\u044b", "Header 1": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 1", "Header 2": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 2", "Header 3": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 3", "Header 4": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 4", "Header 5": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 5", "Header 6": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 6", "Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438", "Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1", "Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2", "Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3", "Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4", "Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5", "Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6", "Preformatted": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439", "Div": "Div", "Pre": "Pre", "Code": "\u041a\u043e\u0434", "Paragraph": "\u0410\u0431\u0437\u0430\u0446", "Blockquote": "\u0411\u043b\u043e\u043a \u0446\u0438\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "Inline": "\u0412\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0439", "Blocks": "\u0411\u043b\u043e\u043a\u0438", "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0432\u0438\u0434\u0435 \u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430, \u043f\u043e\u043a\u0430 \u043d\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u043e\u043f\u0446\u0438\u044e.", "Fonts": "\u0428\u0440\u0438\u0444\u0442\u044b", "Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430", "Class": "\u041a\u043b\u0430\u0441\u0441", "Browse for an image": "\u0412\u044b\u0431\u043e\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", "OR": "\u0418\u041b\u0418", "Drop an image here": "\u041f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0441\u044e\u0434\u0430", "Upload": "\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c", "Block": "\u0411\u043b\u043e\u043a", "Align": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c", "Default": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439", "Circle": "\u041e\u043a\u0440\u0443\u0436\u043d\u043e\u0441\u0442\u0438", "Disc": "\u041a\u0440\u0443\u0433\u0438", "Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442\u044b", "Lower Alpha": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b", "Lower Greek": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b", "Lower Roman": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b", "Upper Alpha": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b", "Upper Roman": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b", "Anchor...": "\u042f\u043a\u043e\u0440\u044c...", "Name": "\u0418\u043c\u044f", "Id": "Id", "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0434\u043e\u043b\u0436\u0435\u043d \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u0431\u0443\u043a\u0432\u044b, \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0441 \u0431\u0443\u043a\u0432\u044b, \u0446\u0438\u0444\u0440\u044b, \u0442\u0438\u0440\u0435, \u0442\u043e\u0447\u043a\u0438, \u0434\u0432\u043e\u0435\u0442\u043e\u0447\u0438\u044f \u0438\u043b\u0438 \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u044f.", "You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. \u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0439\u0442\u0438?", "Restore last draft": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430", "Special character...": "\u0421\u043f\u0435\u0446. \u0441\u0438\u043c\u0432\u043e\u043b\u044b...", "Source code": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u043a\u043e\u0434", "Insert\/Edit code sample": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c\/\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430", "Language": "\u042f\u0437\u044b\u043a", "Code sample...": "\u041f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430...", "Color Picker": "\u041f\u0438\u043f\u0435\u0442\u043a\u0430 \u0446\u0432\u0435\u0442\u0430", "R": "R", "G": "G", "B": "B", "Left to right": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043b\u0435\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e", "Right to left": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0435\u0432\u043e", "Emoticons": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b", "Emoticons...": "\u0421\u043c\u0430\u0439\u043b\u0438\u043a\u0438...", "Metadata and Document Properties": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", "Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "Keywords": "\u041a\u043b\u044e\u0447\u0438\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430", "Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", "Robots": "\u0420\u043e\u0431\u043e\u0442\u044b", "Author": "\u0410\u0432\u0442\u043e\u0440", "Encoding": "\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430", "Fullscreen": "\u041f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c", "Action": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435", "Shortcut": "\u042f\u0440\u043b\u044b\u043a", "Help": "\u041f\u043e\u043c\u043e\u0449\u044c", "Address": "\u0410\u0434\u0440\u0435\u0441", "Focus to menubar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043f\u0430\u043d\u0435\u043b\u0438 \u043c\u0435\u043d\u044e", "Focus to toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043f\u0430\u043d\u0435\u043b\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "Focus to element path": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0435 \u043f\u0443\u0442\u0438", "Focus to contextual toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u043d\u043e\u0439 \u043f\u0430\u043d\u0435\u043b\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "Insert link (if link plugin activated)": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 (\u0435\u0441\u043b\u0438 \u043f\u043b\u0430\u0433\u0438\u043d link \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d)", "Save (if save plugin activated)": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c (\u0435\u0441\u043b\u0438 \u043f\u043b\u0430\u0433\u0438\u043d save \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d)", "Find (if searchreplace plugin activated)": "\u041d\u0430\u0439\u0442\u0438 (\u0435\u0441\u043b\u0438 \u043f\u043b\u0430\u0433\u0438\u043d searchreplace \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d)", "Plugins installed ({0}):": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u044b ({0}):", "Premium plugins:": "\u041f\u0440\u0435\u043c\u0438\u0443\u043c \u043f\u043b\u0430\u0433\u0438\u043d\u044b:", "Learn more...": "\u0423\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435...", "You are using {0}": "\u0412\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435 {0}", "Plugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b", "Handy Shortcuts": "\u0413\u043e\u0440\u044f\u0447\u0438\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u0438", "Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f", "Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", "Alternative description": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", "Accessibility": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438", "Image is decorative": "\u0414\u0435\u043a\u043e\u0440\u0430\u0442\u0438\u0432\u043d\u043e\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", "Source": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a", "Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440", "Constrain proportions": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438", "General": "\u041e\u0431\u0449\u0435\u0435", "Advanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435", "Style": "\u0421\u0442\u0438\u043b\u044c", "Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b", "Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b", "Border": "\u0420\u0430\u043c\u043a\u0430", "Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", "Image...": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435...", "Image list": "\u0421\u043f\u0438\u0441\u043e\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439", "Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u0440\u043e\u0442\u0438\u0432 \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0438", "Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u043e \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0435", "Flip vertically": "\u041e\u0442\u0440\u0430\u0437\u0438\u0442\u044c \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0438", "Flip horizontally": "\u041e\u0442\u0440\u0430\u0437\u0438\u0442\u044c \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0438", "Edit image": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", "Image options": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", "Zoom in": "\u041f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u044c", "Zoom out": "\u041e\u0442\u0434\u0430\u043b\u0438\u0442\u044c", "Crop": "\u041e\u0431\u0440\u0435\u0437\u0430\u0442\u044c", "Resize": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0440\u0430\u0437\u043c\u0435\u0440", "Orientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f", "Brightness": "\u042f\u0440\u043a\u043e\u0441\u0442\u044c", "Sharpen": "\u0427\u0435\u0442\u043a\u043e\u0441\u0442\u044c", "Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442", "Color levels": "\u0426\u0432\u0435\u0442\u043e\u0432\u044b\u0435 \u0443\u0440\u043e\u0432\u043d\u0438", "Gamma": "\u0413\u0430\u043c\u043c\u0430", "Invert": "\u0418\u043d\u0432\u0435\u0440\u0441\u0438\u044f", "Apply": "\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c", "Back": "\u041d\u0430\u0437\u0430\u0434", "Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u0443\/\u0432\u0440\u0435\u043c\u044f", "Date\/time": "\u0414\u0430\u0442\u0430\/\u0432\u0440\u0435\u043c\u044f", "Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443", "Text to display": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442", "Url": "\u0410\u0434\u0440\u0435\u0441 \u0441\u0441\u044b\u043b\u043a\u0438", "Open link in...": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 \u0432...", "Current window": "\u0422\u0435\u043a\u0443\u0449\u0435\u0435 \u043e\u043a\u043d\u043e", "None": "\u041d\u0435\u0442", "New window": "\u0412 \u043d\u043e\u0432\u043e\u043c \u043e\u043a\u043d\u0435", "Open link": "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0435", "Remove link": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443", "Anchors": "\u042f\u043a\u043e\u0440\u044f", "Link...": "\u0421\u0441\u044b\u043b\u043a\u0430...", "Paste or type a link": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0441\u044b\u043b\u043a\u0443", "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u043c \u0430\u0434\u0440\u0435\u0441\u043e\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abmailto:\u00bb?", "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u0441\u044b\u043b\u043a\u043e\u0439. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abhttp:\/\/\u00bb?", "The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "\u0412\u0432\u0435\u0434\u0435\u043d\u043d\u044b\u0439 \u0412\u0430\u043c\u0438 URL-\u0430\u0434\u0440\u0435\u0441 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u0441\u044b\u043b\u043a\u043e\u0439. \u0425\u043e\u0442\u0438\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u044b\u0439 \u043f\u0440\u0435\u0444\u0438\u043a\u0441 https: \/\/?", "Link list": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u0441\u044b\u043b\u043e\u043a", "Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e", "Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e", "Insert\/edit media": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e", "Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a", "Alternative source URL": "URL \u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430", "Media poster (Image URL)": "\u041f\u043e\u0441\u0442\u0435\u0440 \u043c\u0443\u043b\u044c\u0442\u0438\u043c\u0435\u0434\u0438\u0430 (URL \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f)", "Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0435:", "Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438", "Media...": "\u041c\u0443\u043b\u044c\u0442\u0438\u043c\u0435\u0434\u0438\u0430...", "Nonbreaking space": "\u041d\u0435\u0440\u0430\u0437\u0440\u044b\u0432\u043d\u044b\u0439 \u043f\u0440\u043e\u0431\u0435\u043b", "Page break": "\u0420\u0430\u0437\u0440\u044b\u0432 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", "Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0442\u0435\u043a\u0441\u0442", "Preview": "\u041f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440", "Print...": "\u041d\u0430\u043f\u0435\u0447\u0430\u0442\u0430\u0442\u044c...", "Save": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c", "Find": "\u041d\u0430\u0439\u0442\u0438", "Replace with": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430", "Replace": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c", "Replace all": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435", "Previous": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0439", "Next": "\u0412\u043d\u0438\u0437", "Find and Replace": "\u041d\u0430\u0439\u0442\u0438 \u0438 \u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c", "Find and replace...": "\u041d\u0430\u0439\u0442\u0438 \u0438 \u0437\u0430\u043c\u0435\u043d\u0438\u0442\u044c...", "Could not find the specified string.": "\u0417\u0430\u0434\u0430\u043d\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430", "Match case": "\u0423\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0438\u0441\u0442\u0440", "Find whole words only": "\u041d\u0430\u0439\u0442\u0438 \u0442\u043e\u043b\u044c\u043a\u043e \u0446\u0435\u043b\u044b\u0435 \u0441\u043b\u043e\u0432\u0430", "Find in selection": "\u0418\u0441\u043a\u0430\u0442\u044c \u0432 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u043c", "Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", "Spellcheck Language": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f", "No misspellings found.": "\u041e\u0448\u0438\u0431\u043e\u043a \u043d\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u043e.", "Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435", "Finish": "\u0417\u0430\u043a\u043e\u043d\u0447\u0438\u0442\u044c", "Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0441\u043b\u043e\u0432\u0430\u0440\u044c", "Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443", "Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u044b", "Delete table": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443", "Cell": "\u042f\u0447\u0435\u0439\u043a\u0430", "Row": "\u0421\u0442\u0440\u043e\u043a\u0430", "Column": "\u0421\u0442\u043e\u043b\u0431\u0435\u0446", "Cell properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u044f\u0447\u0435\u0439\u043a\u0438", "Merge cells": "\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0438", "Split cell": "\u0420\u0430\u0437\u0431\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0443", "Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443", "Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443", "Delete row": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443", "Row properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u0442\u0440\u043e\u043a\u0438", "Cut row": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443", "Copy row": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443", "Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443", "Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443", "Insert column before": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043b\u0435\u0432\u0430", "Insert column after": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043f\u0440\u0430\u0432\u0430", "Delete column": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446", "Cols": "\u0421\u0442\u043e\u043b\u0431\u0446\u044b", "Rows": "\u0421\u0442\u0440\u043e\u043a\u0438", "Width": "\u0428\u0438\u0440\u0438\u043d\u0430", "Height": "\u0412\u044b\u0441\u043e\u0442\u0430", "Cell spacing": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f", "Cell padding": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f", "Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "Show caption": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043f\u043e\u0434\u043f\u0438\u0441\u044c", "Left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", "Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", "Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", "Cell type": "\u0422\u0438\u043f \u044f\u0447\u0435\u0439\u043a\u0438", "Scope": "Scope", "Alignment": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435", "H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435", "V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435", "Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u0443", "Middle": "\u041f\u043e \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435", "Bottom": "\u041f\u043e \u043d\u0438\u0437\u0443", "Header cell": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "Row group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u0441\u0442\u0440\u043e\u043a", "Column group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u043a\u043e\u043b\u043e\u043d\u043e\u043a", "Row type": "\u0422\u0438\u043f \u0441\u0442\u0440\u043e\u043a\u0438", "Header": "\u0428\u0430\u043f\u043a\u0430", "Body": "\u0422\u0435\u043b\u043e", "Footer": "\u041d\u0438\u0437", "Border color": "\u0426\u0432\u0435\u0442 \u0440\u0430\u043c\u043a\u0438", "Insert template...": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d...", "Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b", "Template": "\u0428\u0430\u0431\u043b\u043e\u043d", "Text color": "\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430", "Background color": "\u0426\u0432\u0435\u0442 \u0444\u043e\u043d\u0430", "Custom...": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c\u2026", "Custom color": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0446\u0432\u0435\u0442", "No color": "\u0411\u0435\u0437 \u0446\u0432\u0435\u0442\u0430", "Remove color": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0446\u0432\u0435\u0442", "Table of Contents": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "Show blocks": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0431\u043b\u043e\u043a\u0438", "Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b", "Word count": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043b\u043e\u0432", "Count": "\u041f\u043e\u0434\u0441\u0447\u0435\u0442", "Document": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442", "Selection": "\u0412\u044b\u0431\u043e\u0440", "Words": "\u0421\u043b\u043e\u0432\u0430", "Words: {0}": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043b\u043e\u0432: {0}", "{0} words": "\u0441\u043b\u043e\u0432: {0}", "File": "\u0424\u0430\u0439\u043b", "Edit": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c", "Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c", "View": "\u0412\u0438\u0434", "Format": "\u0424\u043e\u0440\u043c\u0430\u0442", "Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430", "Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b", "Powered by {0}": "\u041f\u0440\u0438 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0435 {0}", "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-F9 \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u043c\u0435\u043d\u044e, ALT-F10 \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432, ALT-0 \u0434\u043b\u044f \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u043e\u043c\u043e\u0449\u0438.", "Image title": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", "Border width": "\u0428\u0438\u0440\u0438\u043d\u0430 \u0440\u0430\u043c\u043a\u0438", "Border style": "\u0421\u0442\u0438\u043b\u044c \u0440\u0430\u043c\u043a\u0438", "Error": "\u041e\u0448\u0438\u0431\u043a\u0430", "Warn": "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435", "Valid": "\u0414\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439", "To open the popup, press Shift+Enter": "\u0427\u0442\u043e\u0431\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0432\u0441\u043f\u043b\u044b\u0432\u0430\u044e\u0449\u0435\u0435 \u043e\u043a\u043d\u043e, \u043d\u0430\u0436\u043c\u0438\u0442\u0435 Shift+Enter", "Rich Text Area. Press ALT-0 for help.": "\u041f\u043e\u043b\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-0, \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u043f\u0440\u0430\u0432\u043a\u0443.", "System Font": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0448\u0440\u0438\u0444\u0442", "Failed to upload image: {0}": "\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f: {0}", "Failed to load plugin: {0} from url {1}": "\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430: {0} \u0438\u0437 URL {1}", "Failed to load plugin url: {0}": "\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 URL \u043f\u043b\u0430\u0433\u0438\u043d\u0430: {0}", "Failed to initialize plugin: {0}": "\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u043b\u0430\u0433\u0438\u043d\u0430: {0}", "example": "\u043f\u0440\u0438\u043c\u0435\u0440", "Search": "\u041f\u043e\u0438\u0441\u043a", "All": "\u0412\u0441\u0435", "Currency": "\u0412\u0430\u043b\u044e\u0442\u0430", "Text": "\u0422\u0435\u043a\u0441\u0442", "Quotations": "\u0426\u0438\u0442\u0430\u0442\u044b", "Mathematical": "\u041c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435", "Extended Latin": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u0430\u044f \u043b\u0430\u0442\u044b\u043d\u044c", "Symbols": "\u0421\u0438\u043c\u0432\u043e\u043b\u044b", "Arrows": "\u0421\u0442\u0440\u0435\u043b\u043a\u0438", "User Defined": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u043c\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c", "dollar sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0434\u043e\u043b\u043b\u0430\u0440\u0430", "currency sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0432\u0430\u043b\u044e\u0442\u044b", "euro-currency sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0435\u0432\u0440\u043e", "colon sign": "\u0414\u0432\u043e\u0435\u0442\u043e\u0447\u0438\u0435", "cruzeiro sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043a\u0440\u0443\u0437\u0435\u0439\u0440\u043e", "french franc sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0444\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u043e\u0433\u043e \u0444\u0440\u0430\u043d\u043a\u0430", "lira sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043b\u0438\u0440\u044b", "mill sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0434\u0435\u0441\u044f\u0442\u043e\u0439 \u0447\u0430\u0441\u0442\u0438 \u0446\u0435\u043d\u0442\u0430", "naira sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043d\u0430\u0439\u0440\u044b", "peseta sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043f\u0435\u0441\u0435\u0442\u044b", "rupee sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0440\u0443\u043f\u0438\u0438", "won sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0432\u043e\u043d\u044b", "new sheqel sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0448\u0435\u043a\u0435\u043b\u044f", "dong sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0434\u043e\u043d\u0433\u0430", "kip sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043a\u0438\u043f\u044b", "tugrik sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0442\u0443\u0433\u0440\u0438\u043a\u0430", "drachma sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0434\u0440\u0430\u0445\u043c\u044b", "german penny symbol": "\u0441\u0438\u043c\u0432\u043e\u043b \u043f\u0444\u0435\u043d\u043d\u0438\u0433\u0430", "peso sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043f\u0435\u0441\u043e", "guarani sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0433\u0443\u0430\u0440\u0430\u043d\u0438", "austral sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0430\u0443\u0441\u0442\u0440\u0430\u043b\u0430", "hryvnia sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0433\u0440\u0438\u0432\u043d\u0438", "cedi sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0441\u0435\u0434\u0438", "livre tournois sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043b\u0438\u0432\u0440\u044b", "spesmilo sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0441\u043f\u0435\u0441\u043c\u0438\u043b\u043e", "tenge sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0442\u0435\u043d\u044c\u0433\u0435", "indian rupee sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0438\u043d\u0434\u0438\u0439\u0441\u043a\u043e\u0439 \u0440\u0443\u043f\u0438\u0438", "turkish lira sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0442\u0443\u0440\u0435\u0446\u043a\u043e\u0439 \u043b\u0438\u0440\u044b", "nordic mark sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043c\u0430\u0440\u043a\u0438", "manat sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043c\u0430\u043d\u0430\u0442\u0430", "ruble sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0440\u0443\u0431\u043b\u044f", "yen character": "\u0441\u0438\u043c\u0432\u043e\u043b \u0438\u0435\u043d\u044b", "yuan character": "\u0441\u0438\u043c\u0432\u043e\u043b \u044e\u0430\u043d\u044f", "yuan character, in hong kong and taiwan": "\u0421\u0438\u043c\u0432\u043e\u043b \u044e\u0430\u043d\u044f, \u0413\u043e\u043d\u043a\u043e\u043d\u0433 \u0438 \u0422\u0430\u0439\u0432\u0430\u043d\u044c", "yen\/yuan character variant one": "\u0441\u0438\u043c\u0432\u043e\u043b \u0438\u0435\u043d\u044b\/\u044e\u0430\u043d\u044f, \u0432\u0430\u0440\u0438\u0430\u043d\u0442 1", "Loading emoticons...": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0441\u043c\u0430\u0439\u043b\u043e\u0432...", "Could not load emoticons": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b\u044b", "People": "\u041b\u044e\u0434\u0438", "Animals and Nature": "\u0416\u0438\u0432\u043e\u0442\u043d\u044b\u0435 \u0438 \u043f\u0440\u0438\u0440\u043e\u0434\u0430", "Food and Drink": "\u0415\u0434\u0430 \u0438 \u043d\u0430\u043f\u0438\u0442\u043a\u0438", "Activity": "\u0414\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c", "Travel and Places": "\u041f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0438 \u043c\u0435\u0441\u0442\u0430", "Objects": "\u041e\u0431\u044a\u0435\u043a\u0442\u044b", "Flags": "\u0424\u043b\u0430\u0433\u0438", "Characters": "\u0421\u0438\u043c\u0432\u043e\u043b\u044b", "Characters (no spaces)": "\u0421\u0438\u043c\u0432\u043e\u043b\u044b (\u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u0435\u043b\u043e\u0432)", "{0} characters": "{0} \u0441\u0438\u043c\u0432\u043e\u043b.", "Error: Form submit field collision.": "\u041e\u0448\u0438\u0431\u043a\u0430: \u043a\u043e\u043d\u0444\u043b\u0438\u043a\u0442 \u043f\u043e\u043b\u0435\u0439 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u0444\u043e\u0440\u043c\u044b.", "Error: No form element found.": "\u041e\u0448\u0438\u0431\u043a\u0430: \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0444\u043e\u0440\u043c\u044b.", "Update": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c", "Color swatch": "\u041e\u0431\u0440\u0430\u0437\u0435\u0446 \u0446\u0432\u0435\u0442\u0430", "Turquoise": "\u0411\u0438\u0440\u044e\u0437\u043e\u0432\u044b\u0439", "Green": "\u0417\u0435\u043b\u0435\u043d\u044b\u0439", "Blue": "\u0421\u0438\u043d\u0438\u0439", "Purple": "\u0420\u043e\u0437\u043e\u0432\u044b\u0439", "Navy Blue": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0438\u0439", "Dark Turquoise": "\u0422\u0435\u043c\u043d\u043e-\u0431\u0438\u0440\u044e\u0437\u043e\u0432\u044b\u0439", "Dark Green": "\u0422\u0435\u043c\u043d\u043e-\u0437\u0435\u043b\u0435\u043d\u044b\u0439", "Medium Blue": "\u0421\u0440\u0435\u0434\u043d\u0438\u0439 \u0441\u0438\u043d\u0438\u0439", "Medium Purple": "\u0423\u043c\u0435\u0440\u0435\u043d\u043d\u043e \u043f\u0443\u0440\u043f\u0443\u0440\u043d\u044b\u0439", "Midnight Blue": "\u0427\u0435\u0440\u043d\u043e-\u0441\u0438\u043d\u0438\u0439", "Yellow": "\u0416\u0435\u043b\u0442\u044b\u0439", "Orange": "\u041e\u0440\u0430\u043d\u0436\u0435\u0432\u044b\u0439", "Red": "\u041a\u0440\u0430\u0441\u043d\u044b\u0439", "Light Gray": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0441\u0435\u0440\u044b\u0439", "Gray": "\u0421\u0435\u0440\u044b\u0439", "Dark Yellow": "\u0422\u0435\u043c\u043d\u043e-\u0436\u0435\u043b\u0442\u044b\u0439", "Dark Orange": "\u0422\u0435\u043c\u043d\u043e-\u043e\u0440\u0430\u043d\u0436\u0435\u0432\u044b\u0439", "Dark Red": "\u0422\u0435\u043c\u043d\u043e-\u043a\u0440\u0430\u0441\u043d\u044b\u0439", "Medium Gray": "\u0423\u043c\u0435\u0440\u0435\u043d\u043d\u043e \u0441\u0435\u0440\u044b\u0439", "Dark Gray": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0435\u0440\u044b\u0439", "Light Green": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0437\u0435\u043b\u0435\u043d\u044b\u0439", "Light Yellow": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0436\u0435\u043b\u0442\u044b\u0439", "Light Red": "\u0421\u0432\u0435\u0442\u043b\u043e-\u043a\u0440\u0430\u0441\u043d\u044b\u0439", "Light Purple": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0444\u0438\u043e\u043b\u0435\u0442\u043e\u0432\u044b\u0439", "Light Blue": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0441\u0438\u043d\u0438\u0439", "Dark Purple": "\u0422\u0435\u043c\u043d\u043e-\u0444\u0438\u043e\u043b\u0435\u0442\u043e\u0432\u044b\u0439", "Dark Blue": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0438\u0439", "Black": "\u0427\u0435\u0440\u043d\u044b\u0439", "White": "\u0411\u0435\u043b\u044b\u0439", "Switch to or from fullscreen mode": "\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c", "Open help dialog": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u043f\u0440\u0430\u0432\u043a\u0443", "history": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f", "styles": "\u0441\u0442\u0438\u043b\u0438", "formatting": "\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "alignment": "\u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435", "indentation": "\u043e\u0442\u0441\u0442\u0443\u043f", "Font": "\u0428\u0440\u0438\u0444\u0442", "Size": "\u0420\u0430\u0437\u043c\u0435\u0440", "More...": "\u0411\u043e\u043b\u044c\u0448\u0435...", "Select...": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c...", "Preferences": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0435\u043d\u0438\u044f", "Yes": "\u0414\u0430", "No": "\u041d\u0435\u0442", "Keyboard Navigation": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u044b", "Version": "\u0412\u0435\u0440\u0441\u0438\u044f", "Code view": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u043a\u043e\u0434\u0430", "Open popup menu for split buttons": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0432\u0441\u043f\u043b\u044b\u0432\u0430\u044e\u0449\u0435\u0435 \u043c\u0435\u043d\u044e \u0434\u043b\u044f \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043a\u043d\u043e\u043f\u043e\u043a", "List Properties": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u0432\u043e\u0439\u0441\u0442\u0432", "List properties...": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u0432\u043e\u0439\u0441\u0442\u0432...", "Start list at number": "\u041d\u0430\u0447\u0430\u0442\u044c \u043d\u0443\u043c\u0435\u0440\u0430\u0446\u0438\u044e \u0441", "Line height": "\u0412\u044b\u0441\u043e\u0442\u0430 \u0441\u0442\u0440\u043e\u043a\u0438", "comments": "\u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438", "Format Painter": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u043e \u043e\u0431\u0440\u0430\u0437\u0446\u0443", "Insert\/edit iframe": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442 iframe", "Capitalization": "\u041f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u043f\u0438\u0441\u043d\u044b\u0445 \u0431\u0443\u043a\u0432", "lowercase": "\u043d\u0438\u0436\u043d\u0438\u0439 \u0440\u0435\u0433\u0438\u0441\u0442\u0440", "UPPERCASE": "\u0412\u0415\u0420\u0425\u041d\u0418\u0419 \u0420\u0415\u0413\u0418\u0421\u0422\u0420", "Title Case": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f", "permanent pen": "\u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e\u0435 \u043f\u0435\u0440\u043e", "Permanent Pen Properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u043e\u0433\u043e \u043f\u0435\u0440\u0430", "Permanent pen properties...": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u043e\u0433\u043e \u043f\u0435\u0440\u0430...", "case change": "\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430", "page embed": "\u0432\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443", "Advanced sort...": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u0430\u044f \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430...", "Advanced Sort": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u0430\u044f \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430", "Sort table by column ascending": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u044b \u043f\u043e \u0441\u0442\u043e\u043b\u0431\u0446\u0443 \u043f\u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u043d\u0438\u044e", "Sort table by column descending": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u044b \u043f\u043e \u0441\u0442\u043e\u043b\u0431\u0446\u0443 \u043f\u043e \u0443\u0431\u044b\u0432\u0430\u043d\u0438\u044e", "Sort": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "Order": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a", "Sort by": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e", "Ascending": "\u041f\u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u043d\u0438\u044e", "Descending": "\u041f\u043e \u0443\u0431\u044b\u0432\u0430\u043d\u0438\u044e", "Column {0}": "\u0421\u0442\u043e\u043b\u0431\u0435\u0446 {0}", "Row {0}": "\u0421\u0442\u0440\u043e\u043a\u0430 {0}", "Spellcheck...": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f...", "Misspelled word": "\u0421\u043b\u043e\u0432\u043e \u0441 \u043e\u0448\u0438\u0431\u043a\u043e\u0439", "Suggestions": "\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "Change": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c", "Finding word suggestions": "\u041f\u043e\u0438\u0441\u043a \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043e\u043a \u0434\u043b\u044f \u0441\u043b\u043e\u0432\u0430", "Success": "\u0423\u0441\u043f\u0435\u0445", "Repair": "\u0418\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c", "Issue {0} of {1}": "\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 {0} \u0438\u0437 {1}", "Images must be marked as decorative or have an alternative text description": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u043f\u043e\u043c\u0435\u0447\u0435\u043d\u044b \u0434\u0435\u043a\u043e\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u043c\u0438 \u0438\u043b\u0438 \u0434\u043e\u043b\u0436\u043d\u044b \u0438\u043c\u0435\u0442\u044c \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", "Images must have an alternative text description. Decorative images are not allowed.": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0434\u043e\u043b\u0436\u043d\u044b \u0438\u043c\u0435\u0442\u044c \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435. \u0414\u0435\u043a\u043e\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b.", "Or provide alternative text:": "\u0418\u043b\u0438 \u0443\u043a\u0430\u0436\u0438\u0442\u0435 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435:", "Make image decorative:": "\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043a\u0430\u043a \u0434\u0435\u043a\u043e\u0440\u0430\u0442\u0438\u0432\u043d\u043e\u0435:", "ID attribute must be unique": "\u0410\u0442\u0440\u0438\u0431\u0443\u0442 ID \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u043c", "Make ID unique": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u043c:", "Keep this ID and remove all others": "\u041e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0438 \u0443\u0431\u0440\u0430\u0442\u044c \u0432\u0441\u0435 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0435", "Remove this ID": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440", "Remove all IDs": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b", "Checklist": "\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438", "Anchor": "\u042f\u043a\u043e\u0440\u044c", "Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b", "Code sample": "\u041f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430", "Color": "\u0426\u0432\u0435\u0442", "Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", "Image description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", "Image": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", "Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443", "Target": "\u041e\u0442\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443", "Link": "\u0421\u0441\u044b\u043b\u043a\u0430", "Poster": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", "Media": "\u0412\u0438\u0434\u0435\u043e", "Print": "\u041f\u0435\u0447\u0430\u0442\u044c", "Prev": "\u0412\u0432\u0435\u0440\u0445", "Find and replace": "\u041f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430", "Whole words": "\u0421\u043b\u043e\u0432\u043e \u0446\u0435\u043b\u0438\u043a\u043e\u043c", "Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d" }); ================================================ FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/ru_RU.js ================================================ tinymce.addI18n('ru_RU',{ "Redo": "\u041f\u043e\u0432\u0442\u043e\u0440", "Undo": "\u041e\u0442\u043c\u0435\u043d\u0430", "Cut": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c", "Copy": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c", "Select all": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0432\u0441\u0435", "New document": "\u041d\u043e\u0432\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442", "Ok": "\u041f\u0440\u0438\u043d\u044f\u0442\u044c", "Cancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c", "Visual aids": "\u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0438", "Bold": "\u0416\u0438\u0440\u043d\u044b\u0439", "Italic": "\u041a\u0443\u0440\u0441\u0438\u0432", "Underline": "\u041f\u043e\u0434\u0447\u0451\u0440\u043a\u043d\u0443\u0442\u044b\u0439", "Strikethrough": "\u041f\u0435\u0440\u0435\u0447\u0451\u0440\u043a\u043d\u0443\u0442\u044b\u0439", "Superscript": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u0440\u0435\u0433\u0438\u0441\u0442\u0440", "Subscript": "\u041d\u0438\u0436\u043d\u0438\u0439 \u0440\u0435\u0433\u0438\u0441\u0442\u0440", "Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "Align left": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u043f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", "Align center": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u043f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", "Align right": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u043f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", "Justify": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u043f\u043e \u0448\u0438\u0440\u0438\u043d\u0435", "Bullet list": "\u041c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", "Numbered list": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", "Decrease indent": "\u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f", "Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f", "Close": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c", "Formats": "\u0424\u043e\u0440\u043c\u0430\u0442", "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u043f\u0440\u044f\u043c\u043e\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0431\u0443\u0444\u0435\u0440\u0443 \u043e\u0431\u043c\u0435\u043d\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u043c\u0435\u0441\u0442\u043e \u044d\u0442\u043e\u0433\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u044f \u043a\u043b\u0430\u0432\u0438\u0448 Ctrl + X \/ C \/ V.", "Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438", "Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1", "Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2", "Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3", "Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4", "Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5", "Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6", "Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438", "Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1", "Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2", "Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3", "Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4", "Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5", "Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6", "Preformatted": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043e\u0442\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439", "Div": "
\u0411\u043b\u043e\u043a<\/div>", "Pre": "
\u0411\u043b\u043e\u043a<\/pre>",
"Code": "\u041a\u043e\u0434",
"Paragraph": "\u0410\u0431\u0437\u0430\u0446",
"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430",
"Inline": "\u0412\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0439",
"Blocks": "\u0411\u043b\u043e\u043a\u0438",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u043d\u0435\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430. \u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0431\u0443\u0434\u0435\u0442 \u0432\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u043e\u0431\u044b\u0447\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442, \u043f\u043e\u043a\u0430 \u0432\u044b \u043d\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u044d\u0442\u0443 \u043e\u043f\u0446\u0438\u044e.",
"Fonts": "\u0428\u0440\u0438\u0444\u0442\u044b",
"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440\u044b \u0448\u0440\u0438\u0444\u0442\u0430",
"Class": "\u041a\u043b\u0430\u0441\u0441",
"Browse for an image": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
"OR": "\u0418\u041b\u0418",
"Drop an image here": "\u041f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0441\u044e\u0434\u0430",
"Upload": "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c",
"Block": "\u0411\u043b\u043e\u043a",
"Align": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
"Default": "\u041f\u043e-\u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e",
"Circle": "\u041a\u0440\u0443\u0433",
"Disc": "\u0422\u043e\u0447\u043a\u0430",
"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442",
"Lower Alpha": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0439 \u041b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0439",
"Lower Greek": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0439 \u0413\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0439",
"Lower Roman": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0439 \u0420\u0438\u043c\u0441\u043a\u0438\u0439",
"Upper Alpha": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u041b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0439",
"Upper Roman": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0420\u0438\u043c\u0441\u043a\u0438\u0439",
"Anchor...": "\u042f\u043a\u043e\u0440\u044c",
"Name": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435",
"Id": "\u0410\u0442\u0440\u0438\u0431\u0443\u0442 Id",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u0410\u0442\u0440\u0438\u0431\u0443\u0442 Id \u0434\u043e\u043b\u0436\u0435\u043d \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u0431\u0443\u043a\u0432\u044b, \u0437\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0441\u043b\u0435\u0434\u0443\u044e\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u0431\u0443\u043a\u0432\u044b, \u0446\u0438\u0444\u0440\u044b, \u0442\u0438\u0440\u0435, \u0442\u043e\u0447\u043a\u0438, \u0434\u0432\u043e\u0435\u0442\u043e\u0447\u0438\u044f \u0438\u043b\u0438 \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u044f.",
"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u043d\u0435\u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f, \u0432\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0432\u044b\u0439\u0442\u0438?",
"Restore last draft": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0447\u0435\u0440\u043d\u043e\u0432\u0438\u043a",
"Special character...": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u0438\u043c\u0432\u043e\u043b...",
"Source code": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u043a\u043e\u0434",
"Insert\/Edit code sample": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \/ \u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430",
"Language": "\u042f\u0437\u044b\u043a",
"Code sample...": "\u041f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430",
"Color Picker": "\u041f\u0430\u043b\u0438\u0442\u0440\u0430 \u0446\u0432\u0435\u0442\u043e\u0432",
"R": "\u041a",
"G": "\u0417",
"B": "\u0421",
"Left to right": "\u0421\u043b\u0435\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e",
"Right to left": "\u0421\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0435\u0432\u043e",
"Emoticons": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b",
"Emoticons...": "\u0421\u043c\u0430\u0439\u043b\u044b...",
"Metadata and Document Properties": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
"Title": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435",
"Keywords": "\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430",
"Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"Robots": "\u0420\u043e\u0431\u043e\u0442\u044b",
"Author": "\u0410\u0432\u0442\u043e\u0440",
"Encoding": "\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430",
"Fullscreen": "\u0412\u043e \u0432\u0435\u0441\u044c \u044d\u043a\u0440\u0430\u043d",
"Action": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435",
"Shortcut": "\u042f\u0440\u043b\u044b\u043a",
"Help": "\u041f\u043e\u043c\u043e\u0449\u044c",
"Address": "\u0410\u0434\u0440\u0435\u0441",
"Focus to menubar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043f\u0430\u043d\u0435\u043b\u0438 \u043c\u0435\u043d\u044e",
"Focus to toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043f\u0430\u043d\u0435\u043b\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432",
"Focus to element path": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0435 \u043f\u0443\u0442\u0438",
"Focus to contextual toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u043d\u043e\u043c \u043c\u0435\u043d\u044e",
"Insert link (if link plugin activated)": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 (\u0435\u0441\u043b\u0438 \u043f\u043b\u0430\u0433\u0438\u043d \u0441\u0441\u044b\u043b\u043a\u0438 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d)",
"Save (if save plugin activated)": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c (\u0435\u0441\u043b\u0438 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d \u043f\u043b\u0430\u0433\u0438\u043d \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f)",
"Find (if searchreplace plugin activated)": "\u041d\u0430\u0439\u0442\u0438 (\u0435\u0441\u043b\u0438 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d \u043f\u043b\u0430\u0433\u0438\u043d \u043f\u043e\u0438\u0441\u043a\u0430 \u0438 \u0437\u0430\u043c\u0435\u043d\u044b)",
"Plugins installed ({0}):": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432 ({0}):",
"Premium plugins:": "Premium \u043f\u043b\u0430\u0433\u0438\u043d\u044b:",
"Learn more...": "\u0423\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435...",
"You are using {0}": "\u0412\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435 {0}",
"Plugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b",
"Handy Shortcuts": "\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f",
"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f",
"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
"Alternative description": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"Accessibility": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c",
"Image is decorative": "\u0414\u0435\u043a\u043e\u0440\u0430\u0442\u0438\u0432\u043d\u043e\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
"Source": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
"Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440\u044b",
"Constrain proportions": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438",
"General": "\u041e\u0431\u0449\u0438\u0435",
"Advanced": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e",
"Style": "\u0421\u0442\u0438\u043b\u044c",
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u043e\u0442\u0441\u0442\u0443\u043f\u044b",
"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0435 \u043e\u0442\u0441\u0442\u0443\u043f\u044b",
"Border": "\u0420\u0430\u043c\u043a\u0438",
"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
"Image...": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435...",
"Image list": "\u0421\u043f\u0438\u0441\u043e\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439",
"Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u043e \u0447\u0430\u0441\u043e\u0432\u043e\u0439",
"Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u0440\u043e\u0442\u0438\u0432 \u0447\u0430\u0441\u043e\u0432\u043e\u0439",
"Flip vertically": "\u041e\u0442\u0440\u0430\u0437\u0438\u0442\u044c \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0438",
"Flip horizontally": "\u041e\u0442\u0440\u0430\u0437\u0438\u0442\u044c \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0438",
"Edit image": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
"Image options": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
"Zoom in": "\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c",
"Zoom out": "\u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c",
"Crop": "\u041e\u0431\u0440\u0435\u0437\u0430\u0442\u044c",
"Resize": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0440\u0430\u0437\u043c\u0435\u0440\u044b",
"Orientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f",
"Brightness": "\u042f\u0440\u043a\u043e\u0441\u0442\u044c",
"Sharpen": "\u0420\u0435\u0437\u043a\u043e\u0441\u0442\u044c",
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u044c",
"Color levels": "\u0426\u0432\u0435\u0442\u043e\u0432\u044b\u0435 \u0443\u0440\u043e\u0432\u043d\u0438",
"Gamma": "\u0413\u0430\u043c\u043c\u0430",
"Invert": "\u0418\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0446\u0432\u0435\u0442",
"Apply": "\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c",
"Back": "\u041d\u0430\u0437\u0430\u0434",
"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u0443\/\u0432\u0440\u0435\u043c\u044f",
"Date\/time": "\u0414\u0430\u0442\u0430\/\u0432\u0440\u0435\u043c\u044f",
"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
"Text to display": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442",
"Url": "Url",
"Open link in...": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 \u0432...",
"Current window": "\u0422\u0435\u043a\u0443\u0449\u0435\u0435 \u043e\u043a\u043d\u043e",
"None": "-",
"New window": "\u041d\u043e\u0432\u043e\u0435 \u043e\u043a\u043d\u043e",
"Open link": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
"Remove link": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
"Anchors": "\u042f\u043a\u043e\u0440\u044c",
"Link...": "\u0421\u0441\u044b\u043b\u043a\u0430...",
"Paste or type a link": "\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0438\u043b\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0441\u044b\u043b\u043a\u0443",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0412\u0432\u0435\u0434\u0435\u043d\u043d\u044b\u0439 \u0412\u0430\u043c\u0438 URL-\u0430\u0434\u0440\u0435\u0441 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0430\u0434\u0440\u0435\u0441\u043e\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b. \u0412\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u044b\u0439 \u043f\u0440\u0435\u0444\u0438\u043a\u0441 mailto:?",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0412\u0432\u0435\u0434\u0435\u043d\u043d\u044b\u0439 \u0412\u0430\u043c\u0438 URL-\u0430\u0434\u0440\u0435\u0441 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u0441\u044b\u043b\u043a\u043e\u0439. \u0425\u043e\u0442\u0438\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u044b\u0439 \u043f\u0440\u0435\u0444\u0438\u043a\u0441 http: \/\/?",
"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "\u0412\u0432\u0435\u0434\u0435\u043d\u043d\u044b\u0439 \u0412\u0430\u043c\u0438 URL-\u0430\u0434\u0440\u0435\u0441 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u0441\u044b\u043b\u043a\u043e\u0439. \u0425\u043e\u0442\u0438\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u044b\u0439 \u043f\u0440\u0435\u0444\u0438\u043a\u0441 https: \/\/?",
"Link list": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u0441\u044b\u043b\u043e\u043a",
"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
"Insert\/edit media": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0434\u0438\u0430-\u043a\u043e\u043d\u0442\u0435\u043d\u0442",
"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
"Alternative source URL": "URL \u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430",
"Media poster (Image URL)": "\u041c\u0435\u0434\u0438\u0430-\u043a\u043e\u043d\u0442\u0435\u043d\u0442 (URL \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f)",
"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043a\u043e\u0434 \u0432\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043d\u0438\u0436\u0435:",
"Embed": "\u0412\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0439",
"Media...": "\u041c\u0435\u0434\u0438\u0430-\u043a\u043e\u043d\u0442\u0435\u043d\u0442...",
"Nonbreaking space": "\u041d\u0435\u0440\u0430\u0437\u0440\u044b\u0432\u043d\u044b\u0439 \u0443\u0447\u0430\u0441\u0442\u043e\u043a",
"Page break": "\u0420\u0430\u0437\u0440\u044b\u0432 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b",
"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u043e\u0431\u044b\u0447\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442",
"Preview": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440",
"Print...": "\u041f\u0435\u0447\u0430\u0442\u044c...",
"Save": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c",
"Find": "\u041d\u0430\u0439\u0442\u0438",
"Replace with": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e",
"Replace": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c",
"Replace all": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435",
"Previous": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0439",
"Next": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439",
"Find and Replace": "\u041d\u0430\u0439\u0442\u0438 \u0438 \u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c",
"Find and replace...": "\u041d\u0430\u0439\u0442\u0438 \u0438 \u0437\u0430\u043c\u0435\u043d\u0438\u0442\u044c...",
"Could not find the specified string.": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443.",
"Match case": "\u0423\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0438\u0441\u0442\u0440",
"Find whole words only": "\u041d\u0430\u0439\u0442\u0438 \u0442\u043e\u043b\u044c\u043a\u043e \u0441\u043b\u043e\u0432\u0430 \u0446\u0435\u043b\u0438\u043a\u043e\u043c",
"Find in selection": "\u0418\u0441\u043a\u0430\u0442\u044c \u0432 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u043c",
"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"Spellcheck Language": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u043f\u043e \u044f\u0437\u044b\u043a\u0443",
"No misspellings found.": "\u041e\u0448\u0438\u0431\u043e\u043a \u043d\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u043e.",
"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435",
"Finish": "\u041a\u043e\u043d\u0435\u0446",
"Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0421\u043b\u043e\u0432\u0430\u0440\u044c",
"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443",
"Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u044b",
"Delete table": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443",
"Cell": "\u042f\u0447\u0435\u0439\u043a\u0430",
"Row": "\u0421\u0442\u0440\u043e\u043a\u0430",
"Column": "\u0421\u0442\u043e\u043b\u0431\u0435\u0446",
"Cell properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u044f\u0447\u0435\u0439\u043a\u0438",
"Merge cells": "\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0438",
"Split cell": "\u0420\u0430\u0437\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0438",
"Insert row before": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0434\u043e",
"Insert row after": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u043f\u043e\u0441\u043b\u0435",
"Delete row": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
"Row properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0442\u0440\u043e\u043a\u0438",
"Cut row": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
"Copy row": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u043f\u0435\u0440\u0435\u0434",
"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u043f\u043e\u0441\u043b\u0435",
"Insert column before": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0434\u043e",
"Insert column after": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u043f\u043e\u0441\u043b\u0435",
"Delete column": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446",
"Cols": "\u0421\u0442\u043e\u043b\u0431\u0446\u044b",
"Rows": "\u0421\u0442\u0440\u043e\u043a\u0438",
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
"Height": "\u0412\u044b\u0441\u043e\u0442\u0430",
"Cell spacing": "\u0420\u0430\u0441\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043c\u0435\u0436\u0434\u0443 \u044f\u0447\u0435\u0439\u043a\u0430\u043c\u0438",
"Cell padding": "\u041e\u0442\u0441\u0442\u0443\u043f\u044b \u0432 \u044f\u0447\u0435\u0439\u043a\u0430\u0445",
"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
"Show caption": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043f\u043e\u0434\u043f\u0438\u0441\u044c",
"Left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
"Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
"Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
"Cell type": "\u0422\u0438\u043f \u044f\u0447\u0435\u0439\u043a\u0438",
"Scope": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c",
"Alignment": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
"Top": "\u0421\u0432\u0435\u0440\u0445\u0443",
"Middle": "\u041f\u043e\u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435",
"Bottom": "\u0421\u043d\u0438\u0437\u0443",
"Header cell": "\u0421\u0442\u0440\u043e\u043a\u0430-\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
"Row group": "\u0421\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0438",
"Column group": "\u0421\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0446\u044b",
"Row type": "\u0422\u0438\u043f \u0441\u0442\u0440\u043e\u043a\u0438",
"Header": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
"Body": "\u0422\u0435\u043b\u043e",
"Footer": "\u041f\u043e\u0434\u0432\u0430\u043b",
"Border color": "\u0426\u0432\u0435\u0442 \u0440\u0430\u043c\u043a\u0438",
"Insert template...": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d...",
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b",
"Template": "\u0428\u0430\u0431\u043b\u043e\u043d",
"Text color": "\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430",
"Background color": "\u0426\u0432\u0435\u0442 \u0444\u043e\u043d\u0430",
"Custom...": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439...",
"Custom color": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0446\u0432\u0435\u0442",
"No color": "\u0411\u0435\u0437 \u0446\u0432\u0435\u0442\u0430",
"Remove color": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0446\u0432\u0435\u0442",
"Table of Contents": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0431\u043b\u043e\u043a\u0438",
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0441\u043a\u0440\u044b\u0442\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
"Word count": "\u0421\u0447\u0451\u0442\u0447\u0438\u043a \u0441\u043b\u043e\u0432",
"Count": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e",
"Document": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
"Selection": "\u0412\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435",
"Words": "\u0421\u043b\u043e\u0432\u0430",
"Words: {0}": "\u0421\u043b\u043e\u0432: {0}",
"{0} words": "{0} \u0441\u043b\u043e\u0432",
"File": "\u0424\u0430\u0439\u043b",
"Edit": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
"Insert": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430",
"View": "\u0412\u0438\u0434",
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442",
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430",
"Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b",
"Powered by {0}": "\u0420\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043d\u0430 {0}",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-F9 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430 \u0432 \u043c\u0435\u043d\u044e. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-F10 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430 \u0432 \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-0 \u0434\u043b\u044f \u0441\u043f\u0440\u0430\u0432\u043a\u0438",
"Image title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
"Border width": "\u0428\u0438\u0440\u0438\u043d\u0430 \u0440\u0430\u043c\u043a\u0438",
"Border style": "\u0421\u0442\u0438\u043b\u044c \u0440\u0430\u043c\u043a\u0438",
"Error": "\u041e\u0448\u0438\u0431\u043a\u0430",
"Warn": "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435",
"Valid": "\u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0435",
"To open the popup, press Shift+Enter": "\u0427\u0442\u043e\u0431\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0432\u0441\u043f\u043b\u044b\u0432\u0430\u044e\u0449\u0435\u0435 \u043e\u043a\u043d\u043e, \u043d\u0430\u0436\u043c\u0438\u0442\u0435 Shift + Enter",
"Rich Text Area. Press ALT-0 for help.": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-0 \u0434\u043b\u044f \u0441\u043f\u0440\u0430\u0432\u043a\u0438.",
"System Font": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0428\u0440\u0438\u0444\u0442",
"Failed to upload image: {0}": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435: {0}",
"Failed to load plugin: {0} from url {1}": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043f\u043b\u0430\u0433\u0438\u043d: {0} \u0438\u0437 url {1}",
"Failed to load plugin url: {0}": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c url \u043f\u043b\u0430\u0433\u0438\u043d\u0430: {0}",
"Failed to initialize plugin: {0}": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043b\u0430\u0433\u0438\u043d: {0}",
"example": "\u043f\u0440\u0438\u043c\u0435\u0440",
"Search": "\u041f\u043e\u0438\u0441\u043a",
"All": "\u0412\u0441\u0435",
"Currency": "\u0412\u0430\u043b\u044e\u0442\u0430",
"Text": "\u0422\u0435\u043a\u0441\u0442",
"Quotations": "\u0426\u0438\u0442\u0430\u0442\u044b",
"Mathematical": "\u041c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439",
"Extended Latin": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0439 \u041b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0439",
"Symbols": "\u0421\u0438\u043c\u0432\u043e\u043b\u044b",
"Arrows": "\u0421\u0442\u0440\u0435\u043b\u043a\u0438",
"User Defined": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0439 \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c",
"dollar sign": "\u0434\u043e\u043b\u043b\u0430\u0440",
"currency sign": "\u0432\u0430\u043b\u044e\u0442\u0430",
"euro-currency sign": "\u0435\u0432\u0440\u043e",
"colon sign": "\u0434\u0432\u043e\u0435\u0442\u043e\u0447\u0438\u0435",
"cruzeiro sign": "\u043a\u0440\u0443\u0437\u0435\u0439\u0440\u043e",
"french franc sign": "\u0444\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439 \u0444\u0440\u0430\u043d\u043a",
"lira sign": "\u043b\u0438\u0440\u0430",
"mill sign": "\u043c\u0438\u043b\u043b\u044c",
"naira sign": "\u043d\u0430\u0438\u0440\u0430",
"peseta sign": "\u043f\u0435\u0441\u0435\u0442\u0430",
"rupee sign": "\u0440\u0443\u043f\u0438\u044f",
"won sign": "\u0432\u043e\u043d\u0430",
"new sheqel sign": "\u043d\u043e\u0432\u044b\u0439 \u0448\u0435\u043a\u0435\u043b\u044c",
"dong sign": "\u0434\u043e\u043d\u0433",
"kip sign": "\u043a\u0438\u043f",
"tugrik sign": "\u0442\u0443\u0433\u0440\u0438\u043a",
"drachma sign": "\u0434\u0440\u0430\u0445\u043c\u0430",
"german penny symbol": "\u043f\u0444\u0435\u043d\u043d\u0438\u043d\u0433",
"peso sign": "\u043f\u0435\u0441\u043e",
"guarani sign": "\u0433\u0443\u0430\u0440\u0430\u043d\u0438",
"austral sign": "\u0430\u0443\u0441\u0442\u0440\u0430\u043b\u044c",
"hryvnia sign": "\u0433\u0440\u0438\u0432\u043d\u0430",
"cedi sign": "\u0441\u0435\u0434\u0438",
"livre tournois sign": "\u0442\u0443\u0440\u0441\u043a\u0438\u0439 \u043b\u0438\u0432\u0440",
"spesmilo sign": "\u0441\u043f\u0435\u0441\u043c\u0438\u043b\u043e",
"tenge sign": "\u0442\u0435\u043d\u0433\u0435",
"indian rupee sign": "\u0438\u043d\u0434\u0438\u0439\u0441\u043a\u0430\u044f \u0440\u0443\u043f\u0438\u044f",
"turkish lira sign": "\u0442\u0443\u0440\u0435\u0446\u043a\u0430\u044f \u043b\u0438\u0440\u0430",
"nordic mark sign": "\u0441\u043a\u0430\u043d\u0434\u0438\u043d\u0430\u0432\u0441\u043a\u0430\u044f \u043c\u0430\u0440\u043a\u0430",
"manat sign": "\u043c\u0430\u043d\u0430\u0442",
"ruble sign": "\u0440\u0443\u0431\u043b\u044c",
"yen character": "\u0438\u0435\u043d\u0430",
"yuan character": "\u044e\u0430\u043d\u044c",
"yuan character, in hong kong and taiwan": "\u0413\u043e\u043d\u043a\u043e\u043d\u0433\u0441\u043a\u0438\u0439 \/ \u0422\u0430\u0439\u0432\u0430\u043d\u044c\u0441\u043a\u0438\u0439 \u044e\u0430\u043d\u044c",
"yen\/yuan character variant one": "\u0438\u0435\u043d\u0430\/\u044e\u0430\u043d\u044c",
"Loading emoticons...": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0441\u043c\u0430\u0439\u043b\u043e\u0432 ...",
"Could not load emoticons": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b\u044b",
"People": "\u041b\u044e\u0434\u0438",
"Animals and Nature": "\u0416\u0438\u0432\u043e\u0442\u043d\u044b\u0435 \u0438 \u041f\u0440\u0438\u0440\u043e\u0434\u0430",
"Food and Drink": "\u0415\u0434\u0430 \u0438 \u041d\u0430\u043f\u0438\u0442\u043a\u0438",
"Activity": "\u041c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u044f",
"Travel and Places": "\u041f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0438 \u041c\u0435\u0441\u0442\u0430",
"Objects": "\u041e\u0431\u044a\u0435\u043a\u0442\u044b",
"Flags": "\u0424\u043b\u0430\u0433\u0438",
"Characters": "\u0421\u0438\u043c\u0432\u043e\u043b\u044b",
"Characters (no spaces)": "\u0421\u0438\u043c\u0432\u043e\u043b\u044b (\u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u0435\u043b\u043e\u0432)",
"{0} characters": "{0} \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432",
"Error: Form submit field collision.": "\u041e\u0448\u0438\u0431\u043a\u0430: \u043d\u0435\u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0435 \u043f\u043e\u043b\u044f \u0424\u043e\u0440\u043c\u044b \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438.",
"Error: No form element found.": "\u041e\u0448\u0438\u0431\u043a\u0430: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0444\u043e\u0440\u043c\u044b \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d.",
"Update": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c",
"Color swatch": "\u041e\u0431\u0440\u0430\u0437\u0435\u0446 \u0446\u0432\u0435\u0442\u0430",
"Turquoise": "\u0411\u0438\u0440\u044e\u0437\u043e\u0432\u044b\u0439",
"Green": "\u0417\u0435\u043b\u0451\u043d\u044b\u0439",
"Blue": "\u0421\u0438\u043d\u0438\u0439",
"Purple": "\u0424\u0438\u043e\u043b\u0435\u0442\u043e\u0432\u044b\u0439",
"Navy Blue": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0438\u0439",
"Dark Turquoise": "\u0422\u0435\u043c\u043d\u043e-\u0431\u0438\u0440\u044e\u0437\u043e\u0432\u044b\u0439",
"Dark Green": "\u0422\u0435\u043c\u043d\u043e-\u0437\u0435\u043b\u0435\u043d\u044b\u0439",
"Medium Blue": "\u0421\u0440\u0435\u0434\u043d\u0438\u0439 \u0441\u0438\u043d\u0438\u0439",
"Medium Purple": "\u0421\u0440\u0435\u0434\u043d\u0438\u0439 \u0444\u0438\u043e\u043b\u0435\u0442\u043e\u0432\u044b\u0439",
"Midnight Blue": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0438\u0439",
"Yellow": "\u0416\u0435\u043b\u0442\u044b\u0439",
"Orange": "\u041e\u0440\u0430\u043d\u0436\u0435\u0432\u044b\u0439",
"Red": "\u041a\u0440\u0430\u0441\u043d\u044b\u0439",
"Light Gray": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0441\u0435\u0440\u044b\u0439",
"Gray": "\u0421\u0435\u0440\u044b\u0439",
"Dark Yellow": "\u0422\u0435\u043c\u043d\u043e-\u0436\u0435\u043b\u0442\u044b\u0439",
"Dark Orange": "\u0422\u0435\u043c\u043d\u043e-\u043e\u0440\u0430\u043d\u0436\u0435\u0432\u044b\u0439",
"Dark Red": "\u0422\u0435\u043c\u043d\u043e-\u043a\u0440\u0430\u0441\u043d\u044b\u0439",
"Medium Gray": "\u0421\u0440\u0435\u0434\u043d\u0438\u0439 \u0441\u0435\u0440\u044b\u0439",
"Dark Gray": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0435\u0440\u044b\u0439",
"Light Green": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0437\u0435\u043b\u0435\u043d\u044b\u0439",
"Light Yellow": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0436\u0435\u043b\u0442\u044b\u0439",
"Light Red": "\u0421\u0432\u0435\u0442\u043b\u043e-\u043a\u0440\u0430\u0441\u043d\u044b\u0439",
"Light Purple": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0444\u0438\u043e\u043b\u0435\u0442\u043e\u0432\u044b\u0439",
"Light Blue": "\u0413\u043e\u043b\u0443\u0431\u043e\u0439",
"Dark Purple": "\u0422\u0435\u043c\u043d\u043e-\u0444\u0438\u043e\u043b\u0435\u0442\u043e\u0432\u044b\u0439",
"Dark Blue": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0438\u0439",
"Black": "\u0427\u0435\u0440\u043d\u044b\u0439",
"White": "\u0411\u0435\u043b\u044b\u0439",
"Switch to or from fullscreen mode": "\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f \u0432 \u0438\u043b\u0438 \u0438\u0437 \u043f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430",
"Open help dialog": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u043e\u043a\u043d\u043e \u0441\u043f\u0440\u0430\u0432\u043a\u0438",
"history": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f",
"styles": "\u0441\u0442\u0438\u043b\u0438",
"formatting": "\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
"alignment": "\u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
"indentation": "\u043e\u0442\u0441\u0442\u0443\u043f\u044b",
"Font": "\u0428\u0440\u0438\u0444\u0442",
"Size": "\u0420\u0430\u0437\u043c\u0435\u0440",
"More...": "\u0415\u0449\u0451...",
"Select...": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c...",
"Preferences": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
"Yes": "\u0414\u0430",
"No": "\u041d\u0435\u0442",
"Keyboard Navigation": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u044b",
"Version": "\u0412\u0435\u0440\u0441\u0438\u044f",
"Code view": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u043a\u043e\u0434\u0430",
"Open popup menu for split buttons": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0432\u0441\u043f\u043b\u044b\u0432\u0430\u044e\u0449\u0435\u0435 \u043c\u0435\u043d\u044e \u0434\u043b\u044f \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043a\u043d\u043e\u043f\u043e\u043a",
"List Properties": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u0432\u043e\u0439\u0441\u0442\u0432",
"List properties...": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u0432\u043e\u0439\u0441\u0442\u0432...",
"Start list at number": "\u041d\u0430\u0447\u0430\u0442\u044c \u043d\u0443\u043c\u0435\u0440\u0430\u0446\u0438\u044e \u0441",
"Line height": "\u0412\u044b\u0441\u043e\u0442\u0430 \u0441\u0442\u0440\u043e\u043a\u0438",
"comments": "\u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438",
"Format Painter": "\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
"Insert\/edit iframe": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u0440\u0435\u0439\u043c",
"Capitalization": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u043f\u0435\u0440\u0432\u044b\u0435",
"lowercase": "\u043d\u0438\u0436\u043d\u0438\u0439 \u0440\u0435\u0433\u0438\u0441\u0442\u0440",
"UPPERCASE": "\u0412\u0415\u0420\u0425\u041d\u0418\u0419 \u0420\u0415\u0413\u0418\u0421\u0422\u0420",
"Title Case": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f",
"permanent pen": "\u0440\u0443\u0447\u043a\u0430",
"Permanent Pen Properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u043e\u0433\u043e \u043f\u0435\u0440\u0430",
"Permanent pen properties...": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u043e\u0433\u043e \u043f\u0435\u0440\u0430...",
"case change": "\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430",
"page embed": "\u0432\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443",
"Advanced sort...": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u0430\u044f \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430...",
"Advanced Sort": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u0430\u044f \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430",
"Sort table by column ascending": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u044b \u043f\u043e \u0441\u0442\u043e\u043b\u0431\u0446\u0443 \u043f\u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u043d\u0438\u044e",
"Sort table by column descending": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u044b \u043f\u043e \u0441\u0442\u043e\u043b\u0431\u0446\u0443 \u043f\u043e \u0443\u0431\u044b\u0432\u0430\u043d\u0438\u044e",
"Sort": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
"Order": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a",
"Sort by": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e",
"Ascending": "\u041f\u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u043d\u0438\u044e",
"Descending": "\u041f\u043e \u0443\u0431\u044b\u0432\u0430\u043d\u0438\u044e",
"Column {0}": "\u0421\u0442\u043e\u043b\u0431\u0435\u0446 {0}",
"Row {0}": "\u0421\u0442\u0440\u043e\u043a\u0430 {0}",
"Spellcheck...": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f...",
"Misspelled word": "\u0421\u043b\u043e\u0432\u043e \u0441 \u043e\u0448\u0438\u0431\u043a\u043e\u0439",
"Suggestions": "\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
"Change": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c",
"Finding word suggestions": "\u041f\u043e\u0438\u0441\u043a \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043e\u043a \u0434\u043b\u044f \u0441\u043b\u043e\u0432\u0430",
"Success": "\u0423\u0441\u043f\u0435\u0445",
"Repair": "\u0418\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c",
"Issue {0} of {1}": "\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 {0} \u0438\u0437 {1}",
"Images must be marked as decorative or have an alternative text description": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u043f\u043e\u043c\u0435\u0447\u0435\u043d\u044b \u0434\u0435\u043a\u043e\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u043c\u0438 \u0438\u043b\u0438 \u0434\u043e\u043b\u0436\u043d\u044b \u0438\u043c\u0435\u0442\u044c \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"Images must have an alternative text description. Decorative images are not allowed.": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0434\u043e\u043b\u0436\u043d\u044b \u0438\u043c\u0435\u0442\u044c \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435. \u0414\u0435\u043a\u043e\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b.",
"Or provide alternative text:": "\u0418\u043b\u0438 \u0443\u043a\u0430\u0436\u0438\u0442\u0435 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435:",
"Make image decorative:": "\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043a\u0430\u043a \u0434\u0435\u043a\u043e\u0440\u0430\u0442\u0438\u0432\u043d\u043e\u0435:",
"ID attribute must be unique": "\u0410\u0442\u0440\u0438\u0431\u0443\u0442 ID \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u043c",
"Make ID unique": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u043c",
"Keep this ID and remove all others": "\u041e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0438 \u0443\u0431\u0440\u0430\u0442\u044c \u0432\u0441\u0435 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0435",
"Remove this ID": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440",
"Remove all IDs": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b",
"Checklist": "\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438"
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/sk.js
================================================
tinymce.addI18n('sk',{
"Redo": "Znova",
"Undo": "Sp\u00e4\u0165",
"Cut": "Vystrihn\u00fa\u0165",
"Copy": "Kop\u00edrova\u0165",
"Paste": "Prilepi\u0165",
"Select all": "Ozna\u010di\u0165 v\u0161etko",
"New document": "Nov\u00fd dokument",
"Ok": "Ok",
"Cancel": "Zru\u0161i\u0165",
"Visual aids": "Vizu\u00e1lne pom\u00f4cky",
"Bold": "Tu\u010dn\u00e9",
"Italic": "Kurz\u00edva",
"Underline": "Pod\u010diarknut\u00e9",
"Strikethrough": "Pre\u010diarknut\u00e9",
"Superscript": "Horn\u00fd index",
"Subscript": "Doln\u00fd index",
"Clear formatting": "Vymaza\u0165 form\u00e1tovanie",
"Align left": "Zarovna\u0165 v\u013eavo",
"Align center": "Zarovna\u0165 na stred",
"Align right": "Zarovna\u0165 vpravo",
"Justify": "Zarovna\u0165",
"Bullet list": "Zoznam s odr\u00e1\u017ekami",
"Numbered list": "\u010c\u00edslovan\u00fd zoznam",
"Decrease indent": "Zmen\u0161i\u0165 odsadenie",
"Increase indent": "Zv\u00e4\u010d\u0161i\u0165 odsadenie",
"Close": "Zatvori\u0165",
"Formats": "Form\u00e1ty",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prehliada\u010d nepodporuje priamy pr\u00edstup do schr\u00e1nky. Pou\u017eite kl\u00e1vesov\u00e9 skratky Ctrl+X\/C\/V.",
"Headers": "Z\u00e1hlavia",
"Header 1": "Z\u00e1hlavie 1",
"Header 2": "Z\u00e1hlavie 2",
"Header 3": "Z\u00e1hlavie 3",
"Header 4": "Z\u00e1hlavie 4",
"Header 5": "Z\u00e1hlavie 5",
"Header 6": "Z\u00e1hlavie 6",
"Headings": "Nadpisy",
"Heading 1": "Nadpis 1",
"Heading 2": "Nadpis 2",
"Heading 3": "Nadpis 3",
"Heading 4": "Nadpis 4",
"Heading 5": "Nadpis 5",
"Heading 6": "Nadpis 6",
"Preformatted": "Predform\u00e1tovan\u00e9",
"Div": "Div",
"Pre": "Pre",
"Code": "K\u00f3d",
"Paragraph": "Odstavec",
"Blockquote": "Blockquote",
"Inline": "Vlo\u017een\u00e9 \u0161t\u00fdly",
"Blocks": "Bloky",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Vkladanie je v m\u00f3de neform\u00e1tovan\u00e9ho textu. Vkladan\u00fd obsah bude vlo\u017een\u00fd ako neform\u00e1tovan\u00fd, a\u017e pok\u00fdm t\u00fato mo\u017enos\u0165 nevypnete.",
"Fonts": "Typy p\u00edsma",
"Font Sizes": "Ve\u013ekosti p\u00edsma",
"Class": "Trieda",
"Browse for an image": "N\u00e1js\u0165 obr\u00e1zok",
"OR": "ALEBO",
"Drop an image here": "Pretiahnite obr\u00e1zok sem",
"Upload": "Nahra\u0165",
"Block": "Blok",
"Align": "Zarovna\u0165",
"Default": "V\u00fdchodzie",
"Circle": "Kruh",
"Disc": "Disk",
"Square": "\u0160tvorec",
"Lower Alpha": "Mal\u00e9 p\u00edsmen\u00e1",
"Lower Greek": "Mal\u00e9 gr\u00e9cke p\u00edsmen\u00e1",
"Lower Roman": "Mal\u00e9 r\u00edmske \u010d\u00edslice",
"Upper Alpha": "Ve\u013ek\u00e9 p\u00edsmen\u00e1",
"Upper Roman": "Ve\u013ek\u00e9 r\u00edmske \u010d\u00edslice",
"Anchor...": "Kotva...",
"Name": "N\u00e1zov",
"Id": "Id",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id by malo za\u010d\u00edna\u0165 p\u00edsmenom, nasledovan\u00e9 p\u00edsmenami, \u010d\u00edslami, pom\u013a\u010dkami, bodkami, dvojbodkami alebo podtr\u017en\u00edkmi.",
"You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zmeny, naozaj chcete opusti\u0165 str\u00e1nku?",
"Restore last draft": "Obnovi\u0165 posledn\u00fd koncept",
"Special character...": "\u0160peci\u00e1lny znak...",
"Source code": "Zdrojov\u00fd k\u00f3d",
"Insert\/Edit code sample": "Vlo\u017ei\u0165\/upravi\u0165 vzorku k\u00f3du",
"Language": "Jazyk",
"Code sample...": "Vzorka k\u00f3du...",
"Color Picker": "V\u00fdber farieb",
"R": "R",
"G": "G",
"B": "B",
"Left to right": "Z\u013eava doprava",
"Right to left": "Sprava do\u013eava",
"Emoticons...": "Smajl\u00edky...",
"Metadata and Document Properties": "Meta\u00fadaje a vlastnosti dokumentu",
"Title": "Nadpis",
"Keywords": "K\u013e\u00fa\u010dov\u00e9 slov\u00e1",
"Description": "Popis",
"Robots": "Preh\u013ead\u00e1vacie roboty",
"Author": "Autor",
"Encoding": "K\u00f3dovanie",
"Fullscreen": "Na cel\u00fa obrazovku",
"Action": "Action",
"Shortcut": "Shortcut",
"Help": "Help",
"Address": "Address",
"Focus to menubar": "Focus to menubar",
"Focus to toolbar": "Focus to toolbar",
"Focus to element path": "Focus to element path",
"Focus to contextual toolbar": "Focus to contextual toolbar",
"Insert link (if link plugin activated)": "Insert link (if link plugin activated)",
"Save (if save plugin activated)": "Save (if save plugin activated)",
"Find (if searchreplace plugin activated)": "Find (if searchreplace plugin activated)",
"Plugins installed ({0}):": "Plugins installed ({0}):",
"Premium plugins:": "Premium plugins:",
"Learn more...": "Learn more...",
"You are using {0}": "You are using {0}",
"Plugins": "Pluginy",
"Handy Shortcuts": "U\u017eito\u010dn\u00e9 odkazy",
"Horizontal line": "Horizont\u00e1lna \u010diara",
"Insert\/edit image": "Vlo\u017ei\u0165\/upravi\u0165 obr\u00e1zok",
"Image description": "Popis obr\u00e1zku",
"Source": "Zdroj",
"Dimensions": "Rozmery",
"Constrain proportions": "Vymedzen\u00e9 proporcie",
"General": "Hlavn\u00e9",
"Advanced": "Pokro\u010dil\u00e9",
"Style": "\u0160t\u00fdl",
"Vertical space": "Vertik\u00e1lny priestor",
"Horizontal space": "Horizont\u00e1lny priestor",
"Border": "Or\u00e1movanie",
"Insert image": "Vlo\u017ei\u0165 obr\u00e1zok",
"Image...": "Obr\u00e1zok...",
"Image list": "Zoznam obr\u00e1zkov",
"Rotate counterclockwise": "Oto\u010di\u0165 proti smeru hodinov\u00fdch ru\u010di\u010diek",
"Rotate clockwise": "Oto\u010di\u0165 v smere hodinov\u00fdch ru\u010di\u010diek",
"Flip vertically": "Preklopi\u0165 vertik\u00e1lne",
"Flip horizontally": "Preklopi\u0165 horizont\u00e1lne",
"Edit image": "Upravi\u0165 obr\u00e1zok",
"Image options": "Mo\u017enosti obr\u00e1zku",
"Zoom in": "Pribl\u00ed\u017ei\u0165",
"Zoom out": "Oddiali\u0165",
"Crop": "Vyreza\u0165",
"Resize": "Zmeni\u0165 ve\u013ekos\u0165",
"Orientation": "Orient\u00e1cia",
"Brightness": "Jas",
"Sharpen": "Zaostri\u0165",
"Contrast": "Kontrast",
"Color levels": "\u00darovne farieb",
"Gamma": "Gama",
"Invert": "Invertova\u0165",
"Apply": "Pou\u017ei\u0165",
"Back": "Sp\u00e4\u0165",
"Insert date\/time": "Vlo\u017ei\u0165 d\u00e1tum\/\u010das",
"Date\/time": "D\u00e1tum\/\u010das",
"Insert\/Edit Link": "Vlo\u017ei\u0165\/Upravi\u0165 odkaz",
"Insert\/edit link": "Vlo\u017ei\u0165\/upravi\u0165 odkaz",
"Text to display": "Zobrazen\u00fd text",
"Url": "Url",
"Open link in...": "Otvori\u0165 odkaz v...",
"Current window": "Aktu\u00e1lne okno",
"None": "\u017diadne",
"New window": "Nov\u00e9 okno",
"Remove link": "Odstr\u00e1ni\u0165 odkaz",
"Anchors": "Kotvy",
"Link...": "Odkaz...",
"Paste or type a link": "Prilepte alebo nap\u00ed\u0161te odkaz",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, ktor\u00fa ste vlo\u017eili je pravdepodobne emailov\u00e1 adresa. \u017del\u00e1te si prida\u0165 vy\u017eadovan\u00fa mailto: predponu?",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL adresa ktor\u00fa ste zadali vyzer\u00e1 ako extern\u00fd odkaz. Chcete prida\u0165 vy\u017eadovan\u00fa http:\/\/ predponu?",
"Link list": "Zoznam odkazov",
"Insert video": "Vlo\u017ei\u0165 video",
"Insert\/edit video": "Vlo\u017ei\u0165\/upravi\u0165 video",
"Insert\/edit media": "Vlo\u017ei\u0165\/upravi\u0165 m\u00e9di\u00e1",
"Alternative source": "Alternat\u00edvny zdroj",
"Alternative source URL": "Alternat\u00edvny zdroj URL",
"Media poster (Image URL)": "Obr\u00e1zok m\u00e9dia (URL obr\u00e1zka)",
"Paste your embed code below:": "Vlo\u017ete k\u00f3d pre vlo\u017eenie na str\u00e1nku:",
"Embed": "Vlo\u017een\u00e9",
"Media...": "M\u00e9di\u00e1...",
"Nonbreaking space": "Nedelite\u013en\u00e1 medzera",
"Page break": "Zalomenie str\u00e1nky",
"Paste as text": "Vlo\u017ei\u0165 ako text",
"Preview": "N\u00e1h\u013ead",
"Print...": "Tla\u010d...",
"Save": "Ulo\u017ei\u0165",
"Find": "H\u013eada\u0165",
"Replace with": "Nahradi\u0165 za",
"Replace": "Nahradi\u0165",
"Replace all": "Nahradi\u0165 v\u0161etko",
"Previous": "Predch\u00e1dzaj\u00face",
"Next": "Nasleduj\u00face",
"Find and replace...": "N\u00e1js\u0165 a nahradi\u0165...",
"Could not find the specified string.": "Zadan\u00fd re\u0165azec sa nena\u0161iel.",
"Match case": "Rozli\u0161ova\u0165 ve\u013ek\u00e9\/mal\u00e9",
"Find whole words only": "H\u013eada\u0165 len cel\u00e9 slov\u00e1",
"Spell check": "Kontrola pravopisu",
"Ignore": "Ignorova\u0165",
"Ignore all": "Ignorova\u0165 v\u0161etko",
"Finish": "Dokon\u010di\u0165",
"Add to Dictionary": "Prida\u0165 do slovn\u00edka",
"Insert table": "Vlo\u017ei\u0165 tabu\u013eku",
"Table properties": "Nastavenia tabu\u013eky",
"Delete table": "Zmaza\u0165 tabu\u013eku",
"Cell": "Bunka",
"Row": "Riadok",
"Column": "St\u013apec",
"Cell properties": "Vlastnosti bunky",
"Merge cells": "Spoji\u0165 bunky",
"Split cell": "Rozdeli\u0165 bunku",
"Insert row before": "Vlo\u017ei\u0165 nov\u00fd riadok pred",
"Insert row after": "Vlo\u017ei\u0165 nov\u00fd riadok za",
"Delete row": "Zmaza\u0165 riadok",
"Row properties": "Vlastnosti riadku",
"Cut row": "Vystrihn\u00fa\u0165 riadok",
"Copy row": "Kop\u00edrova\u0165 riadok",
"Paste row before": "Vlo\u017ei\u0165 riadok pred",
"Paste row after": "Vlo\u017ei\u0165 riadok za",
"Insert column before": "Prida\u0165 nov\u00fd st\u013apec pred",
"Insert column after": "Prida\u0165 nov\u00fd st\u013apec za",
"Delete column": "Vymaza\u0165 st\u013apec",
"Cols": "St\u013apce",
"Rows": "Riadky",
"Width": "\u0160\u00edrka",
"Height": "V\u00fd\u0161ka",
"Cell spacing": "Priestor medzi bunkami",
"Cell padding": "Odsadenie v bunk\u00e1ch",
"Show caption": "Zobrazi\u0165 popis",
"Left": "V\u013eavo",
"Center": "Na stred",
"Right": "Vpravo",
"Cell type": "Typ bunky",
"Scope": "Oblas\u0165",
"Alignment": "Zarovnanie",
"H Align": "Horizont\u00e1lne zarovnanie",
"V Align": "Vertik\u00e1lne zarovnanie",
"Top": "Vrch",
"Middle": "Stred",
"Bottom": "Spodok",
"Header cell": "Bunka z\u00e1hlavia",
"Row group": "Skupina riadkov",
"Column group": "Skupina st\u013apcov",
"Row type": "Typ riadku",
"Header": "Z\u00e1hlavie",
"Body": "Telo",
"Footer": "P\u00e4ti\u010dka",
"Border color": "Farba or\u00e1movania",
"Insert template...": "Vlo\u017ei\u0165 \u0161abl\u00f3nu...",
"Templates": "\u0160abl\u00f3ny",
"Template": "\u0160abl\u00f3na",
"Text color": "Farba textu",
"Background color": "Farba pozadia",
"Custom...": "Vlastn\u00e1...",
"Custom color": "Vlastn\u00e1 farba",
"No color": "Bez farby",
"Remove color": "Odstr\u00e1ni\u0165 farbu",
"Table of Contents": "Obsah",
"Show blocks": "Zobrazi\u0165 bloky",
"Show invisible characters": "Zobrazi\u0165 skryt\u00e9 znaky",
"Word count": "Po\u010det slov",
"Count": "Po\u010det",
"Document": "Dokument",
"Selection": "V\u00fdber",
"Words": "Slov\u00e1",
"Words: {0}": "Slov: {0}",
"{0} words": "{0} slov\u00e1\/slov",
"File": "S\u00fabor",
"Edit": "Upravi\u0165",
"Insert": "Vlo\u017ei\u0165",
"View": "Zobrazi\u0165",
"Format": "Form\u00e1t",
"Table": "Tabu\u013eka",
"Tools": "N\u00e1stroje",
"Powered by {0}": "Pou\u017e\u00edva {0}",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Textov\u00e9 pole. Stla\u010dte ALT-F9 pre zobrazenie menu, ALT-F10 pre zobrazenie panela n\u00e1strojov, ALT-0 pre n\u00e1povedu.",
"Image title": "N\u00e1zov obr\u00e1zka",
"Border width": "\u0160\u00edrka okraja",
"Border style": "\u0160t\u00fdl okraja",
"Error": "Chyba",
"Warn": "Upozornenie",
"Valid": "Platn\u00e9",
"To open the popup, press Shift+Enter": "Na otvorenie kontextovej ponuky stla\u010dte Shift+Enter",
"Rich Text Area. Press ALT-0 for help.": "Oblas\u0165 pre text vo form\u00e1te RTF. Stla\u010dte ALT-0 pre n\u00e1povedu.",
"System Font": "Syst\u00e9mov\u00e9 p\u00edsmo",
"Failed to upload image: {0}": "Obr\u00e1zok sa nepodarilo nahra\u0165: {0}",
"Failed to load plugin: {0} from url {1}": "Plugin: {0} sa nepodarilo nahra\u0165 z url {1}",
"Failed to load plugin url: {0}": "Nepodarilo sa nahra\u0165 plugin url: {0}",
"Failed to initialize plugin: {0}": "Nepodarilo sa inicializova\u0165 plugin: {0}",
"example": "pr\u00edklad",
"Search": "Vyh\u013eada\u0165",
"All": "V\u0161etko",
"Currency": "Mena",
"Text": "Text",
"Quotations": "Kvot\u00e1cie",
"Mathematical": "Matematick\u00e9",
"Extended Latin": "Roz\u0161\u00edren\u00e1 latinka",
"Symbols": "Symboly",
"Arrows": "\u0160\u00edpky",
"User Defined": "Definovan\u00e9 pou\u017e\u00edvate\u013eom",
"dollar sign": "znak pre dol\u00e1r",
"currency sign": "znak meny",
"euro-currency sign": "znak eura",
"colon sign": "znak dvojbodky",
"cruzeiro sign": "znak pre cruzeiro",
"french franc sign": "znak pre franc\u00fazsky frank",
"lira sign": "znak pre l\u00edru",
"mill sign": "znak pre mill",
"naira sign": "znak pre nairu",
"peseta sign": "znak pre pesetu",
"rupee sign": "znak pre rupiu",
"won sign": "znak pre won",
"new sheqel sign": "znak pre nov\u00fd \u0161ekel",
"dong sign": "znak pre dong",
"kip sign": "znak pre kip",
"tugrik sign": "znak pre tugrik",
"drachma sign": "znak pre drachmu",
"german penny symbol": "znak pre nemeck\u00fd pfennig",
"peso sign": "znak pre peso",
"guarani sign": "znak pre guarani",
"austral sign": "znak pre austral",
"hryvnia sign": "znak pre hrivnu",
"cedi sign": "znak pre cedi",
"livre tournois sign": "znak pre livre tournois",
"spesmilo sign": "znak pre spesmilo",
"tenge sign": "znak pre tenge",
"indian rupee sign": "znak pre indick\u00fa rupiu",
"turkish lira sign": "znak pre tureck\u00fa l\u00edru",
"nordic mark sign": "znak pre nordick\u00fa marku",
"manat sign": "znak pre manat",
"ruble sign": "znak pre rube\u013e",
"yen character": "znak pre jen",
"yuan character": "znak pre j\u00fcan",
"yuan character, in hong kong and taiwan": "znak pre j\u00fcan, v Hongkongu a Taiwane",
"yen\/yuan character variant one": "znak pre jen\/j\u00fcan variant jedna",
"Loading emoticons...": "Na\u010d\u00edtavam smajl\u00edky...",
"Could not load emoticons": "Smajl\u00edky sa nepodarilo na\u010d\u00edta\u0165",
"People": "\u013dudia",
"Animals and Nature": "Zvierat\u00e1 a pr\u00edroda",
"Food and Drink": "Jedlo a n\u00e1poje",
"Activity": "Aktivity",
"Travel and Places": "Cestovanie a miesta",
"Objects": "Objekty",
"Flags": "Vlajky",
"Characters": "Znaky",
"Characters (no spaces)": "Znaky (bez medzier)",
"{0} characters": "Znaky: {0}",
"Error: Form submit field collision.": "Chyba: konflikt po\u013ea odosielania formul\u00e1ra.",
"Error: No form element found.": "Chyba: nena\u0161iel sa prvok formul\u00e1ra.",
"Update": "Aktualizova\u0165",
"Color swatch": "Vzorky farieb",
"Turquoise": "Tyrkysov\u00e1",
"Green": "Zelen\u00e1",
"Blue": "Modr\u00e1",
"Purple": "Fialov\u00e1",
"Navy Blue": "N\u00e1morn\u00edcka modr\u00e1",
"Dark Turquoise": "Tmavotyrkysov\u00e1",
"Dark Green": "Tmavozelen\u00e1",
"Medium Blue": "Stredn\u00e1 modr\u00e1",
"Medium Purple": "Stredn\u00e1 fialov\u00e1",
"Midnight Blue": "Polno\u010dn\u00e1 modr\u00e1",
"Yellow": "\u017dlt\u00e1",
"Orange": "Oran\u017eov\u00e1",
"Red": "\u010cerven\u00e1",
"Light Gray": "Svetlosiv\u00e1",
"Gray": "Siv\u00e1",
"Dark Yellow": "Tmavo\u017elt\u00e1",
"Dark Orange": "Tmavooran\u017eov\u00e1",
"Dark Red": "Tmavo\u010derven\u00e1",
"Medium Gray": "Stredn\u00e1 siv\u00e1",
"Dark Gray": "Tmavosiv\u00e1",
"Light Green": "Svetlozelen\u00e1",
"Light Yellow": "Svetlo\u017elt\u00e1",
"Light Red": "Svetlo\u010derven\u00e1",
"Light Purple": "Svetlofialov\u00e1",
"Light Blue": "Svetlomodr\u00e1",
"Dark Purple": "Tmavofialov\u00e1",
"Dark Blue": "Tmavomodr\u00e1",
"Black": "\u010cierna",
"White": "Biela",
"Switch to or from fullscreen mode": "Prepn\u00fa\u0165 do alebo z re\u017eimu plnej obrazovky",
"Open help dialog": "Otvori\u0165 okno n\u00e1povedy",
"history": "hist\u00f3ria",
"styles": "\u0161t\u00fdly",
"formatting": "form\u00e1tovanie",
"alignment": "zarovnanie",
"indentation": "odsadenie",
"permanent pen": "fixka",
"comments": "koment\u00e1re",
"Format Painter": "Kop\u00edrova\u0165 form\u00e1t",
"Insert\/edit iframe": "Vlo\u017ei\u0165\/upravi\u0165 iframe",
"Capitalization": "Ve\u013ek\u00e9 p\u00edsmen\u00e1",
"lowercase": "mal\u00e9 p\u00edsmen\u00e1",
"UPPERCASE": "V\u0160ETKY P\u00cdSMEN\u00c1 VE\u013dK\u00c9",
"Title Case": "Prv\u00e9 P\u00edsmen\u00e1 Ve\u013ek\u00e9",
"Permanent Pen Properties": "Vlastnosti fixky",
"Permanent pen properties...": "Vlastnosti fixky...",
"Font": "P\u00edsmo",
"Size": "Ve\u013ekos\u0165",
"More...": "Viac...",
"Spellcheck Language": "Jazyk kontroly pravopisu",
"Select...": "Vyberte...",
"Preferences": "Preferencie",
"Yes": "\u00c1no",
"No": "Nie",
"Keyboard Navigation": "Navig\u00e1cia pomocou kl\u00e1vesnice",
"Version": "Verzia",
"Anchor": "Odkaz",
"Special character": "\u0160peci\u00e1lny znak",
"Color": "Farba",
"Emoticons": "Smajl\u00edci",
"Document properties": "Vlastnosti dokumentu",
"Image": "Obr\u00e1zok",
"Insert link": "Vlo\u017ei\u0165 odkaz",
"Target": "Cie\u013e",
"Link": "Odkaz",
"Poster": "Uk\u00e1\u017eka",
"Media": "M\u00e9di\u00e1",
"Print": "Tla\u010di\u0165",
"Prev": "Predch\u00e1dzaj\u00face",
"Find and replace": "Vyh\u013eada\u0165 a nahradi\u0165",
"Whole words": "Cel\u00e9 slov\u00e1",
"Spellcheck": "Kontrola pravopisu",
"Caption": "Popisok",
"Insert template": "Vlo\u017ei\u0165 \u0161abl\u00f3nu"
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/sl.js
================================================
tinymce.addI18n('sl',{
"Redo": "Ponovno uveljavi",
"Undo": "Razveljavi",
"Cut": "Izre\u017ei",
"Copy": "Kopiraj",
"Paste": "Prilepi",
"Select all": "Izberi vse",
"New document": "Nov dokument",
"Ok": "V redu",
"Cancel": "Prekli\u010di",
"Visual aids": "Vizualni pripomo\u010dki",
"Bold": "Krepko",
"Italic": "Po\u0161evno",
"Underline": "Pod\u010drtano",
"Strikethrough": "Pre\u010drtano",
"Superscript": "Nadpisano",
"Subscript": "Podpisano",
"Clear formatting": "Odstrani oblikovanje",
"Align left": "Leva poravnava",
"Align center": "Sredinska poravnava",
"Align right": "Desna poravnava",
"Justify": "Obojestranska poravnava",
"Bullet list": "Ozna\u010den seznam",
"Numbered list": "O\u0161tevil\u010den seznam",
"Decrease indent": "Zmanj\u0161aj zamik",
"Increase indent": "Pove\u010daj zamik",
"Close": "Zapri",
"Formats": "Oblika",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Varnostne nastavitve brskalnika ne dopu\u0161\u010dajo direktnega dostopa do odlo\u017ei\u0161\u010da. Uporabite kombinacijo tipk Ctrl + X\/C\/V na tipkovnici.",
"Headers": "Naslovi",
"Header 1": "Naslov 1",
"Header 2": "Naslov 2",
"Header 3": "Naslov 3",
"Header 4": "Naslov 4",
"Header 5": "Naslov 5",
"Header 6": "Naslov 6",
"Headings": "Naslovi",
"Heading 1": "Naslov 1",
"Heading 2": "Naslov 2",
"Heading 3": "Naslov 3",
"Heading 4": "Naslov 4",
"Heading 5": "Naslov 5",
"Heading 6": "Naslov 6",
"Preformatted": "Predformatirano",
"Div": "Div",
"Pre": "Pre",
"Code": "Koda",
"Paragraph": "Odstavek",
"Blockquote": "Blockquote",
"Inline": "Med besedilom",
"Blocks": "Bloki",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Odlagali\u0161\u010de je sedaj v tekstovnem na\u010dinu. Vsebina bo preslikana kot besedilo, dokler te mo\u017enosti ne izklju\u010dite.",
"Fonts": "Pisave",
"Font Sizes": "Velikosti pisave",
"Class": "Razred",
"Browse for an image": "Prebrskaj za sliko",
"OR": "ALI",
"Drop an image here": "Spusti sliko sem",
"Upload": "Nalo\u017ei",
"Block": "Blok",
"Align": "Poravnava",
"Default": "Privzeto",
"Circle": "Krog",
"Disc": "Disk",
"Square": "Kvadrat",
"Lower Alpha": "Mala alfa",
"Lower Greek": "Male gr\u0161ke \u010drke",
"Lower Roman": "Male rimske \u0161tevilke",
"Upper Alpha": "Velika alfa",
"Upper Roman": "Velike rimske \u0161tevilke",
"Anchor...": "Sidro ...",
"Name": "Naziv",
"Id": "Id",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id se mora za\u010deti s \u010drko, sledijo samo \u010drke, \u0161tevilke, pomi\u0161ljaji, pike, dvopi\u010dja ali pod\u010drtaji.",
"You have unsaved changes are you sure you want to navigate away?": "Imate neshranjene spremembe. Ste prepri\u010dati, da \u017eelite zapustiti stran?",
"Restore last draft": "Obnovi zadnji osnutek",
"Special character...": "Poseben znak ...",
"Source code": "Izvorna koda",
"Insert\/Edit code sample": "Vstavi\/Uredi vzor\u010dno kodo",
"Language": "Jezik",
"Code sample...": "Vzor\u010dna koda ...",
"Color Picker": "Izbirnik barve",
"R": "R",
"G": "G",
"B": "B",
"Left to right": "Od leve proti desni",
"Right to left": "Od desne proti levi",
"Emoticons": "\u010custveni simboli",
"Emoticons...": "\u010custveni simboli ...",
"Metadata and Document Properties": "Metapodatki in lastnosti dokumenta",
"Title": "Naslov",
"Keywords": "Klju\u010dne besede",
"Description": "Opis",
"Robots": "Robotki",
"Author": "Avtor",
"Encoding": "Kodiranje",
"Fullscreen": "\u010cez cel zaslon",
"Action": "Dejanje",
"Shortcut": "Bli\u017enjica",
"Help": "Pomo\u010d",
"Address": "Naslov",
"Focus to menubar": "Poudarek na menijski vrstici",
"Focus to toolbar": "Poudarek na orodni vrstici",
"Focus to element path": "Poudarek na poti elementa",
"Focus to contextual toolbar": "Poudarek na kontekstualni orodni vrstici",
"Insert link (if link plugin activated)": "Vstavi povezavo (\u010de je aktiviran vti\u010dnik za povezavo)",
"Save (if save plugin activated)": "Shrani (\u010de je aktiviran vti\u010dnik za shranjevanje)",
"Find (if searchreplace plugin activated)": "I\u0161\u010di (\u010de je aktiviran vti\u010dnik za iskanje\/zamenjavo)",
"Plugins installed ({0}):": "Name\u0161\u010deni vti\u010dniki ({0}):",
"Premium plugins:": "Premium vti\u010dniki:",
"Learn more...": "Ve\u010d ...",
"You are using {0}": "Uporabljate {0}",
"Plugins": "Vti\u010dniki",
"Handy Shortcuts": "Uporabne bli\u017enjice",
"Horizontal line": "Vodoravna \u010drta",
"Insert\/edit image": "Vstavi\/uredi sliko",
"Alternative description": "Nadomestni opis",
"Accessibility": "Dostopnost",
"Image is decorative": "Slika je okrasna",
"Source": "Pot",
"Dimensions": "Dimenzije",
"Constrain proportions": "Obdr\u017ei razmerje",
"General": "Splo\u0161no",
"Advanced": "Napredno",
"Style": "Slog",
"Vertical space": "Navpi\u010dni prostor",
"Horizontal space": "Vodoravni prostor",
"Border": "Meja",
"Insert image": "Vnesi sliko",
"Image...": "Slika ...",
"Image list": "Seznam slik",
"Rotate counterclockwise": "Zavrti v nasprotni smeri urnega kazalca",
"Rotate clockwise": "Zavrti v smeri urnega kazalca",
"Flip vertically": "Obrni navpi\u010dno",
"Flip horizontally": "Obrni vodoravno",
"Edit image": "Uredi sliko",
"Image options": "Mo\u017enosti slike",
"Zoom in": "Pove\u010daj",
"Zoom out": "Pomanj\u0161aj",
"Crop": "Obre\u017ei",
"Resize": "Spremeni velikost",
"Orientation": "Usmerjenost",
"Brightness": "Svetlost",
"Sharpen": "Izostri",
"Contrast": "Kontrast",
"Color levels": "Barvni nivo",
"Gamma": "Gama",
"Invert": "Obrni",
"Apply": "Uporabi",
"Back": "Nazaj",
"Insert date\/time": "Vstavi datum\/\u010das",
"Date\/time": "Datum\/\u010das",
"Insert\/edit link": "Vstavi\/uredi povezavo",
"Text to display": "Besedilo za prikaz",
"Url": "Povezava",
"Open link in...": "Odpri povezavo v ...",
"Current window": "Trenutno okno",
"None": "Brez",
"New window": "Novo okno",
"Open link": "Odpri povezavo",
"Remove link": "Odstrani povezavo",
"Anchors": "Sidra",
"Link...": "Povezava ...",
"Paste or type a link": "Prilepite ali vnesite povezavo",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Vneseni URL predstavlja e-po\u0161tni naslov. Ali \u017eelite dodati potrebno predpono \"mailto:\"?",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Vneseni URL predstavlja zunanjo povezavo. Ali \u017eelite dodati predpono \"http:\/\/\"?",
"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Vneseni URL naslov predstavlja zunanjo povezavo. Ali mu \u017eelite dodati predpono https:\/\/ ?",
"Link list": "Seznam povezav",
"Insert video": "Vstavi video",
"Insert\/edit video": "Vstavi\/uredi video",
"Insert\/edit media": "Vstavi\/uredi medij",
"Alternative source": "Nadomestni vir",
"Alternative source URL": "Nadomestni vir URL",
"Media poster (Image URL)": "Medijski poster (URL slike)",
"Paste your embed code below:": "Spodaj prilepite kodo za vdelavo:",
"Embed": "Vdelaj",
"Media...": "Mediji ...",
"Nonbreaking space": "Nedeljivi presledek",
"Page break": "Prelom strani",
"Paste as text": "Vnesi kot besedilo",
"Preview": "Predogled",
"Print...": "Natisni ...",
"Save": "Shrani",
"Find": "Najdi",
"Replace with": "Zamenjaj z",
"Replace": "Zamenjaj",
"Replace all": "Zamenjaj vse",
"Previous": "Prej\u0161nja",
"Next": "Naslednja",
"Find and Replace": "Najdi in zamenjaj",
"Find and replace...": "Najdi in zamenjaj ...",
"Could not find the specified string.": "Iskanje ni vrnilo rezultatov.",
"Match case": "Ujemanje malih in velikih \u010drk",
"Find whole words only": "I\u0161\u010di samo cele besede",
"Find in selection": "I\u0161\u010di v izboru",
"Spellcheck": "\u010crkovalnik",
"Spellcheck Language": "Jezik \u010drkovalnika",
"No misspellings found.": "Ni najdenih napak v \u010drkovanju.",
"Ignore": "Prezri",
"Ignore all": "Prezri vse",
"Finish": "Zaklju\u010di",
"Add to Dictionary": "Dodaj v slovar",
"Insert table": "Vstavi tabelo",
"Table properties": "Lastnosti tabele",
"Delete table": "Izbri\u0161i tabelo",
"Cell": "Celica",
"Row": "Vrstica",
"Column": "Stolpec",
"Cell properties": "Lastnosti celice",
"Merge cells": "Zdru\u017ei celice",
"Split cell": "Razdeli celico",
"Insert row before": "Vstavi vrstico pred",
"Insert row after": "Vstavi vrstico za",
"Delete row": "Izbri\u0161i vrstico",
"Row properties": "Lastnosti vrstice",
"Cut row": "Izre\u017ei vrstico",
"Copy row": "Kopiraj vrstico",
"Paste row before": "Prilepi vrstico pred",
"Paste row after": "Prilepi vrstico za",
"Insert column before": "Vstavi stolpec pred",
"Insert column after": "Vstavi stolpec za",
"Delete column": "Izbri\u0161i stolpec",
"Cols": "Stolpci",
"Rows": "Vrstice",
"Width": "\u0160irina",
"Height": "Vi\u0161ina",
"Cell spacing": "Razmik med celicami",
"Cell padding": "Polnilo med celicami",
"Caption": "Naslov",
"Show caption": "Poka\u017ei napis",
"Left": "Leva",
"Center": "Sredinska",
"Right": "Desna",
"Cell type": "Tip celice",
"Scope": "Obseg",
"Alignment": "Poravnava",
"H Align": "Vodoravna poravnava",
"V Align": "Navpi\u010dna poravnava",
"Top": "Vrh",
"Middle": "Sredina",
"Bottom": "Dno",
"Header cell": "Celica glave",
"Row group": "Grupiranje vrstic",
"Column group": "Grupiranje stolpcev",
"Row type": "Tip vrstice",
"Header": "Header",
"Body": "Vsebina",
"Footer": "Footer",
"Border color": "Barva obrobe",
"Insert template...": "Vstavi predlogo ...",
"Templates": "Predloge",
"Template": "Predloga",
"Text color": "Barva besedila",
"Background color": "Barva ozadja",
"Custom...": "Po meri ...",
"Custom color": "Barva po meri",
"No color": "Brezbarvno",
"Remove color": "Odstrani barvo",
"Table of Contents": "Kazalo",
"Show blocks": "Prika\u017ei bloke",
"Show invisible characters": "Prika\u017ei skrite znake",
"Word count": "\u0160tevilo besed",
"Count": "\u0160tevilo",
"Document": "Dokument",
"Selection": "Izbor",
"Words": "Besede",
"Words: {0}": "Besed: {0}",
"{0} words": "{0} besed",
"File": "Datoteka",
"Edit": "Uredi",
"Insert": "Vstavi",
"View": "Pogled",
"Format": "Oblika",
"Table": "Tabela",
"Tools": "Orodja",
"Powered by {0}": "Uporablja tehnologijo {0}",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Bogato besedilo. Pritisnite ALT-F9 za meni. Pritisnite ALT-F10 za orodno vrstico. Pritisnite ALT-0 za pomo\u010d",
"Image title": "Naslov slike",
"Border width": "\u0160irina obrobe",
"Border style": "Slog obrobe",
"Error": "Napaka",
"Warn": "Opozorilo",
"Valid": "Veljavno",
"To open the popup, press Shift+Enter": "Za odpiranje pojavnega okna pritisnite Shift + Enter.",
"Rich Text Area. Press ALT-0 for help.": "Bogato besedilo. Pritisnite ALT-0 za pomo\u010d.",
"System Font": "Sistemska pisava",
"Failed to upload image: {0}": "Napaka nalaganja slike: {0}",
"Failed to load plugin: {0} from url {1}": "Napaka nalaganja vti\u010dnika: {0} z url {1}",
"Failed to load plugin url: {0}": "Napaka nalaganja url: {0}",
"Failed to initialize plugin: {0}": "Napaka inicializacije vti\u010dnika: {0}",
"example": "primer",
"Search": "Iskanje",
"All": "Vse",
"Currency": "Valuta",
"Text": "Besedilo",
"Quotations": "Citati",
"Mathematical": "Matemati\u010dno",
"Extended Latin": "Raz\u0161irjena latinica",
"Symbols": "Simboli",
"Arrows": "Pu\u0161\u010dice",
"User Defined": "Uporabnik dolo\u010den",
"dollar sign": "znak za dolar",
"currency sign": "znak za valuto",
"euro-currency sign": "znak za evro",
"colon sign": "znak za dvopi\u010dje",
"cruzeiro sign": "znak za cruzeiro",
"french franc sign": "znak za francoski frank",
"lira sign": "znak za liro",
"mill sign": "znak za mill",
"naira sign": "znak za nairo",
"peseta sign": "znak za peseto",
"rupee sign": "znak za rupijo",
"won sign": "znak za won",
"new sheqel sign": "znak za novi \u0161ekl",
"dong sign": "znak za dong",
"kip sign": "znak za kip",
"tugrik sign": "znak za tugrik",
"drachma sign": "znak za drahmo",
"german penny symbol": "znak za nem\u0161ki peni",
"peso sign": "znak za peso",
"guarani sign": "znak za guarani",
"austral sign": "znak za austral",
"hryvnia sign": "znak za hrivnijo",
"cedi sign": "znak za cedi",
"livre tournois sign": "znak za livre tournois",
"spesmilo sign": "znak za spesmilo",
"tenge sign": "znak za tenge",
"indian rupee sign": "znak za indijsko rupijo",
"turkish lira sign": "znak za tur\u0161ko liro",
"nordic mark sign": "znak za nordijsko marko",
"manat sign": "znak za manat",
"ruble sign": "znak za rubelj",
"yen character": "znak za jen",
"yuan character": "znak za yuan",
"yuan character, in hong kong and taiwan": "znak za yuan, v Hongkongu in na Tajvanu",
"yen\/yuan character variant one": "znak za jen\/yuan, prva razli\u010dica",
"Loading emoticons...": "Nalaganje \u010dustvenih simbolov ...",
"Could not load emoticons": "\u010custvenih simbolov ni mogo\u010de nalo\u017eiti.",
"People": "Ljudje",
"Animals and Nature": "\u017divali in narava",
"Food and Drink": "Hrana in pija\u010da",
"Activity": "Dejavnost",
"Travel and Places": "Potovanja in kraji",
"Objects": "Predmeti",
"Flags": "Zastave",
"Characters": "Znaki",
"Characters (no spaces)": "Znaki (brez presledkov)",
"{0} characters": "{0} znakov",
"Error: Form submit field collision.": "Napaka: navzkri\u017eje polja za oddajo obrazca",
"Error: No form element found.": "Napaka: elementa oblike ni mogo\u010de najti",
"Update": "Posodobitev",
"Color swatch": "Vzorec barv",
"Turquoise": "Turkizna",
"Green": "Zelena",
"Blue": "Modra",
"Purple": "\u0160krlatna",
"Navy Blue": "Mornarsko modra",
"Dark Turquoise": "Temno turkizna",
"Dark Green": "Temno zelena",
"Medium Blue": "Srednje modra",
"Medium Purple": "Srednje \u0161krlatna",
"Midnight Blue": "Polno\u010dno modra",
"Yellow": "Rumena",
"Orange": "Oran\u017ena",
"Red": "Rde\u010da",
"Light Gray": "Svetlo siva",
"Gray": "Siva",
"Dark Yellow": "Temno rumena",
"Dark Orange": "Temno oran\u017ena",
"Dark Red": "Temno rde\u010da",
"Medium Gray": "Srednje siva",
"Dark Gray": "Temno siva",
"Light Green": "Svetlo zelena",
"Light Yellow": "Svetlo rumena",
"Light Red": "Svetlo rde\u010da",
"Light Purple": "Svetlo vijoli\u010dna",
"Light Blue": "Svetlo modra",
"Dark Purple": "Temno vijoli\u010dna",
"Dark Blue": "Temno modra",
"Black": "\u010crna",
"White": "Bela",
"Switch to or from fullscreen mode": "Preklopi v ali iz celozaslonskega na\u010dina",
"Open help dialog": "Odpri pogovorno okno za pomo\u010d",
"history": "zgodovina",
"styles": "slogi",
"formatting": "oblikovanje",
"alignment": "poravnava",
"indentation": "zamik",
"Font": "Pisava",
"Size": "Velikost",
"More...": "Ve\u010d ...",
"Select...": "Izberi ...",
"Preferences": "Preference",
"Yes": "Da",
"No": "Ne",
"Keyboard Navigation": "Krmarjenje s tipkovnico",
"Version": "Razli\u010dica",
"Code view": "Prikaz kode",
"Open popup menu for split buttons": "Odpri pojavni meni za razdeljene gumbe",
"List Properties": "Lastnosti seznama",
"List properties...": "Lastnosti seznama...",
"Start list at number": "Za\u010dni seznam s \u0161tevilko",
"Line height": "Vi\u0161ina vrstice",
"comments": "komentarji",
"Format Painter": "Preslikovalnik Oblik",
"Insert\/edit iframe": "Vstavi\/uredi iFrame",
"Capitalization": "Velika za\u010detnica",
"lowercase": "male \u010drke",
"UPPERCASE": "VELIKE \u010cRKE",
"Title Case": "Velike za\u010detnice naslovov",
"permanent pen": "permanentno pisalo",
"Permanent Pen Properties": "Lastnosti permanentnega pisala",
"Permanent pen properties...": "Lastnosti permanentnega pisala ...",
"case change": "sprememba male\/velike \u010drke",
"page embed": "vstavi stran",
"Advanced sort...": "Napredno razvr\u0161\u010danje",
"Advanced Sort": "Napredno razvr\u0161\u010danje...",
"Sort table by column ascending": "Razvrsti tabelo po stolpcu nara\u0161\u010dajo\u010de",
"Sort table by column descending": "Razvrsti tabelo po stolpcu padajo\u010de",
"Sort": "Razvrsti",
"Order": "Vrstni red",
"Sort by": "Razvrsti po",
"Ascending": "Nara\u0161\u010dajo\u010de",
"Descending": "Padajo\u010de",
"Column {0}": "Stolpec {0}",
"Row {0}": "Vrstica {0}",
"Spellcheck...": "\u010crkovalnik...",
"Misspelled word": "\u00b8Nepravilno \u010drkovana beseda",
"Suggestions": "Predlogi",
"Change": "Spremeni",
"Finding word suggestions": "Iskanje predlogov besed",
"Success": "Uspe\u0161no",
"Repair": "Popravi",
"Issue {0} of {1}": "Te\u017eava {0} od {1}",
"Images must be marked as decorative or have an alternative text description": "Slike morajo biti ozna\u010dene kot okrasne ali morajo imeti nadomestni opis v obliki besedila",
"Images must have an alternative text description. Decorative images are not allowed.": "Slike morajo imeti nadomestni opis v obliki besedila.  Okrasne slike niso dovoljene.",
"Or provide alternative text:": "Ali podajte nadomestno besedilo:",
"Make image decorative:": "Dolo\u010di sliko kot okrasno:",
"ID attribute must be unique": "ID atribut mora biti edinstven",
"Make ID unique": "Ustvari edinstven ID",
"Keep this ID and remove all others": "Obdr\u017ei ta ID in odstrani vse ostale",
"Remove this ID": "Odstrani ta ID",
"Remove all IDs": "Odstrani vse IDje",
"Checklist": "Seznam preverjanj"
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/sq.js
================================================
tinymce.addI18n('sq',{
"Cut": "prerje",
"Heading 5": "titull 5",
"Header 2": "titull 2",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Shfletuesi juaj nuk supurton qasje t\u00eb drejtp\u00ebrdrejt\u00eb n\u00eb clipboard. Ju lutemi p\u00ebrdorni Ctrl+X\/C\/V shkurtesat e tastier\u00ebs n\u00eb vend. ",
"Heading 4": "titull 4",
"Div": "ndarje",
"Heading 2": "titull 2",
"Paste": "ngjit",
"Close": "Mbylle",
"Font Family": "soj g\u00ebrmave",
"Pre": "para",
"Align right": "Radhit djathtas",
"New document": "Dokument i ri",
"Blockquote": "citat",
"Numbered list": "list\u00eb e num\u00ebruara",
"Heading 1": "titull 1",
"Headings": "titull",
"Increase indent": "rrit gjurm\u00eb",
"Formats": "form\u00eb",
"Headers": "titull",
"Select all": "Selektoj t\u00eb gjitha",
"Header 3": "titull 3",
"Blocks": "bllok",
"Undo": "Anuloj",
"Strikethrough": "Vij\u00eb nga",
"Bullet list": "list\u00eb plumb",
"Header 1": "titull 1",
"Superscript": "indeks i sip\u00ebrm",
"Clear formatting": "spastroj formate",
"Font Sizes": "p\u00ebrmasa e germave",
"Subscript": "Indeksin e",
"Header 6": "titull 6",
"Redo": "rib\u00ebj",
"Paragraph": "paragraf",
"Ok": "Ok",
"Bold": "i zi",
"Code": "kod",
"Italic": "kursiv",
"Align center": "Radhit n\u00eb mes",
"Header 5": "titull 5",
"Heading 6": "titull 6",
"Heading 3": "titull 3",
"Decrease indent": "ulja gjurm\u00eb",
"Header 4": "titull 4",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.",
"Underline": "n\u00ebnvizoj",
"Cancel": "Moho",
"Justify": "justifikuar",
"Inline": "nj\u00ebshkolon\u00eb",
"Copy": "kopjoj",
"Align left": "Radhit majtas",
"Visual aids": "ndihm\u00ebsit vizuale",
"Lower Greek": "Lower Greek",
"Square": "Katror",
"Default": "Default",
"Lower Alpha": "Lower Alpha",
"Circle": "Rreth",
"Disc": "Disc",
"Upper Alpha": "Upper Alpha",
"Upper Roman": "Upper Roman",
"Lower Roman": "Lower Roman",
"Name": "Emri",
"Anchor": "Anchor",
"You have unsaved changes are you sure you want to navigate away?": "You have unsaved changes are you sure you want to navigate away?",
"Restore last draft": "Restore last draft",
"Special character": "Karakter i veqant",
"Source code": "Kodi burimor",
"B": "Kalt\u00ebr",
"R": "Kuqe",
"G": "Gjelb\u00ebr",
"Color": "Ngjyra",
"Right to left": "Nga e djathta n\u00eb t\u00eb majt\u00eb",
"Left to right": "Nga e majta n\u00eb t\u00eb djatht\u00eb",
"Emoticons": "Emoticons",
"Robots": "Robot\u00ebt",
"Document properties": "Vetit\u00eb e dokumentit",
"Title": "Titulli",
"Keywords": "Fjal\u00ebt kyqe",
"Encoding": "Encoding",
"Description": "Description",
"Author": "Autori",
"Fullscreen": "Fullscreen",
"Horizontal line": "Vij\u00eb horizontale",
"Horizontal space": "Hapsir\u00eb horizontale",
"Insert\/edit image": "Shto\/ndrysho imazh",
"General": "General",
"Advanced": "T\u00eb p\u00ebrparuar",
"Source": "Burimi",
"Border": "Border",
"Constrain proportions": "Constrain proportions",
"Vertical space": "Hapsir\u00eb vertikale",
"Image description": "P\u00ebrshkrimi i imazhit",
"Style": "Stili",
"Dimensions": "Dimensions",
"Insert image": "Shto imazh",
"Zoom in": "Zoom in",
"Contrast": "Contrast",
"Back": "Back",
"Gamma": "Gamma",
"Flip horizontally": "Flip horizontally",
"Resize": "Resize",
"Sharpen": "Sharpen",
"Zoom out": "Zoom out",
"Image options": "Image options",
"Apply": "Apply",
"Brightness": "Brightness",
"Rotate clockwise": "Rotate clockwise",
"Rotate counterclockwise": "Rotate counterclockwise",
"Edit image": "Edit image",
"Color levels": "Color levels",
"Crop": "Crop",
"Orientation": "Orientation",
"Flip vertically": "Flip vertically",
"Invert": "Invert",
"Insert date\/time": "Insert date\/time",
"Remove link": "Remove link",
"Url": "Url",
"Text to display": "Text to display",
"Anchors": "Anchors",
"Insert link": "Insert link",
"New window": "New window",
"None": "None",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?",
"Target": "Target",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
"Insert\/edit link": "Insert\/edit link",
"Insert\/edit video": "Insert\/edit video",
"Poster": "Poster",
"Alternative source": "Alternative source",
"Paste your embed code below:": "Paste your embed code below:",
"Insert video": "Insert video",
"Embed": "Embed",
"Nonbreaking space": "Nonbreaking space",
"Page break": "Page break",
"Paste as text": "Paste as text",
"Preview": "Preview",
"Print": "Print",
"Save": "Save",
"Could not find the specified string.": "Could not find the specified string.",
"Replace": "Replace",
"Next": "Next",
"Whole words": "Whole words",
"Find and replace": "Find and replace",
"Replace with": "Replace with",
"Find": "Find",
"Replace all": "Replace all",
"Match case": "Match case",
"Prev": "Prev",
"Spellcheck": "Spellcheck",
"Finish": "Finish",
"Ignore all": "Ignore all",
"Ignore": "Ignore",
"Add to Dictionary": "Add to Dictionary",
"Insert row before": "Insert row before",
"Rows": "Rows",
"Height": "Height",
"Paste row after": "Paste row after",
"Alignment": "Alignment",
"Border color": "Border color",
"Column group": "Column group",
"Row": "Row",
"Insert column before": "Insert column before",
"Split cell": "Split cell",
"Cell padding": "Cell padding",
"Cell spacing": "Cell spacing",
"Row type": "Row type",
"Insert table": "Insert table",
"Body": "Body",
"Caption": "Caption",
"Footer": "Footer",
"Delete row": "Delete row",
"Paste row before": "Paste row before",
"Scope": "Scope",
"Delete table": "Delete table",
"H Align": "H Align",
"Top": "Top",
"Header cell": "Header cell",
"Column": "Column",
"Row group": "Row group",
"Cell": "Cell",
"Middle": "Middle",
"Cell type": "Cell type",
"Copy row": "Copy row",
"Row properties": "Row properties",
"Table properties": "Table properties",
"Bottom": "Bottom",
"V Align": "V Align",
"Header": "Header",
"Right": "Right",
"Insert column after": "Insert column after",
"Cols": "Cols",
"Insert row after": "Insert row after",
"Width": "Width",
"Cell properties": "Cell properties",
"Left": "Left",
"Cut row": "Cut row",
"Delete column": "Delete column",
"Center": "Center",
"Merge cells": "Merge cells",
"Insert template": "Insert template",
"Templates": "Templates",
"Background color": "Background color",
"Custom...": "Custom...",
"Custom color": "Custom color",
"No color": "No color",
"Text color": "Text color",
"Show blocks": "Show blocks",
"Show invisible characters": "Show invisible characters",
"Words: {0}": "Words: {0}",
"Insert": "Insert",
"File": "File",
"Edit": "Edit",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help",
"Tools": "Tools",
"View": "View",
"Table": "Table",
"Format": "Format"
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/sv_SE.js
================================================
tinymce.addI18n('sv_SE',{
"Redo": "G\u00f6r om",
"Undo": "\u00c5ngra",
"Cut": "Klipp ut",
"Copy": "Kopiera",
"Paste": "Klistra in",
"Select all": "Markera allt",
"New document": "Nytt dokument",
"Ok": "Ok",
"Cancel": "Avbryt",
"Visual aids": "Visuella hj\u00e4lpmedel",
"Bold": "Fet",
"Italic": "Kursiv",
"Underline": "Understruken",
"Strikethrough": "Genomstruken",
"Superscript": "Upph\u00f6jd",
"Subscript": "Neds\u00e4nkt",
"Clear formatting": "Rensa formatering",
"Align left": "V\u00e4nsterjustera",
"Align center": "Centrera",
"Align right": "H\u00f6gerjustera",
"Justify": "Verifiera",
"Bullet list": "Punktlista",
"Numbered list": "Nummerlista",
"Decrease indent": "Minska indrag",
"Increase indent": "\u00d6ka indrag",
"Close": "St\u00e4ng",
"Formats": "Format",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Din webbl\u00e4sare st\u00f6djer inte direkt \u00e5tkomst till klippboken. Anv\u00e4nd kortkommandona Ctrl\u00a0+\u00a0X\/C\/V i st\u00e4llet.",
"Headers": "Rubriker",
"Header 1": "Rubrik 1",
"Header 2": "Rubrik 2",
"Header 3": "Rubrik 3",
"Header 4": "Rubrik 4",
"Header 5": "Rubrik 5",
"Header 6": "Rubrik 6",
"Headings": "Rubriker",
"Heading 1": "Rubrik 1",
"Heading 2": "Rubrik 2",
"Heading 3": "Rubrik 3",
"Heading 4": "Rubrik 4",
"Heading 5": "Rubrik 5",
"Heading 6": "Rubrik 6",
"Preformatted": "F\u00f6rformaterad",
"Div": "Div",
"Pre": "Pre",
"Code": "Kod",
"Paragraph": "Avsnitt",
"Blockquote": "Blockquote",
"Inline": "Inline",
"Blocks": "Block",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Klistra in \u00e4r nu i textl\u00e4ge. Inneh\u00e5ll kommer att konverteras till text tills du sl\u00e5r av detta l\u00e4ge.",
"Fonts": "Typsnitt",
"Font Sizes": "Teckenstorlek",
"Class": "Klass",
"Browse for an image": "Bl\u00e4ddra efter en bild",
"OR": "OR",
"Drop an image here": "Sl\u00e4pp en bild h\u00e4r",
"Upload": "Ladda upp",
"Block": "Block",
"Align": "Justera",
"Default": "Original",
"Circle": "Cirkel",
"Disc": "Disk",
"Square": "Fyrkant",
"Lower Alpha": "Gemener",
"Lower Greek": "Grekiska gemener",
"Lower Roman": "Romerska gemener",
"Upper Alpha": "Versaler",
"Upper Roman": "Romerska versaler",
"Anchor...": "Ankare...",
"Name": "Namn",
"Id": "Id",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id skall b\u00f6rja med en bokstav och f\u00f6ljande tecken ska vara bokst\u00e4ver, nummer, punkter, understr\u00e4ck eller kolon.",
"You have unsaved changes are you sure you want to navigate away?": "Du har f\u00f6r\u00e4ndringar som du inte har sparat. \u00c4r du s\u00e4ker p\u00e5 att du vill navigera vidare?",
"Restore last draft": "\u00c5terst\u00e4ll senaste utkast",
"Special character...": "Specialtecken...",
"Source code": "K\u00e4llkod",
"Insert\/Edit code sample": "Infoga\/Redigera k\u00e5d exempel",
"Language": "Spr\u00e5k",
"Code sample...": "Kodexempel...",
"Color Picker": "F\u00e4rgv\u00e4ljare",
"R": "R",
"G": "G",
"B": "B",
"Left to right": "V\u00e4nster till h\u00f6ger",
"Right to left": "H\u00f6ger till v\u00e4nster",
"Emoticons...": "Emoticons...",
"Metadata and Document Properties": "Metadata och dokumentegenskaper",
"Title": "Titel",
"Keywords": "Nyckelord",
"Description": "Beskrivning",
"Robots": "Robotar",
"Author": "F\u00f6rfattare",
"Encoding": "Encoding",
"Fullscreen": "Fullsk\u00e4rm",
"Action": "H\u00e4ndelse",
"Shortcut": "Kortkommando",
"Help": "Hj\u00e4lp",
"Address": "Adress",
"Focus to menubar": "Fokusera p\u00e5 menyrad",
"Focus to toolbar": "Fokusera p\u00e5 verktygsrad",
"Focus to element path": "Fokusera p\u00e5 elements\u00f6kv\u00e4gsrad",
"Focus to contextual toolbar": "Fokusera p\u00e5 den kontextuella verktygsraden",
"Insert link (if link plugin activated)": "Infoga l\u00e4nk (om link-pluginet \u00e4r aktiverat)",
"Save (if save plugin activated)": "Spara (om save-pluginet \u00e4r aktiverat)",
"Find (if searchreplace plugin activated)": "S\u00f6k (om searchreplace-pluginet \u00e4r aktiverat)",
"Plugins installed ({0}):": "Installerade plugins ({0}):",
"Premium plugins:": "Premiumplugins:",
"Learn more...": "L\u00e4s mer...",
"You are using {0}": "Du anv\u00e4nder {0}",
"Plugins": "Plugins",
"Handy Shortcuts": "Kortkommandon",
"Horizontal line": "Horisontell linje",
"Insert\/edit image": "Infoga\/redigera bild",
"Image description": "Bildbeskrivning",
"Source": "K\u00e4lla",
"Dimensions": "Dimensioner",
"Constrain proportions": "Begr\u00e4nsa proportioner",
"General": "Generella",
"Advanced": "Avancerat",
"Style": "Stil",
"Vertical space": "Vertikaltutrymme",
"Horizontal space": "Horisontellt utrymme",
"Border": "Ram",
"Insert image": "Infoga bild",
"Image...": "Bild...",
"Image list": "Bildlista",
"Rotate counterclockwise": "Rotera moturs",
"Rotate clockwise": "Rotera medurs",
"Flip vertically": "Spegelv\u00e4nd vertikalt",
"Flip horizontally": "Spegelv\u00e4nd horisontellt",
"Edit image": "Redigera bild",
"Image options": "Bild inst\u00e4llningar",
"Zoom in": "Zooma in",
"Zoom out": "Zooma ut",
"Crop": "Besk\u00e4r",
"Resize": "Skala om",
"Orientation": "Orientera",
"Brightness": "Ljusstyrka",
"Sharpen": "Sk\u00e4rpa",
"Contrast": "Kontrast",
"Color levels": "F\u00e4rgniv\u00e5er",
"Gamma": "Gamma",
"Invert": "Invertera",
"Apply": "Applicera",
"Back": "Tillbaka",
"Insert date\/time": "Infoga datum\/tid",
"Date\/time": "Datum\/tid",
"Insert\/Edit Link": "Infoga\/redigera l\u00e4nk",
"Insert\/edit link": "Infoga\/redigera l\u00e4nk",
"Text to display": "Text att visa",
"Url": "Url",
"Open link in...": "\u00d6ppna l\u00e4nk i...",
"Current window": "Nuvarande f\u00f6nster",
"None": "Ingen",
"New window": "Nytt f\u00f6nster",
"Remove link": "Ta bort l\u00e4nk",
"Anchors": "Bokm\u00e4rken",
"Link...": "L\u00e4nk...",
"Paste or type a link": "Klistra in eller skriv en l\u00e4nk",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Urlen du angav verkar vara en epost adress. Vill du l\u00e4gga till ett mailto: prefix?",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Urlen du angav verkar vara en extern l\u00e4nk. Vill du l\u00e4gga till http:\/\/ prefixet?",
"Link list": "L\u00e4nklista",
"Insert video": "Infoga video",
"Insert\/edit video": "Infoga\/redigera video",
"Insert\/edit media": "Infoga\/redigera media",
"Alternative source": "Alternativ k\u00e4lla",
"Alternative source URL": "Alternativ k\u00e4llwebbadress",
"Media poster (Image URL)": "Mediaposter (bildwebbadress)",
"Paste your embed code below:": "Klistra in din inb\u00e4ddningskod nedan:",
"Embed": "Inb\u00e4ddning",
"Media...": "Media...",
"Nonbreaking space": "Avbrottsfritt mellanrum",
"Page break": "Sidbrytning",
"Paste as text": "Klistra in som text",
"Preview": "F\u00f6rhandsgranska",
"Print...": "Skriv ut...",
"Save": "Spara",
"Find": "S\u00f6k",
"Replace with": "Ers\u00e4tt med",
"Replace": "Ers\u00e4tt",
"Replace all": "Ers\u00e4tt alla",
"Previous": "F\u00f6reg\u00e5ende",
"Next": "N\u00e4sta",
"Find and replace...": "S\u00f6k och ers\u00e4tt...",
"Could not find the specified string.": "Kunde inte hitta den specifierade st\u00e4ngen.",
"Match case": "Matcha gemener\/versaler",
"Find whole words only": "Hitta endast hela ord",
"Spell check": "Stavningskontroll",
"Ignore": "Ignorera",
"Ignore all": "Ignorera alla",
"Finish": "Avsluta",
"Add to Dictionary": "L\u00e4gg till i ordlista",
"Insert table": "Infoga tabell",
"Table properties": "Tabellegenskaper",
"Delete table": "Radera tabell",
"Cell": "Cell",
"Row": "Rad",
"Column": "Kolumn",
"Cell properties": "Cellegenskaper",
"Merge cells": "Sammanfoga celler",
"Split cell": "Bryt is\u00e4r celler",
"Insert row before": "Infoga rad f\u00f6re",
"Insert row after": "Infoga rad efter",
"Delete row": "Radera rad",
"Row properties": "Radegenskaper",
"Cut row": "Klipp ut rad",
"Copy row": "Kopiera rad",
"Paste row before": "Klista in rad f\u00f6re",
"Paste row after": "Klistra in rad efter",
"Insert column before": "Infoga kolumn f\u00f6re",
"Insert column after": "Infoga kolumn efter",
"Delete column": "Radera kolumn",
"Cols": "Kolumner",
"Rows": "Rader",
"Width": "Bredd",
"Height": "H\u00f6jd",
"Cell spacing": "Cellmellanrum",
"Cell padding": "Cellpaddning",
"Show caption": "Visa bildtext",
"Left": "V\u00e4nster",
"Center": "Centrum",
"Right": "H\u00f6ger",
"Cell type": "Celltyp",
"Scope": "Omf\u00e5ng",
"Alignment": "Justering",
"H Align": "H-justering",
"V Align": "V-justering",
"Top": "Toppen",
"Middle": "Mitten",
"Bottom": "Botten",
"Header cell": "Huvudcell",
"Row group": "Radgrupp",
"Column group": "Kolumngrupp",
"Row type": "Radtyp",
"Header": "Huvud",
"Body": "Kropp",
"Footer": "Fot",
"Border color": "Ramf\u00e4rg",
"Insert template...": "Infoga mall...",
"Templates": "Mallar",
"Template": "Mall",
"Text color": "Textf\u00e4rg",
"Background color": "Bakgrundsf\u00e4rg",
"Custom...": "Anpassad...",
"Custom color": "Anpassad f\u00e4rg",
"No color": "Ingen f\u00e4rg",
"Remove color": "Ta bort f\u00e4rg",
"Table of Contents": "Inneh\u00e5llsf\u00f6rteckning",
"Show blocks": "Visa block",
"Show invisible characters": "Visa onsynliga tecken",
"Word count": "Ordantal",
"Count": "Antal",
"Document": "Dokument",
"Selection": "Val",
"Words": "Ord",
"Words: {0}": "Ord: {0}",
"{0} words": "{0} ord",
"File": "Fil",
"Edit": "Redigera",
"Insert": "Infoga",
"View": "Visa",
"Format": "Format",
"Table": "Tabell",
"Tools": "Verktyg",
"Powered by {0}": "Powered by {0}",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Textredigerare. Tryck ALT-F9 f\u00f6r menyn. Tryck ALT-F10 f\u00f6r verktygsrader. Tryck ALT-0 f\u00f6r hj\u00e4lp.",
"Image title": "Bildtitel",
"Border width": "Kantlinjebredd",
"Border style": "Kantlinjestil",
"Error": "Fel",
"Warn": "Varning",
"Valid": "Giltig",
"To open the popup, press Shift+Enter": "Tryck p\u00e5 Shift\u00a0+\u00a0Enter f\u00f6r att \u00f6ppna popup-f\u00f6nstret",
"Rich Text Area. Press ALT-0 for help.": "Omr\u00e5de med formaterad text. Tryck p\u00e5 ALT-0 f\u00f6r hj\u00e4lp.",
"System Font": "Systemtypsnitt",
"Failed to upload image: {0}": "Kunde inte ladda upp bild: {0}",
"Failed to load plugin: {0} from url {1}": "Kunde inte l\u00e4sa in insticksprogram: {0} fr\u00e5n webbadress {1}",
"Failed to load plugin url: {0}": "Kunde inte l\u00e4sa in webbadress f\u00f6r insticksprogram: {0}",
"Failed to initialize plugin: {0}": "Kunde inte initiera insticksprogram: {0}",
"example": "exempel",
"Search": "S\u00f6k",
"All": "Alla",
"Currency": "Valuta",
"Text": "Text",
"Quotations": "Citattecken",
"Mathematical": "Matematiskt",
"Extended Latin": "Ut\u00f6kad latin",
"Symbols": "Symboler",
"Arrows": "Pilar",
"User Defined": "Anv\u00e4ndardefinierade",
"dollar sign": "dollartecken",
"currency sign": "valutatecken",
"euro-currency sign": "eurotecken",
"colon sign": "kolon",
"cruzeiro sign": "cruzeirotecken",
"french franc sign": "franctecken",
"lira sign": "liratecken",
"mill sign": "milltecken",
"naira sign": "nairatecken",
"peseta sign": "pesetastecken",
"rupee sign": "rupeetecken",
"won sign": "wontecken",
"new sheqel sign": "schekeltecken",
"dong sign": "dongtecken",
"kip sign": "kiptecken",
"tugrik sign": "tugriktecken",
"drachma sign": "drachmertecken",
"german penny symbol": "tecken f\u00f6r tysk penny",
"peso sign": "pesotecken",
"guarani sign": "guaranitecken",
"austral sign": "australtecken",
"hryvnia sign": "hryvniatecken",
"cedi sign": "ceditecken",
"livre tournois sign": "tecken f\u00f6r livre tournois",
"spesmilo sign": "spesmilotecken",
"tenge sign": "tengetecken",
"indian rupee sign": "tecken f\u00f6r indisk rupee",
"turkish lira sign": "tecken f\u00f6r turkisk lira",
"nordic mark sign": "tecken f\u00f6r nordisk mark",
"manat sign": "manattecken",
"ruble sign": "rubeltecken",
"yen character": "yentecken",
"yuan character": "yuantecken",
"yuan character, in hong kong and taiwan": "yuantecken i Hongkong och Taiwan",
"yen\/yuan character variant one": "yen-\/yuantecken variant ett",
"Loading emoticons...": "L\u00e4ser in emoticons...",
"Could not load emoticons": "Kunde inte l\u00e4sa in emoticons",
"People": "M\u00e4nniskor",
"Animals and Nature": "Djur och natur",
"Food and Drink": "Mat och dryck",
"Activity": "Aktivitet",
"Travel and Places": "Resa och platser",
"Objects": "F\u00f6rem\u00e5l",
"Flags": "Flaggor",
"Characters": "Tecken",
"Characters (no spaces)": "Tecken (inga mellanrum)",
"{0} characters": "{0} tecken",
"Error: Form submit field collision.": "Fel: Kollision f\u00e4lt f\u00f6r s\u00e4ndning av formul\u00e4r.",
"Error: No form element found.": "Fel: Inget formul\u00e4relement hittades.",
"Update": "Uppdatera",
"Color swatch": "F\u00e4rgpalett",
"Turquoise": "Turkos",
"Green": "Gr\u00f6n",
"Blue": "Bl\u00e5",
"Purple": "Lila",
"Navy Blue": "M\u00f6rkbl\u00e5",
"Dark Turquoise": "M\u00f6rkturkos",
"Dark Green": "M\u00f6rkgr\u00f6n",
"Medium Blue": "Mellanbl\u00e5",
"Medium Purple": "Mellanlila",
"Midnight Blue": "Midnattsbl\u00e5",
"Yellow": "Gul",
"Orange": "Orange",
"Red": "R\u00f6d",
"Light Gray": "Ljusgr\u00e5",
"Gray": "Gr\u00e5",
"Dark Yellow": "M\u00f6rkgul",
"Dark Orange": "M\u00f6rkorange",
"Dark Red": "M\u00f6rkr\u00f6d",
"Medium Gray": "Mellangr\u00e5",
"Dark Gray": "M\u00f6rkgr\u00e5",
"Light Green": "Ljusgr\u00f6n",
"Light Yellow": "Ljusgul",
"Light Red": "Ljusr\u00f6d",
"Light Purple": "Ljuslila",
"Light Blue": "Ljusbl\u00e5",
"Dark Purple": "M\u00f6rklila",
"Dark Blue": "M\u00f6rkbl\u00e5",
"Black": "Svart",
"White": "Vit",
"Switch to or from fullscreen mode": "V\u00e4xla till eller fr\u00e5n fullsk\u00e4rmsl\u00e4ge",
"Open help dialog": "\u00d6ppna hj\u00e4lpdialogrutan",
"history": "historik",
"styles": "stilar",
"formatting": "formatering",
"alignment": "justering",
"indentation": "indragning",
"permanent pen": "permanent penna",
"comments": "kommentarer",
"Format Painter": "H\u00e4mta format",
"Insert\/edit iframe": "Infoga\/redigera iframe",
"Capitalization": "Versaler",
"lowercase": "gemener",
"UPPERCASE": "VERSALER",
"Title Case": "Inledande versal",
"Permanent Pen Properties": "Permanenta pennegenskaper",
"Permanent pen properties...": "Permanenta pennegenskaper\u00a0\u2026",
"Font": "Teckensnitt",
"Size": "Storlek",
"More...": "Mer...",
"Spellcheck Language": "Spr\u00e5k f\u00f6r stavningskontroll",
"Select...": "V\u00e4lj...",
"Preferences": "Inst\u00e4llningar",
"Yes": "Ja",
"No": "Nej",
"Keyboard Navigation": "Tangentbordsnavigering",
"Version": "Version",
"Anchor": "Ankare",
"Special character": "Specialtecken",
"Code sample": "K\u00e5dexempel",
"Color": "F\u00e4rg",
"Emoticons": "Emoticons",
"Document properties": "Dokumentegenskaper",
"Image": "Bild",
"Insert link": "Infoga l\u00e4nk",
"Target": "M\u00e5l",
"Link": "L\u00e4nk",
"Poster": "Affish",
"Media": "Media",
"Print": "Skriv ut",
"Prev": "F\u00f6reg\u00e5ende",
"Find and replace": "S\u00f6k och ers\u00e4tt",
"Whole words": "Hela ord",
"Spellcheck": "R\u00e4ttstava",
"Caption": "Rubrik",
"Insert template": "Infoga mall"
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/ta.js
================================================
tinymce.addI18n('ta',{
"Redo": "\u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
"Undo": "\u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0ba4\u0bb5\u0bbf\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
"Cut": "\u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Copy": "\u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95",
"Paste": "\u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Select all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
"New document": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b86\u0bb5\u0ba3\u0bae\u0bcd",
"Ok": "\u0b9a\u0bb0\u0bbf",
"Cancel": "\u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
"Visual aids": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0ba4\u0bcd \u0ba4\u0bc1\u0ba3\u0bc8\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd",
"Bold": "\u0ba4\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
"Italic": "\u0b9a\u0bbe\u0baf\u0bcd\u0bb5\u0bc1",
"Underline": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1",
"Strikethrough": "\u0ba8\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1",
"Superscript": "\u0bae\u0bc7\u0bb2\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1",
"Subscript": "\u0b95\u0bc0\u0bb4\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1",
"Clear formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b85\u0bb4\u0bbf\u0b95\u0bcd\u0b95",
"Align left": "\u0b87\u0b9f\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
"Align center": "\u0bae\u0bc8\u0baf \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
"Align right": "\u0bb5\u0bb2\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
"Justify": "\u0ba8\u0bc7\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
"Bullet list": "\u0baa\u0bca\u0b9f\u0bcd\u0b9f\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f  \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
"Numbered list": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
"Decrease indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b95\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95",
"Increase indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b85\u0ba4\u0bbf\u0b95\u0bb0\u0bbf\u0b95\u0bcd\u0b95",
"Close": "\u0bae\u0bc2\u0b9f\u0bc1\u0b95",
"Formats": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0ba8\u0b95\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0ba8\u0bc7\u0bb0\u0b9f\u0bbf \u0b85\u0ba3\u0bc1\u0b95\u0bb2\u0bc8 \u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb2\u0bbe\u0bb5\u0bbf \u0b86\u0ba4\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. \u0b86\u0b95\u0bb5\u0bc7 \u0bb5\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0bb2\u0b95\u0bc8 \u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf\u0b95\u0bb3\u0bbe\u0ba9 Ctrl+X\/C\/V \u0b87\u0bb5\u0bb1\u0bcd\u0bb1\u0bc8 \u0ba4\u0baf\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95.",
"Headers": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Header 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1",
"Header 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2",
"Header 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3",
"Header 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4",
"Header 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5",
"Header 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6",
"Headings": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Heading 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1",
"Heading 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2",
"Heading 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3",
"Heading 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4",
"Heading 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5",
"Heading 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6",
"Preformatted": "\u0bae\u0bc1\u0ba9\u0bcd\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1",
"Div": "\u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1 (Div)",
"Pre": "\u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 (Pre)",
"Code": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1",
"Paragraph": "\u0baa\u0ba4\u0bcd\u0ba4\u0bbf",
"Blockquote": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bcb\u0bb3\u0bcd",
"Inline": "\u0b89\u0bb3\u0bcd\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8",
"Blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bcd",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8 \u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0ba4\u0bb2\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0ba8\u0bcd\u0ba4 \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc8 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0bb5\u0bb0\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0bae\u0bcd.",
"Fonts": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd",
"Font Sizes": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b85\u0bb3\u0bb5\u0bc1\u0b95\u0bb3\u0bcd",
"Class": "Class",
"Browse for an image": "\u0b92\u0bb0\u0bc1 \u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0b89\u0bb2\u0bbe\u0bb5\u0bc1\u0b95",
"OR": "\u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1",
"Drop an image here": "\u0b92\u0bb0\u0bc1 \u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b87\u0b99\u0bcd\u0b95\u0bc1 \u0b87\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd \u0baa\u0bcb\u0b9f\u0bb5\u0bc1\u0bae\u0bcd",
"Upload": "\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Block": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf",
"Align": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
"Default": "\u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1",
"Circle": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bae\u0bcd",
"Disc": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bc1",
"Square": "\u0b9a\u0ba4\u0bc1\u0bb0\u0bae\u0bcd",
"Lower Alpha": "\u0b95\u0bc0\u0bb4\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
"Lower Greek": "\u0b95\u0bc0\u0bb4\u0bcd \u0b95\u0bbf\u0bb0\u0bc7\u0b95\u0bcd\u0b95\u0bae\u0bcd",
"Lower Roman": "\u0b95\u0bc0\u0bb4\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd",
"Upper Alpha": "\u0bae\u0bc7\u0bb2\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
"Upper Roman": "\u0bae\u0bc7\u0bb2\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd",
"Anchor...": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd...",
"Name": "\u0baa\u0bc6\u0baf\u0bb0\u0bcd",
"Id": "Id",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0b86\u0ba9\u0ba4\u0bc1 \u0b92\u0bb0\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0ba4\u0bca\u0b9f\u0b99\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd; \u0b87\u0ba4\u0ba9\u0bc8\u0ba4\u0bcd \u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd, \u0b8e\u0ba3\u0bcd\u0b95\u0bb3\u0bcd, \u0b87\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc7\u0bbe\u0b9f\u0bc1\u0b95\u0bb3\u0bcd (-), \u0baa\u0bc1\u0bb3\u0bcd\u0bb3\u0bbf\u0b95\u0bb3\u0bcd (.), \u0bae\u0bc1\u0b95\u0bcd\u0b95\u0bbe\u0bb1\u0bcd\u0baa\u0bc1\u0bb3\u0bcd\u0bb3\u0bbf\u0b95\u0bb3\u0bcd (:) \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc7\u0bbe\u0b9f\u0bc1\u0b95\u0bb3\u0bcd (_) \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0b87\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd.",
"You have unsaved changes are you sure you want to navigate away?": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba9; \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baf\u0bbe\u0b95 \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7\u0bb1 \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bbe\u0bb3\u0bbe?",
"Restore last draft": "\u0b95\u0b9f\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bc0\u0b9f\u0bcd\u0b9f\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95",
"Special character...": "\u0b9a\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc1...",
"Source code": "\u0bae\u0bc2\u0bb2 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1",
"Insert\/Edit code sample": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Language": "\u0bae\u0bca\u0bb4\u0bbf",
"Code sample...": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf...",
"Color Picker": "\u0ba8\u0bbf\u0bb1\u0ba4\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0bb5\u0bc1",
"R": "R",
"G": "G",
"B": "B",
"Left to right": "\u0b87\u0b9f\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bb5\u0bb2\u0bae\u0bcd",
"Right to left": "\u0bb5\u0bb2\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0b87\u0b9f\u0bae\u0bcd",
"Emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
"Emoticons...": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
"Metadata and Document Properties": "\u0bae\u0bc0\u0ba4\u0bcd\u0ba4\u0bb0\u0bb5\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b86\u0bb5\u0ba3\u0baa\u0bcd \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Title": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Keywords": "\u0bae\u0bc1\u0ba4\u0ba9\u0bcd\u0bae\u0bc8\u0b9a\u0bcd\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd",
"Description": "\u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd",
"Robots": "\u0baa\u0bca\u0bb1\u0bbf\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd (Robots)",
"Author": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0bb3\u0bb0\u0bcd",
"Encoding": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd",
"Fullscreen": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8",
"Action": "\u0b9a\u0bc6\u0baf\u0bb2\u0bcd",
"Shortcut": "\u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf",
"Help": "\u0b89\u0ba4\u0bb5\u0bbf",
"Address": "\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf",
"Focus to menubar": "\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Focus to toolbar": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Focus to element path": "\u0bae\u0bc2\u0bb2\u0b95\u0baa\u0bcd \u0baa\u0bbe\u0ba4\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Focus to contextual toolbar": "\u0b9a\u0bc2\u0bb4\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Insert link (if link plugin activated)": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95 (\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)",
"Save (if save plugin activated)": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 (\u0b9a\u0bc7\u0bae\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)",
"Find (if searchreplace plugin activated)": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 (\u0ba4\u0bc7\u0b9f\u0bbf\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bb2\u0bcd \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)",
"Plugins installed ({0}):": "\u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd ({0}):",
"Premium plugins:": "\u0b89\u0baf\u0bb0\u0bcd\u0bae\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd:",
"Learn more...": "\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd \u0b85\u0bb1\u0bbf\u0b95...",
"You are using {0}": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0ba4\u0bc1 {0}",
"Plugins": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd",
"Handy Shortcuts": "\u0b8e\u0bb3\u0bbf\u0ba4\u0bbf\u0bb2\u0bcd \u0b95\u0bc8\u0baf\u0bbe\u0bb3\u0b95\u0bcd\u0b95\u0bc2\u0b9f\u0bbf\u0baf \u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf\u0b95\u0bb3\u0bcd",
"Horizontal line": "\u0b95\u0bbf\u0b9f\u0bc8 \u0b95\u0bcb\u0b9f\u0bc1",
"Insert\/edit image": "\u0baa\u0b9f\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Alternative description": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd",
"Accessibility": "\u0b85\u0ba3\u0bc1\u0b95\u0bb2\u0bcd\u0ba4\u0ba9\u0bcd\u0bae\u0bc8",
"Image is decorative": "\u0baa\u0b9f\u0bae\u0bcd \u0b85\u0bb2\u0b99\u0bcd\u0b95\u0bbe\u0bb0\u0bae\u0bbe\u0ba9\u0ba4\u0bc1",
"Source": "\u0bae\u0bc2\u0bb2\u0bae\u0bcd",
"Dimensions": "\u0baa\u0bb0\u0bbf\u0bae\u0bbe\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
"Constrain proportions": "\u0bb5\u0bbf\u0b95\u0bbf\u0ba4\u0bbe\u0b9a\u0bcd\u0b9a\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"General": "\u0baa\u0bca\u0ba4\u0bc1",
"Advanced": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1",
"Style": "\u0baa\u0bbe\u0ba3\u0bbf",
"Vertical space": "\u0ba8\u0bc6\u0b9f\u0bc1\u0ba4\u0bb3 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
"Horizontal space": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
"Border": "\u0b95\u0bb0\u0bc8",
"Insert image": "\u0baa\u0b9f\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Image...": "\u0baa\u0b9f\u0bae\u0bcd...",
"Image list": "\u0baa\u0b9f\u0baa\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
"Rotate counterclockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0 \u0b8e\u0ba4\u0bbf\u0bb0\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1",
"Rotate clockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1",
"Flip vertically": "\u0b9a\u0bc6\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1",
"Flip horizontally": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f\u0bae\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1",
"Edit image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0ba4\u0bca\u0b95\u0bc1",
"Image options": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Zoom in": "\u0baa\u0bc6\u0bb0\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
"Zoom out": "\u0b9a\u0bbf\u0bb1\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
"Crop": "\u0b9a\u0bc6\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bc1",
"Resize": "\u0bae\u0bb1\u0bc1\u0b85\u0bb3\u0bb5\u0bbf\u0b9f\u0bc1",
"Orientation": "\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bae\u0bc8\u0bb5\u0bc1",
"Brightness": "\u0b92\u0bb3\u0bbf\u0bb0\u0bcd\u0bb5\u0bc1",
"Sharpen": "\u0b95\u0bc2\u0bb0\u0bcd\u0bae\u0bc8\u0baf\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
"Contrast": "\u0ba8\u0bbf\u0bb1\u0bae\u0bbe\u0bb1\u0bc1\u0baa\u0bbe\u0b9f\u0bc1",
"Color levels": "\u0bb5\u0ba3\u0bcd\u0ba3 \u0ba8\u0bbf\u0bb2\u0bc8\u0b95\u0bb3\u0bcd",
"Gamma": "Gamma",
"Invert": "\u0ba8\u0bc7\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1",
"Apply": "\u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
"Back": "\u0baa\u0bbf\u0ba9\u0bcd",
"Insert date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd",
"Insert\/edit link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Text to display": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbf\u0baf \u0b89\u0bb0\u0bc8",
"Url": "\u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf",
"Open link in...": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b87\u0ba4\u0bbf\u0bb2\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95...",
"Current window": "\u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc8\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd",
"None": "\u0b8f\u0ba4\u0bc1\u0bae\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8",
"New window": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd",
"Open link": "\u0ba4\u0bbf\u0bb1\u0ba8\u0bcd\u0ba4 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Remove link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Anchors": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
"Link...": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1...",
"Paste or type a link": "\u0b92\u0bb0\u0bc1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95 \u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0ba4\u0b9f\u0bcd\u0b9f\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bae\u0bbf\u0ba9\u0bcd-\u0b85\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd \u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 mailto: \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bb5\u0bc6\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 (external link) \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 http:\/\/ \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?",
"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bb5\u0bc6\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 (external link) \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 https:\/\/ \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8 (prefix) \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bbe?",
"Link list": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0baa\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
"Insert video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Insert\/edit video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Insert\/edit media": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Alternative source": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2\u0bae\u0bcd",
"Alternative source URL": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2 \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf",
"Media poster (Image URL)": "\u0b8a\u0b9f\u0b95 \u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf (\u0b89\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf)",
"Paste your embed code below:": "\u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0b9f\u0bcd\u0baa\u0bc6\u0bbe\u0ba4\u0bbf \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b95\u0bc0\u0bb4\u0bc7 \u0b92\u0b9f\u0bcd\u0b9f\u0bb5\u0bc1\u0bae\u0bcd:",
"Embed": "\u0b89\u0b9f\u0bcd\u0baa\u0bca\u0ba4\u0bbf",
"Media...": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd...",
"Nonbreaking space": "\u0baa\u0bbf\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
"Page break": "\u0baa\u0b95\u0bcd\u0b95 \u0baa\u0bbf\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
"Paste as text": "\u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Preview": "\u0bae\u0bc1\u0ba9\u0bcd\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1",
"Print...": "\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95...",
"Save": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95",
"Find": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95",
"Replace with": "\u0b87\u0ba4\u0ba9\u0bc1\u0b9f\u0ba9\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Replace": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Replace all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Previous": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf",
"Next": "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4",
"Find and Replace": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Find and replace...": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95...",
"Could not find the specified string.": "\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f \u0b9a\u0bb0\u0bae\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8",
"Match case": "\u0bb5\u0b9f\u0bbf\u0bb5\u0ba4\u0bcd\u0ba4\u0bc8 \u0baa\u0bca\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Find whole words only": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95",
"Find in selection": "\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bbf\u0bb2\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95",
"Spellcheck": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
"Spellcheck Language": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1 \u0bae\u0bca\u0bb4\u0bbf",
"No misspellings found.": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0b95\u0bb3\u0bcd \u0b95\u0bbe\u0ba3\u0baa\u0bcd\u0baa\u0b9f\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.",
"Ignore": "\u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95",
"Ignore all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95",
"Finish": "\u0bae\u0bc1\u0b9f\u0bbf\u0b95\u0bcd\u0b95",
"Add to Dictionary": "\u0b85\u0b95\u0bb0\u0bbe\u0ba4\u0bbf\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
"Insert table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Table properties": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Delete table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
"Cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8",
"Row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8",
"Column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8",
"Cell properties": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Merge cells": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
"Split cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0bbf\u0bb0\u0bbf\u0b95\u0bcd\u0b95",
"Insert row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Insert row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Delete row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
"Row properties": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Cut row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Copy row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95",
"Paste row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Paste row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Insert column before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Insert column after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Delete column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
"Cols": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd",
"Rows": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd",
"Width": "\u0b85\u0b95\u0bb2\u0bae\u0bcd",
"Height": "\u0b89\u0baf\u0bb0\u0bae\u0bcd",
"Cell spacing": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
"Cell padding": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0ba8\u0bbf\u0bb0\u0baa\u0bcd\u0baa\u0bb2\u0bcd",
"Caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Show caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Left": "\u0b87\u0b9f\u0bae\u0bcd",
"Center": "\u0bae\u0bc8\u0baf\u0bae\u0bcd",
"Right": "\u0bb5\u0bb2\u0bae\u0bcd",
"Cell type": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0bb5\u0b95\u0bc8",
"Scope": "\u0bb5\u0bb0\u0bc8\u0baf\u0bc6\u0bb2\u0bcd\u0bb2\u0bc8",
"Alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1",
"H Align": "\u0b95\u0bbf (H) \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
"V Align": "\u0b9a\u0bc6 (V) \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
"Top": "\u0bae\u0bc7\u0bb2\u0bcd",
"Middle": "\u0ba8\u0b9f\u0bc1",
"Bottom": "\u0b95\u0bc0\u0bb4\u0bcd",
"Header cell": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8",
"Row group": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1",
"Column group": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1",
"Row type": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0b95\u0bc8",
"Header": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Body": "\u0b89\u0b9f\u0bb2\u0bcd",
"Footer": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
"Border color": "\u0b95\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
"Insert template...": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95...",
"Templates": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd",
"Template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1",
"Text color": "\u0b89\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
"Background color": "\u0baa\u0bbf\u0ba9\u0bcd\u0ba9\u0ba3\u0bbf \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
"Custom...": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd...",
"Custom color": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
"No color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8",
"Remove color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Table of Contents": "\u0baa\u0bca\u0bb0\u0bc1\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0bae\u0bcd",
"Show blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Show invisible characters": "\u0b95\u0ba3\u0bcd\u0ba3\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0ba4\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Word count": "\u0b9a\u0bca\u0bb2\u0bcd \u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b95\u0bcd\u0b95\u0bc8",
"Count": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b95\u0bcd\u0b95\u0bc8",
"Document": "\u0b86\u0bb5\u0ba3\u0bae\u0bcd",
"Selection": "\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1",
"Words": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd",
"Words: {0}": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd: {0}",
"{0} words": "{0} \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd",
"File": "\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1",
"Edit": "\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Insert": "\u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"View": "\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1\u0b95",
"Format": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8",
"Tools": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd",
"Powered by {0}": "\u0bb5\u0bb2\u0bc1\u0bb5\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0ba4\u0bc1 {0}",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0b89\u0baf\u0bb0\u0bcd \u0b89\u0bb0\u0bc8 \u0baa\u0b95\u0bc1\u0ba4\u0bbf. \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-F9 , \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc1 ALT-F10 , \u0b89\u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-0",
"Image title": "\u0baa\u0b9f\u0ba4\u0bcd \u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Border width": "\u0b95\u0bb0\u0bc8 \u0b85\u0b95\u0bb2\u0bae\u0bcd",
"Border style": "\u0b95\u0bb0\u0bc8 \u0baa\u0bbe\u0ba3\u0bbf",
"Error": "\u0baa\u0bbf\u0bb4\u0bc8",
"Warn": "\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95",
"Valid": "\u0b9a\u0bc6\u0bb2\u0bcd\u0bb2\u0ba4\u0bcd\u0ba4\u0b95\u0bcd\u0b95\u0ba4\u0bc1",
"To open the popup, press Shift+Enter": "\u0bae\u0bc7\u0bb2\u0bcd\u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1-\u0bb5\u0bc8\u0ba4\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95 Shift+Enter",
"Rich Text Area. Press ALT-0 for help.": "\u0b89\u0baf\u0bb0\u0bcd \u0b89\u0bb0\u0bc8 \u0baa\u0b95\u0bc1\u0ba4\u0bbf. \u0b89\u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-0",
"System Font": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1",
"Failed to upload image: {0}": "\u0baa\u0b9f\u0bae\u0bcd \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}",
"Failed to load plugin: {0} from url {1}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b8f\u0bb1\u0bcd\u0bb1\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0} - {1} \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf\u0baf\u0bbf\u0bb2\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1",
"Failed to load plugin url: {0}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0b8f\u0bb1\u0bcd\u0bb1\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}",
"Failed to initialize plugin: {0}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0ba4\u0bc1\u0bb5\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}",
"example": "\u0b89\u0ba4\u0bbe\u0bb0\u0ba3\u0bae\u0bcd",
"Search": "\u0ba4\u0bc7\u0b9f\u0bc1\u0b95",
"All": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0bae\u0bcd",
"Currency": "\u0b9a\u0bc6\u0bb2\u0bbe\u0bb5\u0ba3\u0bbf (Currency)",
"Text": "\u0b89\u0bb0\u0bc8",
"Quotations": "\u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bc7\u0bbe\u0bb3\u0bcd\u0b95\u0bb3\u0bcd",
"Mathematical": "\u0b95\u0ba3\u0b95\u0bcd\u0b95\u0bbf\u0baf\u0bb2\u0bcd",
"Extended Latin": "\u0ba8\u0bc0\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0b87\u0bb2\u0ba4\u0bcd\u0ba4\u0bc0\u0ba9\u0bcd",
"Symbols": "\u0b87\u0b9f\u0bc1\u0b95\u0bc1\u0bb1\u0bbf\u0b95\u0bb3\u0bcd",
"Arrows": "\u0b85\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"User Defined": "\u0baa\u0baf\u0ba9\u0bb0\u0bcd \u0bb5\u0bb0\u0bc8\u0baf\u0bb1\u0bc1\u0ba4\u0bcd\u0ba4",
"dollar sign": "dollar \u0b95\u0bc1\u0bb1\u0bbf",
"currency sign": "\u0b9a\u0bc6\u0bb2\u0bbe\u0bb5\u0ba3\u0bbf\u0b95\u0bcd \u0b95\u0bc1\u0bb1\u0bbf",
"euro-currency sign": "euro-currency \u0b95\u0bc1\u0bb1\u0bbf",
"colon sign": "colon \u0b95\u0bc1\u0bb1\u0bbf",
"cruzeiro sign": "cruzeiro \u0b95\u0bc1\u0bb1\u0bbf",
"french franc sign": "french franc \u0b95\u0bc1\u0bb1\u0bbf",
"lira sign": "lira \u0b95\u0bc1\u0bb1\u0bbf",
"mill sign": "mill \u0b95\u0bc1\u0bb1\u0bbf",
"naira sign": "naira \u0b95\u0bc1\u0bb1\u0bbf",
"peseta sign": "peseta \u0b95\u0bc1\u0bb1\u0bbf",
"rupee sign": "rupee \u0b95\u0bc1\u0bb1\u0bbf",
"won sign": "won \u0b95\u0bc1\u0bb1\u0bbf",
"new sheqel sign": "new sheqel \u0b95\u0bc1\u0bb1\u0bbf",
"dong sign": "dong \u0b95\u0bc1\u0bb1\u0bbf",
"kip sign": "kip \u0b95\u0bc1\u0bb1\u0bbf",
"tugrik sign": "tugrik \u0b95\u0bc1\u0bb1\u0bbf",
"drachma sign": "drachma \u0b95\u0bc1\u0bb1\u0bbf",
"german penny symbol": "german penny \u0b87\u0b9f\u0bc1\u0b95\u0bc1\u0bb1\u0bbf",
"peso sign": "peso \u0b95\u0bc1\u0bb1\u0bbf",
"guarani sign": "guarani \u0b95\u0bc1\u0bb1\u0bbf",
"austral sign": "austral \u0b95\u0bc1\u0bb1\u0bbf",
"hryvnia sign": "hryvnia \u0b95\u0bc1\u0bb1\u0bbf",
"cedi sign": "cedi \u0b95\u0bc1\u0bb1\u0bbf",
"livre tournois sign": "livre tournois \u0b95\u0bc1\u0bb1\u0bbf",
"spesmilo sign": "spesmilo \u0b95\u0bc1\u0bb1\u0bbf",
"tenge sign": "tenge \u0b95\u0bc1\u0bb1\u0bbf",
"indian rupee sign": "indian rupee \u0b95\u0bc1\u0bb1\u0bbf",
"turkish lira sign": "turkish lira \u0b95\u0bc1\u0bb1\u0bbf",
"nordic mark sign": "nordic mark \u0b95\u0bc1\u0bb1\u0bbf",
"manat sign": "manat \u0b95\u0bc1\u0bb1\u0bbf",
"ruble sign": "ruble \u0b95\u0bc1\u0bb1\u0bbf",
"yen character": "yen \u0b89\u0bb0\u0bc1",
"yuan character": "yuan \u0b89\u0bb0\u0bc1",
"yuan character, in hong kong and taiwan": "yuan \u0b89\u0bb0\u0bc1, \u0bb9\u0bbe\u0b99\u0bcd\u0b95\u0bbe\u0b99\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0ba4\u0bbe\u0baf\u0bcd\u0bb5\u0bbe\u0ba9\u0bcd \u0b87\u0bb2\u0bcd",
"yen\/yuan character variant one": "yen\/yuan \u0b89\u0bb0\u0bc1 \u0bae\u0bbe\u0bb1\u0bc1\u0baa\u0bbe\u0b9f\u0bc1",
"Loading emoticons...": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b8f\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0ba9\u0bcd\u0bb1\u0ba9...",
"Could not load emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0b8f\u0bb1\u0bcd\u0bb1 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8",
"People": "\u0bae\u0b95\u0bcd\u0b95\u0bb3\u0bcd",
"Animals and Nature": "\u0bae\u0bbf\u0bb0\u0bc1\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b87\u0baf\u0bb1\u0bcd\u0b95\u0bc8",
"Food and Drink": "\u0b89\u0ba3\u0bb5\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0baa\u0bbe\u0ba9\u0bae\u0bcd",
"Activity": "\u0b9a\u0bc6\u0baf\u0bb1\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
"Travel and Places": "\u0baa\u0baf\u0ba3\u0bae\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b87\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
"Objects": "\u0baa\u0bca\u0bb0\u0bc1\u0b9f\u0bcd\u0b95\u0bb3\u0bcd",
"Flags": "\u0b95\u0bca\u0b9f\u0bbf\u0b95\u0bb3\u0bcd",
"Characters": "\u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd",
"Characters (no spaces)": "\u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd (\u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf\u0b95\u0bb3\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8)",
"{0} characters": "{0} \u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd",
"Error: Form submit field collision.": "\u0baa\u0bbf\u0bb4\u0bc8: \u0baa\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0b9a\u0bae\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bbf\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0baa\u0bc1\u0bb2\u0bae\u0bcd \u0bae\u0bcb\u0ba4\u0bb2\u0bcd.",
"Error: No form element found.": "\u0baa\u0bbf\u0bb4\u0bc8: \u0baa\u0bc1\u0bb2\u0bae\u0bcd \u0bae\u0bc2\u0bb2\u0b95\u0bae\u0bcd \u0b8e\u0ba4\u0bc1\u0bb5\u0bc1\u0bae\u0bcd \u0b95\u0bbe\u0ba3\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.",
"Update": "\u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95",
"Color swatch": "\u0ba8\u0bbf\u0bb1\u0b9a\u0bcd \u0b9a\u0bcb\u0ba4\u0ba9\u0bc8\u0b95\u0bcd\u0b95\u0bb2\u0bb5\u0bc8",
"Turquoise": "\u0ba8\u0bc0\u0bb2\u0baa\u0bcd\u0baa\u0b9a\u0bcd\u0b9a\u0bc8",
"Green": "\u0baa\u0b9a\u0bcd\u0b9a\u0bc8",
"Blue": "\u0ba8\u0bc0\u0bb2\u0bae\u0bcd",
"Purple": "\u0b8a\u0ba4\u0bbe",
"Navy Blue": "\u0b95\u0b9f\u0bb1\u0bcd\u0baa\u0b9f\u0bc8 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd",
"Dark Turquoise": "\u0b85\u0b9f\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0baa\u0bcd\u0baa\u0b9a\u0bcd\u0b9a\u0bc8",
"Dark Green": "\u0b85\u0b9f\u0bb0\u0bcd \u0baa\u0b9a\u0bcd\u0b9a\u0bc8",
"Medium Blue": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd",
"Medium Purple": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0b8a\u0ba4\u0bbe",
"Midnight Blue": "\u0ba8\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bb5\u0bc1 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd",
"Yellow": "\u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd",
"Orange": "\u0b9a\u0bbf\u0bb5\u0ba8\u0bcd\u0ba4 \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd",
"Red": "\u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1",
"Light Gray": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd",
"Gray": "\u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd",
"Dark Yellow": "\u0b85\u0b9f\u0bb0\u0bcd \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd",
"Dark Orange": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbf\u0bb5\u0ba8\u0bcd\u0ba4 \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd",
"Dark Red": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1",
"Medium Gray": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd",
"Dark Gray": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd",
"Light Green": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0baa\u0b9a\u0bcd\u0b9a\u0bc8",
"Light Yellow": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd",
"Light Red": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd\u00a0\u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1",
"Light Purple": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0b8a\u0ba4\u0bbe",
"Light Blue": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0bae\u0bcd",
"Dark Purple": "\u0b85\u0b9f\u0bb0\u0bcd \u0b8a\u0ba4\u0bbe",
"Dark Blue": "\u0b85\u0b9f\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0bae\u0bcd",
"Black": "\u0b95\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1",
"White": "\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bc8",
"Switch to or from fullscreen mode": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8 \u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0bc1\/\u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0baf\u0bbf\u0bb2\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bc1\u0b95",
"Open help dialog": "\u0b89\u0ba4\u0bb5\u0bbf \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b9f\u0bb2\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95",
"history": "\u0bb5\u0bb0\u0bb2\u0bbe\u0bb1\u0bc1",
"styles": "\u0baa\u0bbe\u0ba3\u0bbf\u0b95\u0bb3\u0bcd",
"formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd",
"alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1",
"indentation": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bcd",
"Font": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1",
"Size": "\u0b85\u0bb3\u0bb5\u0bc1",
"More...": "\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd...",
"Select...": "\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95...",
"Preferences": "\u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
"Yes": "\u0b86\u0bae\u0bcd",
"No": "\u0b87\u0bb2\u0bcd\u0bb2\u0bc8",
"Keyboard Navigation": "\u0bb5\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0bb2\u0b95\u0bc8 \u0bb5\u0bb4\u0bbf\u0b9a\u0bcd\u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd",
"Version": "\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
"Code view": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1",
"Open popup menu for split buttons": "\u0baa\u0bbf\u0bb3\u0bb5\u0bc1 \u0baa\u0bca\u0ba4\u0bcd\u0ba4\u0bbe\u0ba9\u0bcd\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bc7\u0bb2\u0bcd\u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bc8 \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95",
"List Properties": "\u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0b9f\u0bc1\u0b95",
"List properties...": "\u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0b9f\u0bc1\u0b95..",
"Start list at number": "\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bc8 \u0b87\u0ba8\u0bcd\u0ba4 \u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0bb2\u0bcd \u0ba4\u0bca\u0b9f\u0b99\u0bcd\u0b95\u0bc1\u0b95",
"Line height": "\u0bb5\u0bb0\u0bbf \u0b89\u0baf\u0bb0\u0bae\u0bcd",
"comments": "\u0b95\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bb3\u0bcd",
"Format Painter": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc2\u0b9a\u0bbe\u0bb3\u0ba9\u0bcd",
"Insert\/edit iframe": "iframe \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Capitalization": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd",
"lowercase": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bc6\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
"UPPERCASE": "\u0baa\u0bc7\u0bb0\u0bc6\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
"Title Case": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd",
"permanent pen": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe",
"Permanent Pen Properties": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Permanent pen properties...": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd...",
"case change": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bae\u0bcd",
"page embed": "\u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd \u0b89\u0b9f\u0bcd\u0baa\u0bca\u0ba4\u0bbf\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd",
"Advanced sort...": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd...",
"Advanced Sort": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd",
"Sort table by column ascending": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b8f\u0bb1\u0bc1\u0bae\u0bc1\u0b95\u0bae\u0bbe\u0b95 \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Sort table by column descending": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b87\u0bb1\u0b99\u0bcd\u0b95\u0bc1\u0bae\u0bc1\u0b95\u0bae\u0bbe\u0b95 \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Sort": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Order": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0bae\u0bc1\u0bb1\u0bc8",
"Sort by": "\u0b87\u0ba4\u0ba9\u0bbe\u0bb2\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Ascending": "\u0b8f\u0bb1\u0bc1\u0bae\u0bc1\u0b95\u0bae\u0bcd",
"Descending": "\u0b87\u0bb1\u0b99\u0bcd\u0b95\u0bc1\u0bae\u0bc1\u0b95\u0bae\u0bcd",
"Column {0}": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 {0}",
"Row {0}": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 {0}",
"Spellcheck...": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95...",
"Misspelled word": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bc1\u0bb3\u0bcd\u0bb3 \u0b9a\u0bca\u0bb2\u0bcd",
"Suggestions": "\u0baa\u0bb0\u0bbf\u0ba8\u0bcd\u0ba4\u0bc1\u0bb0\u0bc8\u0b95\u0bb3\u0bcd",
"Change": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Finding word suggestions": "\u0b9a\u0bca\u0bb2\u0bcd \u0baa\u0bb0\u0bbf\u0ba8\u0bcd\u0ba4\u0bc1\u0bb0\u0bc8\u0b95\u0bb3\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bb1\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1",
"Success": "\u0bb5\u0bc6\u0bb1\u0bcd\u0bb1\u0bbf",
"Repair": "\u0b9a\u0bb0\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
"Issue {0} of {1}": "\u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0bbf\u0ba9\u0bc8 {0} \/ {1}",
"Images must be marked as decorative or have an alternative text description": "\u0baa\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b85\u0bb2\u0b99\u0bcd\u0b95\u0bbe\u0bb0\u0bae\u0bbe\u0b95 \u0b95\u0bc1\u0bb1\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0b89\u0bb0\u0bc8 \u0bb5\u0bbf\u0bb3\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bbf\u0bb0\u0bc1\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd",
"Images must have an alternative text description. Decorative images are not allowed.": "\u0baa\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0b89\u0bb0\u0bc8 \u0bb5\u0bbf\u0bb3\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bbf\u0bb0\u0bc1\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd. \u0b85\u0bb2\u0b99\u0bcd\u0b95\u0bbe\u0bb0\u0baa\u0bcd \u0baa\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0b85\u0ba9\u0bc1\u0bae\u0ba4\u0bbf\u0baf\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.",
"Or provide alternative text:": "\u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0b89\u0bb0\u0bc8\u0baf\u0bc8 \u0bb5\u0bb4\u0b99\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd",
"Make image decorative:": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b85\u0bb2\u0b99\u0bcd\u0b95\u0bbe\u0bb0\u0bae\u0bbe\u0ba9\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1\u0b95",
"ID attribute must be unique": "ID \u0baa\u0ba3\u0bcd\u0baa\u0bc1 \u0ba4\u0ba9\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bae\u0bbe\u0b95 \u0b87\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd",
"Make ID unique": "ID-\u0baf\u0bc8 \u0ba4\u0ba9\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bae\u0bbe\u0b95\u0bcd\u0b95\u0bc1\u0b95",
"Keep this ID and remove all others": "\u0b87\u0ba8\u0bcd\u0ba4 ID-\u0baf\u0bc8 \u0bb5\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1 \u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bb5\u0bc1\u0bae\u0bcd",
"Remove this ID": "\u0b87\u0ba8\u0bcd\u0ba4 ID \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Remove all IDs": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 ID-\u0b95\u0bb3\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Checklist": "\u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
"Anchor": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd",
"Special character": "\u0b9a\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1",
"Code sample": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf",
"Color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
"Document properties": "\u0b86\u0bb5\u0ba3\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Image description": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd",
"Image": "\u0baa\u0b9f\u0bae\u0bcd",
"Insert link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Target": "\u0b87\u0bb2\u0b95\u0bcd\u0b95\u0bc1",
"Link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Poster": "\u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf",
"Media": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd",
"Print": "\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95",
"Prev": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf",
"Find and replace": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Whole words": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd",
"Insert template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95"
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/ta_IN.js
================================================
tinymce.addI18n('ta_IN',{
"Redo": "\u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
"Undo": "\u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0ba4\u0bb5\u0bbf\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
"Cut": "\u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Copy": "\u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95",
"Paste": "\u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Select all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
"New document": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b86\u0bb5\u0ba3\u0bae\u0bcd",
"Ok": "\u0b9a\u0bb0\u0bbf",
"Cancel": "\u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
"Visual aids": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0ba4\u0bcd \u0ba4\u0bc1\u0ba3\u0bc8\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd",
"Bold": "\u0ba4\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
"Italic": "\u0b9a\u0bbe\u0baf\u0bcd\u0bb5\u0bc1",
"Underline": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1",
"Strikethrough": "\u0ba8\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1",
"Superscript": "\u0bae\u0bc7\u0bb2\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1",
"Subscript": "\u0b95\u0bc0\u0bb4\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1",
"Clear formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b85\u0bb4\u0bbf\u0b95\u0bcd\u0b95",
"Align left": "\u0b87\u0b9f\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
"Align center": "\u0bae\u0bc8\u0baf \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
"Align right": "\u0bb5\u0bb2\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
"Justify": "\u0ba8\u0bc7\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
"Bullet list": "\u0baa\u0bca\u0b9f\u0bcd\u0b9f\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f  \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
"Numbered list": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
"Decrease indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b95\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95",
"Increase indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b85\u0ba4\u0bbf\u0b95\u0bb0\u0bbf\u0b95\u0bcd\u0b95",
"Close": "\u0bae\u0bc2\u0b9f\u0bc1\u0b95",
"Formats": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0ba8\u0b95\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0ba8\u0bc7\u0bb0\u0b9f\u0bbf \u0b85\u0ba3\u0bc1\u0b95\u0bb2\u0bc8 \u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb2\u0bbe\u0bb5\u0bbf \u0b86\u0ba4\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. \u0b86\u0b95\u0bb5\u0bc7 \u0bb5\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0bb2\u0b95\u0bc8 \u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf\u0b95\u0bb3\u0bbe\u0ba9 Ctrl+X\/C\/V \u0b87\u0bb5\u0bb1\u0bcd\u0bb1\u0bc8 \u0ba4\u0baf\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95.",
"Headers": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Header 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1",
"Header 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2",
"Header 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3",
"Header 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4",
"Header 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5",
"Header 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6",
"Headings": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Heading 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1",
"Heading 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2",
"Heading 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3",
"Heading 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4",
"Heading 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5",
"Heading 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6",
"Preformatted": "\u0bae\u0bc1\u0ba9\u0bcd\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1",
"Div": "\u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1 (Div)",
"Pre": "\u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 (Pre)",
"Code": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1",
"Paragraph": "\u0baa\u0ba4\u0bcd\u0ba4\u0bbf",
"Blockquote": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bcb\u0bb3\u0bcd",
"Inline": "\u0b89\u0bb3\u0bcd\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8",
"Blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bcd",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8 \u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0ba4\u0bb2\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0ba8\u0bcd\u0ba4 \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc8 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0bb5\u0bb0\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0bae\u0bcd.",
"Fonts": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd",
"Font Sizes": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b85\u0bb3\u0bb5\u0bc1\u0b95\u0bb3\u0bcd",
"Class": "Class",
"Browse for an image": "\u0b92\u0bb0\u0bc1 \u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0b89\u0bb2\u0bbe\u0bb5\u0bc1\u0b95",
"OR": "\u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1",
"Drop an image here": "\u0b92\u0bb0\u0bc1 \u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b87\u0b99\u0bcd\u0b95\u0bc1 \u0b87\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd \u0baa\u0bcb\u0b9f\u0bb5\u0bc1\u0bae\u0bcd",
"Upload": "\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Block": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf",
"Align": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8",
"Default": "\u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1",
"Circle": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bae\u0bcd",
"Disc": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bc1",
"Square": "\u0b9a\u0ba4\u0bc1\u0bb0\u0bae\u0bcd",
"Lower Alpha": "\u0b95\u0bc0\u0bb4\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
"Lower Greek": "\u0b95\u0bc0\u0bb4\u0bcd \u0b95\u0bbf\u0bb0\u0bc7\u0b95\u0bcd\u0b95\u0bae\u0bcd",
"Lower Roman": "\u0b95\u0bc0\u0bb4\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd",
"Upper Alpha": "\u0bae\u0bc7\u0bb2\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
"Upper Roman": "\u0bae\u0bc7\u0bb2\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd",
"Anchor...": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd...",
"Name": "\u0baa\u0bc6\u0baf\u0bb0\u0bcd",
"Id": "Id",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0b86\u0ba9\u0ba4\u0bc1 \u0b92\u0bb0\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0ba4\u0bca\u0b9f\u0b99\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd; \u0b87\u0ba4\u0ba9\u0bc8\u0ba4\u0bcd \u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd, \u0b8e\u0ba3\u0bcd\u0b95\u0bb3\u0bcd, \u0b87\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc7\u0bbe\u0b9f\u0bc1\u0b95\u0bb3\u0bcd (-), \u0baa\u0bc1\u0bb3\u0bcd\u0bb3\u0bbf\u0b95\u0bb3\u0bcd (.), \u0bae\u0bc1\u0b95\u0bcd\u0b95\u0bbe\u0bb1\u0bcd\u0baa\u0bc1\u0bb3\u0bcd\u0bb3\u0bbf\u0b95\u0bb3\u0bcd (:) \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc7\u0bbe\u0b9f\u0bc1\u0b95\u0bb3\u0bcd (_) \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0b87\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd.",
"You have unsaved changes are you sure you want to navigate away?": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba9; \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baf\u0bbe\u0b95 \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7\u0bb1 \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bbe\u0bb3\u0bbe?",
"Restore last draft": "\u0b95\u0b9f\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bc0\u0b9f\u0bcd\u0b9f\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95",
"Special character...": "\u0b9a\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc1...",
"Source code": "\u0bae\u0bc2\u0bb2 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1",
"Insert\/Edit code sample": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Language": "\u0bae\u0bca\u0bb4\u0bbf",
"Code sample...": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf...",
"Color Picker": "\u0ba8\u0bbf\u0bb1\u0ba4\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0bb5\u0bc1",
"R": "R",
"G": "G",
"B": "B",
"Left to right": "\u0b87\u0b9f\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bb5\u0bb2\u0bae\u0bcd",
"Right to left": "\u0bb5\u0bb2\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0b87\u0b9f\u0bae\u0bcd",
"Emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
"Emoticons...": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
"Metadata and Document Properties": "\u0bae\u0bc0\u0ba4\u0bcd\u0ba4\u0bb0\u0bb5\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b86\u0bb5\u0ba3\u0baa\u0bcd \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Title": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Keywords": "\u0bae\u0bc1\u0ba4\u0ba9\u0bcd\u0bae\u0bc8\u0b9a\u0bcd\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd",
"Description": "\u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd",
"Robots": "\u0baa\u0bca\u0bb1\u0bbf\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd (Robots)",
"Author": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0bb3\u0bb0\u0bcd",
"Encoding": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd",
"Fullscreen": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8",
"Action": "\u0b9a\u0bc6\u0baf\u0bb2\u0bcd",
"Shortcut": "\u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf",
"Help": "\u0b89\u0ba4\u0bb5\u0bbf",
"Address": "\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf",
"Focus to menubar": "\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Focus to toolbar": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Focus to element path": "\u0bae\u0bc2\u0bb2\u0b95\u0baa\u0bcd \u0baa\u0bbe\u0ba4\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Focus to contextual toolbar": "\u0b9a\u0bc2\u0bb4\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Insert link (if link plugin activated)": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95 (\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)",
"Save (if save plugin activated)": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 (\u0b9a\u0bc7\u0bae\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)",
"Find (if searchreplace plugin activated)": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 (\u0ba4\u0bc7\u0b9f\u0bbf\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bb2\u0bcd \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)",
"Plugins installed ({0}):": "\u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd ({0}):",
"Premium plugins:": "\u0b89\u0baf\u0bb0\u0bcd\u0bae\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd:",
"Learn more...": "\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd \u0b85\u0bb1\u0bbf\u0b95...",
"You are using {0}": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0ba4\u0bc1 {0}",
"Plugins": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd",
"Handy Shortcuts": "\u0b8e\u0bb3\u0bbf\u0ba4\u0bbf\u0bb2\u0bcd \u0b95\u0bc8\u0baf\u0bbe\u0bb3\u0b95\u0bcd\u0b95\u0bc2\u0b9f\u0bbf\u0baf \u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf\u0b95\u0bb3\u0bcd",
"Horizontal line": "\u0b95\u0bbf\u0b9f\u0bc8 \u0b95\u0bcb\u0b9f\u0bc1",
"Insert\/edit image": "\u0baa\u0b9f\u0bae\u0bcd \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Alternative description": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd",
"Accessibility": "\u0b85\u0ba3\u0bc1\u0b95\u0bb2\u0bcd\u0ba4\u0ba9\u0bcd\u0bae\u0bc8",
"Image is decorative": "\u0baa\u0b9f\u0bae\u0bcd \u0b85\u0bb2\u0b99\u0bcd\u0b95\u0bbe\u0bb0\u0bae\u0bbe\u0ba9\u0ba4\u0bc1",
"Source": "\u0bae\u0bc2\u0bb2\u0bae\u0bcd",
"Dimensions": "\u0baa\u0bb0\u0bbf\u0bae\u0bbe\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
"Constrain proportions": "\u0bb5\u0bbf\u0b95\u0bbf\u0ba4\u0bbe\u0b9a\u0bcd\u0b9a\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"General": "\u0baa\u0bca\u0ba4\u0bc1",
"Advanced": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1",
"Style": "\u0baa\u0bbe\u0ba3\u0bbf",
"Vertical space": "\u0ba8\u0bc6\u0b9f\u0bc1\u0ba4\u0bb3 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
"Horizontal space": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
"Border": "\u0b95\u0bb0\u0bc8",
"Insert image": "\u0baa\u0b9f\u0bae\u0bcd \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Image...": "\u0baa\u0b9f\u0bae\u0bcd...",
"Image list": "\u0baa\u0b9f\u0baa\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
"Rotate counterclockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0 \u0b8e\u0ba4\u0bbf\u0bb0\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1",
"Rotate clockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1",
"Flip vertically": "\u0b9a\u0bc6\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1",
"Flip horizontally": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f\u0bae\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1",
"Edit image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0ba4\u0bca\u0b95\u0bc1",
"Image options": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Zoom in": "\u0baa\u0bc6\u0bb0\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
"Zoom out": "\u0b9a\u0bbf\u0bb1\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
"Crop": "\u0b9a\u0bc6\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bc1",
"Resize": "\u0bae\u0bb1\u0bc1\u0b85\u0bb3\u0bb5\u0bbf\u0b9f\u0bc1",
"Orientation": "\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bae\u0bc8\u0bb5\u0bc1",
"Brightness": "\u0b92\u0bb3\u0bbf\u0bb0\u0bcd\u0bb5\u0bc1",
"Sharpen": "\u0b95\u0bc2\u0bb0\u0bcd\u0bae\u0bc8\u0baf\u0bbe\u0b95\u0bcd\u0b95\u0bc1",
"Contrast": "\u0ba8\u0bbf\u0bb1\u0bae\u0bbe\u0bb1\u0bc1\u0baa\u0bbe\u0b9f\u0bc1",
"Color levels": "\u0bb5\u0ba3\u0bcd\u0ba3 \u0ba8\u0bbf\u0bb2\u0bc8\u0b95\u0bb3\u0bcd",
"Gamma": "Gamma",
"Invert": "\u0ba8\u0bc7\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1",
"Apply": "\u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
"Back": "\u0baa\u0bbf\u0ba9\u0bcd",
"Insert date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd",
"Insert\/edit link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Text to display": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbf\u0baf \u0b89\u0bb0\u0bc8",
"Url": "\u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf",
"Open link in...": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b87\u0ba4\u0bbf\u0bb2\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95...",
"Current window": "\u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc8\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd",
"None": "\u0b8f\u0ba4\u0bc1\u0bae\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8",
"New window": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd",
"Open link": "\u0ba4\u0bbf\u0bb1\u0ba8\u0bcd\u0ba4 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Remove link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Anchors": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
"Link...": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1...",
"Paste or type a link": "\u0b92\u0bb0\u0bc1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95 \u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0ba4\u0b9f\u0bcd\u0b9f\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bae\u0bbf\u0ba9\u0bcd-\u0b85\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd \u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 mailto: \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bb5\u0bc6\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 (external link) \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 http:\/\/ \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?",
"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bb5\u0bc6\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 (external link) \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 https:\/\/ \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8 (prefix) \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bbe?",
"Link list": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0baa\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
"Insert video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Insert\/edit video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Insert\/edit media": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Alternative source": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2\u0bae\u0bcd",
"Alternative source URL": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2 \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf",
"Media poster (Image URL)": "\u0b8a\u0b9f\u0b95 \u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf (\u0b89\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf)",
"Paste your embed code below:": "\u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0b9f\u0bcd\u0baa\u0bc6\u0bbe\u0ba4\u0bbf \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b95\u0bc0\u0bb4\u0bc7 \u0b92\u0b9f\u0bcd\u0b9f\u0bb5\u0bc1\u0bae\u0bcd:",
"Embed": "\u0b89\u0b9f\u0bcd\u0baa\u0bca\u0ba4\u0bbf",
"Media...": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd...",
"Nonbreaking space": "\u0baa\u0bbf\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
"Page break": "\u0baa\u0b95\u0bcd\u0b95 \u0baa\u0bbf\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
"Paste as text": "\u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Preview": "\u0bae\u0bc1\u0ba9\u0bcd\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1",
"Print...": "\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95...",
"Save": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95",
"Find": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95",
"Replace with": "\u0b87\u0ba4\u0ba9\u0bc1\u0b9f\u0ba9\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Replace": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Replace all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Previous": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf",
"Next": "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4",
"Find and Replace": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Find and replace...": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95...",
"Could not find the specified string.": "\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f \u0b9a\u0bb0\u0bae\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8",
"Match case": "\u0bb5\u0b9f\u0bbf\u0bb5\u0ba4\u0bcd\u0ba4\u0bc8 \u0baa\u0bca\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Find whole words only": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95",
"Find in selection": "\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bbf\u0bb2\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95",
"Spellcheck": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
"Spellcheck Language": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1 \u0bae\u0bca\u0bb4\u0bbf",
"No misspellings found.": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0b95\u0bb3\u0bcd \u0b95\u0bbe\u0ba3\u0baa\u0bcd\u0baa\u0b9f\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.",
"Ignore": "\u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95",
"Ignore all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95",
"Finish": "\u0bae\u0bc1\u0b9f\u0bbf\u0b95\u0bcd\u0b95",
"Add to Dictionary": "\u0b85\u0b95\u0bb0\u0bbe\u0ba4\u0bbf\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
"Insert table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Table properties": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Delete table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
"Cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8",
"Row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8",
"Column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8",
"Cell properties": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Merge cells": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95",
"Split cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0bbf\u0bb0\u0bbf\u0b95\u0bcd\u0b95",
"Insert row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Insert row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Delete row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
"Row properties": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Cut row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Copy row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95",
"Paste row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Paste row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Insert column before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Insert column after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Delete column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95",
"Cols": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd",
"Rows": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd",
"Width": "\u0b85\u0b95\u0bb2\u0bae\u0bcd",
"Height": "\u0b89\u0baf\u0bb0\u0bae\u0bcd",
"Cell spacing": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf",
"Cell padding": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0ba8\u0bbf\u0bb0\u0baa\u0bcd\u0baa\u0bb2\u0bcd",
"Caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Show caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Left": "\u0b87\u0b9f\u0bae\u0bcd",
"Center": "\u0bae\u0bc8\u0baf\u0bae\u0bcd",
"Right": "\u0bb5\u0bb2\u0bae\u0bcd",
"Cell type": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0bb5\u0b95\u0bc8",
"Scope": "\u0bb5\u0bb0\u0bc8\u0baf\u0bc6\u0bb2\u0bcd\u0bb2\u0bc8",
"Alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1",
"H Align": "\u0b95\u0bbf (H) \u0b87\u0b9a\u0bc8\u0bb5\u0bc1",
"V Align": "\u0b9a\u0bc6 (V) \u0b87\u0b9a\u0bc8\u0bb5\u0bc1",
"Top": "\u0bae\u0bc7\u0bb2\u0bcd",
"Middle": "\u0ba8\u0b9f\u0bc1",
"Bottom": "\u0bae\u0bc7\u0bb2\u0bcd",
"Header cell": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8",
"Row group": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1",
"Column group": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1",
"Row type": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0b95\u0bc8",
"Header": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Body": "\u0b89\u0b9f\u0bb2\u0bcd",
"Footer": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
"Border color": "\u0b95\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
"Insert template...": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95...",
"Templates": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd",
"Template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1",
"Text color": "\u0b89\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
"Background color": "\u0baa\u0bbf\u0ba9\u0bcd\u0ba9\u0ba3\u0bbf \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
"Custom...": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd...",
"Custom color": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
"No color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8",
"Remove color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Table of Contents": "\u0baa\u0bca\u0bb0\u0bc1\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0bae\u0bcd",
"Show blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Show invisible characters": "\u0b95\u0ba3\u0bcd\u0ba3\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0ba4\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95",
"Word count": "\u0b9a\u0bca\u0bb2\u0bcd \u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b95\u0bcd\u0b95\u0bc8",
"Count": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b95\u0bcd\u0b95\u0bc8",
"Document": "\u0b86\u0bb5\u0ba3\u0bae\u0bcd",
"Selection": "\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1",
"Words": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd",
"Words: {0}": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd: {0}",
"{0} words": "{0} \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd",
"File": "\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1",
"Edit": "\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Insert": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"View": "\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1\u0b95",
"Format": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8",
"Tools": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd",
"Powered by {0}": "\u0bb5\u0bb2\u0bc1\u0bb5\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0ba4\u0bc1 {0}",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0b89\u0baf\u0bb0\u0bcd \u0b89\u0bb0\u0bc8 \u0baa\u0b95\u0bc1\u0ba4\u0bbf. \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-F9 , \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc1 ALT-F10 , \u0b89\u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-0",
"Image title": "\u0baa\u0b9f\u0ba4\u0bcd \u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Border width": "\u0b95\u0bb0\u0bc8 \u0b85\u0b95\u0bb2\u0bae\u0bcd",
"Border style": "\u0b95\u0bb0\u0bc8 \u0baa\u0bbe\u0ba3\u0bbf",
"Error": "\u0baa\u0bbf\u0bb4\u0bc8",
"Warn": "\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95",
"Valid": "\u0b9a\u0bc6\u0bb2\u0bcd\u0bb2\u0ba4\u0bcd\u0ba4\u0b95\u0bcd\u0b95\u0ba4\u0bc1",
"To open the popup, press Shift+Enter": "\u0bae\u0bc7\u0bb2\u0bcd\u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1-\u0bb5\u0bc8\u0ba4\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95 Shift+Enter",
"Rich Text Area. Press ALT-0 for help.": "\u0b89\u0baf\u0bb0\u0bcd \u0b89\u0bb0\u0bc8 \u0baa\u0b95\u0bc1\u0ba4\u0bbf. \u0b89\u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-0",
"System Font": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1",
"Failed to upload image: {0}": "\u0baa\u0b9f\u0bae\u0bcd \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}",
"Failed to load plugin: {0} from url {1}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b8f\u0bb1\u0bcd\u0bb1\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0} - {1} \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf\u0baf\u0bbf\u0bb2\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1",
"Failed to load plugin url: {0}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0b8f\u0bb1\u0bcd\u0bb1\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}",
"Failed to initialize plugin: {0}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0ba4\u0bc1\u0bb5\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}",
"example": "\u0b89\u0ba4\u0bbe\u0bb0\u0ba3\u0bae\u0bcd",
"Search": "\u0ba4\u0bc7\u0b9f\u0bc1\u0b95",
"All": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0bae\u0bcd",
"Currency": "\u0b9a\u0bc6\u0bb2\u0bbe\u0bb5\u0ba3\u0bbf (Currency)",
"Text": "\u0b89\u0bb0\u0bc8",
"Quotations": "\u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bc7\u0bbe\u0bb3\u0bcd\u0b95\u0bb3\u0bcd",
"Mathematical": "\u0b95\u0ba3\u0b95\u0bcd\u0b95\u0bbf\u0baf\u0bb2\u0bcd",
"Extended Latin": "\u0ba8\u0bc0\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0b87\u0bb2\u0ba4\u0bcd\u0ba4\u0bc0\u0ba9\u0bcd",
"Symbols": "\u0b87\u0b9f\u0bc1\u0b95\u0bc1\u0bb1\u0bbf\u0b95\u0bb3\u0bcd",
"Arrows": "\u0b85\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"User Defined": "\u0baa\u0baf\u0ba9\u0bb0\u0bcd \u0bb5\u0bb0\u0bc8\u0baf\u0bb1\u0bc1\u0ba4\u0bcd\u0ba4",
"dollar sign": "dollar \u0b95\u0bc1\u0bb1\u0bbf",
"currency sign": "\u0b9a\u0bc6\u0bb2\u0bbe\u0bb5\u0ba3\u0bbf\u0b95\u0bcd \u0b95\u0bc1\u0bb1\u0bbf",
"euro-currency sign": "euro-currency \u0b95\u0bc1\u0bb1\u0bbf",
"colon sign": "colon \u0b95\u0bc1\u0bb1\u0bbf",
"cruzeiro sign": "cruzeiro \u0b95\u0bc1\u0bb1\u0bbf",
"french franc sign": "french franc \u0b95\u0bc1\u0bb1\u0bbf",
"lira sign": "lira \u0b95\u0bc1\u0bb1\u0bbf",
"mill sign": "mill \u0b95\u0bc1\u0bb1\u0bbf",
"naira sign": "naira \u0b95\u0bc1\u0bb1\u0bbf",
"peseta sign": "peseta \u0b95\u0bc1\u0bb1\u0bbf",
"rupee sign": "rupee \u0b95\u0bc1\u0bb1\u0bbf",
"won sign": "won \u0b95\u0bc1\u0bb1\u0bbf",
"new sheqel sign": "new sheqel \u0b95\u0bc1\u0bb1\u0bbf",
"dong sign": "dong \u0b95\u0bc1\u0bb1\u0bbf",
"kip sign": "kip \u0b95\u0bc1\u0bb1\u0bbf",
"tugrik sign": "tugrik \u0b95\u0bc1\u0bb1\u0bbf",
"drachma sign": "drachma \u0b95\u0bc1\u0bb1\u0bbf",
"german penny symbol": "german penny \u0b87\u0b9f\u0bc1\u0b95\u0bc1\u0bb1\u0bbf",
"peso sign": "peso \u0b95\u0bc1\u0bb1\u0bbf",
"guarani sign": "guarani \u0b95\u0bc1\u0bb1\u0bbf",
"austral sign": "austral \u0b95\u0bc1\u0bb1\u0bbf",
"hryvnia sign": "hryvnia \u0b95\u0bc1\u0bb1\u0bbf",
"cedi sign": "cedi \u0b95\u0bc1\u0bb1\u0bbf",
"livre tournois sign": "livre tournois \u0b95\u0bc1\u0bb1\u0bbf",
"spesmilo sign": "spesmilo \u0b95\u0bc1\u0bb1\u0bbf",
"tenge sign": "tenge \u0b95\u0bc1\u0bb1\u0bbf",
"indian rupee sign": "indian rupee \u0b95\u0bc1\u0bb1\u0bbf",
"turkish lira sign": "turkish lira \u0b95\u0bc1\u0bb1\u0bbf",
"nordic mark sign": "nordic mark \u0b95\u0bc1\u0bb1\u0bbf",
"manat sign": "manat \u0b95\u0bc1\u0bb1\u0bbf",
"ruble sign": "ruble \u0b95\u0bc1\u0bb1\u0bbf",
"yen character": "yen \u0b89\u0bb0\u0bc1",
"yuan character": "yuan \u0b89\u0bb0\u0bc1",
"yuan character, in hong kong and taiwan": "yuan \u0b89\u0bb0\u0bc1, \u0bb9\u0bbe\u0b99\u0bcd\u0b95\u0bbe\u0b99\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0ba4\u0bbe\u0baf\u0bcd\u0bb5\u0bbe\u0ba9\u0bcd \u0b87\u0bb2\u0bcd",
"yen\/yuan character variant one": "yen\/yuan \u0b89\u0bb0\u0bc1 \u0bae\u0bbe\u0bb1\u0bc1\u0baa\u0bbe\u0b9f\u0bc1",
"Loading emoticons...": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b8f\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0ba9\u0bcd\u0bb1\u0ba9...",
"Could not load emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0b8f\u0bb1\u0bcd\u0bb1 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8",
"People": "\u0bae\u0b95\u0bcd\u0b95\u0bb3\u0bcd",
"Animals and Nature": "\u0bae\u0bbf\u0bb0\u0bc1\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b87\u0baf\u0bb1\u0bcd\u0b95\u0bc8",
"Food and Drink": "\u0b89\u0ba3\u0bb5\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0baa\u0bbe\u0ba9\u0bae\u0bcd",
"Activity": "\u0b9a\u0bc6\u0baf\u0bb1\u0bcd\u0baa\u0bbe\u0b9f\u0bc1",
"Travel and Places": "\u0baa\u0baf\u0ba3\u0bae\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b87\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
"Objects": "\u0baa\u0bca\u0bb0\u0bc1\u0b9f\u0bcd\u0b95\u0bb3\u0bcd",
"Flags": "\u0b95\u0bca\u0b9f\u0bbf\u0b95\u0bb3\u0bcd",
"Characters": "\u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd",
"Characters (no spaces)": "\u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd (\u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf\u0b95\u0bb3\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8)",
"{0} characters": "{0} \u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd",
"Error: Form submit field collision.": "\u0baa\u0bbf\u0bb4\u0bc8: \u0baa\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0b9a\u0bae\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bbf\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0baa\u0bc1\u0bb2\u0bae\u0bcd \u0bae\u0bcb\u0ba4\u0bb2\u0bcd.",
"Error: No form element found.": "\u0baa\u0bbf\u0bb4\u0bc8: \u0baa\u0bc1\u0bb2\u0bae\u0bcd \u0bae\u0bc2\u0bb2\u0b95\u0bae\u0bcd \u0b8e\u0ba4\u0bc1\u0bb5\u0bc1\u0bae\u0bcd \u0b95\u0bbe\u0ba3\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.",
"Update": "\u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95",
"Color swatch": "\u0ba8\u0bbf\u0bb1\u0b9a\u0bcd \u0b9a\u0bcb\u0ba4\u0ba9\u0bc8\u0b95\u0bcd\u0b95\u0bb2\u0bb5\u0bc8",
"Turquoise": "\u0ba8\u0bc0\u0bb2\u0baa\u0bcd\u0baa\u0b9a\u0bcd\u0b9a\u0bc8",
"Green": "\u0baa\u0b9a\u0bcd\u0b9a\u0bc8",
"Blue": "\u0ba8\u0bc0\u0bb2\u0bae\u0bcd",
"Purple": "\u0b8a\u0ba4\u0bbe",
"Navy Blue": "\u0b95\u0b9f\u0bb1\u0bcd\u0baa\u0b9f\u0bc8 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd",
"Dark Turquoise": "\u0b85\u0b9f\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0baa\u0bcd\u0baa\u0b9a\u0bcd\u0b9a\u0bc8",
"Dark Green": "\u0b85\u0b9f\u0bb0\u0bcd \u0baa\u0b9a\u0bcd\u0b9a\u0bc8",
"Medium Blue": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd",
"Medium Purple": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0b8a\u0ba4\u0bbe",
"Midnight Blue": "\u0ba8\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bb5\u0bc1 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd",
"Yellow": "\u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd",
"Orange": "\u0b9a\u0bbf\u0bb5\u0ba8\u0bcd\u0ba4 \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd",
"Red": "\u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1",
"Light Gray": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd",
"Gray": "\u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd",
"Dark Yellow": "\u0b85\u0b9f\u0bb0\u0bcd \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd",
"Dark Orange": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbf\u0bb5\u0ba8\u0bcd\u0ba4 \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd",
"Dark Red": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1",
"Medium Gray": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd",
"Dark Gray": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd",
"Light Green": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0baa\u0b9a\u0bcd\u0b9a\u0bc8",
"Light Yellow": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd",
"Light Red": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd\u00a0\u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1",
"Light Purple": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0b8a\u0ba4\u0bbe",
"Light Blue": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0bae\u0bcd",
"Dark Purple": "\u0b85\u0b9f\u0bb0\u0bcd \u0b8a\u0ba4\u0bbe",
"Dark Blue": "\u0b85\u0b9f\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0bae\u0bcd",
"Black": "\u0b95\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1",
"White": "\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bc8",
"Switch to or from fullscreen mode": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8 \u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0bc1\/\u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0baf\u0bbf\u0bb2\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bc1\u0b95",
"Open help dialog": "\u0b89\u0ba4\u0bb5\u0bbf \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b9f\u0bb2\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95",
"history": "\u0bb5\u0bb0\u0bb2\u0bbe\u0bb1\u0bc1",
"styles": "\u0baa\u0bbe\u0ba3\u0bbf\u0b95\u0bb3\u0bcd",
"formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd",
"alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1",
"indentation": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bcd",
"Font": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1",
"Size": "\u0b85\u0bb3\u0bb5\u0bc1",
"More...": "\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd...",
"Select...": "\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95...",
"Preferences": "\u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
"Yes": "\u0b86\u0bae\u0bcd",
"No": "\u0b87\u0bb2\u0bcd\u0bb2\u0bc8",
"Keyboard Navigation": "\u0bb5\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0bb2\u0b95\u0bc8 \u0bb5\u0bb4\u0bbf\u0b9a\u0bcd\u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd",
"Version": "\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1",
"Code view": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1",
"Open popup menu for split buttons": "\u0baa\u0bbf\u0bb3\u0bb5\u0bc1 \u0baa\u0bca\u0ba4\u0bcd\u0ba4\u0bbe\u0ba9\u0bcd\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bc7\u0bb2\u0bcd\u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bc8 \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95",
"List Properties": "\u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0b9f\u0bc1\u0b95",
"List properties...": "\u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0b9f\u0bc1\u0b95...",
"Start list at number": "\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bc8 \u0b87\u0ba8\u0bcd\u0ba4 \u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0bb2\u0bcd \u0ba4\u0bca\u0b9f\u0b99\u0bcd\u0b95\u0bc1\u0b95",
"Line height": "\u0bb5\u0bb0\u0bbf \u0b89\u0baf\u0bb0\u0bae\u0bcd",
"comments": "\u0b95\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bb3\u0bcd",
"Format Painter": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc2\u0b9a\u0bbe\u0bb3\u0ba9\u0bcd",
"Insert\/edit iframe": "iframe \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95",
"Capitalization": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd",
"lowercase": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bc6\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
"UPPERCASE": "\u0baa\u0bc7\u0bb0\u0bc6\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1",
"Title Case": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd",
"permanent pen": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe",
"Permanent Pen Properties": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Permanent pen properties...": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd...",
"case change": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bae\u0bcd",
"page embed": "\u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd \u0b89\u0b9f\u0bcd\u0baa\u0bca\u0ba4\u0bbf\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd",
"Advanced sort...": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd...",
"Advanced Sort": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baf\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd",
"Sort table by column ascending": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b8f\u0bb1\u0bc1\u0bae\u0bc1\u0b95\u0bae\u0bbe\u0b95 \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Sort table by column descending": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0baf\u0bc8 \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b87\u0bb1\u0b99\u0bcd\u0b95\u0bc1\u0bae\u0bc1\u0b95\u0bae\u0bbe\u0b95 \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Sort": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Order": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0bae\u0bc1\u0bb1\u0bc8",
"Sort by": "\u0b87\u0ba4\u0ba9\u0bbe\u0bb2\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95",
"Ascending": "\u0b8f\u0bb1\u0bc1\u0bae\u0bc1\u0b95\u0bae\u0bcd",
"Descending": "\u0b87\u0bb1\u0b99\u0bcd\u0b95\u0bc1\u0bae\u0bc1\u0b95\u0bae\u0bcd",
"Column {0}": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 {0}",
"Row {0}": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 {0}",
"Spellcheck...": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95...",
"Misspelled word": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bc1\u0bb3\u0bcd\u0bb3 \u0b9a\u0bca\u0bb2\u0bcd",
"Suggestions": "\u0baa\u0bb0\u0bbf\u0ba8\u0bcd\u0ba4\u0bc1\u0bb0\u0bc8\u0b95\u0bb3\u0bcd",
"Change": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Finding word suggestions": "\u0b9a\u0bca\u0bb2\u0bcd \u0baa\u0bb0\u0bbf\u0ba8\u0bcd\u0ba4\u0bc1\u0bb0\u0bc8\u0b95\u0bb3\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bb1\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1",
"Success": "\u0bb5\u0bc6\u0bb1\u0bcd\u0bb1\u0bbf",
"Repair": "\u0b9a\u0bb0\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0b95",
"Issue {0} of {1}": "\u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0bbf\u0ba9\u0bc8 {0} \/ {1}",
"Images must be marked as decorative or have an alternative text description": "\u0baa\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b85\u0bb2\u0b99\u0bcd\u0b95\u0bbe\u0bb0\u0bae\u0bbe\u0b95 \u0b95\u0bc1\u0bb1\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0b89\u0bb0\u0bc8 \u0bb5\u0bbf\u0bb3\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bbf\u0bb0\u0bc1\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd",
"Images must have an alternative text description. Decorative images are not allowed.": "\u0baa\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0b89\u0bb0\u0bc8 \u0bb5\u0bbf\u0bb3\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bbf\u0bb0\u0bc1\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd. \u0b85\u0bb2\u0b99\u0bcd\u0b95\u0bbe\u0bb0\u0baa\u0bcd \u0baa\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0b85\u0ba9\u0bc1\u0bae\u0ba4\u0bbf\u0baf\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.",
"Or provide alternative text:": "\u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0b89\u0bb0\u0bc8\u0baf\u0bc8 \u0bb5\u0bb4\u0b99\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd",
"Make image decorative:": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b85\u0bb2\u0b99\u0bcd\u0b95\u0bbe\u0bb0\u0bae\u0bbe\u0ba9\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1\u0b95",
"ID attribute must be unique": "ID \u0baa\u0ba3\u0bcd\u0baa\u0bc1 \u0ba4\u0ba9\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bae\u0bbe\u0b95 \u0b87\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd",
"Make ID unique": "ID-\u0baf\u0bc8 \u0ba4\u0ba9\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bae\u0bbe\u0b95\u0bcd\u0b95\u0bc1\u0b95",
"Keep this ID and remove all others": "\u0b87\u0ba8\u0bcd\u0ba4 ID-\u0baf\u0bc8 \u0bb5\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1 \u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bb5\u0bc1\u0bae\u0bcd",
"Remove this ID": "\u0b87\u0ba8\u0bcd\u0ba4 ID \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Remove all IDs": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 ID-\u0b95\u0bb3\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Checklist": "\u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd",
"Anchor": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd",
"Special character": "\u0b9a\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1",
"Code sample": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf",
"Color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd",
"Document properties": "\u0b86\u0bb5\u0ba3\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd",
"Image description": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd",
"Image": "\u0baa\u0b9f\u0bae\u0bcd",
"Insert link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95",
"Target": "\u0b87\u0bb2\u0b95\u0bcd\u0b95\u0bc1",
"Link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1",
"Poster": "\u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf",
"Media": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd",
"Print": "\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95",
"Prev": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf",
"Find and replace": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95",
"Whole words": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd",
"Insert template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95"
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/th_TH.js
================================================
tinymce.addI18n('th_TH',{
"Redo": "\u0e17\u0e33\u0e43\u0e2b\u0e21\u0e48\u0e2d\u0e35\u0e01",
"Undo": "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e01\u0e25\u0e31\u0e1a\u0e04\u0e37\u0e19",
"Cut": "\u0e15\u0e31\u0e14",
"Copy": "\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01",
"Paste": "\u0e27\u0e32\u0e07",
"Select all": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14",
"New document": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e43\u0e2b\u0e21\u0e48",
"Ok": "\u0e15\u0e01\u0e25\u0e07",
"Cancel": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01",
"Visual aids": "\u0e17\u0e31\u0e28\u0e19\u0e39\u0e1b\u0e01\u0e23\u0e13\u0e4c",
"Bold": "\u0e15\u0e31\u0e27\u0e2b\u0e19\u0e32",
"Italic": "\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e35\u0e22\u0e07",
"Underline": "\u0e02\u0e35\u0e14\u0e40\u0e2a\u0e49\u0e19\u0e43\u0e15\u0e49",
"Strikethrough": "\u0e02\u0e35\u0e14\u0e04\u0e23\u0e48\u0e2d\u0e21",
"Superscript": "\u0e15\u0e31\u0e27\u0e22\u0e01",
"Subscript": "\u0e15\u0e31\u0e27\u0e2b\u0e49\u0e2d\u0e22",
"Clear formatting": "\u0e25\u0e49\u0e32\u0e07\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a",
"Align left": "\u0e08\u0e31\u0e14\u0e0a\u0e34\u0e14\u0e0b\u0e49\u0e32\u0e22",
"Align center": "\u0e08\u0e31\u0e14\u0e01\u0e36\u0e48\u0e07\u0e01\u0e25\u0e32\u0e07",
"Align right": "\u0e08\u0e31\u0e14\u0e0a\u0e34\u0e14\u0e02\u0e27\u0e32",
"Justify": "\u0e40\u0e15\u0e47\u0e21\u0e41\u0e19\u0e27",
"Bullet list": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d\u0e22\u0e48\u0e2d\u0e22",
"Numbered list": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e40\u0e25\u0e02",
"Decrease indent": "\u0e25\u0e14\u0e01\u0e32\u0e23\u0e40\u0e22\u0e37\u0e49\u0e2d\u0e07",
"Increase indent": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e01\u0e32\u0e23\u0e40\u0e22\u0e37\u0e49\u0e2d\u0e07",
"Close": "\u0e1b\u0e34\u0e14",
"Formats": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0e40\u0e1a\u0e23\u0e32\u0e27\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e16\u0e36\u0e07\u0e42\u0e14\u0e22\u0e15\u0e23\u0e07\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e04\u0e25\u0e34\u0e1b\u0e1a\u0e2d\u0e23\u0e4c\u0e14 \u0e01\u0e23\u0e38\u0e13\u0e32\u0e43\u0e0a\u0e49\u0e41\u0e1b\u0e49\u0e19\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e25\u0e31\u0e14 Ctrl+X\/C\/V \u0e41\u0e17\u0e19",
"Headers": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27",
"Header 1": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 1",
"Header 2": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 2",
"Header 3": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 3",
"Header 4": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 4",
"Header 5": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 5",
"Header 6": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 6",
"Headings": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07",
"Heading 1": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e17\u0e35\u0e48 1",
"Heading 2": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e17\u0e35\u0e48 2",
"Heading 3": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e17\u0e35\u0e48 3",
"Heading 4": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e17\u0e35\u0e48 4",
"Heading 5": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e17\u0e35\u0e48 5",
"Heading 6": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e17\u0e35\u0e48 6",
"Preformatted": "\u0e1f\u0e2d\u0e23\u0e4c\u0e41\u0e21\u0e15\u0e44\u0e27\u0e49\u0e01\u0e48\u0e2d\u0e19",
"Div": "Div",
"Pre": "Pre",
"Code": "\u0e23\u0e2b\u0e31\u0e2a",
"Paragraph": "\u0e22\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32",
"Blockquote": "Blockquote",
"Inline": "\u0e41\u0e1a\u0e1a\u0e2d\u0e34\u0e19\u0e44\u0e25\u0e19\u0e4c",
"Blocks": "\u0e1a\u0e25\u0e4a\u0e2d\u0e04",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0e01\u0e32\u0e23\u0e27\u0e32\u0e07\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e42\u0e2b\u0e21\u0e14\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e18\u0e23\u0e23\u0e21\u0e14\u0e32 \u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e08\u0e30\u0e16\u0e39\u0e01\u0e27\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e18\u0e23\u0e23\u0e21\u0e14\u0e32\u0e08\u0e19\u0e01\u0e27\u0e48\u0e32\u0e04\u0e38\u0e13\u0e08\u0e30\u0e1b\u0e34\u0e14\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e19\u0e35\u0e49",
"Fonts": "\u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23",
"Font Sizes": "\u0e02\u0e19\u0e32\u0e14\u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23",
"Class": "\u0e0a\u0e31\u0e49\u0e19",
"Browse for an image": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e14\u0e39\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e",
"OR": "OR",
"Drop an image here": "\u0e27\u0e32\u0e07\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48",
"Upload": "\u0e2d\u0e31\u0e1b\u0e42\u0e2b\u0e25\u0e14",
"Block": "\u0e1a\u0e25\u0e47\u0e2d\u0e01",
"Align": "Align",
"Default": "\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19",
"Circle": "\u0e27\u0e07\u0e01\u0e25\u0e21",
"Disc": "\u0e14\u0e34\u0e2a\u0e01\u0e4c",
"Square": "\u0e08\u0e31\u0e15\u0e38\u0e23\u0e31\u0e2a",
"Lower Alpha": "\u0e2d\u0e31\u0e25\u0e1f\u0e32\u0e17\u0e35\u0e48\u0e15\u0e48\u0e33\u0e01\u0e27\u0e48\u0e32",
"Lower Greek": "\u0e01\u0e23\u0e35\u0e01\u0e17\u0e35\u0e48\u0e15\u0e48\u0e33\u0e01\u0e27\u0e48\u0e32",
"Lower Roman": "\u0e42\u0e23\u0e21\u0e31\u0e19\u0e17\u0e35\u0e48\u0e15\u0e48\u0e33\u0e01\u0e27\u0e48\u0e32",
"Upper Alpha": "\u0e2d\u0e31\u0e25\u0e1f\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e39\u0e07\u0e01\u0e27\u0e48\u0e32",
"Upper Roman": "\u0e42\u0e23\u0e21\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e39\u0e07\u0e01\u0e27\u0e48\u0e32",
"Anchor...": "\u0e08\u0e38\u0e14\u0e22\u0e36\u0e14...",
"Name": "\u0e0a\u0e37\u0e48\u0e2d",
"Id": "Id",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0e04\u0e27\u0e23\u0e08\u0e30\u0e02\u0e36\u0e49\u0e19\u0e15\u0e49\u0e19\u0e14\u0e49\u0e27\u0e22\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23 \u0e15\u0e32\u0e21\u0e14\u0e49\u0e27\u0e22\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23 \u0e15\u0e31\u0e27\u0e40\u0e25\u0e02 \u0e02\u0e35\u0e14\u0e01\u0e25\u0e32\u0e07 \u0e08\u0e38\u0e14 \u0e2d\u0e31\u0e12\u0e20\u0e32\u0e04 \u0e2b\u0e23\u0e37\u0e2d \u0e02\u0e35\u0e14\u0e25\u0e48\u0e32\u0e07",
"You have unsaved changes are you sure you want to navigate away?": "\u0e04\u0e38\u0e13\u0e21\u0e35\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 \u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2d\u0e2d\u0e01\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?",
"Restore last draft": "\u0e04\u0e37\u0e19\u0e04\u0e48\u0e32\u0e41\u0e1a\u0e1a\u0e23\u0e48\u0e32\u0e07\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14",
"Special character...": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e1e\u0e34\u0e40\u0e28\u0e29...",
"Source code": "\u0e42\u0e04\u0e49\u0e14\u0e15\u0e49\u0e19\u0e09\u0e1a\u0e31\u0e1a",
"Insert\/Edit code sample": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e42\u0e04\u0e49\u0e14",
"Language": "\u0e20\u0e32\u0e29\u0e32",
"Code sample...": "\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e42\u0e04\u0e49\u0e14...",
"Color Picker": "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e35",
"R": "\u0e41\u0e14\u0e07",
"G": "\u0e40\u0e02\u0e35\u0e22\u0e27",
"B": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19",
"Left to right": "\u0e0b\u0e49\u0e32\u0e22\u0e44\u0e1b\u0e02\u0e27\u0e32",
"Right to left": "\u0e02\u0e27\u0e32\u0e44\u0e1b\u0e0b\u0e49\u0e32\u0e22",
"Emoticons": "\u0e2d\u0e34\u0e42\u0e21\u0e15\u0e34\u0e04\u0e2d\u0e19",
"Emoticons...": "\u0e2d\u0e35\u0e42\u0e21\u0e15\u0e34\u0e04\u0e2d\u0e19...",
"Metadata and Document Properties": "\u0e40\u0e21\u0e15\u0e32\u0e14\u0e32\u0e15\u0e49\u0e32\u0e41\u0e25\u0e30\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23",
"Title": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07",
"Keywords": "\u0e04\u0e33\u0e2a\u0e33\u0e04\u0e31\u0e0d",
"Description": "\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22",
"Robots": "\u0e2b\u0e38\u0e48\u0e19\u0e22\u0e19\u0e15\u0e4c",
"Author": "\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e35\u0e22\u0e19",
"Encoding": "\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e2b\u0e31\u0e2a",
"Fullscreen": "\u0e40\u0e15\u0e47\u0e21\u0e08\u0e2d",
"Action": "\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e17\u0e33",
"Shortcut": "\u0e17\u0e32\u0e07\u0e25\u0e31\u0e14",
"Help": "\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d",
"Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48",
"Focus to menubar": "\u0e42\u0e1f\u0e01\u0e31\u0e2a\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e40\u0e21\u0e19\u0e39\u0e1a\u0e32\u0e23\u0e4c",
"Focus to toolbar": "\u0e42\u0e1f\u0e01\u0e31\u0e2a\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e41\u0e16\u0e1a\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d",
"Focus to element path": "\u0e42\u0e1f\u0e01\u0e31\u0e2a\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e40\u0e2a\u0e49\u0e19\u0e17\u0e32\u0e07\u0e02\u0e2d\u0e07\u0e2d\u0e07\u0e04\u0e4c\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a",
"Focus to contextual toolbar": "\u0e42\u0e1f\u0e01\u0e31\u0e2a\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e41\u0e16\u0e1a\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e15\u0e32\u0e21\u0e1a\u0e23\u0e34\u0e1a\u0e17",
"Insert link (if link plugin activated)": "\u0e41\u0e17\u0e23\u0e01\u0e25\u0e34\u0e07\u0e01\u0e4c (\u0e2b\u0e32\u0e01\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e25\u0e34\u0e07\u0e01\u0e4c)",
"Save (if save plugin activated)": "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 (\u0e2b\u0e32\u0e01\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01)",
"Find (if searchreplace plugin activated)": "\u0e04\u0e49\u0e19\u0e2b\u0e32 (\u0e2b\u0e32\u0e01\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19 searchreplace)",
"Plugins installed ({0}):": "\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e17\u0e35\u0e48\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e41\u0e25\u0e49\u0e27 ({0}):",
"Premium plugins:": "\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e1e\u0e23\u0e35\u0e40\u0e21\u0e35\u0e22\u0e21:",
"Learn more...": "\u0e40\u0e23\u0e35\u0e22\u0e19\u0e23\u0e39\u0e49\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21...",
"You are using {0}": "\u0e04\u0e38\u0e13\u0e01\u0e33\u0e25\u0e31\u0e07\u0e43\u0e0a\u0e49 {0}",
"Plugins": "\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19",
"Handy Shortcuts": "\u0e17\u0e32\u0e07\u0e25\u0e31\u0e14\u0e14\u0e49\u0e27\u0e22\u0e21\u0e37\u0e2d",
"Horizontal line": "\u0e40\u0e2a\u0e49\u0e19\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19",
"Insert\/edit image": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e39\u0e1b",
"Alternative description": "\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e17\u0e32\u0e07\u0e40\u0e25\u0e37\u0e2d\u0e01",
"Accessibility": "\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e43\u0e19\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e16\u0e36\u0e07",
"Image is decorative": "\u0e20\u0e32\u0e1e\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e15\u0e01\u0e41\u0e15\u0e48\u0e07",
"Source": "\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32",
"Dimensions": "\u0e02\u0e19\u0e32\u0e14",
"Constrain proportions": "\u0e08\u0e33\u0e01\u0e31\u0e14\u0e2a\u0e31\u0e14\u0e2a\u0e48\u0e27\u0e19",
"General": "\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b",
"Advanced": "\u0e02\u0e31\u0e49\u0e19\u0e2a\u0e39\u0e07",
"Style": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a",
"Vertical space": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e41\u0e19\u0e27\u0e15\u0e31\u0e49\u0e07",
"Horizontal space": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19",
"Border": "\u0e40\u0e2a\u0e49\u0e19\u0e02\u0e2d\u0e1a",
"Insert image": "\u0e41\u0e17\u0e23\u0e01\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e",
"Image...": "\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e...",
"Image list": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e",
"Rotate counterclockwise": "\u0e2b\u0e21\u0e38\u0e19\u0e17\u0e27\u0e19\u0e40\u0e02\u0e47\u0e21\u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32",
"Rotate clockwise": "\u0e2b\u0e21\u0e38\u0e19\u0e15\u0e32\u0e21\u0e40\u0e02\u0e47\u0e21\u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32",
"Flip vertically": "\u0e1e\u0e25\u0e34\u0e01\u0e15\u0e32\u0e21\u0e41\u0e19\u0e27\u0e15\u0e31\u0e49\u0e07",
"Flip horizontally": "\u0e1e\u0e25\u0e34\u0e01\u0e15\u0e32\u0e21\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19",
"Edit image": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e39\u0e1b",
"Image options": "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e",
"Zoom in": "\u0e02\u0e22\u0e32\u0e22\u0e40\u0e02\u0e49\u0e32",
"Zoom out": "\u0e22\u0e48\u0e2d\u0e2d\u0e2d\u0e01",
"Crop": "\u0e04\u0e23\u0e2d\u0e1b\u0e15\u0e31\u0e14",
"Resize": "\u0e1b\u0e23\u0e31\u0e1a\u0e02\u0e19\u0e32\u0e14",
"Orientation": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e27\u0e32\u0e07",
"Brightness": "\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e27\u0e48\u0e32\u0e07",
"Sharpen": "\u0e04\u0e27\u0e32\u0e21\u0e04\u0e21",
"Contrast": "\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e23\u0e35\u0e22\u0e1a\u0e15\u0e48\u0e32\u0e07",
"Color levels": "\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e2a\u0e35",
"Gamma": "\u0e41\u0e01\u0e21\u0e21\u0e32",
"Invert": "\u0e22\u0e49\u0e2d\u0e19\u0e01\u0e25\u0e31\u0e1a",
"Apply": "\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49",
"Back": "\u0e01\u0e25\u0e31\u0e1a",
"Insert date\/time": "\u0e41\u0e17\u0e23\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\/\u0e40\u0e27\u0e25\u0e32",
"Date\/time": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\/\u0e40\u0e27\u0e25\u0e32",
"Insert\/edit link": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e25\u0e34\u0e07\u0e01\u0e4c",
"Text to display": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e41\u0e2a\u0e14\u0e07",
"Url": "URL",
"Open link in...": "\u0e40\u0e1b\u0e34\u0e14\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e43\u0e19...",
"Current window": "\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e48\u0e32\u0e07\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19",
"None": "\u0e44\u0e21\u0e48\u0e21\u0e35",
"New window": "\u0e40\u0e1b\u0e34\u0e14\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e48\u0e32\u0e07\u0e43\u0e2b\u0e21\u0e48",
"Open link": "\u0e40\u0e1b\u0e34\u0e14\u0e25\u0e34\u0e07\u0e01\u0e4c",
"Remove link": "\u0e40\u0e2d\u0e32\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e2d\u0e2d\u0e01",
"Anchors": "\u0e08\u0e38\u0e14\u0e22\u0e36\u0e14",
"Link...": "\u0e25\u0e34\u0e07\u0e01\u0e4c...",
"Paste or type a link": "\u0e27\u0e32\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e1b\u0e49\u0e2d\u0e19\u0e25\u0e34\u0e07\u0e01\u0e4c",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL \u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e23\u0e30\u0e1a\u0e38\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e27\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e41\u0e2d\u0e14\u0e40\u0e14\u0e23\u0e2a \u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2a\u0e48 mailto: \u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL \u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e23\u0e30\u0e1a\u0e38\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e27\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e20\u0e32\u0e22\u0e19\u0e2d\u0e01 \u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2a\u0e48 http:\/\/ \u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48",
"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "URL \u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e1b\u0e49\u0e2d\u0e19\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e20\u0e32\u0e22\u0e19\u0e2d\u0e01 \u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e33\u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32 https:\/\/ \u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?",
"Link list": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e25\u0e34\u0e07\u0e01\u0e4c",
"Insert video": "\u0e41\u0e17\u0e23\u0e01\u0e27\u0e34\u0e14\u0e35\u0e42\u0e2d",
"Insert\/edit video": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e27\u0e34\u0e14\u0e35\u0e42\u0e2d",
"Insert\/edit media": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e2a\u0e37\u0e48\u0e2d",
"Alternative source": "\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32\u0e2a\u0e33\u0e23\u0e2d\u0e07",
"Alternative source URL": "URL \u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32\u0e2a\u0e33\u0e23\u0e2d\u0e07",
"Media poster (Image URL)": "\u0e42\u0e1b\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e21\u0e35\u0e40\u0e14\u0e35\u0e22 (URL \u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e)",
"Paste your embed code below:": "\u0e27\u0e32\u0e07\u0e42\u0e04\u0e49\u0e14\u0e1d\u0e31\u0e07\u0e15\u0e31\u0e27\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07:",
"Embed": "\u0e1d\u0e31\u0e07",
"Media...": "\u0e21\u0e35\u0e40\u0e14\u0e35\u0e22...",
"Nonbreaking space": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e44\u0e21\u0e48\u0e41\u0e22\u0e01",
"Page break": "\u0e15\u0e31\u0e27\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32",
"Paste as text": "\u0e27\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21",
"Preview": "\u0e41\u0e2a\u0e14\u0e07\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07",
"Print...": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c...",
"Save": "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01",
"Find": "\u0e04\u0e49\u0e19\u0e2b\u0e32",
"Replace with": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e14\u0e49\u0e27\u0e22",
"Replace": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48",
"Replace all": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14",
"Previous": "\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e35\u0e49",
"Next": "\u0e16\u0e31\u0e14\u0e44\u0e1b",
"Find and Replace": "\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e41\u0e25\u0e30\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48",
"Find and replace...": "\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e41\u0e25\u0e30\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48...",
"Could not find the specified string.": "\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e2a\u0e15\u0e23\u0e34\u0e07\u0e17\u0e35\u0e48\u0e23\u0e30\u0e1a\u0e38",
"Match case": "\u0e15\u0e23\u0e07\u0e15\u0e32\u0e21\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e43\u0e2b\u0e0d\u0e48-\u0e40\u0e25\u0e47\u0e01",
"Find whole words only": "\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e17\u0e31\u0e49\u0e07\u0e04\u0e33\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19",
"Find in selection": "\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e08\u0e32\u0e01\u0e17\u0e35\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01",
"Spellcheck": "\u0e15\u0e23\u0e27\u0e08\u0e01\u0e32\u0e23\u0e2a\u0e30\u0e01\u0e14",
"Spellcheck Language": "\u0e20\u0e32\u0e29\u0e32\u0e43\u0e19\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e01\u0e32\u0e23\u0e2a\u0e30\u0e01\u0e14",
"No misspellings found.": "\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e30\u0e01\u0e14\u0e04\u0e33\u0e1c\u0e34\u0e14",
"Ignore": "\u0e25\u0e30\u0e40\u0e27\u0e49\u0e19",
"Ignore all": "\u0e25\u0e30\u0e40\u0e27\u0e49\u0e19\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14",
"Finish": "\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e34\u0e49\u0e19",
"Add to Dictionary": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e43\u0e19\u0e1e\u0e08\u0e19\u0e32\u0e19\u0e38\u0e01\u0e23\u0e21",
"Insert table": "\u0e41\u0e17\u0e23\u0e01\u0e15\u0e32\u0e23\u0e32\u0e07",
"Table properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e15\u0e32\u0e23\u0e32\u0e07",
"Delete table": "\u0e25\u0e1a\u0e15\u0e32\u0e23\u0e32\u0e07",
"Cell": "\u0e40\u0e0b\u0e25\u0e25\u0e4c",
"Row": "\u0e41\u0e16\u0e27",
"Column": "\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c",
"Cell properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e40\u0e0b\u0e25\u0e25\u0e4c",
"Merge cells": "\u0e1c\u0e2a\u0e32\u0e19\u0e40\u0e0b\u0e25\u0e25\u0e4c",
"Split cell": "\u0e41\u0e22\u0e01\u0e40\u0e0b\u0e25\u0e25\u0e4c",
"Insert row before": "\u0e41\u0e17\u0e23\u0e01\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19",
"Insert row after": "\u0e41\u0e17\u0e23\u0e01\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07",
"Delete row": "\u0e25\u0e1a\u0e41\u0e16\u0e27",
"Row properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e27",
"Cut row": "\u0e15\u0e31\u0e14\u0e41\u0e16\u0e27",
"Copy row": "\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01\u0e41\u0e16\u0e27",
"Paste row before": "\u0e27\u0e32\u0e07\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19",
"Paste row after": "\u0e27\u0e32\u0e07\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07",
"Insert column before": "\u0e41\u0e17\u0e23\u0e01\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e02\u0e49\u0e32\u0e07\u0e2b\u0e19\u0e49\u0e32",
"Insert column after": "\u0e41\u0e17\u0e23\u0e01\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e02\u0e49\u0e32\u0e07\u0e2b\u0e25\u0e31\u0e07",
"Delete column": "\u0e25\u0e1a\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c",
"Cols": "\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c",
"Rows": "\u0e41\u0e16\u0e27",
"Width": "\u0e04\u0e27\u0e32\u0e21\u0e01\u0e27\u0e49\u0e32\u0e07",
"Height": "\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e39\u0e07",
"Cell spacing": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e40\u0e0b\u0e25\u0e25\u0e4c",
"Cell padding": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e20\u0e32\u0e22\u0e43\u0e19\u0e40\u0e0b\u0e25\u0e25\u0e4c",
"Caption": "\u0e1b\u0e49\u0e32\u0e22\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22",
"Show caption": "\u0e41\u0e2a\u0e14\u0e07\u0e04\u0e33\u0e1a\u0e23\u0e23\u0e22\u0e32\u0e22",
"Left": "\u0e0b\u0e49\u0e32\u0e22",
"Center": "\u0e01\u0e36\u0e48\u0e07\u0e01\u0e25\u0e32\u0e07",
"Right": "\u0e02\u0e27\u0e32",
"Cell type": "\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e40\u0e0b\u0e25\u0e25\u0e4c",
"Scope": "\u0e02\u0e2d\u0e1a\u0e40\u0e02\u0e15",
"Alignment": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e41\u0e19\u0e27",
"H Align": "\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e07\u0e43\u0e19\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19",
"V Align": "\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e07\u0e43\u0e19\u0e41\u0e19\u0e27\u0e15\u0e31\u0e49\u0e07",
"Top": "\u0e1a\u0e19",
"Middle": "\u0e01\u0e25\u0e32\u0e07",
"Bottom": "\u0e25\u0e48\u0e32\u0e07",
"Header cell": "\u0e40\u0e0b\u0e25\u0e25\u0e4c\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27",
"Row group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e41\u0e16\u0e27",
"Column group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c",
"Row type": "\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e27",
"Header": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27",
"Body": "\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21",
"Footer": "\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22",
"Border color": "\u0e2a\u0e35\u0e02\u0e2d\u0e1a",
"Insert template...": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a...",
"Templates": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a",
"Template": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a",
"Text color": "\u0e2a\u0e35\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21",
"Background color": "\u0e2a\u0e35\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07",
"Custom...": "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07",
"Custom color": "\u0e2a\u0e35\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07",
"No color": "\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2a\u0e35",
"Remove color": "\u0e25\u0e1a\u0e2a\u0e35",
"Table of Contents": "\u0e2a\u0e32\u0e23\u0e1a\u0e31\u0e0d",
"Show blocks": "\u0e41\u0e2a\u0e14\u0e07\u0e1a\u0e25\u0e47\u0e2d\u0e01",
"Show invisible characters": "\u0e41\u0e2a\u0e14\u0e07\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23\u0e17\u0e35\u0e48\u0e21\u0e2d\u0e07\u0e44\u0e21\u0e48\u0e40\u0e2b\u0e47\u0e19",
"Word count": "\u0e19\u0e31\u0e1a\u0e08\u0e33\u0e19\u0e27\u0e19\u0e04\u0e33",
"Count": "\u0e19\u0e31\u0e1a",
"Document": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23",
"Selection": "\u0e01\u0e32\u0e23\u0e40\u0e25\u0e37\u0e2d\u0e01",
"Words": "\u0e04\u0e33",
"Words: {0}": "\u0e04\u0e33: {0}",
"{0} words": "{0} \u0e04\u0e33",
"File": "\u0e44\u0e1f\u0e25\u0e4c",
"Edit": "\u0e41\u0e01\u0e49\u0e44\u0e02",
"Insert": "\u0e41\u0e17\u0e23\u0e01",
"View": "\u0e21\u0e38\u0e21\u0e21\u0e2d\u0e07",
"Format": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a",
"Table": "\u0e15\u0e32\u0e23\u0e32\u0e07",
"Tools": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d",
"Powered by {0}": "\u0e02\u0e31\u0e1a\u0e40\u0e04\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e42\u0e14\u0e22 {0}",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48 Rich Text \u0e01\u0e14 ALT-F9 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e21\u0e19\u0e39 \u0e01\u0e14 ALT-F10 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e16\u0e1a\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d \u0e01\u0e14 ALT-0 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d",
"Image title": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e",
"Border width": "\u0e04\u0e27\u0e32\u0e21\u0e01\u0e27\u0e49\u0e32\u0e07\u0e40\u0e2a\u0e49\u0e19\u0e02\u0e2d\u0e1a",
"Border style": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e40\u0e2a\u0e49\u0e19\u0e02\u0e2d\u0e1a",
"Error": "\u0e04\u0e27\u0e32\u0e21\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14",
"Warn": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e40\u0e15\u0e37\u0e2d\u0e19",
"Valid": "\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07",
"To open the popup, press Shift+Enter": "\u0e01\u0e14 Shift+Enter \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e1b\u0e34\u0e14\u0e1b\u0e4a\u0e2d\u0e1a\u0e2d\u0e31\u0e1e",
"Rich Text Area. Press ALT-0 for help.": "\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48 Rich Text \u0e01\u0e14 ALT-0 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d",
"System Font": "\u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23\u0e02\u0e2d\u0e07\u0e23\u0e30\u0e1a\u0e1a",
"Failed to upload image: {0}": "\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e2d\u0e31\u0e1b\u0e42\u0e2b\u0e25\u0e14\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e: {0}",
"Failed to load plugin: {0} from url {1}": "\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e42\u0e2b\u0e25\u0e14\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19: {0} \u0e08\u0e32\u0e01 url {1}",
"Failed to load plugin url: {0}": "\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e42\u0e2b\u0e25\u0e14 url \u0e02\u0e2d\u0e07\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19: {0}",
"Failed to initialize plugin: {0}": "\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19: {0}",
"example": "\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07",
"Search": "\u0e04\u0e49\u0e19\u0e2b\u0e32",
"All": "\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14",
"Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19",
"Text": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21",
"Quotations": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32",
"Mathematical": "\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e04\u0e13\u0e34\u0e15\u0e28\u0e32\u0e2a\u0e15\u0e23\u0e4c",
"Extended Latin": "\u0e20\u0e32\u0e29\u0e32\u0e25\u0e32\u0e15\u0e34\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e02\u0e22\u0e32\u0e22",
"Symbols": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c",
"Arrows": "\u0e25\u0e39\u0e01\u0e28\u0e23",
"User Defined": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07",
"dollar sign": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e14\u0e2d\u0e25\u0e25\u0e48\u0e32\u0e23\u0e4c",
"currency sign": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19",
"euro-currency sign": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e22\u0e39\u0e42\u0e23",
"colon sign": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e08\u0e38\u0e14\u0e04\u0e39\u0e48",
"cruzeiro sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e04\u0e23\u0e39\u0e40\u0e0b\u0e42\u0e35\u0e23",
"french franc sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e1f\u0e23\u0e31\u0e07\u0e01\u0e4c\u0e1d\u0e23\u0e31\u0e48\u0e07\u0e40\u0e28\u0e2a",
"lira sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e25\u0e35\u0e23\u0e32",
"mill sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e21\u0e34\u0e25\u0e25\u0e4c",
"naira sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e44\u0e19\u0e23\u0e32",
"peseta sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e1b\u0e40\u0e0b\u0e15\u0e32",
"rupee sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e39\u0e1b\u0e35",
"won sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e27\u0e2d\u0e19",
"new sheqel sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e19\u0e34\u0e27\u0e40\u0e0a\u0e40\u0e01\u0e25",
"dong sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e14\u0e2d\u0e07",
"kip sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e01\u0e35\u0e1a",
"tugrik sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e17\u0e39\u0e01\u0e23\u0e34\u0e01",
"drachma sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e14\u0e23\u0e31\u0e04\u0e21\u0e32",
"german penny symbol": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e1e\u0e19\u0e19\u0e35\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19",
"peso sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e1b\u0e42\u0e0b",
"guarani sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e01\u0e27\u0e32\u0e23\u0e32\u0e19\u0e35",
"austral sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e2d\u0e2a\u0e15\u0e23\u0e31\u0e25",
"hryvnia sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2e\u0e23\u0e34\u0e1f\u0e40\u0e19\u0e35\u0e22",
"cedi sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e0b\u0e14\u0e35",
"livre tournois sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e1b\u0e2d\u0e19\u0e14\u0e4c\u0e15\u0e39\u0e23\u0e4c",
"spesmilo sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e40\u0e1b\u0e2a\u0e21\u0e34\u0e42\u0e25",
"tenge sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e17\u0e07\u0e40\u0e08",
"indian rupee sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e39\u0e1b\u0e35\u0e2d\u0e34\u0e19\u0e40\u0e14\u0e35\u0e22",
"turkish lira sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e25\u0e35\u0e23\u0e32\u0e15\u0e38\u0e23\u0e01\u0e35",
"nordic mark sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e21\u0e32\u0e23\u0e4c\u0e04\u0e19\u0e2d\u0e23\u0e4c\u0e14\u0e34\u0e01",
"manat sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e21\u0e32\u0e19\u0e31\u0e15",
"ruble sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e39\u0e40\u0e1a\u0e34\u0e25",
"yen character": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e22\u0e19",
"yuan character": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e22\u0e27\u0e19",
"yuan character, in hong kong and taiwan": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e22\u0e27\u0e19 \u0e43\u0e19\u0e2e\u0e48\u0e2d\u0e07\u0e01\u0e07\u0e41\u0e25\u0e30\u0e44\u0e15\u0e49\u0e2b\u0e27\u0e31\u0e19",
"yen\/yuan character variant one": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e22\u0e19\/\u0e2b\u0e22\u0e27\u0e19 \u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48 1",
"Loading emoticons...": "\u0e01\u0e33\u0e25\u0e31\u0e07\u0e42\u0e2b\u0e25\u0e14\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e41\u0e2a\u0e14\u0e07\u0e2d\u0e32\u0e23\u0e21\u0e13\u0e4c...",
"Could not load emoticons": "\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e42\u0e2b\u0e25\u0e14\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e41\u0e2a\u0e14\u0e07\u0e2d\u0e32\u0e23\u0e21\u0e13\u0e4c\u0e44\u0e14\u0e49",
"People": "\u0e1c\u0e39\u0e49\u0e04\u0e19",
"Animals and Nature": "\u0e2a\u0e31\u0e15\u0e27\u0e4c\u0e41\u0e25\u0e30\u0e18\u0e23\u0e23\u0e21\u0e0a\u0e32\u0e15\u0e34",
"Food and Drink": "\u0e2d\u0e32\u0e2b\u0e32\u0e23\u0e41\u0e25\u0e30\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e14\u0e37\u0e48\u0e21",
"Activity": "\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21",
"Travel and Places": "\u0e01\u0e32\u0e23\u0e17\u0e48\u0e2d\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e27\u0e41\u0e25\u0e30\u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48",
"Objects": "\u0e27\u0e31\u0e15\u0e16\u0e38",
"Flags": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22",
"Characters": "\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23",
"Characters (no spaces)": "\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23 (\u0e44\u0e21\u0e48\u0e21\u0e35\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07)",
"{0} characters": "{0} \u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30",
"Error: Form submit field collision.": "\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14: \u0e0a\u0e48\u0e2d\u0e07\u0e2a\u0e48\u0e07\u0e41\u0e1a\u0e1a\u0e1f\u0e2d\u0e23\u0e4c\u0e21\u0e02\u0e31\u0e14\u0e41\u0e22\u0e49\u0e07\u0e01\u0e31\u0e19",
"Error: No form element found.": "\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14: \u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e2d\u0e07\u0e04\u0e4c\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a\u0e02\u0e2d\u0e07\u0e1f\u0e2d\u0e23\u0e4c\u0e21",
"Update": "\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e43\u0e2b\u0e49\u0e17\u0e31\u0e19\u0e2a\u0e21\u0e31\u0e22",
"Color swatch": "\u0e41\u0e16\u0e1a\u0e2a\u0e35",
"Turquoise": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e21\u0e40\u0e02\u0e35\u0e22\u0e27",
"Green": "\u0e40\u0e02\u0e35\u0e22\u0e27",
"Blue": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19",
"Purple": "\u0e21\u0e48\u0e27\u0e07",
"Navy Blue": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19\u0e40\u0e02\u0e49\u0e21",
"Dark Turquoise": "\u0e2a\u0e35\u0e1f\u0e49\u0e32\u0e04\u0e23\u0e32\u0e21\u0e40\u0e02\u0e49\u0e21",
"Dark Green": "\u0e40\u0e02\u0e35\u0e22\u0e27\u0e40\u0e02\u0e49\u0e21",
"Medium Blue": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19\u0e1b\u0e32\u0e19\u0e01\u0e25\u0e32\u0e07",
"Medium Purple": "\u0e2a\u0e35\u0e21\u0e48\u0e27\u0e07\u0e01\u0e25\u0e32\u0e07\u0e46",
"Midnight Blue": "\u0e2a\u0e35\u0e1f\u0e49\u0e32\u0e40\u0e02\u0e49\u0e21",
"Yellow": "\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e07",
"Orange": "\u0e2a\u0e49\u0e21",
"Red": "\u0e41\u0e14\u0e07",
"Light Gray": "\u0e2a\u0e35\u0e40\u0e17\u0e32\u0e2d\u0e48\u0e2d\u0e19",
"Gray": "\u0e40\u0e17\u0e32",
"Dark Yellow": "\u0e2a\u0e35\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e07\u0e40\u0e02\u0e49\u0e21",
"Dark Orange": "\u0e2a\u0e49\u0e21\u0e40\u0e02\u0e49\u0e21",
"Dark Red": "\u0e41\u0e14\u0e07\u0e40\u0e02\u0e49\u0e21",
"Medium Gray": "\u0e2a\u0e35\u0e40\u0e17\u0e32\u0e01\u0e25\u0e32\u0e07\u0e46",
"Dark Gray": "\u0e2a\u0e35\u0e40\u0e17\u0e32\u0e40\u0e02\u0e49\u0e21",
"Light Green": "\u0e40\u0e02\u0e35\u0e22\u0e27\u0e2d\u0e48\u0e2d\u0e19",
"Light Yellow": "\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e07\u0e2d\u0e48\u0e2d\u0e19",
"Light Red": "\u0e41\u0e14\u0e07\u0e2d\u0e48\u0e2d\u0e19",
"Light Purple": "\u0e21\u0e48\u0e27\u0e07\u0e2d\u0e48\u0e2d\u0e19",
"Light Blue": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e48\u0e2d\u0e19",
"Dark Purple": "\u0e21\u0e48\u0e27\u0e07\u0e40\u0e02\u0e49\u0e21",
"Dark Blue": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19\u0e40\u0e02\u0e49\u0e21",
"Black": "\u0e14\u0e33",
"White": "\u0e02\u0e32\u0e27",
"Switch to or from fullscreen mode": "\u0e2a\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e08\u0e32\u0e01\u0e42\u0e2b\u0e21\u0e14\u0e40\u0e15\u0e47\u0e21\u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d",
"Open help dialog": "\u0e40\u0e1b\u0e34\u0e14\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e32\u0e23\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d",
"history": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34",
"styles": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a",
"formatting": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a",
"alignment": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e41\u0e19\u0e27",
"indentation": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e22\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32",
"Font": "\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23",
"Size": "\u0e02\u0e19\u0e32\u0e14",
"More...": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21...",
"Select...": "\u0e40\u0e25\u0e37\u0e2d\u0e01...",
"Preferences": "\u0e04\u0e48\u0e32\u0e01\u0e33\u0e2b\u0e19\u0e14",
"Yes": "\u0e43\u0e0a\u0e48",
"No": "\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48",
"Keyboard Navigation": "\u0e01\u0e32\u0e23\u0e19\u0e33\u0e17\u0e32\u0e07\u0e14\u0e49\u0e27\u0e22\u0e41\u0e1b\u0e49\u0e19\u0e1e\u0e34\u0e21\u0e1e\u0e4c",
"Version": "\u0e23\u0e38\u0e48\u0e19",
"Code view": "\u0e21\u0e38\u0e21\u0e21\u0e2d\u0e07\u0e42\u0e04\u0e49\u0e14",
"Open popup menu for split buttons": "\u0e40\u0e1b\u0e34\u0e14\u0e40\u0e21\u0e19\u0e39\u0e1b\u0e4a\u0e2d\u0e1b\u0e2d\u0e31\u0e1b\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1b\u0e38\u0e48\u0e21\u0e41\u0e22\u0e01",
"List Properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23",
"List properties...": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23...",
"Start list at number": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e14\u0e49\u0e27\u0e22\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02",
"Line height": "\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e39\u0e07\u0e02\u0e2d\u0e07\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14",
"comments": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19",
"Format Painter": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e40\u0e1e\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c",
"Insert\/edit iframe": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02 iframe",
"Capitalization": "\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e43\u0e2b\u0e0d\u0e48",
"lowercase": "\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e40\u0e25\u0e47\u0e01",
"UPPERCASE": "\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e43\u0e2b\u0e0d\u0e48",
"Title Case": "\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e02\u0e2d\u0e07\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d",
"permanent pen": "\u0e1b\u0e32\u0e01\u0e01\u0e32\u0e40\u0e04\u0e21\u0e35\u0e0a\u0e19\u0e34\u0e14\u0e25\u0e1a\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49",
"Permanent Pen Properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e1b\u0e32\u0e01\u0e01\u0e32\u0e21\u0e32\u0e23\u0e4c\u0e04\u0e40\u0e01\u0e2d\u0e23\u0e4c",
"Permanent pen properties...": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e1b\u0e32\u0e01\u0e01\u0e32\u0e21\u0e32\u0e23\u0e4c\u0e04\u0e40\u0e01\u0e2d\u0e23\u0e4c...",
"case change": "\u0e02\u0e19\u0e32\u0e14\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19",
"page embed": "\u0e1d\u0e31\u0e07\u0e2b\u0e19\u0e49\u0e32",
"Advanced sort...": "\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e07\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e02\u0e31\u0e49\u0e19\u0e2a\u0e39\u0e07...",
"Advanced Sort": "\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e07\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e02\u0e31\u0e49\u0e19\u0e2a\u0e39\u0e07",
"Sort table by column ascending": "\u0e08\u0e31\u0e14\u0e40\u0e23\u0e35\u0e22\u0e07\u0e15\u0e32\u0e23\u0e32\u0e07\u0e15\u0e32\u0e21\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e08\u0e32\u0e01\u0e19\u0e49\u0e2d\u0e22\u0e44\u0e1b\u0e21\u0e32\u0e01",
"Sort table by column descending": "\u0e08\u0e31\u0e14\u0e40\u0e23\u0e35\u0e22\u0e07\u0e15\u0e32\u0e23\u0e32\u0e07\u0e15\u0e32\u0e21\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e08\u0e32\u0e01\u0e21\u0e32\u0e01\u0e44\u0e1b\u0e19\u0e49\u0e2d\u0e22",
"Sort": "\u0e08\u0e31\u0e14\u0e40\u0e23\u0e35\u0e22\u0e07",
"Order": "\u0e25\u0e33\u0e14\u0e31\u0e1a",
"Sort by": "\u0e08\u0e31\u0e14\u0e40\u0e23\u0e35\u0e22\u0e07\u0e42\u0e14\u0e22",
"Ascending": "\u0e08\u0e32\u0e01\u0e19\u0e49\u0e2d\u0e22\u0e44\u0e1b\u0e21\u0e32\u0e01",
"Descending": "\u0e08\u0e32\u0e01\u0e21\u0e32\u0e01\u0e44\u0e1b\u0e19\u0e49\u0e2d\u0e22",
"Column {0}": "\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c {0}",
"Row {0}": "\u0e41\u0e16\u0e27 {0}",
"Spellcheck...": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e30\u0e01\u0e14\u0e04\u0e33...",
"Misspelled word": "\u0e04\u0e33\u0e17\u0e35\u0e48\u0e2a\u0e30\u0e01\u0e14\u0e1c\u0e34\u0e14",
"Suggestions": "\u0e04\u0e33\u0e41\u0e19\u0e30\u0e19\u0e33",
"Change": "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19",
"Finding word suggestions": "\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e04\u0e33\u0e17\u0e35\u0e48\u0e41\u0e19\u0e30\u0e19\u0e33",
"Success": "\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08",
"Repair": "\u0e0b\u0e48\u0e2d\u0e21\u0e41\u0e0b\u0e21",
"Issue {0} of {1}": "\u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e17\u0e35\u0e48 {0} \u0e08\u0e32\u0e01 {1}",
"Images must be marked as decorative or have an alternative text description": "\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e\u0e15\u0e49\u0e2d\u0e07\u0e17\u0e33\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e27\u0e48\u0e32\u0e15\u0e01\u0e41\u0e15\u0e48\u0e07 \u0e2b\u0e23\u0e37\u0e2d\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e41\u0e2a\u0e14\u0e07\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22",
"Images must have an alternative text description. Decorative images are not allowed.": "\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e41\u0e2a\u0e14\u0e07\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22 \u0e44\u0e21\u0e48\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e43\u0e0a\u0e49\u0e20\u0e32\u0e1e\u0e15\u0e01\u0e41\u0e15\u0e48\u0e07",
"Or provide alternative text:": "\u0e2b\u0e23\u0e37\u0e2d\u0e23\u0e30\u0e1a\u0e38\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e41\u0e2a\u0e14\u0e07:",
"Make image decorative:": "\u0e17\u0e33\u0e20\u0e32\u0e1e\u0e15\u0e01\u0e41\u0e15\u0e48\u0e07:",
"ID attribute must be unique": "\u0e41\u0e2d\u0e15\u0e17\u0e23\u0e34\u0e1a\u0e34\u0e27\u0e15\u0e4c ID \u0e15\u0e49\u0e2d\u0e07\u0e44\u0e21\u0e48\u0e0b\u0e49\u0e33\u0e01\u0e31\u0e19",
"Make ID unique": "\u0e17\u0e33\u0e43\u0e2b\u0e49 ID \u0e44\u0e21\u0e48\u0e0b\u0e49\u0e33\u0e01\u0e31\u0e19",
"Keep this ID and remove all others": "\u0e40\u0e01\u0e47\u0e1a ID \u0e19\u0e35\u0e49\u0e44\u0e27\u0e49\u0e41\u0e25\u0e30\u0e25\u0e1a\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14",
"Remove this ID": "\u0e25\u0e1a ID \u0e19\u0e35\u0e49",
"Remove all IDs": "\u0e25\u0e1a ID \u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14",
"Checklist": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a",
"Anchor": "\u0e08\u0e38\u0e14\u0e22\u0e36\u0e14",
"Special character": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e1e\u0e34\u0e40\u0e28\u0e29",
"Code sample": "\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e42\u0e04\u0e49\u0e14",
"Color": "\u0e2a\u0e35",
"Document properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23",
"Image description": "\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e23\u0e39\u0e1b",
"Image": "\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e",
"Insert link": "\u0e41\u0e17\u0e23\u0e01\u0e25\u0e34\u0e07\u0e01\u0e4c",
"Target": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22",
"Link": "\u0e25\u0e34\u0e07\u0e01\u0e4c",
"Poster": "\u0e42\u0e1b\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c",
"Media": "\u0e2a\u0e37\u0e48\u0e2d",
"Print": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c",
"Prev": "\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32",
"Find and replace": "\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e41\u0e25\u0e30\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48",
"Whole words": "\u0e17\u0e31\u0e49\u0e07\u0e04\u0e33",
"Insert template": "\u0e41\u0e17\u0e23\u0e01\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a"
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/tr.js
================================================
tinymce.addI18n('tr',{
"Redo": "Yinele",
"Undo": "Geri al",
"Cut": "Kes",
"Copy": "Kopyala",
"Paste": "Yap\u0131\u015ft\u0131r",
"Select all": "T\u00fcm\u00fcn\u00fc se\u00e7",
"New document": "Yeni dok\u00fcman",
"Ok": "Tamam",
"Cancel": "\u0130ptal",
"Visual aids": "G\u00f6rsel ara\u00e7lar",
"Bold": "Kal\u0131n",
"Italic": "\u0130talik",
"Underline": "Alt\u0131 \u00e7izili",
"Strikethrough": "\u00dcst\u00fc \u00e7izgili",
"Superscript": "\u00dcst simge",
"Subscript": "Alt simge",
"Clear formatting": "Bi\u00e7imi temizle",
"Align left": "Sola hizala",
"Align center": "Ortala",
"Align right": "Sa\u011fa hizala",
"Justify": "\u0130ki yana yasla",
"Bullet list": "S\u0131ras\u0131z liste",
"Numbered list": "S\u0131ral\u0131 liste",
"Decrease indent": "Girintiyi azalt",
"Increase indent": "Girintiyi art\u0131r",
"Close": "Kapat",
"Formats": "Bi\u00e7imler",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Taray\u0131c\u0131n\u0131z panoya direk eri\u015fimi desteklemiyor. L\u00fctfen Ctrl+X\/C\/V klavye k\u0131sayollar\u0131n\u0131 kullan\u0131n.",
"Headers": "Ba\u015fl\u0131klar",
"Header 1": "Ba\u015fl\u0131k 1",
"Header 2": "Ba\u015fl\u0131k 2",
"Header 3": "Ba\u015fl\u0131k 3",
"Header 4": "Ba\u015fl\u0131k 4",
"Header 5": "Ba\u015fl\u0131k 5",
"Header 6": "Ba\u015fl\u0131k 6",
"Headings": "Ba\u015fl\u0131klar",
"Heading 1": "Ba\u015fl\u0131k 1",
"Heading 2": "Ba\u015fl\u0131k 2",
"Heading 3": "Ba\u015fl\u0131k 3",
"Heading 4": "Ba\u015fl\u0131k 4",
"Heading 5": "Ba\u015fl\u0131k 5",
"Heading 6": "Ba\u015fl\u0131k 6",
"Preformatted": "\u00d6nceden bi\u00e7imlendirilmi\u015f",
"Div": "Div",
"Pre": "Pre",
"Code": "Kod",
"Paragraph": "Paragraf",
"Blockquote": "Blockquote",
"Inline": "Sat\u0131r i\u00e7i",
"Blocks": "Bloklar",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "D\u00fcz metin modunda yap\u0131\u015ft\u0131r. Bu se\u00e7ene\u011fi kapatana kadar i\u00e7erikler d\u00fcz metin olarak yap\u0131\u015ft\u0131r\u0131l\u0131r.",
"Fonts": "Yaz\u0131 Tipleri",
"Font Sizes": "Yaz\u0131tipi B\u00fcy\u00fckl\u00fc\u011f\u00fc",
"Class": "S\u0131n\u0131f",
"Browse for an image": "Bir resim aray\u0131n",
"OR": "VEYA",
"Drop an image here": "Buraya bir resim koyun",
"Upload": "Y\u00fckle",
"Block": "Blok",
"Align": "Hizala",
"Default": "Varsay\u0131lan",
"Circle": "Daire",
"Disc": "Disk",
"Square": "Kare",
"Lower Alpha": "K\u00fc\u00e7\u00fck Harf",
"Lower Greek": "K\u00fc\u00e7\u00fck Yunan Harfleri",
"Lower Roman": "K\u00fc\u00e7\u00fck Roman Harfleri ",
"Upper Alpha": "B\u00fcy\u00fck Harf",
"Upper Roman": "B\u00fcy\u00fck Roman Harfleri ",
"Anchor...": "\u00c7apa...",
"Name": "\u0130sim",
"Id": "Kimlik",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id bir harf ile ba\u015flamal\u0131d\u0131r ve harf, rakam, \u00e7izgi, nokta, iki nokta \u00fcst\u00fcste veya alt \u00e7izgi kullan\u0131labilir.",
"You have unsaved changes are you sure you want to navigate away?": "Kaydedilmemi\u015f de\u011fi\u015fiklikler var, sayfadan ayr\u0131lmak istedi\u011finize emin misiniz?",
"Restore last draft": "Son tasla\u011f\u0131 geri y\u00fckle",
"Special character...": "\u00d6zel karakter...",
"Source code": "Kaynak kodu",
"Insert\/Edit code sample": "\u00d6rnek kod ekle\/d\u00fczenle",
"Language": "Dil",
"Code sample...": "Kod \u00f6rne\u011fi...",
"Color Picker": "Renk Se\u00e7ici",
"R": "R",
"G": "G",
"B": "B",
"Left to right": "Soldan sa\u011fa",
"Right to left": "Sa\u011fdan sola",
"Emoticons...": "\u0130fadeler...",
"Metadata and Document Properties": "\u00d6nbilgi ve Belge \u00d6zellikleri",
"Title": "Ba\u015fl\u0131k",
"Keywords": "Anahtar kelimeler",
"Description": "A\u00e7\u0131klama",
"Robots": "Robotlar",
"Author": "Yazar",
"Encoding": "Kodlama",
"Fullscreen": "Tam ekran",
"Action": "Eylem",
"Shortcut": "K\u0131sayol",
"Help": "Yard\u0131m",
"Address": "Adres",
"Focus to menubar": "Men\u00fcye odaklan",
"Focus to toolbar": "Ara\u00e7 tak\u0131m\u0131na odaklan",
"Focus to element path": "\u00d6\u011fe yoluna odaklan",
"Focus to contextual toolbar": "Ba\u011flamsal ara\u00e7 tak\u0131m\u0131na odaklan",
"Insert link (if link plugin activated)": "Ba\u011flant\u0131 ekle (Ba\u011flant\u0131 eklentisi aktif ise)",
"Save (if save plugin activated)": "Kaydet (Kay\u0131t eklentisi aktif ise)",
"Find (if searchreplace plugin activated)": "Bul (Bul\/De\u011fi\u015ftir eklentisi aktif ise)",
"Plugins installed ({0}):": "Eklentiler y\u00fcklendi ({0}):",
"Premium plugins:": "Premium eklentiler:",
"Learn more...": "Detayl\u0131 bilgi...",
"You are using {0}": "\u015eu an {0} kullan\u0131yorsunuz",
"Plugins": "Plugins",
"Handy Shortcuts": "Handy Shortcuts",
"Horizontal line": "Yatay \u00e7izgi",
"Insert\/edit image": "Resim ekle\/d\u00fczenle",
"Image description": "Resim a\u00e7\u0131klamas\u0131",
"Source": "Kaynak",
"Dimensions": "Boyutlar",
"Constrain proportions": "Oranlar\u0131 koru",
"General": "Genel",
"Advanced": "Geli\u015fmi\u015f",
"Style": "Stil",
"Vertical space": "Dikey bo\u015fluk",
"Horizontal space": "Yatay bo\u015fluk",
"Border": "Kenarl\u0131k",
"Insert image": "Resim ekle",
"Image...": "Resim...",
"Image list": "G\u00f6rsel listesi",
"Rotate counterclockwise": "Saatin tersi y\u00f6n\u00fcnde d\u00f6nd\u00fcr",
"Rotate clockwise": "Saat y\u00f6n\u00fcnde d\u00f6nd\u00fcr",
"Flip vertically": "Dikine \u00e7evir",
"Flip horizontally": "Enine \u00e7evir",
"Edit image": "Resmi d\u00fczenle",
"Image options": "Resim ayarlar\u0131",
"Zoom in": "Yak\u0131nla\u015ft\u0131r",
"Zoom out": "Uzakla\u015ft\u0131r",
"Crop": "K\u0131rp",
"Resize": "Yeniden Boyutland\u0131r",
"Orientation": "Oryantasyon",
"Brightness": "Parlakl\u0131k",
"Sharpen": "Keskinle\u015ftir",
"Contrast": "Kontrast",
"Color levels": "Renk d\u00fczeyleri",
"Gamma": "Gama",
"Invert": "Ters \u00c7evir",
"Apply": "Uygula",
"Back": "Geri",
"Insert date\/time": "Tarih\/saat ekle",
"Date\/time": "Tarih\/saat",
"Insert\/Edit Link": "Ba\u011flant\u0131 Ekle\/D\u00fczenle",
"Insert\/edit link": "Ba\u011flant\u0131 ekle\/d\u00fczenle",
"Text to display": "Yaz\u0131y\u0131 g\u00f6r\u00fcnt\u00fcle",
"Url": "Url",
"Open link in...": "Ba\u011flant\u0131y\u0131 a\u00e7...",
"Current window": "Mevcut pencere",
"None": "Hi\u00e7biri",
"New window": "Yeni pencere",
"Remove link": "Ba\u011flant\u0131y\u0131 kald\u0131r",
"Anchors": "\u00c7apalar",
"Link...": "Ba\u011flant\u0131...",
"Paste or type a link": "Bir ba\u011flant\u0131 yaz\u0131n yada yap\u0131\u015ft\u0131r\u0131n",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Girdi\u011finiz URL bir e-posta adresi gibi g\u00f6r\u00fcn\u00fcyor. Gerekli olan mailto: \u00f6nekini eklemek ister misiniz?",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Girdi\u011finiz URL bir d\u0131\u015f ba\u011flant\u0131 gibi g\u00f6r\u00fcn\u00fcyor. Gerekli olan http:\/\/ \u00f6nekini eklemek ister misiniz?",
"Link list": "Ba\u011flant\u0131 listesi",
"Insert video": "Video ekle",
"Insert\/edit video": "Video ekle\/d\u00fczenle",
"Insert\/edit media": "Medya ekle\/d\u00fczenle",
"Alternative source": "Alternatif kaynak",
"Alternative source URL": "Alternatif kaynak URL",
"Media poster (Image URL)": "Medya posteri (Resim URL)",
"Paste your embed code below:": "Video g\u00f6mme kodunu a\u015fa\u011f\u0131ya yap\u0131\u015ft\u0131r\u0131n\u0131z:",
"Embed": "G\u00f6mme",
"Media...": "Medya...",
"Nonbreaking space": "B\u00f6l\u00fcnemez bo\u015fluk",
"Page break": "Sayfa sonu",
"Paste as text": "Metin olarak yap\u0131\u015ft\u0131r",
"Preview": "\u00d6nizleme",
"Print...": "Yazd\u0131r...",
"Save": "Kaydet",
"Find": "Bul",
"Replace with": "Bununla de\u011fi\u015ftir",
"Replace": "De\u011fi\u015ftir",
"Replace all": "T\u00fcm\u00fcn\u00fc de\u011fi\u015ftir",
"Previous": "Geri",
"Next": "Sonraki",
"Find and replace...": "Bul ve de\u011fi\u015ftir...",
"Could not find the specified string.": "Herhangi bir sonu\u00e7 bulunamad\u0131.",
"Match case": "B\u00fcy\u00fck\/k\u00fc\u00e7\u00fck harf duyarl\u0131",
"Find whole words only": "Sadece t\u00fcm kelimeyi ara",
"Spell check": "Yaz\u0131m denetimi",
"Ignore": "Yoksay",
"Ignore all": "T\u00fcm\u00fcn\u00fc yoksay",
"Finish": "Bitir",
"Add to Dictionary": "S\u00f6zl\u00fc\u011fe Ekle",
"Insert table": "Tablo ekle",
"Table properties": "Tablo \u00f6zellikleri",
"Delete table": "Tablo sil",
"Cell": "H\u00fccre",
"Row": "Sat\u0131r",
"Column": "S\u00fctun",
"Cell properties": "H\u00fccre \u00f6zellikleri",
"Merge cells": "H\u00fccreleri birle\u015ftir",
"Split cell": "H\u00fccre b\u00f6l",
"Insert row before": "\u00dcste sat\u0131r ekle",
"Insert row after": "Alta sat\u0131r ekle ",
"Delete row": "Sat\u0131r sil",
"Row properties": "Sat\u0131r \u00f6zellikleri",
"Cut row": "Sat\u0131r\u0131 kes",
"Copy row": "Sat\u0131r\u0131 kopyala",
"Paste row before": "\u00dcste sat\u0131r yap\u0131\u015ft\u0131r",
"Paste row after": "Alta sat\u0131r yap\u0131\u015ft\u0131r",
"Insert column before": "Sola s\u00fctun ekle",
"Insert column after": "Sa\u011fa s\u00fctun ekle",
"Delete column": "S\u00fctun sil",
"Cols": "S\u00fctunlar",
"Rows": "Sat\u0131rlar",
"Width": "Geni\u015flik",
"Height": "Y\u00fckseklik",
"Cell spacing": "H\u00fccre aral\u0131\u011f\u0131",
"Cell padding": "H\u00fccre dolgusu",
"Show caption": "Ba\u015fl\u0131\u011f\u0131 g\u00f6ster",
"Left": "Sol",
"Center": "Orta",
"Right": "Sa\u011f",
"Cell type": "H\u00fccre tipi",
"Scope": "Kapsam",
"Alignment": "Hizalama",
"H Align": "Yatay Hizalama",
"V Align": "Dikey Hizalama",
"Top": "\u00dcst",
"Middle": "Orta",
"Bottom": "Alt",
"Header cell": "Ba\u015fl\u0131k h\u00fccresi",
"Row group": "Sat\u0131r grubu",
"Column group": "S\u00fctun grubu",
"Row type": "Sat\u0131r tipi",
"Header": "Ba\u015fl\u0131k",
"Body": "G\u00f6vde",
"Footer": "Alt",
"Border color": "Kenarl\u0131k rengi",
"Insert template...": "\u015eablon ekle...",
"Templates": "\u015eablonlar",
"Template": "Taslak",
"Text color": "Yaz\u0131 rengi",
"Background color": "Arka plan rengi",
"Custom...": "\u00d6zel...",
"Custom color": "\u00d6zel renk",
"No color": "Renk yok",
"Remove color": "Rengi kald\u0131r",
"Table of Contents": "\u0130\u00e7erik tablosu",
"Show blocks": "Bloklar\u0131 g\u00f6ster",
"Show invisible characters": "G\u00f6r\u00fcnmez karakterleri g\u00f6ster",
"Word count": "Kelime say\u0131s\u0131",
"Count": "Say\u0131m",
"Document": "Belge",
"Selection": "Se\u00e7im",
"Words": "S\u00f6zc\u00fck",
"Words: {0}": "Kelime: {0}",
"{0} words": "{0} words",
"File": "Dosya",
"Edit": "D\u00fczenle",
"Insert": "Ekle",
"View": "G\u00f6r\u00fcn\u00fcm",
"Format": "Bi\u00e7im",
"Table": "Tablo",
"Tools": "Ara\u00e7lar",
"Powered by {0}": "Powered by {0}",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zengin Metin Alan\u0131. Men\u00fc i\u00e7in ALT-F9 tu\u015funa bas\u0131n\u0131z. Ara\u00e7 \u00e7ubu\u011fu i\u00e7in ALT-F10 tu\u015funa bas\u0131n\u0131z. Yard\u0131m i\u00e7in ALT-0 tu\u015funa bas\u0131n\u0131z.",
"Image title": "Resim ba\u015fl\u0131\u011f\u0131",
"Border width": "Kenar geni\u015fli\u011fi",
"Border style": "Kenar sitili",
"Error": "Hata",
"Warn": "Uyar\u0131",
"Valid": "Ge\u00e7erli",
"To open the popup, press Shift+Enter": "Popup'\u0131 a\u00e7mak i\u00e7in Shift+Enter'a bas\u0131n",
"Rich Text Area. Press ALT-0 for help.": "Zengin Metin Alan\u0131. Yard\u0131m i\u00e7in Alt-0'a bas\u0131n.",
"System Font": "Sistem Yaz\u0131 Tipi",
"Failed to upload image: {0}": "Resim y\u00fcklenemedi: {0}",
"Failed to load plugin: {0} from url {1}": "Eklenti y\u00fcklenemedi: {1} url\u2019sinden {0}",
"Failed to load plugin url: {0}": "Url eklentisi y\u00fcklenemedi: {0}",
"Failed to initialize plugin: {0}": "Eklenti ba\u015flat\u0131lamad\u0131: {0}",
"example": "\u00f6rnek",
"Search": "Ara",
"All": "T\u00fcm\u00fc",
"Currency": "Para birimi",
"Text": "Metin",
"Quotations": "Al\u0131nt\u0131",
"Mathematical": "Matematik",
"Extended Latin": "Uzat\u0131lm\u0131\u015f Latin",
"Symbols": "Semboller",
"Arrows": "Oklar",
"User Defined": "Kullan\u0131c\u0131 Tan\u0131ml\u0131",
"dollar sign": "dolar i\u015fareti",
"currency sign": "para birimi i\u015fareti",
"euro-currency sign": "euro para birimi i\u015fareti",
"colon sign": "colon i\u015fareti",
"cruzeiro sign": "cruzeiro i\u015fareti",
"french franc sign": "frans\u0131z frang\u0131 i\u015fareti",
"lira sign": "lira i\u015fareti",
"mill sign": "mill i\u015fareti",
"naira sign": "naira i\u015fareti",
"peseta sign": "peseta i\u015fareti",
"rupee sign": "rupi i\u015fareti",
"won sign": "won i\u015fareti",
"new sheqel sign": "yeni \u015fekel i\u015fareti",
"dong sign": "dong i\u015fareti",
"kip sign": "kip i\u015fareti",
"tugrik sign": "tugrik i\u015fareti",
"drachma sign": "drahma i\u015fareti",
"german penny symbol": "alman kuru\u015f sembol\u00fc",
"peso sign": "peso i\u015fareti",
"guarani sign": "guarani i\u015fareti",
"austral sign": "austral i\u015fareti",
"hryvnia sign": "hrivniya i\u015fareti",
"cedi sign": "cedi i\u015fareti",
"livre tournois sign": "livre tournois i\u015fareti",
"spesmilo sign": "spesmilo i\u015fareti",
"tenge sign": "tenge i\u015fareti",
"indian rupee sign": "hindistan rupisi i\u015fareti",
"turkish lira sign": "t\u00fcrk liras\u0131 i\u015fareti",
"nordic mark sign": "nordic i\u015fareti",
"manat sign": "manat i\u015fareti",
"ruble sign": "ruble i\u015fareti",
"yen character": "yen karakteri",
"yuan character": "yuan karakteri",
"yuan character, in hong kong and taiwan": "yuan karakteri, hong kong ve tayvan'da kullan\u0131lan",
"yen\/yuan character variant one": "yen\/yuan karakter de\u011fi\u015fkeni",
"Loading emoticons...": "\u0130fadeler y\u00fckleniyor...",
"Could not load emoticons": "\u0130fadeler y\u00fcklenemedi",
"People": "\u0130nsan",
"Animals and Nature": "Hayvanlar ve Do\u011fa",
"Food and Drink": "Yiyecek ve \u0130\u00e7ecek",
"Activity": "Etkinlik",
"Travel and Places": "Gezi ve Yerler",
"Objects": "Nesneler",
"Flags": "Bayraklar",
"Characters": "Karakter",
"Characters (no spaces)": "Karakter (bo\u015fluksuz)",
"{0} characters": "{0} karakter",
"Error: Form submit field collision.": "Hata: Form g\u00f6nderme alan\u0131 \u00e7at\u0131\u015fmas\u0131.",
"Error: No form element found.": "Hata: Form eleman\u0131 bulunamad\u0131.",
"Update": "G\u00fcncelle\u015ftir",
"Color swatch": "Renk \u00f6rne\u011fi",
"Turquoise": "Turkuaz",
"Green": "Ye\u015fil",
"Blue": "Mavi",
"Purple": "Mor",
"Navy Blue": "Lacivert",
"Dark Turquoise": "Koyu Turkuaz",
"Dark Green": "Koyu Ye\u015fil",
"Medium Blue": "Donuk Mavi",
"Medium Purple": "Orta Mor",
"Midnight Blue": "Gece Yar\u0131s\u0131 Mavisi",
"Yellow": "Sar\u0131",
"Orange": "Turuncu",
"Red": "K\u0131rm\u0131z\u0131",
"Light Gray": "A\u00e7\u0131k Gri",
"Gray": "Gri",
"Dark Yellow": "Koyu Sar\u0131",
"Dark Orange": "Koyu Turuncu",
"Dark Red": "Koyu K\u0131rm\u0131z\u0131",
"Medium Gray": "Orta Gri",
"Dark Gray": "Koyu Gri",
"Light Green": "A\u00e7\u0131k Ye\u015fil",
"Light Yellow": "A\u00e7\u0131k Sar\u0131",
"Light Red": "A\u00e7\u0131k K\u0131rm\u0131z\u0131",
"Light Purple": "A\u00e7\u0131k Mor",
"Light Blue": "A\u00e7\u0131k Mavi",
"Dark Purple": "Koyu Mor",
"Dark Blue": "Lacivert",
"Black": "Siyah",
"White": "Beyaz",
"Switch to or from fullscreen mode": "Tam ekran moduna ge\u00e7 veya \u00e7\u0131k",
"Open help dialog": "Yard\u0131m penceresini a\u00e7",
"history": "ge\u00e7mi\u015f",
"styles": "stiller",
"formatting": "bi\u00e7imlendirme",
"alignment": "hizalanma",
"indentation": "girinti",
"permanent pen": "kal\u0131c\u0131 kalem",
"comments": "yorumlar",
"Format Painter": "Bi\u00e7im Boyac\u0131s\u0131",
"Insert\/edit iframe": "\u0130frame ekle\/d\u00fczenle",
"Capitalization": "B\u00fcy\u00fck Harfle Yaz\u0131m",
"lowercase": "k\u00fc\u00e7\u00fck harf",
"UPPERCASE": "B\u00dcY\u00dcK HARF",
"Title Case": "\u0130lk Harfler B\u00fcy\u00fck",
"Permanent Pen Properties": "Kal\u0131c\u0131 Kalem \u00d6zellikleri",
"Permanent pen properties...": "Kal\u0131c\u0131 kalem \u00f6zellikleri...",
"Font": "Yaz\u0131 Tipi",
"Size": "Boyut",
"More...": "Devam\u0131...",
"Spellcheck Language": "Yaz\u0131m Denetimi Dili",
"Select...": "Se\u00e7...",
"Preferences": "Tercihler",
"Yes": "Evet",
"No": "Hay\u0131r",
"Keyboard Navigation": "Klavye Tu\u015flar\u0131",
"Version": "S\u00fcr\u00fcm",
"Anchor": "\u00c7apa",
"Special character": "\u00d6zel karakter",
"Code sample": "Code sample",
"Color": "Renk",
"Emoticons": "\u0130fadeler",
"Document properties": "Dok\u00fcman \u00f6zellikleri",
"Image": "Resim",
"Insert link": "Ba\u011flant\u0131 ekle",
"Target": "Hedef",
"Link": "Ba\u011flant\u0131",
"Poster": "Poster",
"Media": "Medya",
"Print": "Yazd\u0131r",
"Prev": "\u00d6nceki",
"Find and replace": "Bul ve de\u011fi\u015ftir",
"Whole words": "Tam kelimeler",
"Spellcheck": "Yaz\u0131m denetimi",
"Caption": "Ba\u015fl\u0131k",
"Insert template": "\u015eablon ekle"
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/tr_TR.js
================================================
tinymce.addI18n('tr_TR',{
"Redo": "Yinele",
"Undo": "Geri al",
"Cut": "Kes",
"Copy": "Kopyala",
"Paste": "Yap\u0131\u015ft\u0131r",
"Select all": "T\u00fcm\u00fcn\u00fc se\u00e7",
"New document": "Yeni dok\u00fcman",
"Ok": "Tamam",
"Cancel": "\u0130ptal",
"Visual aids": "G\u00f6rsel ara\u00e7lar",
"Bold": "Kal\u0131n",
"Italic": "\u0130talik",
"Underline": "Alt\u0131 \u00e7izili",
"Strikethrough": "\u00dcst\u00fc \u00e7izgili",
"Superscript": "\u00dcst simge",
"Subscript": "Alt simge",
"Clear formatting": "Bi\u00e7imi temizle",
"Align left": "Sola hizala",
"Align center": "Ortala",
"Align right": "Sa\u011fa hizala",
"Justify": "\u0130ki yana yasla",
"Bullet list": "S\u0131ras\u0131z liste",
"Numbered list": "S\u0131ral\u0131 liste",
"Decrease indent": "Girintiyi azalt",
"Increase indent": "Girintiyi art\u0131r",
"Close": "Kapat",
"Formats": "Bi\u00e7imler",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Taray\u0131c\u0131n\u0131z panoya direk eri\u015fimi desteklemiyor. L\u00fctfen Ctrl+X\/C\/V klavye k\u0131sayollar\u0131n\u0131 kullan\u0131n.",
"Headers": "Ba\u015fl\u0131klar",
"Header 1": "Ba\u015fl\u0131k 1",
"Header 2": "Ba\u015fl\u0131k 2",
"Header 3": "Ba\u015fl\u0131k 3",
"Header 4": "Ba\u015fl\u0131k 4",
"Header 5": "Ba\u015fl\u0131k 5",
"Header 6": "Ba\u015fl\u0131k 6",
"Headings": "Ba\u015fl\u0131klar",
"Heading 1": "Ba\u015fl\u0131k 1",
"Heading 2": "Ba\u015fl\u0131k 2",
"Heading 3": "Ba\u015fl\u0131k 3",
"Heading 4": "Ba\u015fl\u0131k 4",
"Heading 5": "Ba\u015fl\u0131k 5",
"Heading 6": "Ba\u015fl\u0131k 6",
"Preformatted": "\u00d6nceden bi\u00e7imlendirilmi\u015f",
"Div": "Div",
"Pre": "Pre",
"Code": "Kod",
"Paragraph": "Paragraf",
"Blockquote": "Blockquote",
"Inline": "Sat\u0131r i\u00e7i",
"Blocks": "Bloklar",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "D\u00fcz metin modunda yap\u0131\u015ft\u0131r. Bu se\u00e7ene\u011fi kapatana kadar i\u00e7erikler d\u00fcz metin olarak yap\u0131\u015ft\u0131r\u0131l\u0131r.",
"Fonts": "Yaz\u0131 Tipleri",
"Font Sizes": "Yaz\u0131tipi B\u00fcy\u00fckl\u00fc\u011f\u00fc",
"Class": "S\u0131n\u0131f",
"Browse for an image": "Bir resim aray\u0131n",
"OR": "ya da",
"Drop an image here": "Buraya bir resim koyun",
"Upload": "Y\u00fckle",
"Block": "Blok",
"Align": "Hizala",
"Default": "Varsay\u0131lan",
"Circle": "Daire",
"Disc": "Disk",
"Square": "Kare",
"Lower Alpha": "K\u00fc\u00e7\u00fck ABC",
"Lower Greek": "K\u00fc\u00e7\u00fck Yunan alfabesi",
"Lower Roman": "K\u00fc\u00e7\u00fck Roman alfabesi",
"Upper Alpha": "B\u00fcy\u00fck ABC",
"Upper Roman": "B\u00fcy\u00fck Roman alfabesi",
"Anchor...": "\u00c7apa...",
"Name": "\u0130sim",
"Id": "Id",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id bir harf ile ba\u015flamal\u0131d\u0131r ve sadece harfleri, rakamlar\u0131, \u00e7izgileri, noktalar\u0131, virg\u00fclleri veya alt \u00e7izgileri i\u00e7ermelidir.",
"You have unsaved changes are you sure you want to navigate away?": "Kaydedilmemi\u015f de\u011fi\u015fiklikler var, sayfadan ayr\u0131lmak istedi\u011finize emin misiniz?",
"Restore last draft": "Son tasla\u011f\u0131 kurtar",
"Special character...": "\u00d6zel karakter...",
"Source code": "Kaynak kodu",
"Insert\/Edit code sample": "Kod \u00f6rne\u011fini Kaydet\/D\u00fczenle",
"Language": "Dil",
"Code sample...": "Kod \u00f6rne\u011fi...",
"Color Picker": "Renk Se\u00e7ici",
"R": "R",
"G": "G",
"B": "B",
"Left to right": "Soldan sa\u011fa",
"Right to left": "Sa\u011fdan sola",
"Emoticons": "G\u00fcl\u00fcc\u00fckler",
"Emoticons...": "\u0130fadeler...",
"Metadata and Document Properties": "\u00d6nbilgi ve Belge \u00d6zellikleri",
"Title": "Ba\u015fl\u0131k",
"Keywords": "Anahtar kelimeler",
"Description": "A\u00e7\u0131klama",
"Robots": "Robotlar",
"Author": "Yazar",
"Encoding": "Kodlama",
"Fullscreen": "Tam ekran",
"Action": "Eylem",
"Shortcut": "K\u0131sayol",
"Help": "Yard\u0131m",
"Address": "Adres",
"Focus to menubar": "Men\u00fc \u00e7ubu\u011funa odaklan.",
"Focus to toolbar": "Ara\u00e7 \u00e7ubu\u011funa odaklan.",
"Focus to element path": "Eleman yoluna odaklan",
"Focus to contextual toolbar": "Ba\u011flamsal ara\u00e7 \u00e7ubu\u011funa odaklan",
"Insert link (if link plugin activated)": "Link ekle (Link eklentisi aktif ise)",
"Save (if save plugin activated)": "Kaydet (Kay\u0131t eklentisi aktif ise)",
"Find (if searchreplace plugin activated)": "Bul (SearchReplace eklentisi aktif ise)",
"Plugins installed ({0}):": "Y\u00fckl\u00fc eklenti say\u0131s\u0131 : ({0}):",
"Premium plugins:": "Premium eklentileri",
"Learn more...": "Daha fazla bilgi edinin.",
"You are using {0}": "{0} kullan\u0131yorsun.",
"Plugins": "Eklentiler",
"Handy Shortcuts": "Kullan\u0131\u015fl\u0131 K\u0131sayollar",
"Horizontal line": "Yatay \u00e7izgi",
"Insert\/edit image": "Resim ekle\/d\u00fczenle",
"Alternative description": "Alt etiket",
"Accessibility": "Eri\u015filebilirlik",
"Image is decorative": "G\u00f6rsel s\u00fcs ama\u00e7l\u0131d\u0131r",
"Source": "Kaynak",
"Dimensions": "Boyutlar",
"Constrain proportions": "En - Boy oran\u0131n\u0131 koru",
"General": "Genel",
"Advanced": "Geli\u015fmi\u015f",
"Style": "Stil",
"Vertical space": "Dikey bo\u015fluk",
"Horizontal space": "Yatay bo\u015fluk",
"Border": "\u00c7er\u00e7eve",
"Insert image": "Resim ekle",
"Image...": "Resim...",
"Image list": "Resim listesi",
"Rotate counterclockwise": "Saat y\u00f6n\u00fcn\u00fcn tersine d\u00f6nd\u00fcr",
"Rotate clockwise": "Saat y\u00f6n\u00fcnde d\u00f6nd\u00fcr",
"Flip vertically": "Dikey \u00e7evir",
"Flip horizontally": "Yatay \u00e7evir",
"Edit image": "G\u00f6r\u00fcnt\u00fcy\u00fc d\u00fczenle",
"Image options": "G\u00f6r\u00fcnt\u00fc se\u00e7enekleri",
"Zoom in": "Yak\u0131nla\u015ft\u0131r",
"Zoom out": "Uzakla\u015ft\u0131r",
"Crop": "Kes",
"Resize": "Yeniden Boyutland\u0131r",
"Orientation": "Y\u00f6n\u00fcn\u00fc Belirle",
"Brightness": "Parlakl\u0131k",
"Sharpen": "Keskinle\u015ftir",
"Contrast": "Kontrast",
"Color levels": "Renk seviyesi",
"Gamma": "Gama",
"Invert": "Tersine \u00e7evir",
"Apply": "Uygula",
"Back": "Geri",
"Insert date\/time": "Tarih \/ Zaman ekle",
"Date\/time": "Tarih\/zaman",
"Insert\/edit link": "Ba\u011flant\u0131 ekle\/d\u00fczenle",
"Text to display": "G\u00f6r\u00fcnen yaz\u0131",
"Url": "Url",
"Open link in...": "Ba\u011flant\u0131y\u0131 a\u00e7...",
"Current window": "Mevcut pencere",
"None": "Hi\u00e7biri",
"New window": "Yeni pencere",
"Open link": "Ba\u011flant\u0131y\u0131 A\u00e7",
"Remove link": "Ba\u011flant\u0131y\u0131 kald\u0131r",
"Anchors": "\u00c7apalar",
"Link...": "Ba\u011flant\u0131...",
"Paste or type a link": "Bir ba\u011flant\u0131 yap\u0131\u015ft\u0131r\u0131n yada yaz\u0131n.",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Girdi\u011finiz URL bir eposta adresi gibi g\u00f6z\u00fck\u00fcyor. Gerekli olan mailto: \u00f6nekini eklemek ister misiniz?",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Girdi\u011finiz URL bir d\u0131\u015f ba\u011flant\u0131 gibi g\u00f6z\u00fck\u00fcyor. Gerekli olan http:\/\/ \u00f6nekini eklemek ister misiniz?",
"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "Girdi\u011finiz URL harici bir ba\u011flant\u0131 gibi g\u00f6r\u00fcn\u00fcyor. \"https:\/\/\" \u00f6nekini eklemek istiyor musunuz? *Gerekli",
"Link list": "Link listesi",
"Insert video": "Video ekle",
"Insert\/edit video": "Video ekle\/d\u00fczenle",
"Insert\/edit media": "Medya ekle\/d\u00fczenle",
"Alternative source": "Alternatif kaynak",
"Alternative source URL": "Alternatif kaynak URL",
"Media poster (Image URL)": "Medya posteri (Resim URL)",
"Paste your embed code below:": "Medya g\u00f6mme kodunu buraya yap\u0131\u015ft\u0131r:",
"Embed": "G\u00f6mme",
"Media...": "Medya...",
"Nonbreaking space": "B\u00f6l\u00fcnemez bo\u015fluk",
"Page break": "Sayfa sonu",
"Paste as text": "Metin olarak yap\u0131\u015ft\u0131r",
"Preview": "\u00d6nizleme",
"Print...": "Yazd\u0131r...",
"Save": "Kaydet",
"Find": "Bul",
"Replace with": "Bununla de\u011fi\u015ftir",
"Replace": "De\u011fi\u015ftir",
"Replace all": "T\u00fcm\u00fcn\u00fc de\u011fi\u015ftir",
"Previous": "Geri",
"Next": "Sonraki",
"Find and Replace": "Bul ve De\u011fi\u015ftir",
"Find and replace...": "Bul ve de\u011fi\u015ftir...",
"Could not find the specified string.": "Herhangi bir sonu\u00e7 bulunamad\u0131.",
"Match case": "B\u00fcy\u00fck \/ K\u00fc\u00e7\u00fck harfe duyarl\u0131",
"Find whole words only": "Sadece t\u00fcm kelimeyi ara",
"Find in selection": "Se\u00e7ili Alanda Bul",
"Spellcheck": "Yaz\u0131m denetimi",
"Spellcheck Language": "Dil Yaz\u0131m Denetimi",
"No misspellings found.": "Yaz\u0131m hatas\u0131 bulunamad\u0131",
"Ignore": "Yoksay",
"Ignore all": "T\u00fcm\u00fcn\u00fc yoksay",
"Finish": "Bitir",
"Add to Dictionary": "S\u00f6zl\u00fc\u011fe ekle",
"Insert table": "Tablo ekle",
"Table properties": "Tablo \u00f6zellikleri",
"Delete table": "Tabloyu sil",
"Cell": "H\u00fccre",
"Row": "Sat\u0131r",
"Column": "S\u00fctun",
"Cell properties": "H\u00fccre \u00f6zellikleri",
"Merge cells": "H\u00fccreleri birle\u015ftir",
"Split cell": "H\u00fccreleri ay\u0131r",
"Insert row before": "\u00d6ncesine yeni sat\u0131r ekle",
"Insert row after": "Sonras\u0131na yeni sat\u0131r ekle",
"Delete row": "Sat\u0131r\u0131 sil",
"Row properties": "Sat\u0131r \u00f6zellikleri",
"Cut row": "Sat\u0131r\u0131 kes",
"Copy row": "Sat\u0131r\u0131 kopyala",
"Paste row before": "\u00d6ncesine sat\u0131r yap\u0131\u015ft\u0131r",
"Paste row after": "Sonras\u0131na sat\u0131r  yap\u0131\u015ft\u0131r",
"Insert column before": "\u00d6ncesine yeni s\u00fctun ekle",
"Insert column after": "Sonras\u0131na yeni s\u00fctun ekle",
"Delete column": "S\u00fctunu sil",
"Cols": "S\u00fctunlar",
"Rows": "Sat\u0131rlar",
"Width": "Geni\u015flik",
"Height": "Y\u00fckseklik",
"Cell spacing": "H\u00fccre aral\u0131\u011f\u0131",
"Cell padding": "H\u00fccre i\u00e7 bo\u015flu\u011fu",
"Caption": "Ba\u015fl\u0131k",
"Show caption": "Ba\u015fl\u0131\u011f\u0131 g\u00f6ster",
"Left": "Sol",
"Center": "Orta",
"Right": "Sa\u011f",
"Cell type": "H\u00fccre tipi",
"Scope": "Kapsam",
"Alignment": "Hizalama",
"H Align": "Yatay Hizalama",
"V Align": "Dikey Hizalama",
"Top": "\u00dcst",
"Middle": "Orta",
"Bottom": "Alt",
"Header cell": "Ba\u015fl\u0131k h\u00fccresi",
"Row group": "Sat\u0131r grubu",
"Column group": "S\u00fctun grubu",
"Row type": "Sat\u0131r tipi",
"Header": "Ba\u015fl\u0131k",
"Body": "G\u00f6vde",
"Footer": "Alt",
"Border color": "Kenarl\u0131k Rengi",
"Insert template...": "\u015eablon ekle...",
"Templates": "\u015eablonlar",
"Template": "Tema",
"Text color": "Yaz\u0131 rengi",
"Background color": "Arkaplan rengi",
"Custom...": "\u00d6zel",
"Custom color": "\u00d6zel Renk",
"No color": "Renk Yok",
"Remove color": "Rengi kald\u0131r",
"Table of Contents": "\u0130\u00e7indekiler",
"Show blocks": "Bloklar\u0131 g\u00f6r\u00fcnt\u00fcle",
"Show invisible characters": "G\u00f6r\u00fcnmez karakterleri g\u00f6ster",
"Word count": "Kelime say\u0131s\u0131",
"Count": "Adet",
"Document": "Belge",
"Selection": "Se\u00e7im",
"Words": "Kelimeler",
"Words: {0}": "Kelime: {0}",
"{0} words": "{0} kelime",
"File": "Dosya",
"Edit": "D\u00fczenle",
"Insert": "Ekle",
"View": "G\u00f6r\u00fcnt\u00fcle",
"Format": "Bi\u00e7im",
"Table": "Tablo",
"Tools": "Ara\u00e7lar",
"Powered by {0}": "{0} taraf\u0131ndan yap\u0131lm\u0131\u015ft\u0131r ",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zengin Metin Alan\u0131. Men\u00fc i\u00e7in ALT-F9 k\u0131sayolunu kullan\u0131n. Ara\u00e7 \u00e7ubu\u011fu i\u00e7in ALT-F10 k\u0131sayolunu kullan\u0131n. Yard\u0131m i\u00e7in ALT-0 k\u0131sayolunu kullan\u0131n.",
"Image title": "Resim ba\u015fl\u0131\u011f\u0131",
"Border width": "Kenar geni\u015fli\u011fi",
"Border style": "Kenar sitili",
"Error": "Hata",
"Warn": "Uyar\u0131",
"Valid": "Ge\u00e7erli",
"To open the popup, press Shift+Enter": "Popup'\u0131 a\u00e7mak i\u00e7in Shift+Enter'a bas\u0131n",
"Rich Text Area. Press ALT-0 for help.": "Zengin Metin Alan\u0131. Yard\u0131m i\u00e7in Alt-0'a bas\u0131n.",
"System Font": "Sistem Yaz\u0131 Tipi",
"Failed to upload image: {0}": "Resim y\u00fcklenemedi: {0}",
"Failed to load plugin: {0} from url {1}": "Eklenti y\u00fcklenemedi: {1} url\u2019sinden {0} ",
"Failed to load plugin url: {0}": "Url eklentisi y\u00fcklenemedi: {0}",
"Failed to initialize plugin: {0}": "Eklenti ba\u015flat\u0131lamad\u0131: {0}",
"example": "\u00f6rnek",
"Search": "Ara",
"All": "T\u00fcm\u00fc",
"Currency": "Para birimi",
"Text": "Metin",
"Quotations": "Al\u0131nt\u0131",
"Mathematical": "Matematik",
"Extended Latin": "Uzat\u0131lm\u0131\u015f Latin",
"Symbols": "Semboller",
"Arrows": "Oklar",
"User Defined": "Kullan\u0131c\u0131 Tan\u0131ml\u0131",
"dollar sign": "dolar i\u015fareti",
"currency sign": "para birimi i\u015fareti",
"euro-currency sign": "euro para birimi i\u015fareti",
"colon sign": "colon i\u015fareti",
"cruzeiro sign": "cruzeiro i\u015fareti",
"french franc sign": "frans\u0131z frang\u0131 i\u015fareti",
"lira sign": "lira i\u015fareti",
"mill sign": "mill i\u015fareti",
"naira sign": "naira i\u015fareti",
"peseta sign": "peseta i\u015fareti",
"rupee sign": "rupi i\u015fareti",
"won sign": "won i\u015fareti",
"new sheqel sign": "yeni \u015fekel i\u015fareti",
"dong sign": "dong i\u015fareti",
"kip sign": "kip i\u015fareti",
"tugrik sign": "tugrik i\u015fareti",
"drachma sign": "drahma i\u015fareti",
"german penny symbol": "alman kuru\u015f sembol\u00fc",
"peso sign": "peso i\u015fareti",
"guarani sign": "guarani i\u015fareti",
"austral sign": "austral i\u015fareti",
"hryvnia sign": "hrivniya i\u015fareti",
"cedi sign": "cedi i\u015fareti",
"livre tournois sign": "livre tournois i\u015fareti",
"spesmilo sign": "spesmilo i\u015fareti",
"tenge sign": "tenge i\u015fareti",
"indian rupee sign": "hindistan rupisi i\u015fareti",
"turkish lira sign": "t\u00fcrk liras\u0131 i\u015fareti",
"nordic mark sign": "nordic i\u015fareti",
"manat sign": "manat i\u015fareti",
"ruble sign": "ruble i\u015fareti",
"yen character": "yen karakteri",
"yuan character": "yuan karakteri",
"yuan character, in hong kong and taiwan": "yuan karakteri, hong kong ve tayvan'da kullan\u0131lan",
"yen\/yuan character variant one": "yen\/yuan karakter de\u011fi\u015fkeni",
"Loading emoticons...": "\u0130fadeler y\u00fckleniyor...",
"Could not load emoticons": "\u0130fadeler y\u00fcklenemedi",
"People": "\u0130nsan",
"Animals and Nature": "Hayvanlar ve Do\u011fa",
"Food and Drink": "Yiyecek ve \u0130\u00e7ecek",
"Activity": "Etkinlik",
"Travel and Places": "Gezi ve Yerler",
"Objects": "Nesneler",
"Flags": "Bayraklar",
"Characters": "Karakter",
"Characters (no spaces)": "Karakter (bo\u015fluksuz)",
"{0} characters": "{0} karakter",
"Error: Form submit field collision.": "Hata: Form g\u00f6nderme alan\u0131 \u00e7at\u0131\u015fmas\u0131.",
"Error: No form element found.": "Hata: Form eleman\u0131 bulunamad\u0131.",
"Update": "G\u00fcncelle\u015ftir",
"Color swatch": "Renk \u00f6rne\u011fi",
"Turquoise": "Turkuaz",
"Green": "Ye\u015fil",
"Blue": "Mavi",
"Purple": "Mor",
"Navy Blue": "Lacivert",
"Dark Turquoise": "Koyu Turkuaz",
"Dark Green": "Koyu Ye\u015fil",
"Medium Blue": "Donuk Mavi",
"Medium Purple": "Orta Mor",
"Midnight Blue": "Gece Yar\u0131s\u0131 Mavisi",
"Yellow": "Sar\u0131",
"Orange": "Turuncu",
"Red": "K\u0131rm\u0131z\u0131",
"Light Gray": "A\u00e7\u0131k Gri",
"Gray": "Gri",
"Dark Yellow": "Koyu Sar\u0131",
"Dark Orange": "Koyu Turuncu",
"Dark Red": "Koyu K\u0131rm\u0131z\u0131",
"Medium Gray": "Orta Gri",
"Dark Gray": "Koyu Gri",
"Light Green": "A\u00e7\u0131k Ye\u015fil",
"Light Yellow": "A\u00e7\u0131k Sar\u0131",
"Light Red": "A\u00e7\u0131k K\u0131rm\u0131z\u0131",
"Light Purple": "A\u00e7\u0131k Mor",
"Light Blue": "A\u00e7\u0131k Mavi",
"Dark Purple": "Koyu Mor",
"Dark Blue": "Koyu Mavi",
"Black": "Siyah",
"White": "Beyaz",
"Switch to or from fullscreen mode": "Tam ekran moduna ge\u00e7 veya \u00e7\u0131k",
"Open help dialog": "Yard\u0131m penceresini a\u00e7",
"history": "ge\u00e7mi\u015f",
"styles": "stiller",
"formatting": "bi\u00e7imlendirme",
"alignment": "hizalanma",
"indentation": "girinti",
"Font": "Font",
"Size": "Boyut",
"More...": "Daha Fazla...",
"Select...": "Se\u00e7...",
"Preferences": "Tercihler",
"Yes": "Evet",
"No": "Hay\u0131r",
"Keyboard Navigation": "Klavye K\u0131sayollar\u0131",
"Version": "Versiyon",
"Code view": "Kod G\u00f6r\u00fcn\u00fcm\u00fc",
"Open popup menu for split buttons": "B\u00f6l\u00fcnm\u00fc\u015f d\u00fc\u011fmeler i\u00e7in a\u00e7\u0131l\u0131r men\u00fcy\u00fc a\u00e7",
"List Properties": "Liste \u00d6zellikleri",
"List properties...": "Liste \u00d6zellikleri...",
"Start list at number": "Listeyi numaradan ba\u015flat",
"Line height": "Sat\u0131r Y\u00fcksekli\u011fi",
"comments": "yorumlar",
"Format Painter": "Bi\u00e7im Boyac\u0131s\u0131",
"Insert\/edit iframe": "ekle\/d\u00fczenle\/iframe",
"Capitalization": "B\u00fcy\u00fck Harfle Yazma",
"lowercase": "k\u00fc\u00e7\u00fclt\u00fclm\u00fc\u015f",
"UPPERCASE": "b\u00fcy\u00fclt\u00fclm\u00fc\u015f",
"Title Case": "Ba\u015fl\u0131k Alan\u0131",
"permanent pen": "kal\u0131c\u0131 kalem",
"Permanent Pen Properties": "Kal\u0131c\u0131 Kalem \u00d6zellikleri",
"Permanent pen properties...": "Kal\u0131c\u0131 kalem \u00f6zellikleri...",
"case change": "Durum De\u011fi\u015fikli\u011fi",
"page embed": "Sayfa Yerle\u015ftirme",
"Advanced sort...": "Geli\u015fmi\u015f s\u0131ralama...",
"Advanced Sort": "Geli\u015fmi\u015f s\u0131ralama",
"Sort table by column ascending": "Tabloyu S\u00fctuna G\u00f6re Artan S\u0131rada S\u0131rala",
"Sort table by column descending": "Tabloyu S\u00fctuna G\u00f6re Azalan S\u0131rada S\u0131rala",
"Sort": "S\u0131n\u0131fland\u0131r",
"Order": "D\u00fczenle",
"Sort by": "\u015euna g\u00f6re s\u0131n\u0131fland\u0131r:",
"Ascending": "Y\u00fckselen",
"Descending": "Al\u00e7alan",
"Column {0}": "Kolon : {0}",
"Row {0}": "S\u0131ra : {0}",
"Spellcheck...": "Yaz\u0131m Denetimi...",
"Misspelled word": "Yanl\u0131\u015f yaz\u0131lm\u0131\u015f kelime",
"Suggestions": "\u00d6neriler",
"Change": "De\u011fi\u015ftir",
"Finding word suggestions": "Kelime \u00f6nerilerini bulma",
"Success": "Ba\u015far\u0131",
"Repair": "Onar\u0131m",
"Issue {0} of {1}": "Bas\u0131m :  {0} \/ {1}",
"Images must be marked as decorative or have an alternative text description": "Resimler s\u00fcs ama\u00e7l\u0131 olarak i\u015faretlenmelidir yahut alt etikete sahip olmal\u0131d\u0131r.",
"Images must have an alternative text description. Decorative images are not allowed.": "G\u00f6rsellerin alternatif bir metin a\u00e7\u0131klamas\u0131 olmal\u0131d\u0131r. Dekoratif resimlere izin verilmez.",
"Or provide alternative text:": "veya alternatif metin sa\u011flay\u0131n:",
"Make image decorative:": "Resmi dekoratif yap:",
"ID attribute must be unique": "\"ID\" \u00f6zelli\u011fi benzersiz olmal\u0131d\u0131r",
"Make ID unique": "\"ID\" \u00f6zelli\u011fini benzersiz yap",
"Keep this ID and remove all others": "Bu kimli\u011fi saklay\u0131n ve di\u011ferlerini kald\u0131r\u0131n",
"Remove this ID": "Bu ID'yi kald\u0131r",
"Remove all IDs": "T\u00fcm ID'leri kald\u0131r",
"Checklist": "Kontrol Listesi",
"Anchor": "\u00c7apa",
"Special character": "\u00d6zel karakter",
"Code sample": "Kod \u00f6rne\u011fi",
"Color": "Renk",
"Document properties": "Dok\u00fcman \u00f6zellikleri",
"Image description": "Resim a\u00e7\u0131klamas\u0131",
"Image": "Resim",
"Insert link": "Ba\u011flant\u0131 ekle",
"Target": "Hedef",
"Link": "Ba\u011flant\u0131",
"Poster": "Poster",
"Media": "Medya",
"Print": "Yazd\u0131r",
"Prev": "\u00d6nceki",
"Find and replace": "Bul ve de\u011fi\u015ftir",
"Whole words": "Tam s\u00f6zc\u00fckler",
"Insert template": "\u015eablon ekle"
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/ug.js
================================================
tinymce.addI18n('ug',{
"Redo": "\u0642\u0627\u064a\u062a\u0627 \u0642\u0649\u0644\u0649\u0634",
"Undo": "\u0626\u0627\u0631\u0642\u0649\u063a\u0627 \u064a\u06d0\u0646\u0649\u0634",
"Cut": "\u0643\u06d0\u0633\u0649\u0634",
"Copy": "\u0643\u06c6\u0686\u06c8\u0631\u06c8\u0634",
"Paste": "\u0686\u0627\u067e\u0644\u0627\u0634",
"Select all": "\u06be\u06d5\u0645\u0645\u0649\u0646\u0649 \u062a\u0627\u0644\u0644\u0627\u0634",
"New document": "\u064a\u06d0\u06ad\u0649 \u067e\u06c8\u062a\u06c8\u0643",
"Ok": "\u062c\u06d5\u0632\u0649\u0645\u0644\u06d5\u0634",
"Cancel": "\u0642\u0627\u0644\u062f\u06c7\u0631\u06c7\u0634",
"Visual aids": "\u0626\u06d5\u0633\u0643\u06d5\u0631\u062a\u0649\u0634",
"Bold": "\u062a\u0648\u0645",
"Italic": "\u064a\u0627\u0646\u062a\u06c7",
"Underline": "\u0626\u0627\u0633\u062a\u0649 \u0633\u0649\u0632\u0649\u0642",
"Strikethrough": "\u0626\u06c6\u0686\u06c8\u0631\u06c8\u0634 \u0633\u0649\u0632\u0649\u0642\u0649",
"Superscript": "\u0626\u06c8\u0633\u062a\u06c8\u0646\u0643\u0649 \u0628\u06d5\u0644\u06af\u06d5",
"Subscript": "\u0626\u0627\u0633\u062a\u0649\u0646\u0642\u0649 \u0628\u06d5\u0644\u06af\u06d5",
"Clear formatting": "\u0641\u0648\u0631\u0645\u0627\u062a\u0646\u0649 \u062a\u0627\u0632\u0644\u0627\u0634",
"Align left": "\u0633\u0648\u0644\u063a\u0627 \u062a\u0648\u063a\u0631\u0649\u0644\u0627\u0634",
"Align center": "\u0645\u06d5\u0631\u0643\u06d5\u0632\u06af\u06d5 \u062a\u0648\u063a\u06c7\u0631\u0644\u0627\u0634",
"Align right": "\u0626\u0648\u06ad\u063a\u0627 \u062a\u0648\u063a\u06c7\u0631\u0644\u0627\u0634",
"Justify": "\u0626\u0649\u0643\u0643\u0649 \u064a\u0627\u0646\u063a\u0627 \u062a\u0648\u063a\u06c7\u0631\u0644\u0627\u0634",
"Bullet list": "\u0628\u06d5\u0644\u06af\u06d5 \u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643",
"Numbered list": "\u0633\u0627\u0646\u0644\u0649\u0642 \u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643",
"Decrease indent": "\u0626\u0627\u0644\u062f\u0649\u063a\u0627 \u0633\u06c8\u0631\u06c8\u0634",
"Increase indent": "\u0643\u06d5\u064a\u0646\u0649\u06af\u06d5 \u0633\u06c8\u0631\u06c8\u0634",
"Close": "\u062a\u0627\u0642\u0627\u0634",
"Formats": "\u0641\u0648\u0631\u0645\u0627\u062a",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0633\u0649\u0632\u0646\u0649\u06ad \u062a\u0648\u0631 \u0643\u06c6\u0631\u06af\u06c8\u0686\u0649\u06ad\u0649\u0632 \u0642\u0649\u064a\u0649\u067e \u0686\u0627\u067e\u0644\u0627\u0634 \u062a\u0627\u062e\u062a\u0649\u0633\u0649 \u0632\u0649\u064a\u0627\u0631\u06d5\u062a \u0642\u0649\u0644\u0649\u0634\u0646\u0649 \u0642\u0648\u0644\u0644\u0649\u0645\u0627\u064a\u062f\u06c7.  Ctrl+X\/C\/V \u062a\u06d0\u0632\u0644\u06d5\u062a\u0645\u06d5 \u0643\u06c7\u0646\u06c7\u067e\u0643\u0649\u0633\u0649 \u0626\u0627\u0631\u0642\u0649\u0644\u0649\u0642 \u0643\u06d0\u0633\u0649\u067e \u0686\u0627\u067e\u0644\u0627\u0634 \u0645\u06d5\u0634\u063a\u06c7\u0644\u0627\u062a\u0649 \u0642\u0649\u0644\u0649\u06ad.",
"Headers": "\u0628\u06d0\u0634\u0649",
"Header 1": "\u062a\u06d0\u0645\u0627 1",
"Header 2": "\u062a\u06d0\u0645\u0627 2",
"Header 3": "\u062a\u06d0\u0645\u0627 3",
"Header 4": "\u062a\u06d0\u0645\u0627 4",
"Header 5": "\u062a\u06d0\u0645\u0627 5",
"Header 6": "\u062a\u06d0\u0645\u0627 6",
"Headings": "\u0645\u0627\u06cb\u0632\u06c7",
"Heading 1": "1 \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0643 \u0645\u0627\u06cb\u0632\u06c7",
"Heading 2": "2 \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0643 \u0645\u0627\u06cb\u0632\u06c7",
"Heading 3": "3 \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0643 \u0645\u0627\u06cb\u0632\u06c7",
"Heading 4": "4 \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0643 \u0645\u0627\u06cb\u0632\u06c7",
"Heading 5": "5 \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0643 \u0645\u0627\u06cb\u0632\u06c7",
"Heading 6": "6 \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0643 \u0645\u0627\u06cb\u0632\u06c7",
"Preformatted": "\u0626\u0627\u0644\u062f\u0649\u0646 \u0641\u0648\u0631\u0645\u0627\u062a\u0644\u0627\u0646\u063a\u0627\u0646",
"Div": "Div",
"Pre": "Pre",
"Code": "\u0643\u0648\u062f",
"Paragraph": "\u067e\u0627\u0631\u0627\u06af\u0649\u0631\u0627 \u0641",
"Blockquote": "\u0626\u06d5\u0633\u0643\u06d5\u0631\u062a\u0649\u0634",
"Inline": "\u0626\u0649\u0686\u0643\u0649",
"Blocks": "\u0631\u0627\u064a\u0648\u0646",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u06be\u0627\u0632\u0649\u0631 \u0686\u0627\u067e\u0644\u0649\u0633\u0649\u06ad\u0649\u0632 \u0633\u0627\u067e \u062a\u06d0\u0643\u0649\u0634 \u0645\u06d5\u0632\u0645\u06c7\u0646\u0649 \u0686\u0627\u067e\u0644\u0649\u0646\u0649\u062f\u06c7. \u062a\u06d0\u0643\u0649\u0634 \u0634\u06d5\u0643\u0644\u0649\u062f\u06d5 \u0686\u0627\u067e\u0644\u0627\u0634 \u062a\u06d5\u06ad\u0634\u0649\u0643\u0649\u0646\u0649 \u062a\u0627\u0642\u0649\u06cb\u06d5\u062a\u0643\u06d5\u0646\u06af\u06d5 \u0642\u06d5\u062f\u06d5\u0631.",
"Fonts": "\u062e\u06d5\u062a \u0646\u06c7\u0633\u062e\u0649\u0644\u0649\u0631\u0649",
"Font Sizes": "\u062e\u06d5\u062a \u0686\u0648\u06ad\u0644\u06c7\u0642\u0649",
"Class": "\u062a\u06c8\u0631",
"Browse for an image": "\u0631\u06d5\u0633\u0649\u0645\u0646\u0649  \u0643\u06c6\u0631\u0633\u0649\u062a\u0649\u0634",
"OR": "\u064a\u0627\u0643\u0649",
"Drop an image here": "\u0628\u06c7 \u064a\u06d5\u0631\u062f\u0649\u0643\u0649 \u0631\u06d5\u0633\u0649\u0645\u0646\u0649 \u0626\u06c6\u0686\u06c8\u0631\u06c8\u0634",
"Upload": "\u0686\u0649\u0642\u0649\u0631\u0649\u0634",
"Block": "\u067e\u0627\u0631\u0686\u06d5",
"Align": "\u062a\u0648\u063a\u0631\u0649\u0644\u0649\u0646\u0649\u0634\u0649",
"Default": "\u0633\u06c8\u0643\u06c8\u062a",
"Circle": "\u0686\u06d5\u0645\u0628\u06d5\u0631",
"Disc": "\u062f\u06d0\u0633\u0643\u0627",
"Square": "\u0643\u06cb\u0627\u062f\u0631\u0627\u062a",
"Lower Alpha": "\u0626\u0649\u0646\u06af\u0649\u0644\u0649\u0632\u0686\u06d5 \u0643\u0649\u0686\u0649\u0643 \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649",
"Lower Greek": "\u06af\u0631\u06d0\u062a\u0633\u0649\u064a\u0649\u0686\u06d5 \u0643\u0649\u0686\u0649\u0643 \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649",
"Lower Roman": "\u0631\u0649\u0645\u0686\u06d5 \u0643\u0649\u0686\u0649\u0643 \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649",
"Upper Alpha": "\u0626\u0649\u0646\u06af\u0649\u0644\u0649\u0632\u0686\u06d5 \u0686\u0648\u06ad \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649",
"Upper Roman": "\u0631\u0649\u0645\u0686\u06d5 \u0686\u0648\u06ad \u064a\u06d0\u0632\u0649\u0644\u0649\u0634\u0649",
"Anchor...": "\u0644\u06d5\u06ad\u06af\u06d5\u0631...",
"Name": "\u0646\u0627\u0645\u0649",
"Id": "Id",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID \u0686\u0648\u0642\u06c7\u0645 \u06be\u06d5\u0631\u0649\u067e \u0628\u0649\u0644\u06d5\u0646 \u0628\u0627\u0634\u0644\u0649\u0646\u0649\u0634\u0649 \u0643\u06d0\u0631\u06d5\u0643 \u060c \u0626\u0627\u0631\u0642\u0649\u0633\u0649 \u067e\u06d5\u0642\u06d5\u062a \u06be\u06d5\u0631\u0649\u067e \u060c \u0633\u0627\u0646 \u060c \u0626\u0627\u064a\u0631\u0649\u0634 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649 \u060c \u0686\u0649\u0643\u0649\u062a \u06cb\u06d5 \u0626\u0627\u0633\u062a\u0649 \u0633\u0649\u0632\u0649\u0642\u0649 \u062f\u0649\u0646 \u0626\u0649\u0628\u0627\u0631\u06d5\u062a .",
"You have unsaved changes are you sure you want to navigate away?": "\u0633\u0649\u0632 \u062a\u06d0\u062e\u0649 \u0645\u06d5\u0632\u0645\u06c7\u0646\u0646\u0649 \u0633\u0627\u0642\u0644\u0649\u0645\u0649\u062f\u0649\u06ad\u0649\u0632\u060c \u0626\u0627\u064a\u0631\u0649\u0644\u0627\u0645\u0633\u0649\u0632\u061f",
"Restore last draft": "\u0626\u0627\u062e\u0649\u0631\u0642\u0649 \u0643\u06c7\u067e\u0649\u064a\u0649\u06af\u06d5 \u0642\u0627\u064a\u062a\u0649\u0634",
"Special character...": "\u0626\u0627\u0644\u0627\u06be\u0649\u062f\u06d5 \u06be\u06d5\u0631\u067e-\u0628\u06d5\u0644\u06af\u0649\u0644\u06d5\u0631...",
"Source code": "\u0626\u06d5\u0633\u0644\u0649 \u0643\u0648\u062f\u0649",
"Insert\/Edit code sample": "\u0643\u0648\u062f \u0645\u0649\u0633\u0627\u0644\u0649\\\u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
"Language": "\u062a\u0649\u0644",
"Code sample...": "\u0626\u06c8\u0644\u06af\u06d5 \u0643\u0648\u062f...",
"Color Picker": "\u0631\u06d5\u06ad \u062a\u0627\u0644\u0644\u0649\u063a\u06c7\u0686",
"R": "R",
"G": "G",
"B": "B",
"Left to right": "\u0633\u0648\u0644\u062f\u0649\u0646 \u0626\u0648\u06ad\u063a\u0627 ",
"Right to left": "\u0626\u0648\u06ad\u062f\u0649\u0646 \u0633\u0648\u0644\u063a\u0627",
"Emoticons": "\u0686\u0649\u0631\u0627\u064a \u0626\u0649\u067e\u0627\u062f\u06d5",
"Emoticons...": "\u0686\u0649\u0631\u0627\u064a \u0626\u0649\u067e\u0627\u062f\u0649\u0644\u0649\u0631\u0649...",
"Metadata and Document Properties": "\u0645\u06d0\u062a\u0627\u0645\u06d5\u0644\u06c7\u0645\u0627\u062a \u06cb\u06d5 \u06be\u06c6\u062c\u062c\u06d5\u062a \u062e\u0627\u0633\u0644\u0649\u0642\u0644\u0649\u0631\u0649",
"Title": "\u062a\u06d0\u0645\u0627",
"Keywords": "\u06be\u0627\u0644\u0642\u0649\u0644\u0649\u0642 \u0633\u06c6\u0632",
"Description": "\u062a\u06d5\u0633\u0649\u06cb\u0649\u0631",
"Robots": "\u0645\u0627\u0634\u0649\u0646\u0627 \u0626\u0627\u062f\u06d5\u0645",
"Author": "\u0626\u06c7\u0644\u0627\u0646\u0645\u0627",
"Encoding": "\u0643\u0648\u062f\u0644\u0627\u0634",
"Fullscreen": "\u067e\u06c8\u062a\u06c8\u0646 \u0626\u06d0\u0643\u0631\u0627\u0646",
"Action": "\u06be\u06d5\u0631\u0649\u0643\u06d5\u062a",
"Shortcut": "\u0642\u0649\u0633\u0642\u0627 \u064a\u0648\u0644",
"Help": "\u064a\u0627\u0631\u062f\u06d5\u0645",
"Address": "\u0626\u0627\u062f\u0649\u0631\u0649\u0633",
"Focus to menubar": "\u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643 \u0633\u0649\u062a\u0648\u0646\u0649\u063a\u0627 \u062f\u0649\u0642\u06d5\u062a",
"Focus to toolbar": "\u0642\u06c7\u0631\u0627\u0644 \u0633\u0649\u062a\u0648\u0646\u0649\u063a\u0627 \u062f\u0649\u0642\u06d5\u062a",
"Focus to element path": "\u0626\u06d0\u0644\u0649\u0645\u0649\u0646\u062a\u0644\u0627\u0631 \u064a\u0648\u0644\u0649\u063a\u0627 \u062f\u0649\u0642\u06d5\u062a",
"Focus to contextual toolbar": "\u0643\u0648\u0646\u062a\u06d0\u0643\u0649\u0633\u062a \u0642\u0648\u0631\u0627\u0644 \u0626\u0649\u0633\u062a\u0648\u0646\u0649\u063a\u0627 \u062f\u06d0\u0642\u06d5\u062a",
"Insert link (if link plugin activated)": "\u0626\u06c7\u0644\u0627\u0646\u0645\u0627 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u06ad (\u0626\u06c7\u0644\u0627\u0646\u0645\u0627 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634 \u0642\u0649\u0633\u062a\u06c7\u0631\u0645\u0649\u0633\u0649\u0646\u0649 \u0642\u0648\u0632\u063a\u0627\u062a\u0642\u0627\u0646 \u0626\u06d5\u06be\u06cb\u0627\u0644\u062f\u0627)",
"Save (if save plugin activated)": "\u0633\u0627\u0642\u0644\u0627\u0634 (\u0633\u0627\u0642\u0644\u0627\u0634 \u0642\u0649\u0633\u062a\u06c7\u0631\u0645\u0649\u0633\u0649\u0646\u0649 \u0642\u0648\u0632\u063a\u0627\u062a\u0642\u0627\u0646 \u0626\u06d5\u06be\u06cb\u0627\u0644\u062f\u0627)",
"Find (if searchreplace plugin activated)": "\u0626\u0649\u0632\u062f\u06d5\u0634 (\u0626\u0649\u0632\u062f\u06d5\u0634 \u0642\u0649\u0633\u062a\u06c7\u0631\u0645\u0649\u0633\u0649 \u0642\u0648\u0632\u063a\u0649\u062a\u0649\u0644\u063a\u0627\u0646 \u0626\u06d5\u06be\u06cb\u0627\u0644\u062f\u0627)",
"Plugins installed ({0}):": "\u0642\u0627\u0686\u0649\u0644\u0627\u0646\u063a\u0627\u0646 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0644\u0645\u0627 ({0}):",
"Premium plugins:": "\u064a\u06c7\u0642\u0649\u0631\u0649 \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0643 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0644\u0645\u0627 :",
"Learn more...": "\u062a\u06d0\u062e\u0649\u0645\u06c7 \u0686\u06c8\u0634\u0649\u0646\u0649\u0634 ...",
"You are using {0}": "\u0626\u0649\u0634\u0644\u0649\u062a\u0649\u06cb\u0627\u062a\u0642\u0649\u0646\u0649\u06ad\u0649\u0632 {0}",
"Plugins": "\u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0644\u0645\u0627",
"Handy Shortcuts": "\u0642\u0648\u0644\u0627\u064a\u0644\u0649\u0642 \u0642\u0649\u0633\u0642\u0627 \u064a\u0648\u0644",
"Horizontal line": "\u06af\u0648\u0631\u0632\u0649\u0646\u062a\u0627\u0644 \u0642\u06c7\u0631",
"Insert\/edit image": "\u0631\u06d5\u0633\u0649\u0645 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634 \u064a\u0627\u0643\u0649 \u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634",
"Alternative description": "\u062a\u0627\u0644\u0644\u0627\u0646\u0645\u0627 \u0686\u06c8\u0634\u06d5\u0646\u062f\u06c8\u0631\u06c8\u0634\u0649",
"Accessibility": "\u064a\u0627\u0631\u062f\u06d5\u0645\u0686\u06d5 \u0626\u0649\u0642\u062a\u0649\u062f\u0627\u0631",
"Image is decorative": "\u0628\u06d0\u0632\u06d5\u0643 \u0631\u06d5\u0633\u0649\u0645",
"Source": "\u0645\u06d5\u0646\u0628\u06d5",
"Dimensions": "\u0686\u0648\u06ad-\u0643\u0649\u0686\u0649\u0643",
"Constrain proportions": "\u0626\u06d0\u06af\u0649\u0632\u0644\u0649\u0643-\u0643\u06d5\u06ad\u0644\u0649\u0643 \u0646\u0649\u0633\u067e\u0649\u062a\u0649\u0646\u0649 \u0633\u0627\u0642\u0644\u0627\u0634",
"General": "\u0626\u0627\u062f\u06d5\u062a\u062a\u0649\u0643\u0649",
"Advanced": "\u0626\u0627\u0644\u0627\u06be\u0649\u062f\u06d5",
"Style": "\u0626\u06c7\u0633\u0644\u06c7\u067e",
"Vertical space": "\u06cb\u06d0\u0631\u062a\u0649\u0643\u0627\u0644 \u0628\u0648\u0634\u0644\u06c7\u0642",
"Horizontal space": "\u06af\u0648\u0631\u0632\u0649\u0646\u062a\u0627\u0644 \u0628\u0648\u0634\u0644\u06c7\u0642",
"Border": "\u064a\u0627\u0642\u0627",
"Insert image": "\u0631\u06d5\u0633\u0649\u0645 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
"Image...": "\u0631\u06d5\u0633\u0649\u0645...",
"Image list": "\u0631\u06d5\u0633\u0649\u0645 \u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643\u0649",
"Rotate counterclockwise": "\u200f\u200f\u0633\u0627\u0626\u06d5\u062a\u0643\u06d5 \u0642\u0627\u0631\u0634\u0649 \u0686\u06c6\u0631\u06c8\u0634",
"Rotate clockwise": "\u200f\u200f\u0633\u0627\u0626\u06d5\u062a \u064a\u06c6\u0646\u0649\u0644\u0649\u0634\u0649\u062f\u06d5 \u0686\u06c6\u0631\u06c8\u0634",
"Flip vertically": "\u06cb\u06d0\u0631\u062a\u0649\u0643\u0627\u0644 \u0626\u06c6\u0631\u06c8\u0634",
"Flip horizontally": "\u06af\u0648\u0631\u0649\u0632\u0648\u0646\u062a\u0627\u0644 \u0626\u06c6\u0631\u06c8\u0634",
"Edit image": "\u0631\u06d5\u0633\u0649\u0645 \u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634",
"Image options": "\u0631\u06d5\u0633\u0649\u0645 \u062a\u0627\u0644\u0644\u0627\u0646\u0645\u0649\u0644\u0649\u0631\u0649",
"Zoom in": "\u064a\u06d0\u0642\u0649\u0646\u0644\u0627\u062a\u0645\u0627\u0642",
"Zoom out": "\u064a\u0649\u0631\u0627\u0642\u0644\u0627\u062a\u0645\u0627\u0642",
"Crop": "\u0642\u0649\u064a\u0649\u0634",
"Resize": "\u0686\u0648\u06ad\u0644\u06c7\u0642\u0649\u0646\u0649 \u0626\u06c6\u0632\u06af\u06d5\u0631\u062a\u0649\u0634",
"Orientation": "\u064a\u06c6\u0646\u0649\u0644\u0649\u0634",
"Brightness": "\u064a\u0648\u0631\u06c7\u0642\u0644\u06c7\u0642\u0649",
"Sharpen": "\u0626\u06c6\u062a\u0643\u06c8\u0631\u0644\u06d5\u0634\u062a\u06c8\u0631\u06c8\u0634",
"Contrast": "\u0633\u06d0\u0644\u0649\u0634\u062a\u06c7\u0631\u0645\u0627",
"Color levels": "\u0631\u06d5\u06ad \u062f\u06d5\u0631\u0649\u062c\u0649\u0644\u0649\u0631\u0649",
"Gamma": "\u06af\u0627\u0645\u0645\u0627",
"Invert": "\u062a\u06d5\u062a\u06c8\u0631",
"Apply": "\u0642\u0648\u0644\u0644\u0649\u0646\u0649\u0634",
"Back": "\u0642\u0627\u064a\u062a\u0649\u0634",
"Insert date\/time": "\u0686\u0649\u0633\u0644\u0627\/\u06cb\u0627\u0642\u0649\u062a \u0643\u0649\u0631\u06af\u06c8\u0632\u06c8\u0634",
"Date\/time": "\u0686\u06d0\u0633\u0644\u0627\\\u06cb\u0627\u0642\u0649\u062a",
"Insert\/edit link": "\u0626\u06c7\u0644\u0649\u0646\u0649\u0634 \u0642\u06c7\u0633\u062a\u06c7\u0631\u06c7\u0634\/\u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634",
"Text to display": "\u0643\u06c6\u0631\u06c8\u0646\u0649\u062f\u0649\u063a\u0627\u0646 \u0645\u06d5\u0632\u0645\u06c7\u0646",
"Url": "\u0626\u0627\u062f\u0631\u0649\u0633",
"Open link in...": "\u0626\u06c7\u0644\u0627\u0646\u0645\u0627 \u0626\u06d0\u0686\u0649\u0634 \u0626\u0648\u0631\u0646\u0649...",
"Current window": "\u0646\u06c6\u06cb\u06d5\u062a\u062a\u0649\u0643\u0649 \u0643\u06c6\u0632\u0646\u06d5\u0643",
"None": "\u064a\u0648\u0642",
"New window": "\u064a\u06d0\u06ad\u0649 \u0643\u06c6\u0632\u0646\u06d5\u0643",
"Open link": "\u0626\u06c7\u0644\u0627\u0646\u0645\u0627 \u0626\u06d0\u0686\u0649\u0634",
"Remove link": "\u0626\u06c7\u0644\u0649\u0646\u0649\u0634 \u0626\u06c6\u0686\u06c8\u0631\u06c8\u0634",
"Anchors": "\u0626\u06c7\u0644\u0649\u0646\u0649\u0634",
"Link...": "\u0626\u06c7\u0644\u0627\u0646\u0645\u0627...",
"Paste or type a link": "\u0626\u06c7\u0644\u0649\u0646\u0649\u0634 \u0686\u0627\u067e\u0644\u0627\u06ad \u064a\u0627\u0643\u0649 \u0643\u0649\u0631\u06af\u06c8\u0632\u06c8\u06ad",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0633\u0649\u0632 \u0643\u0649\u0631\u06af\u06c8\u0632\u06af\u06d5\u0646 URL \u0628\u0649\u0631 \u0626\u06d0\u0644\u062e\u06d5\u062a \u0626\u0627\u062f\u0631\u06d0\u0633\u0649\u062f\u06d5\u0643 \u0642\u0649\u0644\u0649\u067e \u062a\u06c7\u0631\u0649\u062f\u06c7\u060c\u062a\u06d5\u0644\u06d5\u067e \u0642\u0649\u0644\u0649\u0646\u063a\u0627\u0646 mailto \u0646\u0649 \u0642\u06c7\u0634\u0627\u0645\u0633\u0649\u0632\u061f",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0633\u0649\u0632 \u0643\u0649\u0631\u06af\u06c8\u0632\u06af\u06d5\u0646 \u062a\u0648\u0631 \u0626\u0627\u062f\u0631\u06d0\u0633\u0649 \u0633\u0649\u0631\u062a\u0642\u0649 \u0626\u06c7\u0644\u0627\u0646\u0645\u0649\u062f\u06d5\u0643 \u0642\u0649\u0644\u0649\u067e \u062a\u06c7\u0631\u0649\u062f\u06c7 \u060c\u062a\u06d5\u0644\u06d5\u067e \u0642\u0649\u0644\u0649\u0646\u063a\u0627\u0646 http:\/\/ \u0646\u0649 \u0642\u0648\u0634\u0627\u0645\u0633\u0649\u0632\u061f",
"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "\u0633\u0649\u0632 \u0643\u0649\u0631\u06af\u06c8\u0632\u06af\u06d5\u0646 \u0626\u0627\u062f\u0631\u06d0\u0633 \u0633\u0649\u0631\u062a\u0642\u0649 \u0626\u06c7\u0644\u0627\u0646\u0645\u0649\u062f\u06d5\u0643 \u062a\u06c7\u0631\u0649\u062f\u06c7. \u062a\u06d5\u0644\u06d5\u067e \u0642\u0649\u0644\u0649\u0646\u063a\u0627\u0646 https:\/\/ \u0626\u0627\u0644\u062f\u0649 \u0642\u0648\u0634\u06c7\u0645\u0686\u0649\u0633\u0649\u0646\u0649 \u0642\u0648\u0634\u0627\u0645\u0633\u0649\u0632\u061f",
"Link list": "\u0626\u06c7\u0644\u0649\u0646\u0649\u0634 \u062a\u06c8\u0631\u0649",
"Insert video": "\u0633\u0649\u0646 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
"Insert\/edit video": "\u0633\u0649\u0646 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634\/\u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634",
"Insert\/edit media": "\u0645\u06d0\u062f\u0649\u064a\u0627 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634\/\u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634",
"Alternative source": "\u062a\u06d5\u0633\u06cb\u0649\u0631\u0649",
"Alternative source URL": "\u062a\u0627\u0644\u0644\u0627\u0646\u0645\u0627 \u0645\u06d5\u0646\u0628\u06d5 \u0626\u0627\u062f\u0631\u06d0\u0633\u0649",
"Media poster (Image URL)": "\u0645\u06d0\u062f\u0649\u064a\u0627 \u0645\u06c7\u0642\u0627\u06cb\u0649\u0633\u0649 (\u0631\u06d5\u0633\u0649\u0645 \u0626\u0627\u062f\u0631\u06d0\u0633\u0649)",
"Paste your embed code below:": "\u0642\u0649\u0633\u062a\u06c7\u0631\u0645\u0627\u0642\u0686\u0649 \u0628\u0648\u0644\u063a\u0627\u0646 \u0643\u0648\u062f\u0646\u0649 \u0686\u0627\u067e\u0644\u0627\u06ad",
"Embed": "\u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
"Media...": "\u0645\u06d0\u062f\u0649\u064a\u0627...",
"Nonbreaking space": "\u0628\u0648\u0634\u0644\u06c7\u0642",
"Page break": "\u0628\u06d5\u062a \u0626\u0627\u062e\u0649\u0631\u0644\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
"Paste as text": "\u062a\u06d0\u0643\u0649\u0634 \u0634\u06d5\u0643\u0644\u0649\u062f\u06d5 \u0686\u0627\u067e\u0644\u0627\u0634",
"Preview": "\u0643\u06c6\u0631\u06c8\u0634",
"Print...": "\u0628\u06d0\u0633\u0649\u0634...",
"Save": "\u0633\u0627\u0642\u0644\u0627\u0634",
"Find": "\u0626\u0649\u0632\u062f\u06d5\u0634",
"Replace with": "\u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
"Replace": "\u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
"Replace all": "\u06be\u06d5\u0645\u0645\u0649\u0646\u0649 \u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
"Previous": "\u0626\u0627\u0644\u062f\u0649\u0646\u0642\u0649",
"Next": "\u0643\u06d0\u064a\u0649\u0646\u0643\u0649\u0633\u0649",
"Find and Replace": "\u0626\u0649\u0632\u062f\u06d5\u0634 \u06cb\u06d5 \u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
"Find and replace...": "\u0626\u0649\u0632\u062f\u06d5\u0634 \u06cb\u06d5 \u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634...",
"Could not find the specified string.": "\u0626\u0649\u0632\u062f\u0649\u0645\u06d5\u0643\u0686\u0649 \u0628\u0648\u0644\u063a\u0627\u0646 \u0645\u06d5\u0632\u0645\u06c7\u0646\u0646\u0649 \u062a\u0627\u067e\u0627\u0644\u0645\u0649\u062f\u0649.",
"Match case": "\u0686\u0648\u06ad \u0643\u0649\u0686\u0649\u0643 \u06be\u06d5\u0631\u0649\u067e\u0646\u0649 \u067e\u06d5\u0631\u0649\u0642\u0644\u06d5\u0646\u062f\u06c8\u0631\u06c8\u0634",
"Find whole words only": "\u067e\u06c8\u062a\u06c8\u0646 \u0633\u06c6\u0632\u0646\u0649\u0644\u0627 \u0626\u0649\u0632\u062f\u06d5\u0634",
"Find in selection": "\u062a\u0627\u0644\u0644\u0627\u0646\u063a\u0627\u0646\u062f\u0649\u0646 \u0626\u0649\u0632\u062f\u06d5\u0634",
"Spellcheck": "\u0626\u0649\u0645\u0644\u0627 \u062a\u06d5\u0643\u0634\u06c8\u0631\u06c8\u0634",
"Spellcheck Language": "\u0626\u0649\u0645\u0644\u0627 \u062a\u06d5\u0643\u0634\u06c8\u0631\u06c8\u0634 \u062a\u0649\u0644\u0649",
"No misspellings found.": "\u0626\u0649\u0645\u0644\u0627 \u062e\u0627\u062a\u0627\u0644\u0649\u0642\u0649 \u062a\u06d0\u067e\u0649\u0644\u0645\u0649\u062f\u0649.",
"Ignore": "\u0626\u06c6\u062a\u0643\u06c8\u0632\u06c8\u0634",
"Ignore all": "\u06be\u06d5\u0645\u0645\u0649\u0646\u0649 \u0626\u06c6\u062a\u0643\u06c8\u0632\u06c8\u0634",
"Finish": "\u0626\u0627\u062e\u0649\u0631\u0644\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
"Add to Dictionary": "\u0644\u06c7\u063a\u06d5\u062a \u0642\u0648\u0634\u06c7\u0634",
"Insert table": "\u062c\u06d5\u062f\u06cb\u06d5\u0644 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
"Table properties": "\u062c\u06d5\u062f\u06cb\u06d5\u0644 \u062e\u0627\u0633\u0644\u0649\u0642\u0649",
"Delete table": "\u062c\u06d5\u062f\u06cb\u06d5\u0644 \u0626\u06c6\u0686\u06c8\u0631\u0634",
"Cell": "\u0643\u0627\u062a\u06d5\u0643",
"Row": "\u0642\u06c7\u0631",
"Column": "\u0631\u06d5\u062a",
"Cell properties": "\u0643\u0627\u062a\u06d5\u0643 \u062e\u0627\u0633\u0644\u0649\u0642\u0649",
"Merge cells": "\u0643\u0627\u062a\u06d5\u0643 \u0628\u0649\u0631\u0644\u06d5\u0634\u062a\u06c8\u0631\u06c8\u0634",
"Split cell": "\u0643\u0627\u062a\u06d5\u0643 \u067e\u0627\u0631\u0686\u0649\u0644\u0627\u0634",
"Insert row before": "\u0626\u0627\u0644\u062f\u0649\u063a\u0627 \u0642\u06c7\u0631 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
"Insert row after": "\u0626\u0627\u0631\u0642\u0649\u063a\u0627 \u0642\u06c7\u0631 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
"Delete row": "\u0642\u06c7\u0631 \u0626\u06c6\u0686\u06c8\u0631\u06c8\u0634",
"Row properties": "\u0642\u06c7\u0631 \u062e\u0627\u0633\u0644\u0649\u0642\u0649",
"Cut row": "\u0642\u06c7\u0631 \u0643\u06d0\u0633\u0649\u0634",
"Copy row": "\u0642\u06c7\u0631 \u0643\u06c6\u0686\u06c8\u0631\u06c8\u0634",
"Paste row before": "\u0642\u06c7\u0631 \u0626\u0627\u0644\u062f\u0649\u063a\u0627 \u0686\u0627\u067e\u0644\u0627\u0634",
"Paste row after": "\u0642\u06c7\u0631 \u0643\u06d5\u064a\u0646\u0649\u06af\u06d5 \u0686\u0627\u067e\u0644\u0627\u0634",
"Insert column before": "\u0631\u06d5\u062a \u0626\u0627\u0644\u062f\u0649\u063a\u0627 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
"Insert column after": "\u0631\u06d5\u062a \u0643\u06d5\u064a\u0646\u0649\u06af\u06d5 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
"Delete column": "\u0631\u06d5\u062a \u0626\u06c6\u0686\u06c8\u0631\u06c8\u0634",
"Cols": "\u0631\u06d5\u062a",
"Rows": "\u0642\u06c7\u0631",
"Width": "\u0643\u06d5\u06ad\u0644\u0649\u0643\u0649",
"Height": "\u0626\u06d0\u06af\u0649\u0632\u0644\u0649\u0643\u0649",
"Cell spacing": "\u0643\u0627\u062a\u06d5\u0643 \u0633\u0649\u0631\u062a\u0642\u0649 \u0626\u0627\u0631\u0649\u0644\u0649\u0642\u0649",
"Cell padding": "\u0643\u0627\u062a\u06d5\u0643 \u0626\u0649\u0686\u0643\u0649 \u0626\u0627\u0631\u0649\u0644\u0649\u0642\u0649",
"Caption": "\u0686\u06c8\u0634\u06d5\u0646\u062f\u06c8\u0631\u06c8\u0634",
"Show caption": "\u062a\u06d0\u0645\u0649\u0633\u0649\u0646\u0649 \u0643\u06c6\u0631\u0633\u0649\u062a\u0649\u0634",
"Left": "\u0633\u0648\u0644",
"Center": "\u0645\u06d5\u0631\u0643\u06d5\u0632",
"Right": "\u0626\u0648\u06ad",
"Cell type": "\u0643\u0627\u062a\u06d5\u0643 \u062a\u0649\u067e\u0649",
"Scope": "\u062f\u0627\u0626\u0649\u0631\u06d5",
"Alignment": "\u064a\u06c6\u0644\u0649\u0646\u0649\u0634\u0649",
"H Align": "\u06af\u0648\u0631\u0632\u0649\u0646\u062a\u0627\u0644 \u062a\u0648\u063a\u0631\u0649\u0644\u0627\u0634",
"V Align": "\u06cb\u06d0\u0631\u062a\u0649\u0643\u0627\u0644 \u062a\u0648\u063a\u0631\u0649\u0644\u0627\u0634",
"Top": "\u0626\u06c8\u0633\u062a\u0649",
"Middle": "\u0626\u0648\u062a\u062a\u06c7\u0631\u0633\u0649",
"Bottom": "\u0626\u0627\u0633\u062a\u0649",
"Header cell": "\u0628\u0627\u0634 \u0643\u0627\u062a\u06d5\u0643",
"Row group": "\u0642\u06c7\u0631 \u06af\u06c7\u0631\u06c7\u067e\u067e\u0649\u0633\u0649",
"Column group": "\u0631\u06d5\u062a \u06af\u06c7\u0631\u06c7\u067e\u067e\u0649\u0633\u0649",
"Row type": "\u0642\u06c7\u0631 \u062a\u0649\u067e\u0649",
"Header": "\u0628\u06d0\u0634\u0649",
"Body": "\u0628\u06d5\u062f\u0649\u0646\u0649",
"Footer": "\u067e\u06c7\u062a\u0649",
"Border color": "\u0631\u0627\u0645\u0643\u0627 \u0631\u06d5\u06ad\u06af\u0649",
"Insert template...": "\u0642\u06d0\u0644\u0649\u067e \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634...",
"Templates": "\u0626\u06c8\u0644\u06af\u0649\u0644\u06d5\u0631",
"Template": "\u0626\u06c8\u0644\u06af\u0649\u0644\u06d5\u0631",
"Text color": "\u062e\u06d5\u062a \u0631\u06d5\u06ad\u06af\u0649",
"Background color": "\u0626\u0627\u0631\u0642\u0627 \u0631\u06d5\u06ad\u06af\u0649",
"Custom...": "\u0626\u0649\u062e\u062a\u0649\u064a\u0627\u0631\u0649",
"Custom color": "\u0626\u0649\u062e\u062a\u0649\u064a\u0627\u0631\u0649 \u0631\u06d5\u06ad",
"No color": "\u0631\u06d5\u06ad \u064a\u0648\u0642",
"Remove color": "\u0631\u06d5\u06ad\u0646\u0649 \u0686\u0649\u0642\u0649\u0631\u0649\u06cb\u06d0\u062a\u0649\u0634",
"Table of Contents": "\u062c\u06d5\u062f\u06d5\u0644\u0646\u0649\u06ad \u0645\u06d5\u0632\u0645\u06c7\u0646\u0649",
"Show blocks": "\u0631\u0627\u064a\u0648\u0646 \u0643\u06c6\u0631\u0633\u0649\u062a\u0649\u0634",
"Show invisible characters": "\u0643\u06c6\u0631\u06c8\u0646\u0645\u06d5\u064a\u062f\u0649\u063a\u0627\u0646 \u06be\u06d5\u0631\u0649\u067e\u0644\u06d5\u0631\u0646\u0649 \u0643\u06c6\u0631\u0633\u0649\u062a\u0649\u0634",
"Word count": "\u0633\u06c6\u0632 \u0633\u0627\u0646\u0649",
"Count": "\u0633\u0627\u0646\u0627\u0634",
"Document": "\u06be\u06c6\u062c\u062c\u06d5\u062a",
"Selection": "\u062a\u0627\u0644\u0644\u0627\u0646\u063a\u0627\u0646",
"Words": "\u0633\u06c6\u0632\u0644\u06d5\u0631",
"Words: {0}": "\u0633\u06c6\u0632: {0}",
"{0} words": "{0} \u0633\u06c6\u0632",
"File": "\u06be\u06c6\u062c\u062c\u06d5\u062a",
"Edit": "\u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634",
"Insert": "\u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
"View": "\u0643\u06c6\u0631\u06c8\u0634",
"Format": "\u0641\u0648\u0631\u0645\u0627\u062a",
"Table": "\u062c\u06d5\u062f\u06cb\u06d5\u0644",
"Tools": "\u0642\u06c7\u0631\u0627\u0644",
"Powered by {0}": "\u062a\u06d0\u062e\u0646\u0649\u0643\u0649\u062f\u0627 {0}",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0645\u0648\u0644 \u0645\u06d5\u0632\u0645\u06c7\u0646\u0644\u06c7\u0642 \u062a\u06d0\u0643\u06d0\u0633\u0649\u062a \u0631\u0627\u0645\u0643\u0649\u0633\u0649 \u0631\u0627\u064a\u0648\u0646\u0649\u062f\u0627 \u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643 \u0626\u06c8\u0686\u06c8\u0646 ALT-F9 \u0646\u0649\u060c \u0642\u0648\u0631\u0627\u0644 \u0628\u0627\u0644\u062f\u0649\u0642\u0649 \u0626\u06c8\u0686\u06c8\u0646 ALT-F10 \u0646\u0649\u060c \u064a\u0627\u0631\u062f\u06d5\u0645 \u0626\u06c8\u0686\u06c8\u0646 ALT-0 \u0646\u0649 \u0628\u06d0\u0633\u0649\u06ad",
"Image title": "\u0631\u06d5\u0633\u0649\u0645 \u062a\u06d0\u0645\u0649\u0633\u0649",
"Border width": "\u06af\u0649\u0631\u06cb\u06d5\u0643 \u0643\u06d5\u06ad\u0644\u0649\u0643\u0649",
"Border style": "\u06af\u0649\u0631\u06cb\u06d5\u0643 \u0626\u06c7\u0633\u0644\u06c7\u0628\u0649",
"Error": "\u062e\u0627\u062a\u0627\u0644\u0649\u0642",
"Warn": "\u0626\u0627\u06af\u0627\u06be\u0644\u0627\u0646\u062f\u06c7\u0631\u06c7\u0634",
"Valid": "\u0626\u06c8\u0646\u06c8\u0645\u0644\u06c8\u0643",
"To open the popup, press Shift+Enter": "\u0633\u06d5\u0643\u0631\u0649\u0645\u06d5 \u0643\u06c6\u0632\u0646\u06d5\u0643\u0646\u0649 \u0626\u06d0\u0686\u0649\u0634 \u0626\u06c8\u0686\u06c8\u0646 Shift+Enter \u0646\u0649 \u0628\u06d0\u0633\u0649\u06ad",
"Rich Text Area. Press ALT-0 for help.": "\u0641\u0648\u0631\u0645\u0627\u062a\u0644\u0649\u0642 \u062a\u06d0\u0643\u0649\u0633\u062a \u0631\u0627\u064a\u0648\u0646\u0649. \u064a\u0627\u0631\u062f\u06d5\u0645 \u0626\u06c8\u0686\u06c8\u0646 ALT-0 \u0646\u0649 \u0628\u06d0\u0633\u0649\u06ad.",
"System Font": "\u0633\u0649\u0633\u062a\u06d0\u0645\u0627 \u062e\u06d5\u062a \u0646\u06c7\u0633\u062e\u0649\u0633\u0649",
"Failed to upload image: {0}": "\u0631\u06d5\u0633\u0649\u0645\u0646\u0649 \u064a\u06c8\u0643\u0644\u0649\u064a\u06d5\u0644\u0645\u0649\u062f\u0649: {0}",
"Failed to load plugin: {0} from url {1}": "\u0642\u0649\u0633\u062a\u06c7\u0631\u0645\u0649\u0646\u0649 \u064a\u06c8\u0643\u0644\u0649\u064a\u06d5\u0644\u0645\u0649\u062f\u0649: {0} \u0646\u0649\u06ad \u0645\u06d5\u0646\u0628\u06d5 \u0626\u0627\u062f\u0631\u06d0\u0633\u0649 {1}",
"Failed to load plugin url: {0}": "\u0642\u0649\u0633\u062a\u06c7\u0631\u0645\u0649\u0646\u0649 \u064a\u06c8\u0643\u0644\u0649\u064a\u06d5\u0644\u0645\u0649\u062f\u0649 \u0626\u0627\u062f\u0631\u06d0\u0633\u0649: {0}",
"Failed to initialize plugin: {0}": "\u0642\u0649\u0633\u062a\u06c7\u0631\u0645\u0649\u0646\u0649 \u062f\u06d5\u0633\u0644\u06d5\u067e\u0644\u06d5\u0634\u062a\u06c8\u0631\u06d5\u0644\u0645\u0649\u062f\u0649: {0}",
"example": "\u0645\u06d5\u0633\u0649\u0644\u06d5\u0646",
"Search": "\u0626\u0649\u0632\u062f\u06d5\u0634",
"All": "\u06be\u06d5\u0645\u0645\u06d5",
"Currency": "\u067e\u06c7\u0644",
"Text": "\u062a\u06d0\u0643\u0649\u0633\u062a",
"Quotations": "\u0646\u06d5\u0642\u0649\u0644\u0644\u06d5\u0631",
"Mathematical": "\u0645\u0627\u062a\u06d0\u0645\u0627\u062a\u0649\u0643\u0649\u0644\u0649\u0642",
"Extended Latin": "\u0643\u06d0\u06ad\u06d5\u064a\u062a\u0649\u0644\u06af\u06d5\u0646 \u0644\u0627\u062a\u0649\u0646 \u06be\u06d5\u0631\u067e\u0644\u0649\u0631\u0649",
"Symbols": "\u0628\u06d5\u0644\u06af\u0649\u0644\u06d5\u0631",
"Arrows": "\u0626\u0649\u0633\u062a\u0631\u06d0\u0644\u0643\u0649\u0644\u0627\u0631",
"User Defined": "\u0626\u0649\u0634\u0644\u06d5\u062a\u0643\u06c8\u0686\u0649 \u0628\u06d5\u0644\u06af\u0649\u0644\u0649\u06af\u06d5\u0646",
"dollar sign": "\u062f\u0648\u0644\u0644\u0627\u0631 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"currency sign": "\u067e\u06c7\u0644 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"euro-currency sign": "\u064a\u0627\u06cb\u0631\u0648 \u067e\u06c7\u0644 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"colon sign": "\u0642\u0648\u0634 \u0686\u06d0\u0643\u0649\u062a \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"cruzeiro sign": "\u0643\u0631\u06c7 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"french franc sign": "\u0641\u0649\u0631\u0627\u0646\u0633\u0649\u064a\u06d5 \u0641\u0649\u0631\u0627\u0646\u0643 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"lira sign": "\u0644\u0649\u0631\u0627 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"mill sign": "\u0645\u0649\u0644 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"naira sign": "\u0646\u0627\u064a\u0631\u0627 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"peseta sign": "\u067e\u06d0\u0633\u06d0\u062a\u0627 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"rupee sign": "\u0631\u06c7\u067e\u0649\u064a\u06d5 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"won sign": "\u06cb\u0648\u0646 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"new sheqel sign": "\u064a\u06d0\u06ad\u0649 \u0634\u0649\u0643\u0649\u0644 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"dong sign": "\u06cb\u0649\u064a\u06d0\u062a\u0646\u0627\u0645 \u062f\u0648\u06ad\u0649 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"kip sign": "\u0643\u0649\u067e \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"tugrik sign": "\u062a\u06c8\u06af\u0631\u0649\u0643 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"drachma sign": "\u062f\u0649\u0631\u0627\u062e\u0645\u0627 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"german penny symbol": "\u06af\u06d0\u0631\u0645\u0627\u0646\u0649\u064a\u06d5 \u067e\u06d0\u0646\u0646\u0649 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"peso sign": "\u067e\u06d0\u0633\u0648 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"guarani sign": "\u06af\u06c7\u0626\u0627\u0631\u0627\u0646\u0649 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"austral sign": "\u0626\u0627\u06cb\u0633\u062a\u0631\u0627\u0644\u0649\u064a\u06d5 \u067e\u06c7\u0644 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"hryvnia sign": "hryvnia \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"cedi sign": "\u0633\u06d0\u062f\u0649 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"livre tournois sign": "livre tournois \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"spesmilo sign": "spesmilo \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"tenge sign": "tenge \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"indian rupee sign": "\u06be\u0649\u0646\u062f\u0649\u0633\u062a\u0627\u0646 \u0631\u06c7\u067e\u0649\u064a\u06d5 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"turkish lira sign": "\u062a\u06c8\u0631\u0643\u0649\u064a\u06d5 \u0644\u0649\u0631\u0627 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"nordic mark sign": "\u0634\u0649\u0645\u0627\u0644\u0649\u064a \u064a\u0627\u06cb\u0631\u0648\u067e\u0627 \u0645\u0627\u0631\u0643 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"manat sign": "manat \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"ruble sign": "\u0631\u06c7\u0628\u0644\u0649 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"yen character": "\u064a\u06d0\u0646 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"yuan character": "\u064a\u06c8\u06d5\u0646 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"yuan character, in hong kong and taiwan": "\u064a\u06c8\u06d5\u0646 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649 (\u0634\u064a\u0627\u06ad\u06af\u0627\u06ad \u06cb\u06d5 \u062a\u06d5\u064a\u06cb\u06d5\u0646)",
"yen\/yuan character variant one": "\u064a\u06d0\u0646 \u06cb\u06d5 \u064a\u06c8\u06d5\u0646 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649",
"Loading emoticons...": "\u0686\u0649\u0631\u0627\u064a \u0626\u0649\u067e\u0627\u062f\u0649\u0644\u0649\u0631\u0649 \u064a\u06c8\u0643\u0644\u0649\u0646\u0649\u06cb\u0627\u062a\u0649\u062f\u06c7...",
"Could not load emoticons": "\u0686\u0649\u0631\u0627\u064a \u0626\u0649\u067e\u0627\u062f\u0649\u0644\u0649\u0631\u0649 \u064a\u06c8\u0643\u0644\u06d5\u0646\u0645\u0649\u062f\u0649",
"People": "\u0626\u0627\u062f\u06d5\u0645\u0644\u06d5\u0631",
"Animals and Nature": "\u06be\u0627\u064a\u06cb\u0627\u0646\u0644\u0627\u0631 \u06cb\u06d5 \u062a\u06d5\u0628\u0649\u0626\u06d5\u062a",
"Food and Drink": "\u064a\u06d0\u0645\u06d5\u0643-\u0626\u0649\u0686\u0645\u06d5\u0643",
"Activity": "\u067e\u0627\u0626\u0627\u0644\u0649\u064a\u06d5\u062a",
"Travel and Places": "\u0633\u0627\u064a\u0627\u06be\u06d5\u062a \u06cb\u06d5 \u062c\u0627\u064a\u0644\u0627\u0631",
"Objects": "\u0646\u06d5\u0631\u0633\u0649\u0644\u06d5\u0631",
"Flags": "\u0628\u0627\u064a\u0631\u0627\u0642\u0644\u0627\u0631",
"Characters": "\u06be\u06d5\u0631\u067e-\u0628\u06d5\u0644\u06af\u0649\u0644\u06d5\u0631",
"Characters (no spaces)": "\u06be\u06d5\u0631\u067e-\u0628\u06d5\u0644\u06af\u0649\u0644\u06d5\u0631 (\u0628\u0648\u0634\u0644\u06c7\u0642\u0646\u0649 \u0626\u06c6\u0632 \u0626\u0649\u0686\u0649\u06af\u06d5 \u0626\u0627\u0644\u0645\u0627\u064a\u062f\u06c7)",
"{0} characters": "{0} \u06be\u06d5\u0631\u067e-\u0628\u06d5\u0644\u06af\u06d5",
"Error: Form submit field collision.": "\u062e\u0627\u062a\u0627\u0644\u0649\u0642: \u0631\u0627\u0645\u0643\u0627 (form) \u064a\u0648\u0644\u0644\u0627\u0634 \u0628\u06c6\u0644\u0649\u0643\u0649 \u062a\u0648\u0642\u06c7\u0646\u06c7\u0634\u062a\u0649.",
"Error: No form element found.": "\u062e\u0627\u062a\u0627\u0644\u0649\u0642: \u0631\u0627\u0645\u0643\u0627 (form) \u0626\u06d0\u0644\u06d0\u0645\u06d0\u0646\u062a\u0649 \u062a\u06d0\u067e\u0649\u0644\u0645\u0649\u062f\u0649.",
"Update": "\u064a\u06d0\u06ad\u0649\u0644\u0627\u0634",
"Color swatch": "\u0631\u06d5\u06ad \u0626\u06c8\u0644\u06af\u0649\u0633\u0649",
"Turquoise": "\u0643\u06c6\u0643\u06c8\u0686 \u064a\u06d0\u0634\u0649\u0644",
"Green": "\u064a\u06d0\u0634\u0649\u0644",
"Blue": "\u0643\u06c6\u0643",
"Purple": "\u0628\u0649\u0646\u06d5\u067e\u0634\u06d5",
"Navy Blue": "\u062f\u06d0\u06ad\u0649\u0632 \u0643\u06c6\u0643",
"Dark Turquoise": "\u062a\u0648\u0642 \u0643\u06c6\u0643\u06c8\u0686 \u064a\u06d0\u0634\u0649\u0644",
"Dark Green": "\u062a\u0648\u0642 \u064a\u06d0\u0634\u0649\u0644",
"Medium Blue": "\u0626\u0627\u0631\u0627 \u0643\u06c6\u0643",
"Medium Purple": "\u0626\u0627\u0631\u0627 \u0628\u0649\u0646\u06d5\u067e\u0634\u06d5",
"Midnight Blue": "\u0642\u0627\u0631\u0627 \u0643\u06c6\u0643",
"Yellow": "\u0633\u06d0\u0631\u0649\u0642",
"Orange": "\u0642\u0649\u0632\u063a\u06c7\u0686 \u0633\u06d0\u0631\u0649\u0642",
"Red": "\u0642\u0649\u0632\u0649\u0644",
"Light Gray": "\u0626\u0627\u0686 \u0643\u06c8\u0644\u0631\u06d5\u06ad",
"Gray": "\u0643\u06c8\u0644\u0631\u06d5\u06ad",
"Dark Yellow": "\u062a\u0648\u0642 \u0633\u06d0\u0631\u0649\u0642",
"Dark Orange": "\u062a\u0648\u0642 \u0642\u0649\u0632\u063a\u06c7\u0686",
"Dark Red": "\u062a\u0648\u0642 \u0642\u0649\u0632\u0649\u0644",
"Medium Gray": "\u0626\u0648\u062a\u062a\u06c7\u0631\u06be\u0627\u0644 \u0643\u06c8\u0644\u0631\u06d5\u06ad",
"Dark Gray": "\u062a\u0648\u0642 \u0643\u06c8\u0644\u0631\u06d5\u06ad",
"Light Green": "\u0626\u0627\u0686 \u064a\u06d0\u0634\u0649\u0644",
"Light Yellow": "\u0626\u0627\u0686 \u0633\u06d0\u0631\u0649\u0642",
"Light Red": "\u0626\u0627\u0686 \u0642\u0649\u0632\u0649\u0644",
"Light Purple": "\u0626\u0627\u0686 \u0628\u0649\u0646\u06d5\u067e\u0634\u06d5",
"Light Blue": "\u0626\u0627\u0686 \u0643\u06c6\u0643",
"Dark Purple": "\u062a\u0648\u0642 \u0628\u0649\u0646\u06d5\u067e\u0634\u06d5",
"Dark Blue": "\u062a\u0648\u0642 \u0643\u06c6\u0643",
"Black": "\u0642\u0627\u0631\u0627",
"White": "\u0626\u0627\u0642",
"Switch to or from fullscreen mode": "\u062a\u0648\u0644\u06c7\u0642 \u0626\u06d0\u0643\u0631\u0627\u0646 \u06be\u0627\u0644\u0649\u062a\u0649\u0646\u0649 \u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
"Open help dialog": "\u064a\u0627\u0631\u062f\u06d5\u0645 \u062f\u0649\u064a\u0627\u0644\u0648\u06af\u0649\u0646\u0649 \u0626\u06d0\u0686\u0649\u0634",
"history": "\u062a\u0627\u0631\u0649\u062e\u0649\u064a \u0626\u06c7\u0686\u06c7\u0631",
"styles": "\u0626\u06c7\u0633\u0644\u06c7\u0628\u0644\u0627\u0631",
"formatting": "\u0641\u0648\u0631\u0645\u0627\u062a\u0644\u0627\u0634",
"alignment": "\u062a\u0648\u063a\u0631\u0649\u0644\u0627\u0634",
"indentation": "\u062a\u0627\u0631\u0627\u064a\u062a\u0649\u0634",
"Font": "\u062e\u06d5\u062a \u0646\u06c7\u0633\u062e\u0649\u0633\u0649",
"Size": "\u0686\u0648\u06ad\u0644\u06c7\u0642\u0649",
"More...": "\u062a\u06d0\u062e\u0649\u0645\u06c7 \u0643\u06c6\u067e...",
"Select...": "\u062a\u0627\u0644\u0644\u0627\u0634...",
"Preferences": "\u0645\u0627\u064a\u0649\u0644\u0644\u0649\u0642\u0644\u0649\u0631\u0649",
"Yes": "\u06be\u06d5\u0626\u06d5",
"No": "\u064a\u0627\u0642",
"Keyboard Navigation": "\u064a\u06c6\u062a\u0643\u0649\u0644\u0649\u0634\u0686\u0627\u0646 \u0643\u06c7\u0646\u06c7\u067e\u0643\u0627 \u062a\u0627\u062e\u062a\u0649\u0633\u0649",
"Version": "\u0646\u06d5\u0634\u0631\u0649",
"Code view": "\u0643\u0648\u062f \u0643\u06c6\u0631\u06c8\u0646\u06c8\u0634\u0649",
"Open popup menu for split buttons": "\u0628\u06c6\u0644\u06c8\u0646\u0645\u06d5 \u0643\u06c7\u0646\u06c7\u067e\u0643\u0649\u0644\u0627\u0631 \u0626\u06c8\u0686\u06c8\u0646 \u0633\u06d5\u0643\u0631\u0649\u0645\u06d5 \u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643 \u0626\u06d0\u0686\u0649\u0634",
"List Properties": "\u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643 \u062e\u0627\u0633\u0644\u0649\u0642\u0644\u0649\u0631\u0649",
"List properties...": "\u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643 \u062e\u0627\u0633\u0644\u0649\u0642\u0644\u0649\u0631\u0649...",
"Start list at number": "\u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643\u0646\u0649 \u0633\u0627\u0646 \u0628\u0649\u0644\u06d5\u0646 \u0628\u0627\u0634\u0644\u0627\u0634",
"Line height": "\u0642\u06c7\u0631 \u0626\u0627\u0631\u0649\u0644\u0649\u0642\u0649",
"comments": "\u0626\u0649\u0646\u0643\u0627\u0633\u0644\u0627\u0631",
"Format Painter": "\u0641\u0648\u0631\u0645\u0627\u062a \u0643\u06c6\u0686\u06c8\u0631\u06af\u06c8\u0686",
"Insert\/edit iframe": "\u0631\u0627\u0645\u0643\u0627 (iframe) \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634 \u064a\u0627\u0643\u0649 \u062a\u06d5\u06be\u0631\u0649\u0631\u0644\u06d5\u0634",
"Capitalization": "\u0686\u0648\u06ad \u06be\u06d5\u0631\u067e\u0643\u06d5 \u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
"lowercase": "\u0643\u0649\u0686\u0649\u0643 \u06be\u06d5\u0631\u067e",
"UPPERCASE": "\u0686\u0648\u06ad \u06be\u06d5\u0631\u067e",
"Title Case": "\u062a\u06d0\u0645\u0627 \u0626\u06c7\u0633\u0644\u06c7\u0628\u0649",
"permanent pen": "\u062f\u0627\u0626\u0649\u0645\u0644\u0649\u0642 \u0642\u06d5\u0644\u06d5\u0645",
"Permanent Pen Properties": "\u062f\u0627\u0626\u0649\u0645\u0644\u0649\u0642 \u0642\u06d5\u0644\u06d5\u0645 \u062e\u0627\u0633\u0644\u0649\u0642\u0644\u0649\u0631\u0649",
"Permanent pen properties...": "\u062f\u0627\u0626\u0649\u0645\u0644\u0649\u0642 \u0642\u06d5\u0644\u06d5\u0645 \u062e\u0627\u0633\u0644\u0649\u0642\u0644\u0649\u0631\u0649...",
"case change": "\u0686\u0648\u06ad\u0644\u06c7\u0642\u0649\u0646\u0649 \u0626\u06c6\u0632\u06af\u06d5\u0631\u062a\u0649\u0634",
"page embed": "\u0642\u0649\u0633\u062a\u06c7\u0631\u0645\u0627 \u0628\u06d5\u062a",
"Advanced sort...": "\u0626\u0627\u0644\u0649\u064a \u062a\u0649\u0632\u0649\u0634...",
"Advanced Sort": "\u0626\u0627\u0644\u0649\u064a \u062a\u0649\u0632\u0649\u0634",
"Sort table by column ascending": "\u062c\u06d5\u062f\u06cb\u06d5\u0644\u0646\u0649 \u0626\u0649\u0633\u062a\u0648\u0646\u0646\u0649\u06ad \u0626\u06d0\u0634\u0649\u0634\u0649 \u0628\u0648\u064a\u0649\u0686\u06d5 \u062a\u0649\u0632\u0649\u0634",
"Sort table by column descending": "\u062c\u06d5\u062f\u06cb\u06d5\u0644\u0646\u0649 \u0626\u0649\u0633\u062a\u0648\u0646\u0646\u0649\u06ad \u0643\u06d0\u0645\u0649\u064a\u0649\u0634\u0649 \u0628\u0648\u064a\u0649\u0686\u06d5 \u062a\u0649\u0632\u0649\u0634",
"Sort": "\u062a\u0649\u0632\u0649\u0634",
"Order": "\u062a\u06d5\u0631\u062a\u0649\u067e\u0649",
"Sort by": "\u062a\u0649\u0632\u0649\u0634 \u0634\u06d5\u0643\u0644\u0649",
"Ascending": "\u0626\u06d0\u0634\u0649\u0634",
"Descending": "\u0643\u06d0\u0645\u0649\u064a\u0649\u0634",
"Column {0}": "{0} \u0626\u0649\u0633\u062a\u0648\u0646",
"Row {0}": "{0}-\u0642\u06c7\u0631",
"Spellcheck...": "\u0626\u0649\u0645\u0644\u0627 \u062a\u06d5\u0643\u0634\u06c8\u0631\u06c8\u0634...",
"Misspelled word": "\u062e\u0627\u062a\u0627 \u0633\u06c6\u0632",
"Suggestions": "\u062a\u06d5\u06cb\u0633\u0649\u064a\u06d5\u0644\u06d5\u0631",
"Change": "\u0626\u06c6\u0632\u06af\u06d5\u0631\u062a\u0649\u0634",
"Finding word suggestions": "\u062a\u06d5\u06cb\u0633\u0649\u064a\u06d5 \u0633\u06c6\u0632\u0644\u06d5\u0631\u0646\u0649 \u0626\u0649\u0632\u062f\u06d5\u0634",
"Success": "\u0626\u0648\u06ad\u06c7\u0634\u0644\u06c7\u0642 \u0628\u0648\u0644\u062f\u0649",
"Repair": "\u0626\u0648\u06ad\u0634\u0627\u0634",
"Issue {0} of {1}": "{0}-\u0645\u06d5\u0633\u0649\u0644\u06d5\u060c \u062c\u06d5\u0645\u0626\u0649\u064a {1} \u0645\u06d5\u0633\u0649\u0644\u06d5",
"Images must be marked as decorative or have an alternative text description": "\u0631\u06d5\u0633\u0649\u0645\u0644\u06d5\u0631\u0646\u0649\u06ad \u0686\u0648\u0642\u06c7\u0645 \u0628\u06d0\u0632\u06d5\u0643 \u0628\u06d5\u0644\u06af\u0649\u0633\u0649 \u064a\u0627\u0643\u0649 \u062a\u0627\u0644\u0644\u0627\u0646\u0645\u0627 \u062a\u06d0\u0643\u0649\u0633\u062a \u0686\u06c8\u0634\u06d5\u0646\u062f\u06c8\u0631\u06c8\u0634\u0649 \u0628\u0648\u0644\u06c7\u0634\u0649 \u0643\u06d0\u0631\u06d5\u0643",
"Images must have an alternative text description. Decorative images are not allowed.": "\u0631\u06d5\u0633\u0649\u0645\u0644\u06d5\u0631\u0646\u0649\u06ad \u0686\u0648\u0642\u06c7\u0645 \u062a\u0627\u0644\u0644\u0627\u0646\u0645\u0627 \u062a\u06d0\u0643\u0649\u0633\u062a \u0686\u06c8\u0634\u06d5\u0646\u062f\u06c8\u0631\u06c8\u0634\u0649 \u0628\u0648\u0644\u06c7\u0634\u0649 \u0643\u06d0\u0631\u06d5\u0643. \u0628\u06d0\u0632\u06d5\u0643 \u0631\u06d5\u0633\u0649\u0645\u0644\u06d5\u0631\u06af\u06d5 \u0631\u06c7\u062e\u0633\u06d5\u062a \u0642\u0649\u0644\u0649\u0646\u0645\u0627\u064a\u062f\u06c7.",
"Or provide alternative text:": "\u064a\u0627\u0643\u0649 \u062a\u0627\u0644\u0644\u0627\u0646\u0645\u0627 \u062a\u06d0\u0643\u0649\u0633\u062a\u0646\u0649 \u0643\u0649\u0631\u06af\u06c8\u0632\u06c8\u06ad:",
"Make image decorative:": "\u0628\u06d0\u0632\u06d5\u0643 \u0631\u06d5\u0633\u0649\u0645 \u0642\u0649\u0644\u0649\u06ad:",
"ID attribute must be unique": "ID \u062e\u0627\u0633\u0644\u0649\u0642\u0649 \u0628\u0649\u0631\u062f\u0649\u0646\u0628\u0649\u0631 \u0628\u0648\u0644\u06c7\u0634\u0649 \u0643\u06d0\u0631\u06d5\u0643",
"Make ID unique": "ID \u0646\u0649 \u0628\u0649\u0631\u062f\u0649\u0646\u0628\u0649\u0631 \u0642\u0649\u0644\u0649\u0634",
"Keep this ID and remove all others": "\u0628\u06c7 ID \u062f\u0649\u0646 \u0628\u0627\u0634\u0642\u0649\u0644\u0649\u0631\u0649\u0646\u0649 \u0686\u0649\u0642\u0649\u0631\u0649\u06cb\u06d0\u062a\u0649\u0634",
"Remove this ID": "\u0628\u06c7 ID \u0646\u0649 \u0686\u0649\u0642\u0649\u0631\u0649\u06cb\u06d0\u062a\u0649\u0634",
"Remove all IDs": "\u0628\u0627\u0631\u0644\u0649\u0642 ID \u0646\u0649 \u0686\u0649\u0642\u0649\u0631\u0649\u06cb\u06d0\u062a\u0649\u0634",
"Checklist": "\u062a\u0627\u0644\u0644\u0627\u0646\u0645\u0627 \u062a\u0649\u0632\u0649\u0645\u0644\u0649\u0643",
"Anchor": "\u0626\u06c7\u0644\u0627\u0646\u0645\u0627",
"Special character": "\u0626\u0627\u0644\u0627\u06be\u0649\u062f\u06d5 \u0628\u06d5\u0644\u06af\u0649\u0644\u06d5\u0631",
"Code sample": "\u0643\u0648\u062f \u0645\u0649\u0633\u0627\u0644\u0649",
"Color": "\u0631\u06d5\u06ad",
"Document properties": "\u06be\u06c6\u062c\u062c\u06d5\u062a \u062e\u0627\u0633\u0644\u0649\u0642\u0649",
"Image description": "\u0631\u06d5\u0633\u0649\u0645 \u062a\u06d5\u0633\u06cb\u0649\u0631\u0649",
"Image": "\u0631\u06d5\u0633\u0649\u0645",
"Insert link": "\u0626\u06c7\u0644\u0649\u0646\u0649\u0634 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634",
"Target": "\u0646\u0649\u0634\u0627\u0646",
"Link": "\u0626\u06c7\u0644\u0649\u0646\u0649\u0634",
"Poster": "\u064a\u0648\u0644\u0644\u0649\u063a\u06c7\u0686\u0649",
"Media": "\u0645\u06d0\u062f\u0649\u064a\u0627",
"Print": "\u0628\u06d0\u0633\u0649\u0634",
"Prev": "\u0626\u0627\u0644\u062f\u0649\u0646\u0642\u0649\u0633\u0649",
"Find and replace": "\u0626\u0649\u0632\u062f\u06d5\u0634 \u06cb\u06d5 \u0626\u0627\u0644\u0645\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
"Whole words": "\u062a\u0648\u0644\u06c7\u0642  \u0645\u0627\u0633\u0644\u0627\u0634\u062a\u06c7\u0631\u06c7\u0634",
"Insert template": "\u0626\u06c8\u0644\u06af\u06d5 \u0642\u0649\u0633\u062a\u06c7\u0631\u06c7\u0634"
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/zh_CN.js
================================================
tinymce.addI18n('zh_CN',{
"Redo": "\u91cd\u505a",
"Undo": "\u64a4\u9500",
"Cut": "\u526a\u5207",
"Copy": "\u590d\u5236",
"Paste": "\u7c98\u8d34",
"Select all": "\u5168\u9009",
"New document": "\u65b0\u6587\u4ef6",
"Ok": "\u786e\u5b9a",
"Cancel": "\u53d6\u6d88",
"Visual aids": "\u7f51\u683c\u7ebf",
"Bold": "\u7c97\u4f53",
"Italic": "\u659c\u4f53",
"Underline": "\u4e0b\u5212\u7ebf",
"Strikethrough": "\u5220\u9664\u7ebf",
"Superscript": "\u4e0a\u6807",
"Subscript": "\u4e0b\u6807",
"Clear formatting": "\u6e05\u9664\u683c\u5f0f",
"Align left": "\u5de6\u8fb9\u5bf9\u9f50",
"Align center": "\u4e2d\u95f4\u5bf9\u9f50",
"Align right": "\u53f3\u8fb9\u5bf9\u9f50",
"Justify": "\u4e24\u7aef\u5bf9\u9f50",
"Bullet list": "\u9879\u76ee\u7b26\u53f7",
"Numbered list": "\u7f16\u53f7\u5217\u8868",
"Decrease indent": "\u51cf\u5c11\u7f29\u8fdb",
"Increase indent": "\u589e\u52a0\u7f29\u8fdb",
"Close": "\u5173\u95ed",
"Formats": "\u683c\u5f0f",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u4f60\u7684\u6d4f\u89c8\u5668\u4e0d\u652f\u6301\u6253\u5f00\u526a\u8d34\u677f\uff0c\u8bf7\u4f7f\u7528Ctrl+X\/C\/V\u7b49\u5feb\u6377\u952e\u3002",
"Headers": "\u6807\u9898",
"Header 1": "\u6807\u98981",
"Header 2": "\u6807\u98982",
"Header 3": "\u6807\u98983",
"Header 4": "\u6807\u98984",
"Header 5": "\u6807\u98985",
"Header 6": "\u6807\u98986",
"Headings": "\u6807\u9898",
"Heading 1": "\u6807\u98981",
"Heading 2": "\u6807\u98982",
"Heading 3": "\u6807\u98983",
"Heading 4": "\u6807\u98984",
"Heading 5": "\u6807\u98985",
"Heading 6": "\u6807\u98986",
"Preformatted": "\u9884\u5148\u683c\u5f0f\u5316\u7684",
"Div": "Div",
"Pre": "Pre",
"Code": "\u4ee3\u7801",
"Paragraph": "\u6bb5\u843d",
"Blockquote": "\u5f15\u6587\u533a\u5757",
"Inline": "\u6587\u672c",
"Blocks": "\u57fa\u5757",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u5f53\u524d\u4e3a\u7eaf\u6587\u672c\u7c98\u8d34\u6a21\u5f0f\uff0c\u518d\u6b21\u70b9\u51fb\u53ef\u4ee5\u56de\u5230\u666e\u901a\u7c98\u8d34\u6a21\u5f0f\u3002",
"Fonts": "\u5b57\u4f53",
"Font Sizes": "\u5b57\u53f7",
"Class": "\u7c7b\u578b",
"Browse for an image": "\u6d4f\u89c8\u56fe\u50cf",
"OR": "\u6216",
"Drop an image here": "\u62d6\u653e\u4e00\u5f20\u56fe\u50cf\u81f3\u6b64",
"Upload": "\u4e0a\u4f20",
"Block": "\u5757",
"Align": "\u5bf9\u9f50",
"Default": "\u9ed8\u8ba4",
"Circle": "\u7a7a\u5fc3\u5706",
"Disc": "\u5b9e\u5fc3\u5706",
"Square": "\u65b9\u5757",
"Lower Alpha": "\u5c0f\u5199\u82f1\u6587\u5b57\u6bcd",
"Lower Greek": "\u5c0f\u5199\u5e0c\u814a\u5b57\u6bcd",
"Lower Roman": "\u5c0f\u5199\u7f57\u9a6c\u5b57\u6bcd",
"Upper Alpha": "\u5927\u5199\u82f1\u6587\u5b57\u6bcd",
"Upper Roman": "\u5927\u5199\u7f57\u9a6c\u5b57\u6bcd",
"Anchor...": "\u951a\u70b9...",
"Name": "\u540d\u79f0",
"Id": "\u6807\u8bc6\u7b26",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u6807\u8bc6\u7b26\u5e94\u8be5\u4ee5\u5b57\u6bcd\u5f00\u5934\uff0c\u540e\u8ddf\u5b57\u6bcd\u3001\u6570\u5b57\u3001\u7834\u6298\u53f7\u3001\u70b9\u3001\u5192\u53f7\u6216\u4e0b\u5212\u7ebf\u3002",
"You have unsaved changes are you sure you want to navigate away?": "\u4f60\u8fd8\u6709\u6587\u6863\u5c1a\u672a\u4fdd\u5b58\uff0c\u786e\u5b9a\u8981\u79bb\u5f00\uff1f",
"Restore last draft": "\u6062\u590d\u4e0a\u6b21\u7684\u8349\u7a3f",
"Special character...": "\u7279\u6b8a\u5b57\u7b26...",
"Source code": "\u6e90\u4ee3\u7801",
"Insert\/Edit code sample": "\u63d2\u5165\/\u7f16\u8f91\u4ee3\u7801\u793a\u4f8b",
"Language": "\u8bed\u8a00",
"Code sample...": "\u793a\u4f8b\u4ee3\u7801...",
"Color Picker": "\u9009\u8272\u5668",
"R": "R",
"G": "G",
"B": "B",
"Left to right": "\u4ece\u5de6\u5230\u53f3",
"Right to left": "\u4ece\u53f3\u5230\u5de6",
"Emoticons": "\u8868\u60c5",
"Emoticons...": "\u8868\u60c5\u7b26\u53f7...",
"Metadata and Document Properties": "\u5143\u6570\u636e\u548c\u6587\u6863\u5c5e\u6027",
"Title": "\u6807\u9898",
"Keywords": "\u5173\u952e\u8bcd",
"Description": "\u63cf\u8ff0",
"Robots": "\u673a\u5668\u4eba",
"Author": "\u4f5c\u8005",
"Encoding": "\u7f16\u7801",
"Fullscreen": "\u5168\u5c4f",
"Action": "\u64cd\u4f5c",
"Shortcut": "\u5feb\u6377\u952e",
"Help": "\u5e2e\u52a9",
"Address": "\u5730\u5740",
"Focus to menubar": "\u79fb\u52a8\u7126\u70b9\u5230\u83dc\u5355\u680f",
"Focus to toolbar": "\u79fb\u52a8\u7126\u70b9\u5230\u5de5\u5177\u680f",
"Focus to element path": "\u79fb\u52a8\u7126\u70b9\u5230\u5143\u7d20\u8def\u5f84",
"Focus to contextual toolbar": "\u79fb\u52a8\u7126\u70b9\u5230\u4e0a\u4e0b\u6587\u83dc\u5355",
"Insert link (if link plugin activated)": "\u63d2\u5165\u94fe\u63a5 (\u5982\u679c\u94fe\u63a5\u63d2\u4ef6\u5df2\u6fc0\u6d3b)",
"Save (if save plugin activated)": "\u4fdd\u5b58(\u5982\u679c\u4fdd\u5b58\u63d2\u4ef6\u5df2\u6fc0\u6d3b)",
"Find (if searchreplace plugin activated)": "\u67e5\u627e(\u5982\u679c\u67e5\u627e\u66ff\u6362\u63d2\u4ef6\u5df2\u6fc0\u6d3b)",
"Plugins installed ({0}):": "\u5df2\u5b89\u88c5\u63d2\u4ef6 ({0}):",
"Premium plugins:": "\u4f18\u79c0\u63d2\u4ef6\uff1a",
"Learn more...": "\u4e86\u89e3\u66f4\u591a...",
"You are using {0}": "\u4f60\u6b63\u5728\u4f7f\u7528 {0}",
"Plugins": "\u63d2\u4ef6",
"Handy Shortcuts": "\u5feb\u6377\u952e",
"Horizontal line": "\u6c34\u5e73\u5206\u5272\u7ebf",
"Insert\/edit image": "\u63d2\u5165\/\u7f16\u8f91\u56fe\u7247",
"Alternative description": "\u66ff\u4ee3\u63cf\u8ff0",
"Accessibility": "\u8f85\u52a9\u529f\u80fd",
"Image is decorative": "\u56fe\u50cf\u662f\u88c5\u9970\u6027\u7684",
"Source": "\u5730\u5740",
"Dimensions": "\u5927\u5c0f",
"Constrain proportions": "\u4fdd\u6301\u7eb5\u6a2a\u6bd4",
"General": "\u666e\u901a",
"Advanced": "\u9ad8\u7ea7",
"Style": "\u6837\u5f0f",
"Vertical space": "\u5782\u76f4\u8fb9\u8ddd",
"Horizontal space": "\u6c34\u5e73\u8fb9\u8ddd",
"Border": "\u8fb9\u6846",
"Insert image": "\u63d2\u5165\u56fe\u7247",
"Image...": "\u56fe\u7247...",
"Image list": "\u56fe\u7247\u5217\u8868",
"Rotate counterclockwise": "\u9006\u65f6\u9488\u65cb\u8f6c",
"Rotate clockwise": "\u987a\u65f6\u9488\u65cb\u8f6c",
"Flip vertically": "\u5782\u76f4\u7ffb\u8f6c",
"Flip horizontally": "\u6c34\u5e73\u7ffb\u8f6c",
"Edit image": "\u7f16\u8f91\u56fe\u7247",
"Image options": "\u56fe\u7247\u9009\u9879",
"Zoom in": "\u653e\u5927",
"Zoom out": "\u7f29\u5c0f",
"Crop": "\u88c1\u526a",
"Resize": "\u8c03\u6574\u5927\u5c0f",
"Orientation": "\u65b9\u5411",
"Brightness": "\u4eae\u5ea6",
"Sharpen": "\u9510\u5316",
"Contrast": "\u5bf9\u6bd4\u5ea6",
"Color levels": "\u989c\u8272\u5c42\u6b21",
"Gamma": "\u4f3d\u9a6c\u503c",
"Invert": "\u53cd\u8f6c",
"Apply": "\u5e94\u7528",
"Back": "\u540e\u9000",
"Insert date\/time": "\u63d2\u5165\u65e5\u671f\/\u65f6\u95f4",
"Date\/time": "\u65e5\u671f\/\u65f6\u95f4",
"Insert\/edit link": "\u63d2\u5165\/\u7f16\u8f91\u94fe\u63a5",
"Text to display": "\u663e\u793a\u6587\u5b57",
"Url": "\u5730\u5740",
"Open link in...": "\u94fe\u63a5\u6253\u5f00\u4f4d\u7f6e...",
"Current window": "\u5f53\u524d\u7a97\u53e3",
"None": "\u65e0",
"New window": "\u5728\u65b0\u7a97\u53e3\u6253\u5f00",
"Open link": "\u6253\u5f00\u94fe\u63a5",
"Remove link": "\u5220\u9664\u94fe\u63a5",
"Anchors": "\u951a\u70b9",
"Link...": "\u94fe\u63a5...",
"Paste or type a link": "\u7c98\u8d34\u6216\u8f93\u5165\u94fe\u63a5",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u4e3a\u90ae\u4ef6\u5730\u5740\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7f00\u5417\uff1f",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u5c5e\u4e8e\u5916\u90e8\u94fe\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7f00\u5417\uff1f",
"The URL you entered seems to be an external link. Do you want to add the required https:\/\/ prefix?": "\u60a8\u8f93\u5165\u7684 URL \u4f3c\u4e4e\u662f\u4e00\u4e2a\u5916\u90e8\u94fe\u63a5\u3002\u60a8\u60f3\u6dfb\u52a0\u6240\u9700\u7684 https:\/\/ \u524d\u7f00\u5417\uff1f",
"Link list": "\u94fe\u63a5\u5217\u8868",
"Insert video": "\u63d2\u5165\u89c6\u9891",
"Insert\/edit video": "\u63d2\u5165\/\u7f16\u8f91\u89c6\u9891",
"Insert\/edit media": "\u63d2\u5165\/\u7f16\u8f91\u5a92\u4f53",
"Alternative source": "\u955c\u50cf",
"Alternative source URL": "\u66ff\u4ee3\u6765\u6e90\u7f51\u5740",
"Media poster (Image URL)": "\u5c01\u9762(\u56fe\u7247\u5730\u5740)",
"Paste your embed code below:": "\u5c06\u5185\u5d4c\u4ee3\u7801\u7c98\u8d34\u5728\u4e0b\u9762:",
"Embed": "\u5185\u5d4c",
"Media...": "\u591a\u5a92\u4f53...",
"Nonbreaking space": "\u4e0d\u95f4\u65ad\u7a7a\u683c",
"Page break": "\u5206\u9875\u7b26",
"Paste as text": "\u7c98\u8d34\u4e3a\u6587\u672c",
"Preview": "\u9884\u89c8",
"Print...": "\u6253\u5370...",
"Save": "\u4fdd\u5b58",
"Find": "\u67e5\u627e",
"Replace with": "\u66ff\u6362\u4e3a",
"Replace": "\u66ff\u6362",
"Replace all": "\u5168\u90e8\u66ff\u6362",
"Previous": "\u4e0a\u4e00\u4e2a",
"Next": "\u4e0b\u4e00\u4e2a",
"Find and Replace": "\u67e5\u627e\u548c\u66ff\u6362",
"Find and replace...": "\u67e5\u627e\u5e76\u66ff\u6362...",
"Could not find the specified string.": "\u672a\u627e\u5230\u641c\u7d22\u5185\u5bb9.",
"Match case": "\u533a\u5206\u5927\u5c0f\u5199",
"Find whole words only": "\u5168\u5b57\u5339\u914d",
"Find in selection": "\u5728\u9009\u533a\u4e2d\u67e5\u627e",
"Spellcheck": "\u62fc\u5199\u68c0\u67e5",
"Spellcheck Language": "\u62fc\u5199\u68c0\u67e5\u8bed\u8a00",
"No misspellings found.": "\u6ca1\u6709\u53d1\u73b0\u62fc\u5199\u9519\u8bef",
"Ignore": "\u5ffd\u7565",
"Ignore all": "\u5168\u90e8\u5ffd\u7565",
"Finish": "\u5b8c\u6210",
"Add to Dictionary": "\u6dfb\u52a0\u5230\u5b57\u5178",
"Insert table": "\u63d2\u5165\u8868\u683c",
"Table properties": "\u8868\u683c\u5c5e\u6027",
"Delete table": "\u5220\u9664\u8868\u683c",
"Cell": "\u5355\u5143\u683c",
"Row": "\u884c",
"Column": "\u5217",
"Cell properties": "\u5355\u5143\u683c\u5c5e\u6027",
"Merge cells": "\u5408\u5e76\u5355\u5143\u683c",
"Split cell": "\u62c6\u5206\u5355\u5143\u683c",
"Insert row before": "\u5728\u4e0a\u65b9\u63d2\u5165",
"Insert row after": "\u5728\u4e0b\u65b9\u63d2\u5165",
"Delete row": "\u5220\u9664\u884c",
"Row properties": "\u884c\u5c5e\u6027",
"Cut row": "\u526a\u5207\u884c",
"Copy row": "\u590d\u5236\u884c",
"Paste row before": "\u7c98\u8d34\u5230\u4e0a\u65b9",
"Paste row after": "\u7c98\u8d34\u5230\u4e0b\u65b9",
"Insert column before": "\u5728\u5de6\u4fa7\u63d2\u5165",
"Insert column after": "\u5728\u53f3\u4fa7\u63d2\u5165",
"Delete column": "\u5220\u9664\u5217",
"Cols": "\u5217",
"Rows": "\u884c",
"Width": "\u5bbd",
"Height": "\u9ad8",
"Cell spacing": "\u5355\u5143\u683c\u5916\u95f4\u8ddd",
"Cell padding": "\u5355\u5143\u683c\u5185\u8fb9\u8ddd",
"Caption": "\u6807\u9898",
"Show caption": "\u663e\u793a\u6807\u9898",
"Left": "\u5de6\u5bf9\u9f50",
"Center": "\u5c45\u4e2d",
"Right": "\u53f3\u5bf9\u9f50",
"Cell type": "\u5355\u5143\u683c\u7c7b\u578b",
"Scope": "\u8303\u56f4",
"Alignment": "\u5bf9\u9f50\u65b9\u5f0f",
"H Align": "\u6c34\u5e73\u5bf9\u9f50",
"V Align": "\u5782\u76f4\u5bf9\u9f50",
"Top": "\u9876\u90e8\u5bf9\u9f50",
"Middle": "\u5782\u76f4\u5c45\u4e2d",
"Bottom": "\u5e95\u90e8\u5bf9\u9f50",
"Header cell": "\u8868\u5934\u5355\u5143\u683c",
"Row group": "\u884c\u7ec4",
"Column group": "\u5217\u7ec4",
"Row type": "\u884c\u7c7b\u578b",
"Header": "\u8868\u5934",
"Body": "\u8868\u4f53",
"Footer": "\u8868\u5c3e",
"Border color": "\u8fb9\u6846\u989c\u8272",
"Insert template...": "\u63d2\u5165\u6a21\u677f...",
"Templates": "\u6a21\u677f",
"Template": "\u6a21\u677f",
"Text color": "\u6587\u5b57\u989c\u8272",
"Background color": "\u80cc\u666f\u8272",
"Custom...": "\u81ea\u5b9a\u4e49...",
"Custom color": "\u81ea\u5b9a\u4e49\u989c\u8272",
"No color": "\u65e0",
"Remove color": "\u79fb\u9664\u989c\u8272",
"Table of Contents": "\u5185\u5bb9\u5217\u8868",
"Show blocks": "\u663e\u793a\u533a\u5757\u8fb9\u6846",
"Show invisible characters": "\u663e\u793a\u4e0d\u53ef\u89c1\u5b57\u7b26",
"Word count": "\u5b57\u6570",
"Count": "\u8ba1\u6570",
"Document": "\u6587\u6863",
"Selection": "\u9009\u62e9",
"Words": "\u5355\u8bcd",
"Words: {0}": "\u5b57\u6570\uff1a{0}",
"{0} words": "{0} \u5b57",
"File": "\u6587\u4ef6",
"Edit": "\u7f16\u8f91",
"Insert": "\u63d2\u5165",
"View": "\u89c6\u56fe",
"Format": "\u683c\u5f0f",
"Table": "\u8868\u683c",
"Tools": "\u5de5\u5177",
"Powered by {0}": "\u7531{0}\u9a71\u52a8",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u5728\u7f16\u8f91\u533a\u6309ALT-F9\u6253\u5f00\u83dc\u5355\uff0c\u6309ALT-F10\u6253\u5f00\u5de5\u5177\u680f\uff0c\u6309ALT-0\u67e5\u770b\u5e2e\u52a9",
"Image title": "\u56fe\u7247\u6807\u9898",
"Border width": "\u8fb9\u6846\u5bbd\u5ea6",
"Border style": "\u8fb9\u6846\u6837\u5f0f",
"Error": "\u9519\u8bef",
"Warn": "\u8b66\u544a",
"Valid": "\u6709\u6548",
"To open the popup, press Shift+Enter": "\u6309Shitf+Enter\u952e\u6253\u5f00\u5bf9\u8bdd\u6846",
"Rich Text Area. Press ALT-0 for help.": "\u7f16\u8f91\u533a\u3002\u6309Alt+0\u952e\u6253\u5f00\u5e2e\u52a9\u3002",
"System Font": "\u7cfb\u7edf\u5b57\u4f53",
"Failed to upload image: {0}": "\u56fe\u7247\u4e0a\u4f20\u5931\u8d25: {0}",
"Failed to load plugin: {0} from url {1}": "\u63d2\u4ef6\u52a0\u8f7d\u5931\u8d25: {0} \u6765\u81ea\u94fe\u63a5 {1}",
"Failed to load plugin url: {0}": "\u63d2\u4ef6\u52a0\u8f7d\u5931\u8d25 \u94fe\u63a5: {0}",
"Failed to initialize plugin: {0}": "\u63d2\u4ef6\u521d\u59cb\u5316\u5931\u8d25: {0}",
"example": "\u793a\u4f8b",
"Search": "\u641c\u7d22",
"All": "\u5168\u90e8",
"Currency": "\u8d27\u5e01",
"Text": "\u6587\u5b57",
"Quotations": "\u5f15\u7528",
"Mathematical": "\u6570\u5b66",
"Extended Latin": "\u62c9\u4e01\u8bed\u6269\u5145",
"Symbols": "\u7b26\u53f7",
"Arrows": "\u7bad\u5934",
"User Defined": "\u81ea\u5b9a\u4e49",
"dollar sign": "\u7f8e\u5143\u7b26\u53f7",
"currency sign": "\u8d27\u5e01\u7b26\u53f7",
"euro-currency sign": "\u6b27\u5143\u7b26\u53f7",
"colon sign": "\u5192\u53f7",
"cruzeiro sign": "\u514b\u9c81\u8d5b\u7f57\u5e01\u7b26\u53f7",
"french franc sign": "\u6cd5\u90ce\u7b26\u53f7",
"lira sign": "\u91cc\u62c9\u7b26\u53f7",
"mill sign": "\u5bc6\u5c14\u7b26\u53f7",
"naira sign": "\u5948\u62c9\u7b26\u53f7",
"peseta sign": "\u6bd4\u585e\u5854\u7b26\u53f7",
"rupee sign": "\u5362\u6bd4\u7b26\u53f7",
"won sign": "\u97e9\u5143\u7b26\u53f7",
"new sheqel sign": "\u65b0\u8c22\u514b\u5c14\u7b26\u53f7",
"dong sign": "\u8d8a\u5357\u76fe\u7b26\u53f7",
"kip sign": "\u8001\u631d\u57fa\u666e\u7b26\u53f7",
"tugrik sign": "\u56fe\u683c\u91cc\u514b\u7b26\u53f7",
"drachma sign": "\u5fb7\u62c9\u514b\u9a6c\u7b26\u53f7",
"german penny symbol": "\u5fb7\u56fd\u4fbf\u58eb\u7b26\u53f7",
"peso sign": "\u6bd4\u7d22\u7b26\u53f7",
"guarani sign": "\u74dc\u62c9\u5c3c\u7b26\u53f7",
"austral sign": "\u6fb3\u5143\u7b26\u53f7",
"hryvnia sign": "\u683c\u91cc\u592b\u5c3c\u4e9a\u7b26\u53f7",
"cedi sign": "\u585e\u5730\u7b26\u53f7",
"livre tournois sign": "\u91cc\u5f17\u5f17\u5c14\u7b26\u53f7",
"spesmilo sign": "spesmilo\u7b26\u53f7",
"tenge sign": "\u575a\u6208\u7b26\u53f7",
"indian rupee sign": "\u5370\u5ea6\u5362\u6bd4",
"turkish lira sign": "\u571f\u8033\u5176\u91cc\u62c9",
"nordic mark sign": "\u5317\u6b27\u9a6c\u514b",
"manat sign": "\u9a6c\u7eb3\u7279\u7b26\u53f7",
"ruble sign": "\u5362\u5e03\u7b26\u53f7",
"yen character": "\u65e5\u5143\u5b57\u6837",
"yuan character": "\u4eba\u6c11\u5e01\u5143\u5b57\u6837",
"yuan character, in hong kong and taiwan": "\u5143\u5b57\u6837\uff08\u6e2f\u53f0\u5730\u533a\uff09",
"yen\/yuan character variant one": "\u5143\u5b57\u6837\uff08\u5927\u5199\uff09",
"Loading emoticons...": "\u52a0\u8f7d\u8868\u60c5\u7b26\u53f7...",
"Could not load emoticons": "\u4e0d\u80fd\u52a0\u8f7d\u8868\u60c5\u7b26\u53f7",
"People": "\u4eba\u7c7b",
"Animals and Nature": "\u52a8\u7269\u548c\u81ea\u7136",
"Food and Drink": "\u98df\u7269\u548c\u996e\u54c1",
"Activity": "\u6d3b\u52a8",
"Travel and Places": "\u65c5\u6e38\u548c\u5730\u70b9",
"Objects": "\u7269\u4ef6",
"Flags": "\u65d7\u5e1c",
"Characters": "\u5b57\u7b26",
"Characters (no spaces)": "\u5b57\u7b26(\u65e0\u7a7a\u683c)",
"{0} characters": "{0} \u4e2a\u5b57\u7b26",
"Error: Form submit field collision.": "\u9519\u8bef: \u8868\u5355\u63d0\u4ea4\u5b57\u6bb5\u51b2\u7a81\u3002",
"Error: No form element found.": "\u9519\u8bef: \u6ca1\u6709\u8868\u5355\u63a7\u4ef6\u3002",
"Update": "\u66f4\u65b0",
"Color swatch": "\u989c\u8272\u6837\u672c",
"Turquoise": "\u9752\u7eff\u8272",
"Green": "\u7eff\u8272",
"Blue": "\u84dd\u8272",
"Purple": "\u7d2b\u8272",
"Navy Blue": "\u6d77\u519b\u84dd",
"Dark Turquoise": "\u6df1\u84dd\u7eff\u8272",
"Dark Green": "\u6df1\u7eff\u8272",
"Medium Blue": "\u4e2d\u84dd\u8272",
"Medium Purple": "\u4e2d\u7d2b\u8272",
"Midnight Blue": "\u6df1\u84dd\u8272",
"Yellow": "\u9ec4\u8272",
"Orange": "\u6a59\u8272",
"Red": "\u7ea2\u8272",
"Light Gray": "\u6d45\u7070\u8272",
"Gray": "\u7070\u8272",
"Dark Yellow": "\u6697\u9ec4\u8272",
"Dark Orange": "\u6df1\u6a59\u8272",
"Dark Red": "\u6df1\u7ea2\u8272",
"Medium Gray": "\u4e2d\u7070\u8272",
"Dark Gray": "\u6df1\u7070\u8272",
"Light Green": "\u6d45\u7eff\u8272",
"Light Yellow": "\u6d45\u9ec4\u8272",
"Light Red": "\u6d45\u7ea2\u8272",
"Light Purple": "\u6d45\u7d2b\u8272",
"Light Blue": "\u6d45\u84dd\u8272",
"Dark Purple": "\u6df1\u7d2b\u8272",
"Dark Blue": "\u6df1\u84dd\u8272",
"Black": "\u9ed1\u8272",
"White": "\u767d\u8272",
"Switch to or from fullscreen mode": "\u5207\u6362\u5168\u5c4f\u6a21\u5f0f",
"Open help dialog": "\u6253\u5f00\u5e2e\u52a9\u5bf9\u8bdd\u6846",
"history": "\u5386\u53f2",
"styles": "\u6837\u5f0f",
"formatting": "\u683c\u5f0f\u5316",
"alignment": "\u5bf9\u9f50",
"indentation": "\u7f29\u8fdb",
"Font": "\u5b57\u4f53",
"Size": "\u5b57\u53f7",
"More...": "\u66f4\u591a...",
"Select...": "\u9009\u62e9...",
"Preferences": "\u9996\u9009\u9879",
"Yes": "\u662f",
"No": "\u5426",
"Keyboard Navigation": "\u952e\u76d8\u6307\u5f15",
"Version": "\u7248\u672c",
"Code view": "\u4ee3\u7801\u89c6\u56fe",
"Open popup menu for split buttons": "\u6253\u5f00\u5f39\u51fa\u5f0f\u83dc\u5355\uff0c\u7528\u4e8e\u62c6\u5206\u6309\u94ae",
"List Properties": "\u5217\u8868\u5c5e\u6027",
"List properties...": "\u6807\u9898\u5b57\u4f53\u5c5e\u6027",
"Start list at number": "\u4ee5\u6570\u5b57\u5f00\u59cb\u5217\u8868",
"Line height": "\u884c\u9ad8",
"comments": "\u5907\u6ce8",
"Format Painter": "\u683c\u5f0f\u5237",
"Insert\/edit iframe": "\u63d2\u5165\/\u7f16\u8f91\u6846\u67b6",
"Capitalization": "\u5927\u5199",
"lowercase": "\u5c0f\u5199",
"UPPERCASE": "\u5927\u5199",
"Title Case": "\u9996\u5b57\u6bcd\u5927\u5199",
"permanent pen": "\u8bb0\u53f7\u7b14",
"Permanent Pen Properties": "\u6c38\u4e45\u7b14\u5c5e\u6027",
"Permanent pen properties...": "\u6c38\u4e45\u7b14\u5c5e\u6027...",
"case change": "\u6848\u4f8b\u66f4\u6539",
"page embed": "\u9875\u9762\u5d4c\u5165",
"Advanced sort...": "\u9ad8\u7ea7\u6392\u5e8f...",
"Advanced Sort": "\u9ad8\u7ea7\u6392\u5e8f",
"Sort table by column ascending": "\u6309\u5217\u5347\u5e8f\u8868",
"Sort table by column descending": "\u6309\u5217\u964d\u5e8f\u8868",
"Sort": "\u6392\u5e8f",
"Order": "\u6392\u5e8f",
"Sort by": "\u6392\u5e8f\u65b9\u5f0f",
"Ascending": "\u5347\u5e8f",
"Descending": "\u964d\u5e8f",
"Column {0}": "\u5217{0}",
"Row {0}": "\u884c{0}",
"Spellcheck...": "\u62fc\u5199\u68c0\u67e5...",
"Misspelled word": "\u62fc\u5199\u9519\u8bef\u7684\u5355\u8bcd",
"Suggestions": "\u5efa\u8bae",
"Change": "\u66f4\u6539",
"Finding word suggestions": "\u67e5\u627e\u5355\u8bcd\u5efa\u8bae",
"Success": "\u6210\u529f",
"Repair": "\u4fee\u590d",
"Issue {0} of {1}": "\u5171\u8ba1{1}\u95ee\u9898{0}",
"Images must be marked as decorative or have an alternative text description": "\u56fe\u50cf\u5fc5\u987b\u6807\u8bb0\u4e3a\u88c5\u9970\u6027\u6216\u5177\u6709\u66ff\u4ee3\u6587\u672c\u63cf\u8ff0",
"Images must have an alternative text description. Decorative images are not allowed.": "\u56fe\u50cf\u5fc5\u987b\u5177\u6709\u66ff\u4ee3\u6587\u672c\u63cf\u8ff0\u3002\u4e0d\u5141\u8bb8\u4f7f\u7528\u88c5\u9970\u56fe\u50cf\u3002",
"Or provide alternative text:": "\u6216\u63d0\u4f9b\u5907\u9009\u6587\u672c\uff1a",
"Make image decorative:": "\u4f7f\u56fe\u50cf\u88c5\u9970\uff1a",
"ID attribute must be unique": "ID \u5c5e\u6027\u5fc5\u987b\u662f\u552f\u4e00\u7684",
"Make ID unique": "\u4f7f ID \u72ec\u4e00\u65e0\u4e8c",
"Keep this ID and remove all others": "\u4fdd\u7559\u6b64 ID \u5e76\u5220\u9664\u6240\u6709\u5176\u4ed6",
"Remove this ID": "\u5220\u9664\u6b64 ID",
"Remove all IDs": "\u6e05\u9664\u5168\u90e8IDs",
"Checklist": "\u6e05\u5355",
"Anchor": "\u951a\u70b9",
"Special character": "\u7279\u6b8a\u7b26\u53f7",
"Code sample": "\u4ee3\u7801\u793a\u4f8b",
"Color": "\u989c\u8272",
"Document properties": "\u6587\u6863\u5c5e\u6027",
"Image description": "\u56fe\u7247\u63cf\u8ff0",
"Image": "\u56fe\u7247",
"Insert link": "\u63d2\u5165\u94fe\u63a5",
"Target": "\u6253\u5f00\u65b9\u5f0f",
"Link": "\u94fe\u63a5",
"Poster": "\u5c01\u9762",
"Media": "\u5a92\u4f53",
"Print": "\u6253\u5370",
"Prev": "\u4e0a\u4e00\u4e2a",
"Find and replace": "\u67e5\u627e\u548c\u66ff\u6362",
"Whole words": "\u5168\u5b57\u5339\u914d",
"Insert template": "\u63d2\u5165\u6a21\u677f"
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/langs/zh_TW.js
================================================
tinymce.addI18n('zh_TW',{
"Redo": "\u91cd\u505a",
"Undo": "\u64a4\u92b7",
"Cut": "\u526a\u4e0b",
"Copy": "\u8907\u88fd",
"Paste": "\u8cbc\u4e0a",
"Select all": "\u5168\u9078",
"New document": "\u65b0\u6587\u4ef6",
"Ok": "\u78ba\u5b9a",
"Cancel": "\u53d6\u6d88",
"Visual aids": "\u5c0f\u5e6b\u624b",
"Bold": "\u7c97\u9ad4",
"Italic": "\u659c\u9ad4",
"Underline": "\u4e0b\u5283\u7dda",
"Strikethrough": "\u522a\u9664\u7dda",
"Superscript": "\u4e0a\u6a19",
"Subscript": "\u4e0b\u6a19",
"Clear formatting": "\u6e05\u9664\u683c\u5f0f",
"Align left": "\u5de6\u908a\u5c0d\u9f4a",
"Align center": "\u4e2d\u9593\u5c0d\u9f4a",
"Align right": "\u53f3\u908a\u5c0d\u9f4a",
"Justify": "\u5de6\u53f3\u5c0d\u9f4a",
"Bullet list": "\u9805\u76ee\u6e05\u55ae",
"Numbered list": "\u6578\u5b57\u6e05\u55ae",
"Decrease indent": "\u6e1b\u5c11\u7e2e\u6392",
"Increase indent": "\u589e\u52a0\u7e2e\u6392",
"Close": "\u95dc\u9589",
"Formats": "\u683c\u5f0f",
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u60a8\u7684\u700f\u89bd\u5668\u4e0d\u652f\u63f4\u5b58\u53d6\u526a\u8cbc\u7c3f\uff0c\u53ef\u4ee5\u4f7f\u7528\u5feb\u901f\u9375 Ctrl + X\/C\/V \u4ee3\u66ff\u526a\u4e0b\u3001\u8907\u88fd\u8207\u8cbc\u4e0a\u3002",
"Headers": "\u6a19\u984c",
"Header 1": "\u6a19\u984c 1",
"Header 2": "\u6a19\u984c 2",
"Header 3": "\u6a19\u984c 3",
"Header 4": "\u6a19\u984c 4",
"Header 5": "\u6a19\u984c 5",
"Header 6": "\u6a19\u984c 6",
"Headings": "\u6a19\u984c",
"Heading 1": "\u6a19\u984c1",
"Heading 2": "\u6a19\u984c2",
"Heading 3": "\u6a19\u984c3",
"Heading 4": "\u6a19\u984c4",
"Heading 5": "\u6a19\u984c5",
"Heading 6": "\u6a19\u984c6",
"Preformatted": "\u9810\u5148\u683c\u5f0f\u5316\u7684",
"Div": "Div",
"Pre": "Pre",
"Code": "\u4ee3\u78bc",
"Paragraph": "\u6bb5\u843d",
"Blockquote": "\u5f15\u6587\u5340\u584a",
"Inline": "\u5167\u806f",
"Blocks": "\u57fa\u584a",
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u76ee\u524d\u5c07\u4ee5\u7d14\u6587\u5b57\u7684\u6a21\u5f0f\u8cbc\u4e0a\uff0c\u60a8\u53ef\u4ee5\u518d\u9ede\u9078\u4e00\u6b21\u53d6\u6d88\u3002",
"Fonts": "\u5b57\u578b",
"Font Sizes": "\u5b57\u578b\u5927\u5c0f",
"Class": "\u985e\u578b",
"Browse for an image": "\u5f9e\u5716\u7247\u4e2d\u700f\u89bd",
"OR": "\u6216",
"Drop an image here": "\u62d6\u66f3\u5716\u7247\u81f3\u6b64",
"Upload": "\u4e0a\u50b3",
"Block": "\u5340\u584a",
"Align": "\u5c0d\u9f4a",
"Default": "\u9810\u8a2d",
"Circle": "\u7a7a\u5fc3\u5713",
"Disc": "\u5be6\u5fc3\u5713",
"Square": "\u6b63\u65b9\u5f62",
"Lower Alpha": "\u5c0f\u5beb\u82f1\u6587\u5b57\u6bcd",
"Lower Greek": "\u5e0c\u81d8\u5b57\u6bcd",
"Lower Roman": "\u5c0f\u5beb\u7f85\u99ac\u6578\u5b57",
"Upper Alpha": "\u5927\u5beb\u82f1\u6587\u5b57\u6bcd",
"Upper Roman": "\u5927\u5beb\u7f85\u99ac\u6578\u5b57",
"Anchor...": "\u9328\u9ede...",
"Name": "\u540d\u7a31",
"Id": "Id",
"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id\u61c9\u4ee5\u5b57\u6bcd\u958b\u982d\uff0c\u5f8c\u9762\u63a5\u8457\u5b57\u6bcd\uff0c\u6578\u5b57\uff0c\u7834\u6298\u865f\uff0c\u9ede\u6578\uff0c\u5192\u865f\u6216\u4e0b\u5283\u7dda\u3002",
"You have unsaved changes are you sure you want to navigate away?": "\u7de8\u8f2f\u5c1a\u672a\u88ab\u5132\u5b58\uff0c\u4f60\u78ba\u5b9a\u8981\u96e2\u958b\uff1f",
"Restore last draft": "\u8f09\u5165\u4e0a\u4e00\u6b21\u7de8\u8f2f\u7684\u8349\u7a3f",
"Special character...": "\u7279\u6b8a\u5b57\u5143......",
"Source code": "\u539f\u59cb\u78bc",
"Insert\/Edit code sample": "\u63d2\u5165\/\u7de8\u8f2f \u7a0b\u5f0f\u78bc\u7bc4\u4f8b",
"Language": "\u8a9e\u8a00",
"Code sample...": "\u7a0b\u5f0f\u78bc\u7bc4\u4f8b...",
"Color Picker": "\u9078\u8272\u5668",
"R": "\u7d05",
"G": "\u7da0",
"B": "\u85cd",
"Left to right": "\u5f9e\u5de6\u5230\u53f3",
"Right to left": "\u5f9e\u53f3\u5230\u5de6",
"Emoticons...": "\u8868\u60c5\u7b26\u865f\u2026",
"Metadata and Document Properties": "\u5f8c\u8a2d\u8cc7\u6599\u8207\u6587\u4ef6\u5c6c\u6027",
"Title": "\u6a19\u984c",
"Keywords": "\u95dc\u9375\u5b57",
"Description": "\u63cf\u8ff0",
"Robots": "\u6a5f\u5668\u4eba",
"Author": "\u4f5c\u8005",
"Encoding": "\u7de8\u78bc",
"Fullscreen": "\u5168\u87a2\u5e55",
"Action": "\u52d5\u4f5c",
"Shortcut": "\u5feb\u901f\u9375",
"Help": "\u5e6b\u52a9",
"Address": "\u5730\u5740",
"Focus to menubar": "\u8df3\u81f3\u9078\u55ae\u5217",
"Focus to toolbar": "\u8df3\u81f3\u5de5\u5177\u5217",
"Focus to element path": "\u8df3\u81f3HTML\u5143\u7d20\u5217",
"Focus to contextual toolbar": "\u8df3\u81f3\u5feb\u6377\u9078\u55ae",
"Insert link (if link plugin activated)": "\u65b0\u589e\u6377\u5f91 (\u6377\u5f91\u5916\u639b\u555f\u7528\u6642)",
"Save (if save plugin activated)": "\u5132\u5b58 (\u5132\u5b58\u5916\u639b\u555f\u7528\u6642)",
"Find (if searchreplace plugin activated)": "\u5c0b\u627e (\u5c0b\u627e\u53d6\u4ee3\u5916\u639b\u555f\u7528\u6642)",
"Plugins installed ({0}):": "({0}) \u500b\u5916\u639b\u5df2\u5b89\u88dd\uff1a",
"Premium plugins:": "\u52a0\u503c\u5916\u639b\uff1a",
"Learn more...": "\u4e86\u89e3\u66f4\u591a...",
"You are using {0}": "\u60a8\u6b63\u5728\u4f7f\u7528 {0}",
"Plugins": "\u5916\u639b",
"Handy Shortcuts": "\u5feb\u901f\u9375",
"Horizontal line": "\u6c34\u5e73\u7dda",
"Insert\/edit image": "\u63d2\u5165\/\u7de8\u8f2f \u5716\u7247",
"Image description": "\u5716\u7247\u63cf\u8ff0",
"Source": "\u5716\u7247\u7db2\u5740",
"Dimensions": "\u5c3a\u5bf8",
"Constrain proportions": "\u7b49\u6bd4\u4f8b\u7e2e\u653e",
"General": "\u4e00\u822c",
"Advanced": "\u9032\u968e",
"Style": "\u6a23\u5f0f",
"Vertical space": "\u9ad8\u5ea6",
"Horizontal space": "\u5bec\u5ea6",
"Border": "\u908a\u6846",
"Insert image": "\u63d2\u5165\u5716\u7247",
"Image...": "\u5716\u7247......",
"Image list": "\u5716\u7247\u6e05\u55ae",
"Rotate counterclockwise": "\u9006\u6642\u91dd\u65cb\u8f49",
"Rotate clockwise": "\u9806\u6642\u91dd\u65cb\u8f49",
"Flip vertically": "\u5782\u76f4\u7ffb\u8f49",
"Flip horizontally": "\u6c34\u5e73\u7ffb\u8f49",
"Edit image": "\u7de8\u8f2f\u5716\u7247",
"Image options": "\u5716\u7247\u9078\u9805",
"Zoom in": "\u653e\u5927",
"Zoom out": "\u7e2e\u5c0f",
"Crop": "\u88c1\u526a",
"Resize": "\u8abf\u6574\u5927\u5c0f",
"Orientation": "\u65b9\u5411",
"Brightness": "\u4eae\u5ea6",
"Sharpen": "\u92b3\u5316",
"Contrast": "\u5c0d\u6bd4",
"Color levels": "\u984f\u8272\u5c64\u6b21",
"Gamma": "\u4f3d\u99ac\u503c",
"Invert": "\u53cd\u8f49",
"Apply": "\u61c9\u7528",
"Back": "\u5f8c\u9000",
"Insert date\/time": "\u63d2\u5165 \u65e5\u671f\/\u6642\u9593",
"Date\/time": "\u65e5\u671f\/\u6642\u9593",
"Insert\/Edit Link": "\u63d2\u5165\/\u7de8\u8f2f\u9023\u7d50",
"Insert\/edit link": "\u63d2\u5165\/\u7de8\u8f2f\u9023\u7d50",
"Text to display": "\u986f\u793a\u6587\u5b57",
"Url": "\u7db2\u5740",
"Open link in...": "\u958b\u555f\u9023\u7d50\u65bc...",
"Current window": "\u76ee\u524d\u8996\u7a97",
"None": "\u7121",
"New window": "\u53e6\u958b\u8996\u7a97",
"Remove link": "\u79fb\u9664\u9023\u7d50",
"Anchors": "\u52a0\u5165\u9328\u9ede",
"Link...": "\u9023\u7d50...",
"Paste or type a link": "\u8cbc\u4e0a\u6216\u8f38\u5165\u9023\u7d50",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5beb\u7684URL\u70ba\u96fb\u5b50\u90f5\u4ef6\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7db4\u55ce\uff1f",
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5beb\u7684URL\u5c6c\u65bc\u5916\u90e8\u93c8\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7db4\u55ce\uff1f",
"Link list": "\u9023\u7d50\u6e05\u55ae",
"Insert video": "\u63d2\u5165\u5f71\u97f3",
"Insert\/edit video": "\u63d2\u4ef6\/\u7de8\u8f2f \u5f71\u97f3",
"Insert\/edit media": "\u63d2\u5165\/\u7de8\u8f2f \u5a92\u9ad4",
"Alternative source": "\u66ff\u4ee3\u5f71\u97f3",
"Alternative source URL": "\u66ff\u4ee3\u4f86\u6e90URL",
"Media poster (Image URL)": "\u5a92\u9ad4\u6d77\u5831\uff08\u5f71\u50cfImage URL\uff09",
"Paste your embed code below:": "\u8acb\u5c07\u60a8\u7684\u5d4c\u5165\u5f0f\u7a0b\u5f0f\u78bc\u8cbc\u5728\u4e0b\u9762:",
"Embed": "\u5d4c\u5165\u78bc",
"Media...": "\u5a92\u9ad4...",
"Nonbreaking space": "\u4e0d\u5206\u884c\u7684\u7a7a\u683c",
"Page break": "\u5206\u9801",
"Paste as text": "\u4ee5\u7d14\u6587\u5b57\u8cbc\u4e0a",
"Preview": "\u9810\u89bd",
"Print...": "\u5217\u5370...",
"Save": "\u5132\u5b58",
"Find": "\u641c\u5c0b",
"Replace with": "\u66f4\u63db",
"Replace": "\u66ff\u63db",
"Replace all": "\u66ff\u63db\u5168\u90e8",
"Previous": "\u4e0a\u4e00\u500b",
"Next": "\u4e0b\u4e00\u500b",
"Find and replace...": "\u5c0b\u627e\u53ca\u53d6\u4ee3...",
"Could not find the specified string.": "\u7121\u6cd5\u67e5\u8a62\u5230\u6b64\u7279\u5b9a\u5b57\u4e32",
"Match case": "\u76f8\u5339\u914d\u6848\u4ef6",
"Find whole words only": "\u50c5\u627e\u51fa\u5b8c\u6574\u5b57\u532f",
"Spell check": "\u62fc\u5beb\u6aa2\u67e5",
"Ignore": "\u5ffd\u7565",
"Ignore all": "\u5ffd\u7565\u6240\u6709",
"Finish": "\u5b8c\u6210",
"Add to Dictionary": "\u52a0\u5165\u5b57\u5178\u4e2d",
"Insert table": "\u63d2\u5165\u8868\u683c",
"Table properties": "\u8868\u683c\u5c6c\u6027",
"Delete table": "\u522a\u9664\u8868\u683c",
"Cell": "\u5132\u5b58\u683c",
"Row": "\u5217",
"Column": "\u884c",
"Cell properties": "\u5132\u5b58\u683c\u5c6c\u6027",
"Merge cells": "\u5408\u4f75\u5132\u5b58\u683c",
"Split cell": "\u5206\u5272\u5132\u5b58\u683c",
"Insert row before": "\u63d2\u5165\u5217\u5728...\u4e4b\u524d",
"Insert row after": "\u63d2\u5165\u5217\u5728...\u4e4b\u5f8c",
"Delete row": "\u522a\u9664\u5217",
"Row properties": "\u5217\u5c6c\u6027",
"Cut row": "\u526a\u4e0b\u5217",
"Copy row": "\u8907\u88fd\u5217",
"Paste row before": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u524d",
"Paste row after": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u5f8c",
"Insert column before": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u524d",
"Insert column after": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u5f8c",
"Delete column": "\u522a\u9664\u884c",
"Cols": "\u6b04\u4f4d\u6bb5",
"Rows": "\u5217",
"Width": "\u5bec\u5ea6",
"Height": "\u9ad8\u5ea6",
"Cell spacing": "\u5132\u5b58\u683c\u5f97\u9593\u8ddd",
"Cell padding": "\u5132\u5b58\u683c\u7684\u908a\u8ddd",
"Show caption": "\u986f\u793a\u6a19\u984c",
"Left": "\u5de6\u908a",
"Center": "\u4e2d\u9593",
"Right": "\u53f3\u908a",
"Cell type": "\u5132\u5b58\u683c\u7684\u985e\u578b",
"Scope": "\u7bc4\u570d",
"Alignment": "\u5c0d\u9f4a",
"H Align": "\u6c34\u5e73\u4f4d\u7f6e",
"V Align": "\u5782\u76f4\u4f4d\u7f6e",
"Top": "\u7f6e\u9802",
"Middle": "\u7f6e\u4e2d",
"Bottom": "\u7f6e\u5e95",
"Header cell": "\u6a19\u982d\u5132\u5b58\u683c",
"Row group": "\u5217\u7fa4\u7d44",
"Column group": "\u6b04\u4f4d\u7fa4\u7d44",
"Row type": "\u884c\u7684\u985e\u578b",
"Header": "\u6a19\u982d",
"Body": "\u4e3b\u9ad4",
"Footer": "\u9801\u5c3e",
"Border color": "\u908a\u6846\u984f\u8272",
"Insert template...": "\u63d2\u5165\u6a23\u7248...",
"Templates": "\u6a23\u7248",
"Template": "\u6a23\u677f",
"Text color": "\u6587\u5b57\u984f\u8272",
"Background color": "\u80cc\u666f\u984f\u8272",
"Custom...": "\u81ea\u8a02",
"Custom color": "\u81ea\u8a02\u984f\u8272",
"No color": "No color",
"Remove color": "\u79fb\u9664\u984f\u8272",
"Table of Contents": "\u76ee\u9304",
"Show blocks": "\u986f\u793a\u5340\u584a\u8cc7\u8a0a",
"Show invisible characters": "\u986f\u793a\u96b1\u85cf\u5b57\u5143",
"Word count": "\u8a08\u7b97\u5b57\u6578",
"Count": "\u8a08\u7b97",
"Document": "\u6587\u4ef6",
"Selection": "\u9078\u9805",
"Words": "\u5b57\u6578",
"Words: {0}": "\u5b57\u6578\uff1a{0}",
"{0} words": "{0} \u5b57\u5143",
"File": "\u6a94\u6848",
"Edit": "\u7de8\u8f2f",
"Insert": "\u63d2\u5165",
"View": "\u6aa2\u8996",
"Format": "\u683c\u5f0f",
"Table": "\u8868\u683c",
"Tools": "\u5de5\u5177",
"Powered by {0}": "\u7531 {0} \u63d0\u4f9b",
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u8c50\u5bcc\u7684\u6587\u672c\u5340\u57df\u3002\u6309ALT-F9\u524d\u5f80\u4e3b\u9078\u55ae\u3002\u6309ALT-F10\u547c\u53eb\u5de5\u5177\u6b04\u3002\u6309ALT-0\u5c0b\u6c42\u5e6b\u52a9",
"Image title": "\u5716\u7247\u6a19\u984c",
"Border width": "\u6846\u7dda\u5bec\u5ea6",
"Border style": "\u6846\u7dda\u6a23\u5f0f",
"Error": "\u932f\u8aa4",
"Warn": "\u8b66\u544a",
"Valid": "\u6709\u6548",
"To open the popup, press Shift+Enter": "\u8981\u958b\u555f\u5f48\u51fa\u8996\u7a97\uff0c\u8acb\u6309Shift+Enter",
"Rich Text Area. Press ALT-0 for help.": "\u5bcc\u6587\u672c\u5340\u57df\u3002\u8acb\u6309ALT-0\u5c0b\u6c42\u5354\u52a9\u3002",
"System Font": "\u7cfb\u7d71\u5b57\u578b",
"Failed to upload image: {0}": "\u7121\u6cd5\u4e0a\u50b3\u5f71\u50cf\uff1a{0}",
"Failed to load plugin: {0} from url {1}": "\u7121\u6cd5\u4e0a\u50b3\u63d2\u4ef6\uff1a{0}\u81eaurl{1}",
"Failed to load plugin url: {0}": "\u7121\u6cd5\u4e0a\u50b3\u63d2\u4ef6\uff1a{0}",
"Failed to initialize plugin: {0}": "\u7121\u6cd5\u555f\u52d5\u63d2\u4ef6\uff1a{0}",
"example": "\u7bc4\u4f8b",
"Search": "\u641c\u7d22",
"All": "\u5168\u90e8",
"Currency": "\u8ca8\u5e63",
"Text": "\u6587\u672c",
"Quotations": "\u5f15\u7528",
"Mathematical": "\u6578\u5b78",
"Extended Latin": "\u62c9\u4e01\u5b57\u6bcd\u64f4\u5145",
"Symbols": "\u7b26\u865f",
"Arrows": "\u7bad\u982d",
"User Defined": "\u4f7f\u7528\u8005\u5df2\u5b9a\u7fa9",
"dollar sign": "\u7f8e\u5143\u7b26\u865f",
"currency sign": "\u8ca8\u5e63\u7b26\u865f",
"euro-currency sign": "\u6b50\u5143\u7b26\u865f",
"colon sign": "\u79d1\u6717\u7b26\u865f",
"cruzeiro sign": "\u514b\u9b6f\u8cfd\u7f85\u7b26\u865f",
"french franc sign": "\u6cd5\u6717\u7b26\u865f",
"lira sign": "\u91cc\u62c9\u7b26\u865f",
"mill sign": "\u6587\u7b26\u865f",
"naira sign": "\u5948\u62c9\u7b26\u865f",
"peseta sign": "\u6bd4\u585e\u5854\u7b26\u865f",
"rupee sign": "\u76e7\u6bd4\u7b26\u865f",
"won sign": "\u97d3\u571c\u7b26\u865f",
"new sheqel sign": "\u65b0\u8b1d\u514b\u723e\u7b26\u865f",
"dong sign": "\u8d8a\u5357\u76fe\u7b26\u865f",
"kip sign": "\u8001\u64be\u5e63\u7b26\u865f",
"tugrik sign": "\u8499\u53e4\u5e63\u7b26\u865f",
"drachma sign": "\u5fb7\u514b\u62c9\u99ac\u7b26\u865f",
"german penny symbol": "\u5fb7\u570b\u5206\u7b26\u865f",
"peso sign": "\u62ab\u7d22\u7b26\u865f",
"guarani sign": "\u5df4\u62c9\u572d\u5e63\u7b26\u865f",
"austral sign": "\u963f\u6839\u5ef7\u5e63\u7b26\u865f",
"hryvnia sign": "\u70cf\u514b\u862d\u5e63\u7b26\u865f",
"cedi sign": "\u8fe6\u7d0d\u5e63\u7b26\u865f",
"livre tournois sign": "\u91cc\u5f17\u723e\u7b26\u865f",
"spesmilo sign": "\u570b\u969b\u5e63\u7b26\u865f",
"tenge sign": "\u54c8\u85a9\u514b\u5e63\u7b26\u865f",
"indian rupee sign": "\u5370\u5ea6\u76e7\u6bd4\u7b26\u865f",
"turkish lira sign": "\u571f\u8033\u5176\u91cc\u62c9\u7b26\u865f",
"nordic mark sign": "\u5317\u6b50\u99ac\u514b\u7b26\u865f",
"manat sign": "\u4e9e\u585e\u62dc\u7136\u5e63\u7b26\u865f",
"ruble sign": "\u76e7\u5e03\u7b26\u865f",
"yen character": "\u65e5\u5713\u7b26\u865f",
"yuan character": "\u4eba\u6c11\u5e63\u7b26\u865f",
"yuan character, in hong kong and taiwan": "\u6e2f\u5143\u8207\u53f0\u5e63\u7b26\u865f",
"yen\/yuan character variant one": "\u65e5\u5713\/\u4eba\u6c11\u5e63\u7b26\u865f\u8b8a\u5316\u578b",
"Loading emoticons...": "\u8f09\u5165\u8868\u60c5\u7b26\u865f\u2026",
"Could not load emoticons": "\u7121\u6cd5\u8f09\u5165\u8868\u60c5\u7b26\u865f",
"People": "\u4eba",
"Animals and Nature": "\u52d5\u7269\u8207\u81ea\u7136",
"Food and Drink": "\u98f2\u98df",
"Activity": "\u6d3b\u52d5",
"Travel and Places": "\u65c5\u884c\u8207\u5730\u9ede",
"Objects": "\u7269\u4ef6",
"Flags": "\u65d7\u6a19",
"Characters": "\u5b57\u5143",
"Characters (no spaces)": "\u5b57\u5143\uff08\u7121\u7a7a\u683c\uff09",
"{0} characters": "{0}\u5b57\u5143",
"Error: Form submit field collision.": "\u932f\u8aa4\uff1a\u8868\u683c\u905e\u4ea4\u6b04\u4f4d\u885d\u7a81\u3002",
"Error: No form element found.": "\u932f\u8aa4\uff1a\u627e\u4e0d\u5230\u8868\u683c\u5143\u7d20\u3002",
"Update": "\u66f4\u65b0",
"Color swatch": "\u8272\u5f69\u6a23\u672c",
"Turquoise": "\u571f\u8033\u5176\u85cd",
"Green": "\u7da0\u8272",
"Blue": "\u85cd\u8272",
"Purple": "\u7d2b\u8272",
"Navy Blue": "\u6df1\u85cd\u8272",
"Dark Turquoise": "\u6df1\u571f\u8033\u5176\u85cd",
"Dark Green": "\u6df1\u7da0\u8272",
"Medium Blue": "\u4e2d\u85cd\u8272",
"Medium Purple": "\u4e2d\u7d2b\u8272",
"Midnight Blue": "\u9ed1\u85cd\u8272",
"Yellow": "\u9ec3\u8272",
"Orange": "\u6a59\u8272",
"Red": "\u7d05\u8272",
"Light Gray": "\u6dfa\u7070\u8272",
"Gray": "\u7070\u8272",
"Dark Yellow": "\u6df1\u9ec3\u8272",
"Dark Orange": "\u6df1\u6a59\u8272",
"Dark Red": "\u6697\u7d05\u8272",
"Medium Gray": "\u4e2d\u7070\u8272",
"Dark Gray": "\u6df1\u7070\u8272",
"Light Green": "\u6de1\u7da0\u8272",
"Light Yellow": "\u6dfa\u9ec3\u8272",
"Light Red": "\u6dfa\u7d05\u8272",
"Light Purple": "\u6dfa\u7d2b\u8272",
"Light Blue": "\u6dfa\u85cd\u8272",
"Dark Purple": "\u6df1\u7d2b\u8272",
"Dark Blue": "\u6df1\u85cd\u8272",
"Black": "\u9ed1\u8272",
"White": "\u767d\u8272",
"Switch to or from fullscreen mode": "\u8f49\u63db\u81ea\/\u81f3\u5168\u87a2\u5e55\u6a21\u5f0f",
"Open help dialog": "\u958b\u555f\u5354\u52a9\u5c0d\u8a71",
"history": "\u6b77\u53f2",
"styles": "\u6a23\u5f0f",
"formatting": "\u683c\u5f0f",
"alignment": "\u5c0d\u9f4a",
"indentation": "\u7e2e\u6392",
"permanent pen": "\u6c38\u4e45\u6027\u7b46",
"comments": "\u8a3b\u89e3",
"Format Painter": "\u8907\u88fd\u683c\u5f0f",
"Insert\/edit iframe": "\u63d2\u5165\/\u7de8\u8f2fiframe",
"Capitalization": "\u5927\u5beb",
"lowercase": "\u5c0f\u5beb",
"UPPERCASE": "\u5927\u5beb",
"Title Case": "\u5b57\u9996\u5927\u5beb",
"Permanent Pen Properties": "\u6c38\u4e45\u6a19\u8a18\u5c6c\u6027",
"Permanent pen properties...": "\u6c38\u4e45\u6a19\u8a18\u5c6c\u6027......",
"Font": "\u5b57\u578b",
"Size": "\u5b57\u5f62\u5927\u5c0f",
"More...": "\u66f4\u591a\u8cc7\u8a0a......",
"Spellcheck Language": "\u62fc\u5beb\u8a9e\u8a00",
"Select...": "\u9078\u64c7......",
"Preferences": "\u9996\u9078\u9805",
"Yes": "\u662f",
"No": "\u5426",
"Keyboard Navigation": "\u9375\u76e4\u5c0e\u822a",
"Version": "\u7248\u672c",
"Anchor": "\u52a0\u5165\u9328\u9ede",
"Special character": "\u7279\u6b8a\u5b57\u5143",
"Code sample": "\u7a0b\u5f0f\u78bc\u7bc4\u4f8b",
"Color": "\u984f\u8272",
"Emoticons": "\u8868\u60c5",
"Document properties": "\u6587\u4ef6\u7684\u5c6c\u6027",
"Image": "\u5716\u7247",
"Insert link": "\u63d2\u5165\u9023\u7d50",
"Target": "\u958b\u555f\u65b9\u5f0f",
"Link": "\u9023\u7d50",
"Poster": "\u9810\u89bd\u5716\u7247",
"Media": "\u5a92\u9ad4",
"Print": "\u5217\u5370",
"Prev": "\u4e0a\u4e00\u500b",
"Find and replace": "\u5c0b\u627e\u53ca\u53d6\u4ee3",
"Whole words": "\u6574\u500b\u55ae\u5b57",
"Spellcheck": "\u62fc\u5b57\u6aa2\u67e5",
"Caption": "\u8868\u683c\u6a19\u984c",
"Insert template": "\u63d2\u5165\u6a23\u7248"
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/license.txt
================================================
      GNU LESSER GENERAL PUBLIC LICENSE
           Version 2.1, February 1999

 Copyright (C) 1991, 1999 Free Software Foundation, Inc.
 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

[This is the first released version of the Lesser GPL.  It also counts
 as the successor of the GNU Library Public License, version 2, hence
 the version number 2.1.]

          Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.

  This license, the Lesser General Public License, applies to some
specially designated software packages--typically libraries--of the
Free Software Foundation and other authors who decide to use it.  You
can use it too, but we suggest you first think carefully about whether
this license or the ordinary General Public License is the better
strategy to use in any particular case, based on the explanations below.

  When we speak of free software, we are referring to freedom of use,
not price.  Our General Public Licenses are designed to make sure that
you have the freedom to distribute copies of free software (and charge
for this service if you wish); that you receive source code or can get
it if you want it; that you can change the software and use pieces of
it in new free programs; and that you are informed that you can do
these things.

  To protect your rights, we need to make restrictions that forbid
distributors to deny you these rights or to ask you to surrender these
rights.  These restrictions translate to certain responsibilities for
you if you distribute copies of the library or if you modify it.

  For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you.  You must make sure that they, too, receive or can get the source
code.  If you link other code with the library, you must provide
complete object files to the recipients, so that they can relink them
with the library after making changes to the library and recompiling
it.  And you must show them these terms so they know their rights.

  We protect your rights with a two-step method: (1) we copyright the
library, and (2) we offer you this license, which gives you legal
permission to copy, distribute and/or modify the library.

  To protect each distributor, we want to make it very clear that
there is no warranty for the free library.  Also, if the library is
modified by someone else and passed on, the recipients should know
that what they have is not the original version, so that the original
author's reputation will not be affected by problems that might be
introduced by others.

  Finally, software patents pose a constant threat to the existence of
any free program.  We wish to make sure that a company cannot
effectively restrict the users of a free program by obtaining a
restrictive license from a patent holder.  Therefore, we insist that
any patent license obtained for a version of the library must be
consistent with the full freedom of use specified in this license.

  Most GNU software, including some libraries, is covered by the
ordinary GNU General Public License.  This license, the GNU Lesser
General Public License, applies to certain designated libraries, and
is quite different from the ordinary General Public License.  We use
this license for certain libraries in order to permit linking those
libraries into non-free programs.

  When a program is linked with a library, whether statically or using
a shared library, the combination of the two is legally speaking a
combined work, a derivative of the original library.  The ordinary
General Public License therefore permits such linking only if the
entire combination fits its criteria of freedom.  The Lesser General
Public License permits more lax criteria for linking other code with
the library.

  We call this license the "Lesser" General Public License because it
does Less to protect the user's freedom than the ordinary General
Public License.  It also provides other free software developers Less
of an advantage over competing non-free programs.  These disadvantages
are the reason we use the ordinary General Public License for many
libraries.  However, the Lesser license provides advantages in certain
special circumstances.

  For example, on rare occasions, there may be a special need to
encourage the widest possible use of a certain library, so that it becomes
a de-facto standard.  To achieve this, non-free programs must be
allowed to use the library.  A more frequent case is that a free
library does the same job as widely used non-free libraries.  In this
case, there is little to gain by limiting the free library to free
software only, so we use the Lesser General Public License.

  In other cases, permission to use a particular library in non-free
programs enables a greater number of people to use a large body of
free software.  For example, permission to use the GNU C Library in
non-free programs enables many more people to use the whole GNU
operating system, as well as its variant, the GNU/Linux operating
system.

  Although the Lesser General Public License is Less protective of the
users' freedom, it does ensure that the user of a program that is
linked with the Library has the freedom and the wherewithal to run
that program using a modified version of the Library.

  The precise terms and conditions for copying, distribution and
modification follow.  Pay close attention to the difference between a
"work based on the library" and a "work that uses the library".  The
former contains code derived from the library, whereas the latter must
be combined with the library in order to run.

      GNU LESSER GENERAL PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. This License Agreement applies to any software library or other
program which contains a notice placed by the copyright holder or
other authorized party saying it may be distributed under the terms of
this Lesser General Public License (also called "this License").
Each licensee is addressed as "you".

  A "library" means a collection of software functions and/or data
prepared so as to be conveniently linked with application programs
(which use some of those functions and data) to form executables.

  The "Library", below, refers to any such software library or work
which has been distributed under these terms.  A "work based on the
Library" means either the Library or any derivative work under
copyright law: that is to say, a work containing the Library or a
portion of it, either verbatim or with modifications and/or translated
straightforwardly into another language.  (Hereinafter, translation is
included without limitation in the term "modification".)

  "Source code" for a work means the preferred form of the work for
making modifications to it.  For a library, complete source code means
all the source code for all modules it contains, plus any associated
interface definition files, plus the scripts used to control compilation
and installation of the library.

  Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope.  The act of
running a program using the Library is not restricted, and output from
such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it).  Whether that is true depends on what the Library does
and what the program that uses the Library does.
  
  1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an
appropriate copyright notice and disclaimer of warranty; keep intact
all the notices that refer to this License and to the absence of any
warranty; and distribute a copy of this License along with the
Library.

  You may charge a fee for the physical act of transferring a copy,
and you may at your option offer warranty protection in exchange for a
fee.

  2. You may modify your copy or copies of the Library or any portion
of it, thus forming a work based on the Library, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:

    a) The modified work must itself be a software library.

    b) You must cause the files modified to carry prominent notices
    stating that you changed the files and the date of any change.

    c) You must cause the whole of the work to be licensed at no
    charge to all third parties under the terms of this License.

    d) If a facility in the modified Library refers to a function or a
    table of data to be supplied by an application program that uses
    the facility, other than as an argument passed when the facility
    is invoked, then you must make a good faith effort to ensure that,
    in the event an application does not supply such function or
    table, the facility still operates, and performs whatever part of
    its purpose remains meaningful.

    (For example, a function in a library to compute square roots has
    a purpose that is entirely well-defined independent of the
    application.  Therefore, Subsection 2d requires that any
    application-supplied function or table used by this function must
    be optional: if the application does not supply it, the square
    root function must still compute square roots.)

These requirements apply to the modified work as a whole.  If
identifiable sections of that work are not derived from the Library,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works.  But when you
distribute the same sections as part of a whole which is a work based
on the Library, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote
it.

Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Library.

In addition, mere aggregation of another work not based on the Library
with the Library (or with a work based on the Library) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.

  3. You may opt to apply the terms of the ordinary GNU General Public
License instead of this License to a given copy of the Library.  To do
this, you must alter all the notices that refer to this License, so
that they refer to the ordinary GNU General Public License, version 2,
instead of to this License.  (If a newer version than version 2 of the
ordinary GNU General Public License has appeared, then you can specify
that version instead if you wish.)  Do not make any other change in
these notices.

  Once this change is made in a given copy, it is irreversible for
that copy, so the ordinary GNU General Public License applies to all
subsequent copies and derivative works made from that copy.

  This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.

  4. You may copy and distribute the Library (or a portion or
derivative of it, under Section 2) in object code or executable form
under the terms of Sections 1 and 2 above provided that you accompany
it with the complete corresponding machine-readable source code, which
must be distributed under the terms of Sections 1 and 2 above on a
medium customarily used for software interchange.

  If distribution of object code is made by offering access to copy
from a designated place, then offering equivalent access to copy the
source code from the same place satisfies the requirement to
distribute the source code, even though third parties are not
compelled to copy the source along with the object code.

  5. A program that contains no derivative of any portion of the
Library, but is designed to work with the Library by being compiled or
linked with it, is called a "work that uses the Library".  Such a
work, in isolation, is not a derivative work of the Library, and
therefore falls outside the scope of this License.

  However, linking a "work that uses the Library" with the Library
creates an executable that is a derivative of the Library (because it
contains portions of the Library), rather than a "work that uses the
library".  The executable is therefore covered by this License.
Section 6 states terms for distribution of such executables.

  When a "work that uses the Library" uses material from a header file
that is part of the Library, the object code for the work may be a
derivative work of the Library even though the source code is not.
Whether this is true is especially significant if the work can be
linked without the Library, or if the work is itself a library.  The
threshold for this to be true is not precisely defined by law.

  If such an object file uses only numerical parameters, data
structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work.  (Executables containing this object code plus portions of the
Library will still fall under Section 6.)

  Otherwise, if the work is a derivative of the Library, you may
distribute the object code for the work under the terms of Section 6.
Any executables containing that work also fall under Section 6,
whether or not they are linked directly with the Library itself.

  6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.

  You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License.  You must supply a copy of this License.  If the work
during execution displays copyright notices, you must include the
copyright notice for the Library among them, as well as a reference
directing the user to the copy of this License.  Also, you must do one
of these things:

    a) Accompany the work with the complete corresponding
    machine-readable source code for the Library including whatever
    changes were used in the work (which must be distributed under
    Sections 1 and 2 above); and, if the work is an executable linked
    with the Library, with the complete machine-readable "work that
    uses the Library", as object code and/or source code, so that the
    user can modify the Library and then relink to produce a modified
    executable containing the modified Library.  (It is understood
    that the user who changes the contents of definitions files in the
    Library will not necessarily be able to recompile the application
    to use the modified definitions.)

    b) Use a suitable shared library mechanism for linking with the
    Library.  A suitable mechanism is one that (1) uses at run time a
    copy of the library already present on the user's computer system,
    rather than copying library functions into the executable, and (2)
    will operate properly with a modified version of the library, if
    the user installs one, as long as the modified version is
    interface-compatible with the version that the work was made with.

    c) Accompany the work with a written offer, valid for at
    least three years, to give the same user the materials
    specified in Subsection 6a, above, for a charge no more
    than the cost of performing this distribution.

    d) If distribution of the work is made by offering access to copy
    from a designated place, offer equivalent access to copy the above
    specified materials from the same place.

    e) Verify that the user has already received a copy of these
    materials or that you have already sent this user a copy.

  For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it.  However, as a special exception,
the materials to be distributed need not include anything that is
normally distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.

  It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
accompany the operating system.  Such a contradiction means you cannot
use both them and the Library together in an executable that you
distribute.

  7. You may place library facilities that are a work based on the
Library side-by-side in a single library together with other library
facilities not covered by this License, and distribute such a combined
library, provided that the separate distribution of the work based on
the Library and of the other library facilities is otherwise
permitted, and provided that you do these two things:

    a) Accompany the combined library with a copy of the same work
    based on the Library, uncombined with any other library
    facilities.  This must be distributed under the terms of the
    Sections above.

    b) Give prominent notice with the combined library of the fact
    that part of it is a work based on the Library, and explaining
    where to find the accompanying uncombined form of the same work.

  8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License.  Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License.  However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.

  9. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Library or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.

  10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the
original licensor to copy, distribute, link with or modify the Library
subject to these terms and conditions.  You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties with
this License.

  11. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Library at all.  For example, if a patent
license would not permit royalty-free redistribution of the Library by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Library.

If any portion of this section is held invalid or unenforceable under any
particular circumstance, the balance of the section is intended to apply,
and the section as a whole is intended to apply in other circumstances.

It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system which is
implemented by public license practices.  Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.

This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.

  12. If the distribution and/or use of the Library is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Library under this License may add
an explicit geographical distribution limitation excluding those countries,
so that distribution is permitted only in or among countries not thus
excluded.  In such case, this License incorporates the limitation as if
written in the body of this License.

  13. The Free Software Foundation may publish revised and/or new
versions of the Lesser General Public License from time to time.
Such new versions will be similar in spirit to the present version,
but may differ in detail to address new problems or concerns.

Each version is given a distinguishing version number.  If the Library
specifies a version number of this License which applies to it and
"any later version", you have the option of following the terms and
conditions either of that version or of any later version published by
the Free Software Foundation.  If the Library does not specify a
license version number, you may choose any version ever published by
the Free Software Foundation.

  14. If you wish to incorporate parts of the Library into other free
programs whose distribution conditions are incompatible with these,
write to the author to ask for permission.  For software which is
copyrighted by the Free Software Foundation, write to the Free
Software Foundation; we sometimes make exceptions for this.  Our
decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing
and reuse of software generally.

          NO WARRANTY

  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.

         END OF TERMS AND CONDITIONS

           How to Apply These Terms to Your New Libraries

  If you develop a new library, and you want it to be of the greatest
possible use to the public, we recommend making it free software that
everyone can redistribute and change.  You can do so by permitting
redistribution under these terms (or, alternatively, under the terms of the
ordinary General Public License).

  To apply these terms, attach the following notices to the library.  It is
safest to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.

    
    Copyright (C)   

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

Also add information on how to contact you by electronic and paper mail.

You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the library, if
necessary.  Here is a sample; alter the names:

  Yoyodyne, Inc., hereby disclaims all copyright interest in the
  library `Frob' (a library for tweaking knobs) written by James Random Hacker.

  , 1 April 1990
  Ty Coon, President of Vice

That's all there is to it!




================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/plugins/emoticons/js/emojiimages.js
================================================
// Source: npm package: emojilib
// Images provided by twemoji: https://github.com/twitter/twemoji
window.tinymce.Resource.add("tinymce.plugins.emoticons", {
  100: {
    keywords: [ "score", "perfect", "numbers", "century", "exam", "quiz", "test", "pass", "hundred" ],
    char: '\ud83d\udcaf',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  1234: {
    keywords: [ "numbers", "blue-square" ],
    char: '\ud83d\udd22',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  grinning: {
    keywords: [ "face", "smile", "happy", "joy", ":D", "grin" ],
    char: '\ud83d\ude00',
    fitzpatrick_scale: false,
    category: "people"
  },
  grimacing: {
    keywords: [ "face", "grimace", "teeth" ],
    char: '\ud83d\ude2c',
    fitzpatrick_scale: false,
    category: "people"
  },
  grin: {
    keywords: [ "face", "happy", "smile", "joy", "kawaii" ],
    char: '\ud83d\ude01',
    fitzpatrick_scale: false,
    category: "people"
  },
  joy: {
    keywords: [ "face", "cry", "tears", "weep", "happy", "happytears", "haha" ],
    char: '\ud83d\ude02',
    fitzpatrick_scale: false,
    category: "people"
  },
  rofl: {
    keywords: [ "face", "rolling", "floor", "laughing", "lol", "haha" ],
    char: '\ud83e\udd23',
    fitzpatrick_scale: false,
    category: "people"
  },
  partying: {
    keywords: [ "face", "celebration", "woohoo" ],
    char: '\ud83e\udd73',
    fitzpatrick_scale: false,
    category: "people"
  },
  smiley: {
    keywords: [ "face", "happy", "joy", "haha", ":D", ":)", "smile", "funny" ],
    char: '\ud83d\ude03',
    fitzpatrick_scale: false,
    category: "people"
  },
  smile: {
    keywords: [ "face", "happy", "joy", "funny", "haha", "laugh", "like", ":D", ":)" ],
    char: '\ud83d\ude04',
    fitzpatrick_scale: false,
    category: "people"
  },
  sweat_smile: {
    keywords: [ "face", "hot", "happy", "laugh", "sweat", "smile", "relief" ],
    char: '\ud83d\ude05',
    fitzpatrick_scale: false,
    category: "people"
  },
  laughing: {
    keywords: [ "happy", "joy", "lol", "satisfied", "haha", "face", "glad", "XD", "laugh" ],
    char: '\ud83d\ude06',
    fitzpatrick_scale: false,
    category: "people"
  },
  innocent: {
    keywords: [ "face", "angel", "heaven", "halo" ],
    char: '\ud83d\ude07',
    fitzpatrick_scale: false,
    category: "people"
  },
  wink: {
    keywords: [ "face", "happy", "mischievous", "secret", ";)", "smile", "eye" ],
    char: '\ud83d\ude09',
    fitzpatrick_scale: false,
    category: "people"
  },
  blush: {
    keywords: [ "face", "smile", "happy", "flushed", "crush", "embarrassed", "shy", "joy" ],
    char: '\ud83d\ude0a',
    fitzpatrick_scale: false,
    category: "people"
  },
  slightly_smiling_face: {
    keywords: [ "face", "smile" ],
    char: '\ud83d\ude42',
    fitzpatrick_scale: false,
    category: "people"
  },
  upside_down_face: {
    keywords: [ "face", "flipped", "silly", "smile" ],
    char: '\ud83d\ude43',
    fitzpatrick_scale: false,
    category: "people"
  },
  relaxed: {
    keywords: [ "face", "blush", "massage", "happiness" ],
    char: '\u263a\ufe0f',
    fitzpatrick_scale: false,
    category: "people"
  },
  yum: {
    keywords: [ "happy", "joy", "tongue", "smile", "face", "silly", "yummy", "nom", "delicious", "savouring" ],
    char: '\ud83d\ude0b',
    fitzpatrick_scale: false,
    category: "people"
  },
  relieved: {
    keywords: [ "face", "relaxed", "phew", "massage", "happiness" ],
    char: '\ud83d\ude0c',
    fitzpatrick_scale: false,
    category: "people"
  },
  heart_eyes: {
    keywords: [ "face", "love", "like", "affection", "valentines", "infatuation", "crush", "heart" ],
    char: '\ud83d\ude0d',
    fitzpatrick_scale: false,
    category: "people"
  },
  smiling_face_with_three_hearts: {
    keywords: [ "face", "love", "like", "affection", "valentines", "infatuation", "crush", "hearts", "adore" ],
    char: '\ud83e\udd70',
    fitzpatrick_scale: false,
    category: "people"
  },
  kissing_heart: {
    keywords: [ "face", "love", "like", "affection", "valentines", "infatuation", "kiss" ],
    char: '\ud83d\ude18',
    fitzpatrick_scale: false,
    category: "people"
  },
  kissing: {
    keywords: [ "love", "like", "face", "3", "valentines", "infatuation", "kiss" ],
    char: '\ud83d\ude17',
    fitzpatrick_scale: false,
    category: "people"
  },
  kissing_smiling_eyes: {
    keywords: [ "face", "affection", "valentines", "infatuation", "kiss" ],
    char: '\ud83d\ude19',
    fitzpatrick_scale: false,
    category: "people"
  },
  kissing_closed_eyes: {
    keywords: [ "face", "love", "like", "affection", "valentines", "infatuation", "kiss" ],
    char: '\ud83d\ude1a',
    fitzpatrick_scale: false,
    category: "people"
  },
  stuck_out_tongue_winking_eye: {
    keywords: [ "face", "prank", "childish", "playful", "mischievous", "smile", "wink", "tongue" ],
    char: '\ud83d\ude1c',
    fitzpatrick_scale: false,
    category: "people"
  },
  zany: {
    keywords: [ "face", "goofy", "crazy" ],
    char: '\ud83e\udd2a',
    fitzpatrick_scale: false,
    category: "people"
  },
  raised_eyebrow: {
    keywords: [ "face", "distrust", "scepticism", "disapproval", "disbelief", "surprise" ],
    char: '\ud83e\udd28',
    fitzpatrick_scale: false,
    category: "people"
  },
  monocle: {
    keywords: [ "face", "stuffy", "wealthy" ],
    char: '\ud83e\uddd0',
    fitzpatrick_scale: false,
    category: "people"
  },
  stuck_out_tongue_closed_eyes: {
    keywords: [ "face", "prank", "playful", "mischievous", "smile", "tongue" ],
    char: '\ud83d\ude1d',
    fitzpatrick_scale: false,
    category: "people"
  },
  stuck_out_tongue: {
    keywords: [ "face", "prank", "childish", "playful", "mischievous", "smile", "tongue" ],
    char: '\ud83d\ude1b',
    fitzpatrick_scale: false,
    category: "people"
  },
  money_mouth_face: {
    keywords: [ "face", "rich", "dollar", "money" ],
    char: '\ud83e\udd11',
    fitzpatrick_scale: false,
    category: "people"
  },
  nerd_face: {
    keywords: [ "face", "nerdy", "geek", "dork" ],
    char: '\ud83e\udd13',
    fitzpatrick_scale: false,
    category: "people"
  },
  sunglasses: {
    keywords: [ "face", "cool", "smile", "summer", "beach", "sunglass" ],
    char: '\ud83d\ude0e',
    fitzpatrick_scale: false,
    category: "people"
  },
  star_struck: {
    keywords: [ "face", "smile", "starry", "eyes", "grinning" ],
    char: '\ud83e\udd29',
    fitzpatrick_scale: false,
    category: "people"
  },
  clown_face: {
    keywords: [ "face" ],
    char: '\ud83e\udd21',
    fitzpatrick_scale: false,
    category: "people"
  },
  cowboy_hat_face: {
    keywords: [ "face", "cowgirl", "hat" ],
    char: '\ud83e\udd20',
    fitzpatrick_scale: false,
    category: "people"
  },
  hugs: {
    keywords: [ "face", "smile", "hug" ],
    char: '\ud83e\udd17',
    fitzpatrick_scale: false,
    category: "people"
  },
  smirk: {
    keywords: [ "face", "smile", "mean", "prank", "smug", "sarcasm" ],
    char: '\ud83d\ude0f',
    fitzpatrick_scale: false,
    category: "people"
  },
  no_mouth: {
    keywords: [ "face", "hellokitty" ],
    char: '\ud83d\ude36',
    fitzpatrick_scale: false,
    category: "people"
  },
  neutral_face: {
    keywords: [ "indifference", "meh", ":|", "neutral" ],
    char: '\ud83d\ude10',
    fitzpatrick_scale: false,
    category: "people"
  },
  expressionless: {
    keywords: [ "face", "indifferent", "-_-", "meh", "deadpan" ],
    char: '\ud83d\ude11',
    fitzpatrick_scale: false,
    category: "people"
  },
  unamused: {
    keywords: [ "indifference", "bored", "straight face", "serious", "sarcasm", "unimpressed", "skeptical", "dubious", "side_eye" ],
    char: '\ud83d\ude12',
    fitzpatrick_scale: false,
    category: "people"
  },
  roll_eyes: {
    keywords: [ "face", "eyeroll", "frustrated" ],
    char: '\ud83d\ude44',
    fitzpatrick_scale: false,
    category: "people"
  },
  thinking: {
    keywords: [ "face", "hmmm", "think", "consider" ],
    char: '\ud83e\udd14',
    fitzpatrick_scale: false,
    category: "people"
  },
  lying_face: {
    keywords: [ "face", "lie", "pinocchio" ],
    char: '\ud83e\udd25',
    fitzpatrick_scale: false,
    category: "people"
  },
  hand_over_mouth: {
    keywords: [ "face", "whoops", "shock", "surprise" ],
    char: '\ud83e\udd2d',
    fitzpatrick_scale: false,
    category: "people"
  },
  shushing: {
    keywords: [ "face", "quiet", "shhh" ],
    char: '\ud83e\udd2b',
    fitzpatrick_scale: false,
    category: "people"
  },
  symbols_over_mouth: {
    keywords: [ "face", "swearing", "cursing", "cussing", "profanity", "expletive" ],
    char: '\ud83e\udd2c',
    fitzpatrick_scale: false,
    category: "people"
  },
  exploding_head: {
    keywords: [ "face", "shocked", "mind", "blown" ],
    char: '\ud83e\udd2f',
    fitzpatrick_scale: false,
    category: "people"
  },
  flushed: {
    keywords: [ "face", "blush", "shy", "flattered" ],
    char: '\ud83d\ude33',
    fitzpatrick_scale: false,
    category: "people"
  },
  disappointed: {
    keywords: [ "face", "sad", "upset", "depressed", ":(" ],
    char: '\ud83d\ude1e',
    fitzpatrick_scale: false,
    category: "people"
  },
  worried: {
    keywords: [ "face", "concern", "nervous", ":(" ],
    char: '\ud83d\ude1f',
    fitzpatrick_scale: false,
    category: "people"
  },
  angry: {
    keywords: [ "mad", "face", "annoyed", "frustrated" ],
    char: '\ud83d\ude20',
    fitzpatrick_scale: false,
    category: "people"
  },
  rage: {
    keywords: [ "angry", "mad", "hate", "despise" ],
    char: '\ud83d\ude21',
    fitzpatrick_scale: false,
    category: "people"
  },
  pensive: {
    keywords: [ "face", "sad", "depressed", "upset" ],
    char: '\ud83d\ude14',
    fitzpatrick_scale: false,
    category: "people"
  },
  confused: {
    keywords: [ "face", "indifference", "huh", "weird", "hmmm", ":/" ],
    char: '\ud83d\ude15',
    fitzpatrick_scale: false,
    category: "people"
  },
  slightly_frowning_face: {
    keywords: [ "face", "frowning", "disappointed", "sad", "upset" ],
    char: '\ud83d\ude41',
    fitzpatrick_scale: false,
    category: "people"
  },
  frowning_face: {
    keywords: [ "face", "sad", "upset", "frown" ],
    char: '\u2639',
    fitzpatrick_scale: false,
    category: "people"
  },
  persevere: {
    keywords: [ "face", "sick", "no", "upset", "oops" ],
    char: '\ud83d\ude23',
    fitzpatrick_scale: false,
    category: "people"
  },
  confounded: {
    keywords: [ "face", "confused", "sick", "unwell", "oops", ":S" ],
    char: '\ud83d\ude16',
    fitzpatrick_scale: false,
    category: "people"
  },
  tired_face: {
    keywords: [ "sick", "whine", "upset", "frustrated" ],
    char: '\ud83d\ude2b',
    fitzpatrick_scale: false,
    category: "people"
  },
  weary: {
    keywords: [ "face", "tired", "sleepy", "sad", "frustrated", "upset" ],
    char: '\ud83d\ude29',
    fitzpatrick_scale: false,
    category: "people"
  },
  pleading: {
    keywords: [ "face", "begging", "mercy" ],
    char: '\ud83e\udd7a',
    fitzpatrick_scale: false,
    category: "people"
  },
  triumph: {
    keywords: [ "face", "gas", "phew", "proud", "pride" ],
    char: '\ud83d\ude24',
    fitzpatrick_scale: false,
    category: "people"
  },
  open_mouth: {
    keywords: [ "face", "surprise", "impressed", "wow", "whoa", ":O" ],
    char: '\ud83d\ude2e',
    fitzpatrick_scale: false,
    category: "people"
  },
  scream: {
    keywords: [ "face", "munch", "scared", "omg" ],
    char: '\ud83d\ude31',
    fitzpatrick_scale: false,
    category: "people"
  },
  fearful: {
    keywords: [ "face", "scared", "terrified", "nervous", "oops", "huh" ],
    char: '\ud83d\ude28',
    fitzpatrick_scale: false,
    category: "people"
  },
  cold_sweat: {
    keywords: [ "face", "nervous", "sweat" ],
    char: '\ud83d\ude30',
    fitzpatrick_scale: false,
    category: "people"
  },
  hushed: {
    keywords: [ "face", "woo", "shh" ],
    char: '\ud83d\ude2f',
    fitzpatrick_scale: false,
    category: "people"
  },
  frowning: {
    keywords: [ "face", "aw", "what" ],
    char: '\ud83d\ude26',
    fitzpatrick_scale: false,
    category: "people"
  },
  anguished: {
    keywords: [ "face", "stunned", "nervous" ],
    char: '\ud83d\ude27',
    fitzpatrick_scale: false,
    category: "people"
  },
  cry: {
    keywords: [ "face", "tears", "sad", "depressed", "upset", ":'(" ],
    char: '\ud83d\ude22',
    fitzpatrick_scale: false,
    category: "people"
  },
  disappointed_relieved: {
    keywords: [ "face", "phew", "sweat", "nervous" ],
    char: '\ud83d\ude25',
    fitzpatrick_scale: false,
    category: "people"
  },
  drooling_face: {
    keywords: [ "face" ],
    char: '\ud83e\udd24',
    fitzpatrick_scale: false,
    category: "people"
  },
  sleepy: {
    keywords: [ "face", "tired", "rest", "nap" ],
    char: '\ud83d\ude2a',
    fitzpatrick_scale: false,
    category: "people"
  },
  sweat: {
    keywords: [ "face", "hot", "sad", "tired", "exercise" ],
    char: '\ud83d\ude13',
    fitzpatrick_scale: false,
    category: "people"
  },
  hot: {
    keywords: [ "face", "feverish", "heat", "red", "sweating" ],
    char: '\ud83e\udd75',
    fitzpatrick_scale: false,
    category: "people"
  },
  cold: {
    keywords: [ "face", "blue", "freezing", "frozen", "frostbite", "icicles" ],
    char: '\ud83e\udd76',
    fitzpatrick_scale: false,
    category: "people"
  },
  sob: {
    keywords: [ "face", "cry", "tears", "sad", "upset", "depressed" ],
    char: '\ud83d\ude2d',
    fitzpatrick_scale: false,
    category: "people"
  },
  dizzy_face: {
    keywords: [ "spent", "unconscious", "xox", "dizzy" ],
    char: '\ud83d\ude35',
    fitzpatrick_scale: false,
    category: "people"
  },
  astonished: {
    keywords: [ "face", "xox", "surprised", "poisoned" ],
    char: '\ud83d\ude32',
    fitzpatrick_scale: false,
    category: "people"
  },
  zipper_mouth_face: {
    keywords: [ "face", "sealed", "zipper", "secret" ],
    char: '\ud83e\udd10',
    fitzpatrick_scale: false,
    category: "people"
  },
  nauseated_face: {
    keywords: [ "face", "vomit", "gross", "green", "sick", "throw up", "ill" ],
    char: '\ud83e\udd22',
    fitzpatrick_scale: false,
    category: "people"
  },
  sneezing_face: {
    keywords: [ "face", "gesundheit", "sneeze", "sick", "allergy" ],
    char: '\ud83e\udd27',
    fitzpatrick_scale: false,
    category: "people"
  },
  vomiting: {
    keywords: [ "face", "sick" ],
    char: '\ud83e\udd2e',
    fitzpatrick_scale: false,
    category: "people"
  },
  mask: {
    keywords: [ "face", "sick", "ill", "disease" ],
    char: '\ud83d\ude37',
    fitzpatrick_scale: false,
    category: "people"
  },
  face_with_thermometer: {
    keywords: [ "sick", "temperature", "thermometer", "cold", "fever" ],
    char: '\ud83e\udd12',
    fitzpatrick_scale: false,
    category: "people"
  },
  face_with_head_bandage: {
    keywords: [ "injured", "clumsy", "bandage", "hurt" ],
    char: '\ud83e\udd15',
    fitzpatrick_scale: false,
    category: "people"
  },
  woozy: {
    keywords: [ "face", "dizzy", "intoxicated", "tipsy", "wavy" ],
    char: '\ud83e\udd74',
    fitzpatrick_scale: false,
    category: "people"
  },
  sleeping: {
    keywords: [ "face", "tired", "sleepy", "night", "zzz" ],
    char: '\ud83d\ude34',
    fitzpatrick_scale: false,
    category: "people"
  },
  zzz: {
    keywords: [ "sleepy", "tired", "dream" ],
    char: '\ud83d\udca4',
    fitzpatrick_scale: false,
    category: "people"
  },
  poop: {
    keywords: [ "hankey", "shitface", "fail", "turd", "shit" ],
    char: '\ud83d\udca9',
    fitzpatrick_scale: false,
    category: "people"
  },
  smiling_imp: {
    keywords: [ "devil", "horns" ],
    char: '\ud83d\ude08',
    fitzpatrick_scale: false,
    category: "people"
  },
  imp: {
    keywords: [ "devil", "angry", "horns" ],
    char: '\ud83d\udc7f',
    fitzpatrick_scale: false,
    category: "people"
  },
  japanese_ogre: {
    keywords: [ "monster", "red", "mask", "halloween", "scary", "creepy", "devil", "demon", "japanese", "ogre" ],
    char: '\ud83d\udc79',
    fitzpatrick_scale: false,
    category: "people"
  },
  japanese_goblin: {
    keywords: [ "red", "evil", "mask", "monster", "scary", "creepy", "japanese", "goblin" ],
    char: '\ud83d\udc7a',
    fitzpatrick_scale: false,
    category: "people"
  },
  skull: {
    keywords: [ "dead", "skeleton", "creepy", "death" ],
    char: '\ud83d\udc80',
    fitzpatrick_scale: false,
    category: "people"
  },
  ghost: {
    keywords: [ "halloween", "spooky", "scary" ],
    char: '\ud83d\udc7b',
    fitzpatrick_scale: false,
    category: "people"
  },
  alien: {
    keywords: [ "UFO", "paul", "weird", "outer_space" ],
    char: '\ud83d\udc7d',
    fitzpatrick_scale: false,
    category: "people"
  },
  robot: {
    keywords: [ "computer", "machine", "bot" ],
    char: '\ud83e\udd16',
    fitzpatrick_scale: false,
    category: "people"
  },
  smiley_cat: {
    keywords: [ "animal", "cats", "happy", "smile" ],
    char: '\ud83d\ude3a',
    fitzpatrick_scale: false,
    category: "people"
  },
  smile_cat: {
    keywords: [ "animal", "cats", "smile" ],
    char: '\ud83d\ude38',
    fitzpatrick_scale: false,
    category: "people"
  },
  joy_cat: {
    keywords: [ "animal", "cats", "haha", "happy", "tears" ],
    char: '\ud83d\ude39',
    fitzpatrick_scale: false,
    category: "people"
  },
  heart_eyes_cat: {
    keywords: [ "animal", "love", "like", "affection", "cats", "valentines", "heart" ],
    char: '\ud83d\ude3b',
    fitzpatrick_scale: false,
    category: "people"
  },
  smirk_cat: {
    keywords: [ "animal", "cats", "smirk" ],
    char: '\ud83d\ude3c',
    fitzpatrick_scale: false,
    category: "people"
  },
  kissing_cat: {
    keywords: [ "animal", "cats", "kiss" ],
    char: '\ud83d\ude3d',
    fitzpatrick_scale: false,
    category: "people"
  },
  scream_cat: {
    keywords: [ "animal", "cats", "munch", "scared", "scream" ],
    char: '\ud83d\ude40',
    fitzpatrick_scale: false,
    category: "people"
  },
  crying_cat_face: {
    keywords: [ "animal", "tears", "weep", "sad", "cats", "upset", "cry" ],
    char: '\ud83d\ude3f',
    fitzpatrick_scale: false,
    category: "people"
  },
  pouting_cat: {
    keywords: [ "animal", "cats" ],
    char: '\ud83d\ude3e',
    fitzpatrick_scale: false,
    category: "people"
  },
  palms_up: {
    keywords: [ "hands", "gesture", "cupped", "prayer" ],
    char: '\ud83e\udd32',
    fitzpatrick_scale: true,
    category: "people"
  },
  raised_hands: {
    keywords: [ "gesture", "hooray", "yea", "celebration", "hands" ],
    char: '\ud83d\ude4c',
    fitzpatrick_scale: true,
    category: "people"
  },
  clap: {
    keywords: [ "hands", "praise", "applause", "congrats", "yay" ],
    char: '\ud83d\udc4f',
    fitzpatrick_scale: true,
    category: "people"
  },
  wave: {
    keywords: [ "hands", "gesture", "goodbye", "solong", "farewell", "hello", "hi", "palm" ],
    char: '\ud83d\udc4b',
    fitzpatrick_scale: true,
    category: "people"
  },
  call_me_hand: {
    keywords: [ "hands", "gesture" ],
    char: '\ud83e\udd19',
    fitzpatrick_scale: true,
    category: "people"
  },
  "+1": {
    keywords: [ "thumbsup", "yes", "awesome", "good", "agree", "accept", "cool", "hand", "like" ],
    char: '\ud83d\udc4d',
    fitzpatrick_scale: true,
    category: "people"
  },
  "-1": {
    keywords: [ "thumbsdown", "no", "dislike", "hand" ],
    char: '\ud83d\udc4e',
    fitzpatrick_scale: true,
    category: "people"
  },
  facepunch: {
    keywords: [ "angry", "violence", "fist", "hit", "attack", "hand" ],
    char: '\ud83d\udc4a',
    fitzpatrick_scale: true,
    category: "people"
  },
  fist: {
    keywords: [ "fingers", "hand", "grasp" ],
    char: '\u270a',
    fitzpatrick_scale: true,
    category: "people"
  },
  fist_left: {
    keywords: [ "hand", "fistbump" ],
    char: '\ud83e\udd1b',
    fitzpatrick_scale: true,
    category: "people"
  },
  fist_right: {
    keywords: [ "hand", "fistbump" ],
    char: '\ud83e\udd1c',
    fitzpatrick_scale: true,
    category: "people"
  },
  v: {
    keywords: [ "fingers", "ohyeah", "hand", "peace", "victory", "two" ],
    char: '\u270c',
    fitzpatrick_scale: true,
    category: "people"
  },
  ok_hand: {
    keywords: [ "fingers", "limbs", "perfect", "ok", "okay" ],
    char: '\ud83d\udc4c',
    fitzpatrick_scale: true,
    category: "people"
  },
  raised_hand: {
    keywords: [ "fingers", "stop", "highfive", "palm", "ban" ],
    char: '\u270b',
    fitzpatrick_scale: true,
    category: "people"
  },
  raised_back_of_hand: {
    keywords: [ "fingers", "raised", "backhand" ],
    char: '\ud83e\udd1a',
    fitzpatrick_scale: true,
    category: "people"
  },
  open_hands: {
    keywords: [ "fingers", "butterfly", "hands", "open" ],
    char: '\ud83d\udc50',
    fitzpatrick_scale: true,
    category: "people"
  },
  muscle: {
    keywords: [ "arm", "flex", "hand", "summer", "strong", "biceps" ],
    char: '\ud83d\udcaa',
    fitzpatrick_scale: true,
    category: "people"
  },
  pray: {
    keywords: [ "please", "hope", "wish", "namaste", "highfive" ],
    char: '\ud83d\ude4f',
    fitzpatrick_scale: true,
    category: "people"
  },
  foot: {
    keywords: [ "kick", "stomp" ],
    char: '\ud83e\uddb6',
    fitzpatrick_scale: true,
    category: "people"
  },
  leg: {
    keywords: [ "kick", "limb" ],
    char: '\ud83e\uddb5',
    fitzpatrick_scale: true,
    category: "people"
  },
  handshake: {
    keywords: [ "agreement", "shake" ],
    char: '\ud83e\udd1d',
    fitzpatrick_scale: false,
    category: "people"
  },
  point_up: {
    keywords: [ "hand", "fingers", "direction", "up" ],
    char: '\u261d',
    fitzpatrick_scale: true,
    category: "people"
  },
  point_up_2: {
    keywords: [ "fingers", "hand", "direction", "up" ],
    char: '\ud83d\udc46',
    fitzpatrick_scale: true,
    category: "people"
  },
  point_down: {
    keywords: [ "fingers", "hand", "direction", "down" ],
    char: '\ud83d\udc47',
    fitzpatrick_scale: true,
    category: "people"
  },
  point_left: {
    keywords: [ "direction", "fingers", "hand", "left" ],
    char: '\ud83d\udc48',
    fitzpatrick_scale: true,
    category: "people"
  },
  point_right: {
    keywords: [ "fingers", "hand", "direction", "right" ],
    char: '\ud83d\udc49',
    fitzpatrick_scale: true,
    category: "people"
  },
  fu: {
    keywords: [ "hand", "fingers", "rude", "middle", "flipping" ],
    char: '\ud83d\udd95',
    fitzpatrick_scale: true,
    category: "people"
  },
  raised_hand_with_fingers_splayed: {
    keywords: [ "hand", "fingers", "palm" ],
    char: '\ud83d\udd90',
    fitzpatrick_scale: true,
    category: "people"
  },
  love_you: {
    keywords: [ "hand", "fingers", "gesture" ],
    char: '\ud83e\udd1f',
    fitzpatrick_scale: true,
    category: "people"
  },
  metal: {
    keywords: [ "hand", "fingers", "evil_eye", "sign_of_horns", "rock_on" ],
    char: '\ud83e\udd18',
    fitzpatrick_scale: true,
    category: "people"
  },
  crossed_fingers: {
    keywords: [ "good", "lucky" ],
    char: '\ud83e\udd1e',
    fitzpatrick_scale: true,
    category: "people"
  },
  vulcan_salute: {
    keywords: [ "hand", "fingers", "spock", "star trek" ],
    char: '\ud83d\udd96',
    fitzpatrick_scale: true,
    category: "people"
  },
  writing_hand: {
    keywords: [ "lower_left_ballpoint_pen", "stationery", "write", "compose" ],
    char: '\u270d',
    fitzpatrick_scale: true,
    category: "people"
  },
  selfie: {
    keywords: [ "camera", "phone" ],
    char: '\ud83e\udd33',
    fitzpatrick_scale: true,
    category: "people"
  },
  nail_care: {
    keywords: [ "beauty", "manicure", "finger", "fashion", "nail" ],
    char: '\ud83d\udc85',
    fitzpatrick_scale: true,
    category: "people"
  },
  lips: {
    keywords: [ "mouth", "kiss" ],
    char: '\ud83d\udc44',
    fitzpatrick_scale: false,
    category: "people"
  },
  tooth: {
    keywords: [ "teeth", "dentist" ],
    char: '\ud83e\uddb7',
    fitzpatrick_scale: false,
    category: "people"
  },
  tongue: {
    keywords: [ "mouth", "playful" ],
    char: '\ud83d\udc45',
    fitzpatrick_scale: false,
    category: "people"
  },
  ear: {
    keywords: [ "face", "hear", "sound", "listen" ],
    char: '\ud83d\udc42',
    fitzpatrick_scale: true,
    category: "people"
  },
  nose: {
    keywords: [ "smell", "sniff" ],
    char: '\ud83d\udc43',
    fitzpatrick_scale: true,
    category: "people"
  },
  eye: {
    keywords: [ "face", "look", "see", "watch", "stare" ],
    char: '\ud83d\udc41',
    fitzpatrick_scale: false,
    category: "people"
  },
  eyes: {
    keywords: [ "look", "watch", "stalk", "peek", "see" ],
    char: '\ud83d\udc40',
    fitzpatrick_scale: false,
    category: "people"
  },
  brain: {
    keywords: [ "smart", "intelligent" ],
    char: '\ud83e\udde0',
    fitzpatrick_scale: false,
    category: "people"
  },
  bust_in_silhouette: {
    keywords: [ "user", "person", "human" ],
    char: '\ud83d\udc64',
    fitzpatrick_scale: false,
    category: "people"
  },
  busts_in_silhouette: {
    keywords: [ "user", "person", "human", "group", "team" ],
    char: '\ud83d\udc65',
    fitzpatrick_scale: false,
    category: "people"
  },
  speaking_head: {
    keywords: [ "user", "person", "human", "sing", "say", "talk" ],
    char: '\ud83d\udde3',
    fitzpatrick_scale: false,
    category: "people"
  },
  baby: {
    keywords: [ "child", "boy", "girl", "toddler" ],
    char: '\ud83d\udc76',
    fitzpatrick_scale: true,
    category: "people"
  },
  child: {
    keywords: [ "gender-neutral", "young" ],
    char: '\ud83e\uddd2',
    fitzpatrick_scale: true,
    category: "people"
  },
  boy: {
    keywords: [ "man", "male", "guy", "teenager" ],
    char: '\ud83d\udc66',
    fitzpatrick_scale: true,
    category: "people"
  },
  girl: {
    keywords: [ "female", "woman", "teenager" ],
    char: '\ud83d\udc67',
    fitzpatrick_scale: true,
    category: "people"
  },
  adult: {
    keywords: [ "gender-neutral", "person" ],
    char: '\ud83e\uddd1',
    fitzpatrick_scale: true,
    category: "people"
  },
  man: {
    keywords: [ "mustache", "father", "dad", "guy", "classy", "sir", "moustache" ],
    char: '\ud83d\udc68',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman: {
    keywords: [ "female", "girls", "lady" ],
    char: '\ud83d\udc69',
    fitzpatrick_scale: true,
    category: "people"
  },
  blonde_woman: {
    keywords: [ "woman", "female", "girl", "blonde", "person" ],
    char: '\ud83d\udc71\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  blonde_man: {
    keywords: [ "man", "male", "boy", "blonde", "guy", "person" ],
    char: '\ud83d\udc71',
    fitzpatrick_scale: true,
    category: "people"
  },
  bearded_person: {
    keywords: [ "person", "bewhiskered" ],
    char: '\ud83e\uddd4',
    fitzpatrick_scale: true,
    category: "people"
  },
  older_adult: {
    keywords: [ "human", "elder", "senior", "gender-neutral" ],
    char: '\ud83e\uddd3',
    fitzpatrick_scale: true,
    category: "people"
  },
  older_man: {
    keywords: [ "human", "male", "men", "old", "elder", "senior" ],
    char: '\ud83d\udc74',
    fitzpatrick_scale: true,
    category: "people"
  },
  older_woman: {
    keywords: [ "human", "female", "women", "lady", "old", "elder", "senior" ],
    char: '\ud83d\udc75',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_with_gua_pi_mao: {
    keywords: [ "male", "boy", "chinese" ],
    char: '\ud83d\udc72',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_with_headscarf: {
    keywords: [ "female", "hijab", "mantilla", "tichel" ],
    char: '\ud83e\uddd5',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_with_turban: {
    keywords: [ "female", "indian", "hinduism", "arabs", "woman" ],
    char: '\ud83d\udc73\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_with_turban: {
    keywords: [ "male", "indian", "hinduism", "arabs" ],
    char: '\ud83d\udc73',
    fitzpatrick_scale: true,
    category: "people"
  },
  policewoman: {
    keywords: [ "woman", "police", "law", "legal", "enforcement", "arrest", "911", "female" ],
    char: '\ud83d\udc6e\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  policeman: {
    keywords: [ "man", "police", "law", "legal", "enforcement", "arrest", "911" ],
    char: '\ud83d\udc6e',
    fitzpatrick_scale: true,
    category: "people"
  },
  construction_worker_woman: {
    keywords: [ "female", "human", "wip", "build", "construction", "worker", "labor", "woman" ],
    char: '\ud83d\udc77\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  construction_worker_man: {
    keywords: [ "male", "human", "wip", "guy", "build", "construction", "worker", "labor" ],
    char: '\ud83d\udc77',
    fitzpatrick_scale: true,
    category: "people"
  },
  guardswoman: {
    keywords: [ "uk", "gb", "british", "female", "royal", "woman" ],
    char: '\ud83d\udc82\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  guardsman: {
    keywords: [ "uk", "gb", "british", "male", "guy", "royal" ],
    char: '\ud83d\udc82',
    fitzpatrick_scale: true,
    category: "people"
  },
  female_detective: {
    keywords: [ "human", "spy", "detective", "female", "woman" ],
    char: '\ud83d\udd75\ufe0f\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  male_detective: {
    keywords: [ "human", "spy", "detective" ],
    char: '\ud83d\udd75',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_health_worker: {
    keywords: [ "doctor", "nurse", "therapist", "healthcare", "woman", "human" ],
    char: '\ud83d\udc69\u200d\u2695\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_health_worker: {
    keywords: [ "doctor", "nurse", "therapist", "healthcare", "man", "human" ],
    char: '\ud83d\udc68\u200d\u2695\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_farmer: {
    keywords: [ "rancher", "gardener", "woman", "human" ],
    char: '\ud83d\udc69\u200d\ud83c\udf3e',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_farmer: {
    keywords: [ "rancher", "gardener", "man", "human" ],
    char: '\ud83d\udc68\u200d\ud83c\udf3e',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_cook: {
    keywords: [ "chef", "woman", "human" ],
    char: '\ud83d\udc69\u200d\ud83c\udf73',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_cook: {
    keywords: [ "chef", "man", "human" ],
    char: '\ud83d\udc68\u200d\ud83c\udf73',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_student: {
    keywords: [ "graduate", "woman", "human" ],
    char: '\ud83d\udc69\u200d\ud83c\udf93',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_student: {
    keywords: [ "graduate", "man", "human" ],
    char: '\ud83d\udc68\u200d\ud83c\udf93',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_singer: {
    keywords: [ "rockstar", "entertainer", "woman", "human" ],
    char: '\ud83d\udc69\u200d\ud83c\udfa4',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_singer: {
    keywords: [ "rockstar", "entertainer", "man", "human" ],
    char: '\ud83d\udc68\u200d\ud83c\udfa4',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_teacher: {
    keywords: [ "instructor", "professor", "woman", "human" ],
    char: '\ud83d\udc69\u200d\ud83c\udfeb',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_teacher: {
    keywords: [ "instructor", "professor", "man", "human" ],
    char: '\ud83d\udc68\u200d\ud83c\udfeb',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_factory_worker: {
    keywords: [ "assembly", "industrial", "woman", "human" ],
    char: '\ud83d\udc69\u200d\ud83c\udfed',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_factory_worker: {
    keywords: [ "assembly", "industrial", "man", "human" ],
    char: '\ud83d\udc68\u200d\ud83c\udfed',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_technologist: {
    keywords: [ "coder", "developer", "engineer", "programmer", "software", "woman", "human", "laptop", "computer" ],
    char: '\ud83d\udc69\u200d\ud83d\udcbb',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_technologist: {
    keywords: [ "coder", "developer", "engineer", "programmer", "software", "man", "human", "laptop", "computer" ],
    char: '\ud83d\udc68\u200d\ud83d\udcbb',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_office_worker: {
    keywords: [ "business", "manager", "woman", "human" ],
    char: '\ud83d\udc69\u200d\ud83d\udcbc',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_office_worker: {
    keywords: [ "business", "manager", "man", "human" ],
    char: '\ud83d\udc68\u200d\ud83d\udcbc',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_mechanic: {
    keywords: [ "plumber", "woman", "human", "wrench" ],
    char: '\ud83d\udc69\u200d\ud83d\udd27',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_mechanic: {
    keywords: [ "plumber", "man", "human", "wrench" ],
    char: '\ud83d\udc68\u200d\ud83d\udd27',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_scientist: {
    keywords: [ "biologist", "chemist", "engineer", "physicist", "woman", "human" ],
    char: '\ud83d\udc69\u200d\ud83d\udd2c',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_scientist: {
    keywords: [ "biologist", "chemist", "engineer", "physicist", "man", "human" ],
    char: '\ud83d\udc68\u200d\ud83d\udd2c',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_artist: {
    keywords: [ "painter", "woman", "human" ],
    char: '\ud83d\udc69\u200d\ud83c\udfa8',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_artist: {
    keywords: [ "painter", "man", "human" ],
    char: '\ud83d\udc68\u200d\ud83c\udfa8',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_firefighter: {
    keywords: [ "fireman", "woman", "human" ],
    char: '\ud83d\udc69\u200d\ud83d\ude92',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_firefighter: {
    keywords: [ "fireman", "man", "human" ],
    char: '\ud83d\udc68\u200d\ud83d\ude92',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_pilot: {
    keywords: [ "aviator", "plane", "woman", "human" ],
    char: '\ud83d\udc69\u200d\u2708\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_pilot: {
    keywords: [ "aviator", "plane", "man", "human" ],
    char: '\ud83d\udc68\u200d\u2708\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_astronaut: {
    keywords: [ "space", "rocket", "woman", "human" ],
    char: '\ud83d\udc69\u200d\ud83d\ude80',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_astronaut: {
    keywords: [ "space", "rocket", "man", "human" ],
    char: '\ud83d\udc68\u200d\ud83d\ude80',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_judge: {
    keywords: [ "justice", "court", "woman", "human" ],
    char: '\ud83d\udc69\u200d\u2696\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_judge: {
    keywords: [ "justice", "court", "man", "human" ],
    char: '\ud83d\udc68\u200d\u2696\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_superhero: {
    keywords: [ "woman", "female", "good", "heroine", "superpowers" ],
    char: '\ud83e\uddb8\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_superhero: {
    keywords: [ "man", "male", "good", "hero", "superpowers" ],
    char: '\ud83e\uddb8\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_supervillain: {
    keywords: [ "woman", "female", "evil", "bad", "criminal", "heroine", "superpowers" ],
    char: '\ud83e\uddb9\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_supervillain: {
    keywords: [ "man", "male", "evil", "bad", "criminal", "hero", "superpowers" ],
    char: '\ud83e\uddb9\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  mrs_claus: {
    keywords: [ "woman", "female", "xmas", "mother christmas" ],
    char: '\ud83e\udd36',
    fitzpatrick_scale: true,
    category: "people"
  },
  santa: {
    keywords: [ "festival", "man", "male", "xmas", "father christmas" ],
    char: '\ud83c\udf85',
    fitzpatrick_scale: true,
    category: "people"
  },
  sorceress: {
    keywords: [ "woman", "female", "mage", "witch" ],
    char: '\ud83e\uddd9\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  wizard: {
    keywords: [ "man", "male", "mage", "sorcerer" ],
    char: '\ud83e\uddd9\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_elf: {
    keywords: [ "woman", "female" ],
    char: '\ud83e\udddd\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_elf: {
    keywords: [ "man", "male" ],
    char: '\ud83e\udddd\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_vampire: {
    keywords: [ "woman", "female" ],
    char: '\ud83e\udddb\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_vampire: {
    keywords: [ "man", "male", "dracula" ],
    char: '\ud83e\udddb\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_zombie: {
    keywords: [ "woman", "female", "undead", "walking dead" ],
    char: '\ud83e\udddf\u200d\u2640\ufe0f',
    fitzpatrick_scale: false,
    category: "people"
  },
  man_zombie: {
    keywords: [ "man", "male", "dracula", "undead", "walking dead" ],
    char: '\ud83e\udddf\u200d\u2642\ufe0f',
    fitzpatrick_scale: false,
    category: "people"
  },
  woman_genie: {
    keywords: [ "woman", "female" ],
    char: '\ud83e\uddde\u200d\u2640\ufe0f',
    fitzpatrick_scale: false,
    category: "people"
  },
  man_genie: {
    keywords: [ "man", "male" ],
    char: '\ud83e\uddde\u200d\u2642\ufe0f',
    fitzpatrick_scale: false,
    category: "people"
  },
  mermaid: {
    keywords: [ "woman", "female", "merwoman", "ariel" ],
    char: '\ud83e\udddc\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  merman: {
    keywords: [ "man", "male", "triton" ],
    char: '\ud83e\udddc\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_fairy: {
    keywords: [ "woman", "female" ],
    char: '\ud83e\uddda\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_fairy: {
    keywords: [ "man", "male" ],
    char: '\ud83e\uddda\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  angel: {
    keywords: [ "heaven", "wings", "halo" ],
    char: '\ud83d\udc7c',
    fitzpatrick_scale: true,
    category: "people"
  },
  pregnant_woman: {
    keywords: [ "baby" ],
    char: '\ud83e\udd30',
    fitzpatrick_scale: true,
    category: "people"
  },
  breastfeeding: {
    keywords: [ "nursing", "baby" ],
    char: '\ud83e\udd31',
    fitzpatrick_scale: true,
    category: "people"
  },
  princess: {
    keywords: [ "girl", "woman", "female", "blond", "crown", "royal", "queen" ],
    char: '\ud83d\udc78',
    fitzpatrick_scale: true,
    category: "people"
  },
  prince: {
    keywords: [ "boy", "man", "male", "crown", "royal", "king" ],
    char: '\ud83e\udd34',
    fitzpatrick_scale: true,
    category: "people"
  },
  bride_with_veil: {
    keywords: [ "couple", "marriage", "wedding", "woman", "bride" ],
    char: '\ud83d\udc70',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_in_tuxedo: {
    keywords: [ "couple", "marriage", "wedding", "groom" ],
    char: '\ud83e\udd35',
    fitzpatrick_scale: true,
    category: "people"
  },
  running_woman: {
    keywords: [ "woman", "walking", "exercise", "race", "running", "female" ],
    char: '\ud83c\udfc3\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  running_man: {
    keywords: [ "man", "walking", "exercise", "race", "running" ],
    char: '\ud83c\udfc3',
    fitzpatrick_scale: true,
    category: "people"
  },
  walking_woman: {
    keywords: [ "human", "feet", "steps", "woman", "female" ],
    char: '\ud83d\udeb6\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  walking_man: {
    keywords: [ "human", "feet", "steps" ],
    char: '\ud83d\udeb6',
    fitzpatrick_scale: true,
    category: "people"
  },
  dancer: {
    keywords: [ "female", "girl", "woman", "fun" ],
    char: '\ud83d\udc83',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_dancing: {
    keywords: [ "male", "boy", "fun", "dancer" ],
    char: '\ud83d\udd7a',
    fitzpatrick_scale: true,
    category: "people"
  },
  dancing_women: {
    keywords: [ "female", "bunny", "women", "girls" ],
    char: '\ud83d\udc6f',
    fitzpatrick_scale: false,
    category: "people"
  },
  dancing_men: {
    keywords: [ "male", "bunny", "men", "boys" ],
    char: '\ud83d\udc6f\u200d\u2642\ufe0f',
    fitzpatrick_scale: false,
    category: "people"
  },
  couple: {
    keywords: [ "pair", "people", "human", "love", "date", "dating", "like", "affection", "valentines", "marriage" ],
    char: '\ud83d\udc6b',
    fitzpatrick_scale: false,
    category: "people"
  },
  two_men_holding_hands: {
    keywords: [ "pair", "couple", "love", "like", "bromance", "friendship", "people", "human" ],
    char: '\ud83d\udc6c',
    fitzpatrick_scale: false,
    category: "people"
  },
  two_women_holding_hands: {
    keywords: [ "pair", "friendship", "couple", "love", "like", "female", "people", "human" ],
    char: '\ud83d\udc6d',
    fitzpatrick_scale: false,
    category: "people"
  },
  bowing_woman: {
    keywords: [ "woman", "female", "girl" ],
    char: '\ud83d\ude47\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  bowing_man: {
    keywords: [ "man", "male", "boy" ],
    char: '\ud83d\ude47',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_facepalming: {
    keywords: [ "man", "male", "boy", "disbelief" ],
    char: '\ud83e\udd26\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_facepalming: {
    keywords: [ "woman", "female", "girl", "disbelief" ],
    char: '\ud83e\udd26\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_shrugging: {
    keywords: [ "woman", "female", "girl", "confused", "indifferent", "doubt" ],
    char: '\ud83e\udd37',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_shrugging: {
    keywords: [ "man", "male", "boy", "confused", "indifferent", "doubt" ],
    char: '\ud83e\udd37\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  tipping_hand_woman: {
    keywords: [ "female", "girl", "woman", "human", "information" ],
    char: '\ud83d\udc81',
    fitzpatrick_scale: true,
    category: "people"
  },
  tipping_hand_man: {
    keywords: [ "male", "boy", "man", "human", "information" ],
    char: '\ud83d\udc81\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  no_good_woman: {
    keywords: [ "female", "girl", "woman", "nope" ],
    char: '\ud83d\ude45',
    fitzpatrick_scale: true,
    category: "people"
  },
  no_good_man: {
    keywords: [ "male", "boy", "man", "nope" ],
    char: '\ud83d\ude45\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  ok_woman: {
    keywords: [ "women", "girl", "female", "pink", "human", "woman" ],
    char: '\ud83d\ude46',
    fitzpatrick_scale: true,
    category: "people"
  },
  ok_man: {
    keywords: [ "men", "boy", "male", "blue", "human", "man" ],
    char: '\ud83d\ude46\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  raising_hand_woman: {
    keywords: [ "female", "girl", "woman" ],
    char: '\ud83d\ude4b',
    fitzpatrick_scale: true,
    category: "people"
  },
  raising_hand_man: {
    keywords: [ "male", "boy", "man" ],
    char: '\ud83d\ude4b\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  pouting_woman: {
    keywords: [ "female", "girl", "woman" ],
    char: '\ud83d\ude4e',
    fitzpatrick_scale: true,
    category: "people"
  },
  pouting_man: {
    keywords: [ "male", "boy", "man" ],
    char: '\ud83d\ude4e\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  frowning_woman: {
    keywords: [ "female", "girl", "woman", "sad", "depressed", "discouraged", "unhappy" ],
    char: '\ud83d\ude4d',
    fitzpatrick_scale: true,
    category: "people"
  },
  frowning_man: {
    keywords: [ "male", "boy", "man", "sad", "depressed", "discouraged", "unhappy" ],
    char: '\ud83d\ude4d\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  haircut_woman: {
    keywords: [ "female", "girl", "woman" ],
    char: '\ud83d\udc87',
    fitzpatrick_scale: true,
    category: "people"
  },
  haircut_man: {
    keywords: [ "male", "boy", "man" ],
    char: '\ud83d\udc87\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  massage_woman: {
    keywords: [ "female", "girl", "woman", "head" ],
    char: '\ud83d\udc86',
    fitzpatrick_scale: true,
    category: "people"
  },
  massage_man: {
    keywords: [ "male", "boy", "man", "head" ],
    char: '\ud83d\udc86\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_in_steamy_room: {
    keywords: [ "female", "woman", "spa", "steamroom", "sauna" ],
    char: '\ud83e\uddd6\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  man_in_steamy_room: {
    keywords: [ "male", "man", "spa", "steamroom", "sauna" ],
    char: '\ud83e\uddd6\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "people"
  },
  couple_with_heart_woman_man: {
    keywords: [ "pair", "love", "like", "affection", "human", "dating", "valentines", "marriage" ],
    char: '\ud83d\udc91',
    fitzpatrick_scale: false,
    category: "people"
  },
  couple_with_heart_woman_woman: {
    keywords: [ "pair", "love", "like", "affection", "human", "dating", "valentines", "marriage" ],
    char: '\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc69',
    fitzpatrick_scale: false,
    category: "people"
  },
  couple_with_heart_man_man: {
    keywords: [ "pair", "love", "like", "affection", "human", "dating", "valentines", "marriage" ],
    char: '\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc68',
    fitzpatrick_scale: false,
    category: "people"
  },
  couplekiss_man_woman: {
    keywords: [ "pair", "valentines", "love", "like", "dating", "marriage" ],
    char: '\ud83d\udc8f',
    fitzpatrick_scale: false,
    category: "people"
  },
  couplekiss_woman_woman: {
    keywords: [ "pair", "valentines", "love", "like", "dating", "marriage" ],
    char: '\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc69',
    fitzpatrick_scale: false,
    category: "people"
  },
  couplekiss_man_man: {
    keywords: [ "pair", "valentines", "love", "like", "dating", "marriage" ],
    char: '\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc68',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_woman_boy: {
    keywords: [ "home", "parents", "child", "mom", "dad", "father", "mother", "people", "human" ],
    char: '\ud83d\udc6a',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_woman_girl: {
    keywords: [ "home", "parents", "people", "human", "child" ],
    char: '\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_woman_girl_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: '\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_woman_boy_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: '\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_woman_girl_girl: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: '\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_woman_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: '\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_woman_girl: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: '\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_woman_girl_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: '\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_woman_boy_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: '\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_woman_girl_girl: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: '\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_man_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: '\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_man_girl: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: '\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_man_girl_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: '\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_man_boy_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: '\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_man_girl_girl: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: '\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc67',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_boy: {
    keywords: [ "home", "parent", "people", "human", "child" ],
    char: '\ud83d\udc69\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_girl: {
    keywords: [ "home", "parent", "people", "human", "child" ],
    char: '\ud83d\udc69\u200d\ud83d\udc67',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_girl_boy: {
    keywords: [ "home", "parent", "people", "human", "children" ],
    char: '\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_boy_boy: {
    keywords: [ "home", "parent", "people", "human", "children" ],
    char: '\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_girl_girl: {
    keywords: [ "home", "parent", "people", "human", "children" ],
    char: '\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_boy: {
    keywords: [ "home", "parent", "people", "human", "child" ],
    char: '\ud83d\udc68\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_girl: {
    keywords: [ "home", "parent", "people", "human", "child" ],
    char: '\ud83d\udc68\u200d\ud83d\udc67',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_girl_boy: {
    keywords: [ "home", "parent", "people", "human", "children" ],
    char: '\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_boy_boy: {
    keywords: [ "home", "parent", "people", "human", "children" ],
    char: '\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66',
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_girl_girl: {
    keywords: [ "home", "parent", "people", "human", "children" ],
    char: '\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc67',
    fitzpatrick_scale: false,
    category: "people"
  },
  yarn: {
    keywords: [ "ball", "crochet", "knit" ],
    char: '\ud83e\uddf6',
    fitzpatrick_scale: false,
    category: "people"
  },
  thread: {
    keywords: [ "needle", "sewing", "spool", "string" ],
    char: '\ud83e\uddf5',
    fitzpatrick_scale: false,
    category: "people"
  },
  coat: {
    keywords: [ "jacket" ],
    char: '\ud83e\udde5',
    fitzpatrick_scale: false,
    category: "people"
  },
  labcoat: {
    keywords: [ "doctor", "experiment", "scientist", "chemist" ],
    char: '\ud83e\udd7c',
    fitzpatrick_scale: false,
    category: "people"
  },
  womans_clothes: {
    keywords: [ "fashion", "shopping_bags", "female" ],
    char: '\ud83d\udc5a',
    fitzpatrick_scale: false,
    category: "people"
  },
  tshirt: {
    keywords: [ "fashion", "cloth", "casual", "shirt", "tee" ],
    char: '\ud83d\udc55',
    fitzpatrick_scale: false,
    category: "people"
  },
  jeans: {
    keywords: [ "fashion", "shopping" ],
    char: '\ud83d\udc56',
    fitzpatrick_scale: false,
    category: "people"
  },
  necktie: {
    keywords: [ "shirt", "suitup", "formal", "fashion", "cloth", "business" ],
    char: '\ud83d\udc54',
    fitzpatrick_scale: false,
    category: "people"
  },
  dress: {
    keywords: [ "clothes", "fashion", "shopping" ],
    char: '\ud83d\udc57',
    fitzpatrick_scale: false,
    category: "people"
  },
  bikini: {
    keywords: [ "swimming", "female", "woman", "girl", "fashion", "beach", "summer" ],
    char: '\ud83d\udc59',
    fitzpatrick_scale: false,
    category: "people"
  },
  kimono: {
    keywords: [ "dress", "fashion", "women", "female", "japanese" ],
    char: '\ud83d\udc58',
    fitzpatrick_scale: false,
    category: "people"
  },
  lipstick: {
    keywords: [ "female", "girl", "fashion", "woman" ],
    char: '\ud83d\udc84',
    fitzpatrick_scale: false,
    category: "people"
  },
  kiss: {
    keywords: [ "face", "lips", "love", "like", "affection", "valentines" ],
    char: '\ud83d\udc8b',
    fitzpatrick_scale: false,
    category: "people"
  },
  footprints: {
    keywords: [ "feet", "tracking", "walking", "beach" ],
    char: '\ud83d\udc63',
    fitzpatrick_scale: false,
    category: "people"
  },
  flat_shoe: {
    keywords: [ "ballet", "slip-on", "slipper" ],
    char: '\ud83e\udd7f',
    fitzpatrick_scale: false,
    category: "people"
  },
  high_heel: {
    keywords: [ "fashion", "shoes", "female", "pumps", "stiletto" ],
    char: '\ud83d\udc60',
    fitzpatrick_scale: false,
    category: "people"
  },
  sandal: {
    keywords: [ "shoes", "fashion", "flip flops" ],
    char: '\ud83d\udc61',
    fitzpatrick_scale: false,
    category: "people"
  },
  boot: {
    keywords: [ "shoes", "fashion" ],
    char: '\ud83d\udc62',
    fitzpatrick_scale: false,
    category: "people"
  },
  mans_shoe: {
    keywords: [ "fashion", "male" ],
    char: '\ud83d\udc5e',
    fitzpatrick_scale: false,
    category: "people"
  },
  athletic_shoe: {
    keywords: [ "shoes", "sports", "sneakers" ],
    char: '\ud83d\udc5f',
    fitzpatrick_scale: false,
    category: "people"
  },
  hiking_boot: {
    keywords: [ "backpacking", "camping", "hiking" ],
    char: '\ud83e\udd7e',
    fitzpatrick_scale: false,
    category: "people"
  },
  socks: {
    keywords: [ "stockings", "clothes" ],
    char: '\ud83e\udde6',
    fitzpatrick_scale: false,
    category: "people"
  },
  gloves: {
    keywords: [ "hands", "winter", "clothes" ],
    char: '\ud83e\udde4',
    fitzpatrick_scale: false,
    category: "people"
  },
  scarf: {
    keywords: [ "neck", "winter", "clothes" ],
    char: '\ud83e\udde3',
    fitzpatrick_scale: false,
    category: "people"
  },
  womans_hat: {
    keywords: [ "fashion", "accessories", "female", "lady", "spring" ],
    char: '\ud83d\udc52',
    fitzpatrick_scale: false,
    category: "people"
  },
  tophat: {
    keywords: [ "magic", "gentleman", "classy", "circus" ],
    char: '\ud83c\udfa9',
    fitzpatrick_scale: false,
    category: "people"
  },
  billed_hat: {
    keywords: [ "cap", "baseball" ],
    char: '\ud83e\udde2',
    fitzpatrick_scale: false,
    category: "people"
  },
  rescue_worker_helmet: {
    keywords: [ "construction", "build" ],
    char: '\u26d1',
    fitzpatrick_scale: false,
    category: "people"
  },
  mortar_board: {
    keywords: [ "school", "college", "degree", "university", "graduation", "cap", "hat", "legal", "learn", "education" ],
    char: '\ud83c\udf93',
    fitzpatrick_scale: false,
    category: "people"
  },
  crown: {
    keywords: [ "king", "kod", "leader", "royalty", "lord" ],
    char: '\ud83d\udc51',
    fitzpatrick_scale: false,
    category: "people"
  },
  school_satchel: {
    keywords: [ "student", "education", "bag", "backpack" ],
    char: '\ud83c\udf92',
    fitzpatrick_scale: false,
    category: "people"
  },
  luggage: {
    keywords: [ "packing", "travel" ],
    char: '\ud83e\uddf3',
    fitzpatrick_scale: false,
    category: "people"
  },
  pouch: {
    keywords: [ "bag", "accessories", "shopping" ],
    char: '\ud83d\udc5d',
    fitzpatrick_scale: false,
    category: "people"
  },
  purse: {
    keywords: [ "fashion", "accessories", "money", "sales", "shopping" ],
    char: '\ud83d\udc5b',
    fitzpatrick_scale: false,
    category: "people"
  },
  handbag: {
    keywords: [ "fashion", "accessory", "accessories", "shopping" ],
    char: '\ud83d\udc5c',
    fitzpatrick_scale: false,
    category: "people"
  },
  briefcase: {
    keywords: [ "business", "documents", "work", "law", "legal", "job", "career" ],
    char: '\ud83d\udcbc',
    fitzpatrick_scale: false,
    category: "people"
  },
  eyeglasses: {
    keywords: [ "fashion", "accessories", "eyesight", "nerdy", "dork", "geek" ],
    char: '\ud83d\udc53',
    fitzpatrick_scale: false,
    category: "people"
  },
  dark_sunglasses: {
    keywords: [ "face", "cool", "accessories" ],
    char: '\ud83d\udd76',
    fitzpatrick_scale: false,
    category: "people"
  },
  goggles: {
    keywords: [ "eyes", "protection", "safety" ],
    char: '\ud83e\udd7d',
    fitzpatrick_scale: false,
    category: "people"
  },
  ring: {
    keywords: [ "wedding", "propose", "marriage", "valentines", "diamond", "fashion", "jewelry", "gem", "engagement" ],
    char: '\ud83d\udc8d',
    fitzpatrick_scale: false,
    category: "people"
  },
  closed_umbrella: {
    keywords: [ "weather", "rain", "drizzle" ],
    char: '\ud83c\udf02',
    fitzpatrick_scale: false,
    category: "people"
  },
  dog: {
    keywords: [ "animal", "friend", "nature", "woof", "puppy", "pet", "faithful" ],
    char: '\ud83d\udc36',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cat: {
    keywords: [ "animal", "meow", "nature", "pet", "kitten" ],
    char: '\ud83d\udc31',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  mouse: {
    keywords: [ "animal", "nature", "cheese_wedge", "rodent" ],
    char: '\ud83d\udc2d',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hamster: {
    keywords: [ "animal", "nature" ],
    char: '\ud83d\udc39',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  rabbit: {
    keywords: [ "animal", "nature", "pet", "spring", "magic", "bunny" ],
    char: '\ud83d\udc30',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  fox_face: {
    keywords: [ "animal", "nature", "face" ],
    char: '\ud83e\udd8a',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  bear: {
    keywords: [ "animal", "nature", "wild" ],
    char: '\ud83d\udc3b',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  panda_face: {
    keywords: [ "animal", "nature", "panda" ],
    char: '\ud83d\udc3c',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  koala: {
    keywords: [ "animal", "nature" ],
    char: '\ud83d\udc28',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  tiger: {
    keywords: [ "animal", "cat", "danger", "wild", "nature", "roar" ],
    char: '\ud83d\udc2f',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  lion: {
    keywords: [ "animal", "nature" ],
    char: '\ud83e\udd81',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cow: {
    keywords: [ "beef", "ox", "animal", "nature", "moo", "milk" ],
    char: '\ud83d\udc2e',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  pig: {
    keywords: [ "animal", "oink", "nature" ],
    char: '\ud83d\udc37',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  pig_nose: {
    keywords: [ "animal", "oink" ],
    char: '\ud83d\udc3d',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  frog: {
    keywords: [ "animal", "nature", "croak", "toad" ],
    char: '\ud83d\udc38',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  squid: {
    keywords: [ "animal", "nature", "ocean", "sea" ],
    char: '\ud83e\udd91',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  octopus: {
    keywords: [ "animal", "creature", "ocean", "sea", "nature", "beach" ],
    char: '\ud83d\udc19',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  shrimp: {
    keywords: [ "animal", "ocean", "nature", "seafood" ],
    char: '\ud83e\udd90',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  monkey_face: {
    keywords: [ "animal", "nature", "circus" ],
    char: '\ud83d\udc35',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  gorilla: {
    keywords: [ "animal", "nature", "circus" ],
    char: '\ud83e\udd8d',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  see_no_evil: {
    keywords: [ "monkey", "animal", "nature", "haha" ],
    char: '\ud83d\ude48',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hear_no_evil: {
    keywords: [ "animal", "monkey", "nature" ],
    char: '\ud83d\ude49',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  speak_no_evil: {
    keywords: [ "monkey", "animal", "nature", "omg" ],
    char: '\ud83d\ude4a',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  monkey: {
    keywords: [ "animal", "nature", "banana", "circus" ],
    char: '\ud83d\udc12',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  chicken: {
    keywords: [ "animal", "cluck", "nature", "bird" ],
    char: '\ud83d\udc14',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  penguin: {
    keywords: [ "animal", "nature" ],
    char: '\ud83d\udc27',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  bird: {
    keywords: [ "animal", "nature", "fly", "tweet", "spring" ],
    char: '\ud83d\udc26',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  baby_chick: {
    keywords: [ "animal", "chicken", "bird" ],
    char: '\ud83d\udc24',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hatching_chick: {
    keywords: [ "animal", "chicken", "egg", "born", "baby", "bird" ],
    char: '\ud83d\udc23',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hatched_chick: {
    keywords: [ "animal", "chicken", "baby", "bird" ],
    char: '\ud83d\udc25',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  duck: {
    keywords: [ "animal", "nature", "bird", "mallard" ],
    char: '\ud83e\udd86',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  eagle: {
    keywords: [ "animal", "nature", "bird" ],
    char: '\ud83e\udd85',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  owl: {
    keywords: [ "animal", "nature", "bird", "hoot" ],
    char: '\ud83e\udd89',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  bat: {
    keywords: [ "animal", "nature", "blind", "vampire" ],
    char: '\ud83e\udd87',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  wolf: {
    keywords: [ "animal", "nature", "wild" ],
    char: '\ud83d\udc3a',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  boar: {
    keywords: [ "animal", "nature" ],
    char: '\ud83d\udc17',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  horse: {
    keywords: [ "animal", "brown", "nature" ],
    char: '\ud83d\udc34',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  unicorn: {
    keywords: [ "animal", "nature", "mystical" ],
    char: '\ud83e\udd84',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  honeybee: {
    keywords: [ "animal", "insect", "nature", "bug", "spring", "honey" ],
    char: '\ud83d\udc1d',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  bug: {
    keywords: [ "animal", "insect", "nature", "worm" ],
    char: '\ud83d\udc1b',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  butterfly: {
    keywords: [ "animal", "insect", "nature", "caterpillar" ],
    char: '\ud83e\udd8b',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  snail: {
    keywords: [ "slow", "animal", "shell" ],
    char: '\ud83d\udc0c',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  beetle: {
    keywords: [ "animal", "insect", "nature", "ladybug" ],
    char: '\ud83d\udc1e',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  ant: {
    keywords: [ "animal", "insect", "nature", "bug" ],
    char: '\ud83d\udc1c',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  grasshopper: {
    keywords: [ "animal", "cricket", "chirp" ],
    char: '\ud83e\udd97',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  spider: {
    keywords: [ "animal", "arachnid" ],
    char: '\ud83d\udd77',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  scorpion: {
    keywords: [ "animal", "arachnid" ],
    char: '\ud83e\udd82',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  crab: {
    keywords: [ "animal", "crustacean" ],
    char: '\ud83e\udd80',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  snake: {
    keywords: [ "animal", "evil", "nature", "hiss", "python" ],
    char: '\ud83d\udc0d',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  lizard: {
    keywords: [ "animal", "nature", "reptile" ],
    char: '\ud83e\udd8e',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  "t-rex": {
    keywords: [ "animal", "nature", "dinosaur", "tyrannosaurus", "extinct" ],
    char: '\ud83e\udd96',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sauropod: {
    keywords: [ "animal", "nature", "dinosaur", "brachiosaurus", "brontosaurus", "diplodocus", "extinct" ],
    char: '\ud83e\udd95',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  turtle: {
    keywords: [ "animal", "slow", "nature", "tortoise" ],
    char: '\ud83d\udc22',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  tropical_fish: {
    keywords: [ "animal", "swim", "ocean", "beach", "nemo" ],
    char: '\ud83d\udc20',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  fish: {
    keywords: [ "animal", "food", "nature" ],
    char: '\ud83d\udc1f',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  blowfish: {
    keywords: [ "animal", "nature", "food", "sea", "ocean" ],
    char: '\ud83d\udc21',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dolphin: {
    keywords: [ "animal", "nature", "fish", "sea", "ocean", "flipper", "fins", "beach" ],
    char: '\ud83d\udc2c',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  shark: {
    keywords: [ "animal", "nature", "fish", "sea", "ocean", "jaws", "fins", "beach" ],
    char: '\ud83e\udd88',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  whale: {
    keywords: [ "animal", "nature", "sea", "ocean" ],
    char: '\ud83d\udc33',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  whale2: {
    keywords: [ "animal", "nature", "sea", "ocean" ],
    char: '\ud83d\udc0b',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  crocodile: {
    keywords: [ "animal", "nature", "reptile", "lizard", "alligator" ],
    char: '\ud83d\udc0a',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  leopard: {
    keywords: [ "animal", "nature" ],
    char: '\ud83d\udc06',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  zebra: {
    keywords: [ "animal", "nature", "stripes", "safari" ],
    char: '\ud83e\udd93',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  tiger2: {
    keywords: [ "animal", "nature", "roar" ],
    char: '\ud83d\udc05',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  water_buffalo: {
    keywords: [ "animal", "nature", "ox", "cow" ],
    char: '\ud83d\udc03',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  ox: {
    keywords: [ "animal", "cow", "beef" ],
    char: '\ud83d\udc02',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cow2: {
    keywords: [ "beef", "ox", "animal", "nature", "moo", "milk" ],
    char: '\ud83d\udc04',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  deer: {
    keywords: [ "animal", "nature", "horns", "venison" ],
    char: '\ud83e\udd8c',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dromedary_camel: {
    keywords: [ "animal", "hot", "desert", "hump" ],
    char: '\ud83d\udc2a',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  camel: {
    keywords: [ "animal", "nature", "hot", "desert", "hump" ],
    char: '\ud83d\udc2b',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  giraffe: {
    keywords: [ "animal", "nature", "spots", "safari" ],
    char: '\ud83e\udd92',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  elephant: {
    keywords: [ "animal", "nature", "nose", "th", "circus" ],
    char: '\ud83d\udc18',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  rhinoceros: {
    keywords: [ "animal", "nature", "horn" ],
    char: '\ud83e\udd8f',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  goat: {
    keywords: [ "animal", "nature" ],
    char: '\ud83d\udc10',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  ram: {
    keywords: [ "animal", "sheep", "nature" ],
    char: '\ud83d\udc0f',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sheep: {
    keywords: [ "animal", "nature", "wool", "shipit" ],
    char: '\ud83d\udc11',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  racehorse: {
    keywords: [ "animal", "gamble", "luck" ],
    char: '\ud83d\udc0e',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  pig2: {
    keywords: [ "animal", "nature" ],
    char: '\ud83d\udc16',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  rat: {
    keywords: [ "animal", "mouse", "rodent" ],
    char: '\ud83d\udc00',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  mouse2: {
    keywords: [ "animal", "nature", "rodent" ],
    char: '\ud83d\udc01',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  rooster: {
    keywords: [ "animal", "nature", "chicken" ],
    char: '\ud83d\udc13',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  turkey: {
    keywords: [ "animal", "bird" ],
    char: '\ud83e\udd83',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dove: {
    keywords: [ "animal", "bird" ],
    char: '\ud83d\udd4a',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dog2: {
    keywords: [ "animal", "nature", "friend", "doge", "pet", "faithful" ],
    char: '\ud83d\udc15',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  poodle: {
    keywords: [ "dog", "animal", "101", "nature", "pet" ],
    char: '\ud83d\udc29',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cat2: {
    keywords: [ "animal", "meow", "pet", "cats" ],
    char: '\ud83d\udc08',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  rabbit2: {
    keywords: [ "animal", "nature", "pet", "magic", "spring" ],
    char: '\ud83d\udc07',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  chipmunk: {
    keywords: [ "animal", "nature", "rodent", "squirrel" ],
    char: '\ud83d\udc3f',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hedgehog: {
    keywords: [ "animal", "nature", "spiny" ],
    char: '\ud83e\udd94',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  raccoon: {
    keywords: [ "animal", "nature" ],
    char: '\ud83e\udd9d',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  llama: {
    keywords: [ "animal", "nature", "alpaca" ],
    char: '\ud83e\udd99',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hippopotamus: {
    keywords: [ "animal", "nature" ],
    char: '\ud83e\udd9b',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  kangaroo: {
    keywords: [ "animal", "nature", "australia", "joey", "hop", "marsupial" ],
    char: '\ud83e\udd98',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  badger: {
    keywords: [ "animal", "nature", "honey" ],
    char: '\ud83e\udda1',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  swan: {
    keywords: [ "animal", "nature", "bird" ],
    char: '\ud83e\udda2',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  peacock: {
    keywords: [ "animal", "nature", "peahen", "bird" ],
    char: '\ud83e\udd9a',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  parrot: {
    keywords: [ "animal", "nature", "bird", "pirate", "talk" ],
    char: '\ud83e\udd9c',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  lobster: {
    keywords: [ "animal", "nature", "bisque", "claws", "seafood" ],
    char: '\ud83e\udd9e',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  mosquito: {
    keywords: [ "animal", "nature", "insect", "malaria" ],
    char: '\ud83e\udd9f',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  paw_prints: {
    keywords: [ "animal", "tracking", "footprints", "dog", "cat", "pet", "feet" ],
    char: '\ud83d\udc3e',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dragon: {
    keywords: [ "animal", "myth", "nature", "chinese", "green" ],
    char: '\ud83d\udc09',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dragon_face: {
    keywords: [ "animal", "myth", "nature", "chinese", "green" ],
    char: '\ud83d\udc32',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cactus: {
    keywords: [ "vegetable", "plant", "nature" ],
    char: '\ud83c\udf35',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  christmas_tree: {
    keywords: [ "festival", "vacation", "december", "xmas", "celebration" ],
    char: '\ud83c\udf84',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  evergreen_tree: {
    keywords: [ "plant", "nature" ],
    char: '\ud83c\udf32',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  deciduous_tree: {
    keywords: [ "plant", "nature" ],
    char: '\ud83c\udf33',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  palm_tree: {
    keywords: [ "plant", "vegetable", "nature", "summer", "beach", "mojito", "tropical" ],
    char: '\ud83c\udf34',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  seedling: {
    keywords: [ "plant", "nature", "grass", "lawn", "spring" ],
    char: '\ud83c\udf31',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  herb: {
    keywords: [ "vegetable", "plant", "medicine", "weed", "grass", "lawn" ],
    char: '\ud83c\udf3f',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  shamrock: {
    keywords: [ "vegetable", "plant", "nature", "irish", "clover" ],
    char: '\u2618',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  four_leaf_clover: {
    keywords: [ "vegetable", "plant", "nature", "lucky", "irish" ],
    char: '\ud83c\udf40',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  bamboo: {
    keywords: [ "plant", "nature", "vegetable", "panda", "pine_decoration" ],
    char: '\ud83c\udf8d',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  tanabata_tree: {
    keywords: [ "plant", "nature", "branch", "summer" ],
    char: '\ud83c\udf8b',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  leaves: {
    keywords: [ "nature", "plant", "tree", "vegetable", "grass", "lawn", "spring" ],
    char: '\ud83c\udf43',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  fallen_leaf: {
    keywords: [ "nature", "plant", "vegetable", "leaves" ],
    char: '\ud83c\udf42',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  maple_leaf: {
    keywords: [ "nature", "plant", "vegetable", "ca", "fall" ],
    char: '\ud83c\udf41',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  ear_of_rice: {
    keywords: [ "nature", "plant" ],
    char: '\ud83c\udf3e',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hibiscus: {
    keywords: [ "plant", "vegetable", "flowers", "beach" ],
    char: '\ud83c\udf3a',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sunflower: {
    keywords: [ "nature", "plant", "fall" ],
    char: '\ud83c\udf3b',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  rose: {
    keywords: [ "flowers", "valentines", "love", "spring" ],
    char: '\ud83c\udf39',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  wilted_flower: {
    keywords: [ "plant", "nature", "flower" ],
    char: '\ud83e\udd40',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  tulip: {
    keywords: [ "flowers", "plant", "nature", "summer", "spring" ],
    char: '\ud83c\udf37',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  blossom: {
    keywords: [ "nature", "flowers", "yellow" ],
    char: '\ud83c\udf3c',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cherry_blossom: {
    keywords: [ "nature", "plant", "spring", "flower" ],
    char: '\ud83c\udf38',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  bouquet: {
    keywords: [ "flowers", "nature", "spring" ],
    char: '\ud83d\udc90',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  mushroom: {
    keywords: [ "plant", "vegetable" ],
    char: '\ud83c\udf44',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  chestnut: {
    keywords: [ "food", "squirrel" ],
    char: '\ud83c\udf30',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  jack_o_lantern: {
    keywords: [ "halloween", "light", "pumpkin", "creepy", "fall" ],
    char: '\ud83c\udf83',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  shell: {
    keywords: [ "nature", "sea", "beach" ],
    char: '\ud83d\udc1a',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  spider_web: {
    keywords: [ "animal", "insect", "arachnid", "silk" ],
    char: '\ud83d\udd78',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  earth_americas: {
    keywords: [ "globe", "world", "USA", "international" ],
    char: '\ud83c\udf0e',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  earth_africa: {
    keywords: [ "globe", "world", "international" ],
    char: '\ud83c\udf0d',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  earth_asia: {
    keywords: [ "globe", "world", "east", "international" ],
    char: '\ud83c\udf0f',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  full_moon: {
    keywords: [ "nature", "yellow", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: '\ud83c\udf15',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  waning_gibbous_moon: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep", "waxing_gibbous_moon" ],
    char: '\ud83c\udf16',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  last_quarter_moon: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: '\ud83c\udf17',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  waning_crescent_moon: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: '\ud83c\udf18',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  new_moon: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: '\ud83c\udf11',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  waxing_crescent_moon: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: '\ud83c\udf12',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  first_quarter_moon: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: '\ud83c\udf13',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  waxing_gibbous_moon: {
    keywords: [ "nature", "night", "sky", "gray", "twilight", "planet", "space", "evening", "sleep" ],
    char: '\ud83c\udf14',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  new_moon_with_face: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: '\ud83c\udf1a',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  full_moon_with_face: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: '\ud83c\udf1d',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  first_quarter_moon_with_face: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: '\ud83c\udf1b',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  last_quarter_moon_with_face: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: '\ud83c\udf1c',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sun_with_face: {
    keywords: [ "nature", "morning", "sky" ],
    char: '\ud83c\udf1e',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  crescent_moon: {
    keywords: [ "night", "sleep", "sky", "evening", "magic" ],
    char: '\ud83c\udf19',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  star: {
    keywords: [ "night", "yellow" ],
    char: '\u2b50',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  star2: {
    keywords: [ "night", "sparkle", "awesome", "good", "magic" ],
    char: '\ud83c\udf1f',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dizzy: {
    keywords: [ "star", "sparkle", "shoot", "magic" ],
    char: '\ud83d\udcab',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sparkles: {
    keywords: [ "stars", "shine", "shiny", "cool", "awesome", "good", "magic" ],
    char: '\u2728',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  comet: {
    keywords: [ "space" ],
    char: '\u2604',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sunny: {
    keywords: [ "weather", "nature", "brightness", "summer", "beach", "spring" ],
    char: '\u2600\ufe0f',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sun_behind_small_cloud: {
    keywords: [ "weather" ],
    char: '\ud83c\udf24',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  partly_sunny: {
    keywords: [ "weather", "nature", "cloudy", "morning", "fall", "spring" ],
    char: '\u26c5',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sun_behind_large_cloud: {
    keywords: [ "weather" ],
    char: '\ud83c\udf25',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sun_behind_rain_cloud: {
    keywords: [ "weather" ],
    char: '\ud83c\udf26',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cloud: {
    keywords: [ "weather", "sky" ],
    char: '\u2601\ufe0f',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cloud_with_rain: {
    keywords: [ "weather" ],
    char: '\ud83c\udf27',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cloud_with_lightning_and_rain: {
    keywords: [ "weather", "lightning" ],
    char: '\u26c8',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cloud_with_lightning: {
    keywords: [ "weather", "thunder" ],
    char: '\ud83c\udf29',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  zap: {
    keywords: [ "thunder", "weather", "lightning bolt", "fast" ],
    char: '\u26a1',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  fire: {
    keywords: [ "hot", "cook", "flame" ],
    char: '\ud83d\udd25',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  boom: {
    keywords: [ "bomb", "explode", "explosion", "collision", "blown" ],
    char: '\ud83d\udca5',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  snowflake: {
    keywords: [ "winter", "season", "cold", "weather", "christmas", "xmas" ],
    char: '\u2744\ufe0f',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cloud_with_snow: {
    keywords: [ "weather" ],
    char: '\ud83c\udf28',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  snowman: {
    keywords: [ "winter", "season", "cold", "weather", "christmas", "xmas", "frozen", "without_snow" ],
    char: '\u26c4',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  snowman_with_snow: {
    keywords: [ "winter", "season", "cold", "weather", "christmas", "xmas", "frozen" ],
    char: '\u2603',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  wind_face: {
    keywords: [ "gust", "air" ],
    char: '\ud83c\udf2c',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dash: {
    keywords: [ "wind", "air", "fast", "shoo", "fart", "smoke", "puff" ],
    char: '\ud83d\udca8',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  tornado: {
    keywords: [ "weather", "cyclone", "twister" ],
    char: '\ud83c\udf2a',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  fog: {
    keywords: [ "weather" ],
    char: '\ud83c\udf2b',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  open_umbrella: {
    keywords: [ "weather", "spring" ],
    char: '\u2602',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  umbrella: {
    keywords: [ "rainy", "weather", "spring" ],
    char: '\u2614',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  droplet: {
    keywords: [ "water", "drip", "faucet", "spring" ],
    char: '\ud83d\udca7',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sweat_drops: {
    keywords: [ "water", "drip", "oops" ],
    char: '\ud83d\udca6',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  ocean: {
    keywords: [ "sea", "water", "wave", "nature", "tsunami", "disaster" ],
    char: '\ud83c\udf0a',
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  green_apple: {
    keywords: [ "fruit", "nature" ],
    char: '\ud83c\udf4f',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  apple: {
    keywords: [ "fruit", "mac", "school" ],
    char: '\ud83c\udf4e',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  pear: {
    keywords: [ "fruit", "nature", "food" ],
    char: '\ud83c\udf50',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  tangerine: {
    keywords: [ "food", "fruit", "nature", "orange" ],
    char: '\ud83c\udf4a',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  lemon: {
    keywords: [ "fruit", "nature" ],
    char: '\ud83c\udf4b',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  banana: {
    keywords: [ "fruit", "food", "monkey" ],
    char: '\ud83c\udf4c',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  watermelon: {
    keywords: [ "fruit", "food", "picnic", "summer" ],
    char: '\ud83c\udf49',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  grapes: {
    keywords: [ "fruit", "food", "wine" ],
    char: '\ud83c\udf47',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  strawberry: {
    keywords: [ "fruit", "food", "nature" ],
    char: '\ud83c\udf53',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  melon: {
    keywords: [ "fruit", "nature", "food" ],
    char: '\ud83c\udf48',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cherries: {
    keywords: [ "food", "fruit" ],
    char: '\ud83c\udf52',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  peach: {
    keywords: [ "fruit", "nature", "food" ],
    char: '\ud83c\udf51',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  pineapple: {
    keywords: [ "fruit", "nature", "food" ],
    char: '\ud83c\udf4d',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  coconut: {
    keywords: [ "fruit", "nature", "food", "palm" ],
    char: '\ud83e\udd65',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  kiwi_fruit: {
    keywords: [ "fruit", "food" ],
    char: '\ud83e\udd5d',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  mango: {
    keywords: [ "fruit", "food", "tropical" ],
    char: '\ud83e\udd6d',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  avocado: {
    keywords: [ "fruit", "food" ],
    char: '\ud83e\udd51',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  broccoli: {
    keywords: [ "fruit", "food", "vegetable" ],
    char: '\ud83e\udd66',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  tomato: {
    keywords: [ "fruit", "vegetable", "nature", "food" ],
    char: '\ud83c\udf45',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  eggplant: {
    keywords: [ "vegetable", "nature", "food", "aubergine" ],
    char: '\ud83c\udf46',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cucumber: {
    keywords: [ "fruit", "food", "pickle" ],
    char: '\ud83e\udd52',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  carrot: {
    keywords: [ "vegetable", "food", "orange" ],
    char: '\ud83e\udd55',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  hot_pepper: {
    keywords: [ "food", "spicy", "chilli", "chili" ],
    char: '\ud83c\udf36',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  potato: {
    keywords: [ "food", "tuber", "vegatable", "starch" ],
    char: '\ud83e\udd54',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  corn: {
    keywords: [ "food", "vegetable", "plant" ],
    char: '\ud83c\udf3d',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  leafy_greens: {
    keywords: [ "food", "vegetable", "plant", "bok choy", "cabbage", "kale", "lettuce" ],
    char: '\ud83e\udd6c',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  sweet_potato: {
    keywords: [ "food", "nature" ],
    char: '\ud83c\udf60',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  peanuts: {
    keywords: [ "food", "nut" ],
    char: '\ud83e\udd5c',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  honey_pot: {
    keywords: [ "bees", "sweet", "kitchen" ],
    char: '\ud83c\udf6f',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  croissant: {
    keywords: [ "food", "bread", "french" ],
    char: '\ud83e\udd50',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  bread: {
    keywords: [ "food", "wheat", "breakfast", "toast" ],
    char: '\ud83c\udf5e',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  baguette_bread: {
    keywords: [ "food", "bread", "french" ],
    char: '\ud83e\udd56',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  bagel: {
    keywords: [ "food", "bread", "bakery", "schmear" ],
    char: '\ud83e\udd6f',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  pretzel: {
    keywords: [ "food", "bread", "twisted" ],
    char: '\ud83e\udd68',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cheese: {
    keywords: [ "food", "chadder" ],
    char: '\ud83e\uddc0',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  egg: {
    keywords: [ "food", "chicken", "breakfast" ],
    char: '\ud83e\udd5a',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  bacon: {
    keywords: [ "food", "breakfast", "pork", "pig", "meat" ],
    char: '\ud83e\udd53',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  steak: {
    keywords: [ "food", "cow", "meat", "cut", "chop", "lambchop", "porkchop" ],
    char: '\ud83e\udd69',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  pancakes: {
    keywords: [ "food", "breakfast", "flapjacks", "hotcakes" ],
    char: '\ud83e\udd5e',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  poultry_leg: {
    keywords: [ "food", "meat", "drumstick", "bird", "chicken", "turkey" ],
    char: '\ud83c\udf57',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  meat_on_bone: {
    keywords: [ "good", "food", "drumstick" ],
    char: '\ud83c\udf56',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  bone: {
    keywords: [ "skeleton" ],
    char: '\ud83e\uddb4',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  fried_shrimp: {
    keywords: [ "food", "animal", "appetizer", "summer" ],
    char: '\ud83c\udf64',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  fried_egg: {
    keywords: [ "food", "breakfast", "kitchen", "egg" ],
    char: '\ud83c\udf73',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  hamburger: {
    keywords: [ "meat", "fast food", "beef", "cheeseburger", "mcdonalds", "burger king" ],
    char: '\ud83c\udf54',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  fries: {
    keywords: [ "chips", "snack", "fast food" ],
    char: '\ud83c\udf5f',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  stuffed_flatbread: {
    keywords: [ "food", "flatbread", "stuffed", "gyro" ],
    char: '\ud83e\udd59',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  hotdog: {
    keywords: [ "food", "frankfurter" ],
    char: '\ud83c\udf2d',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  pizza: {
    keywords: [ "food", "party" ],
    char: '\ud83c\udf55',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  sandwich: {
    keywords: [ "food", "lunch", "bread" ],
    char: '\ud83e\udd6a',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  canned_food: {
    keywords: [ "food", "soup" ],
    char: '\ud83e\udd6b',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  spaghetti: {
    keywords: [ "food", "italian", "noodle" ],
    char: '\ud83c\udf5d',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  taco: {
    keywords: [ "food", "mexican" ],
    char: '\ud83c\udf2e',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  burrito: {
    keywords: [ "food", "mexican" ],
    char: '\ud83c\udf2f',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  green_salad: {
    keywords: [ "food", "healthy", "lettuce" ],
    char: '\ud83e\udd57',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  shallow_pan_of_food: {
    keywords: [ "food", "cooking", "casserole", "paella" ],
    char: '\ud83e\udd58',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  ramen: {
    keywords: [ "food", "japanese", "noodle", "chopsticks" ],
    char: '\ud83c\udf5c',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  stew: {
    keywords: [ "food", "meat", "soup" ],
    char: '\ud83c\udf72',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  fish_cake: {
    keywords: [ "food", "japan", "sea", "beach", "narutomaki", "pink", "swirl", "kamaboko", "surimi", "ramen" ],
    char: '\ud83c\udf65',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  fortune_cookie: {
    keywords: [ "food", "prophecy" ],
    char: '\ud83e\udd60',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  sushi: {
    keywords: [ "food", "fish", "japanese", "rice" ],
    char: '\ud83c\udf63',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  bento: {
    keywords: [ "food", "japanese", "box" ],
    char: '\ud83c\udf71',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  curry: {
    keywords: [ "food", "spicy", "hot", "indian" ],
    char: '\ud83c\udf5b',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  rice_ball: {
    keywords: [ "food", "japanese" ],
    char: '\ud83c\udf59',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  rice: {
    keywords: [ "food", "china", "asian" ],
    char: '\ud83c\udf5a',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  rice_cracker: {
    keywords: [ "food", "japanese" ],
    char: '\ud83c\udf58',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  oden: {
    keywords: [ "food", "japanese" ],
    char: '\ud83c\udf62',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  dango: {
    keywords: [ "food", "dessert", "sweet", "japanese", "barbecue", "meat" ],
    char: '\ud83c\udf61',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  shaved_ice: {
    keywords: [ "hot", "dessert", "summer" ],
    char: '\ud83c\udf67',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  ice_cream: {
    keywords: [ "food", "hot", "dessert" ],
    char: '\ud83c\udf68',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  icecream: {
    keywords: [ "food", "hot", "dessert", "summer" ],
    char: '\ud83c\udf66',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  pie: {
    keywords: [ "food", "dessert", "pastry" ],
    char: '\ud83e\udd67',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cake: {
    keywords: [ "food", "dessert" ],
    char: '\ud83c\udf70',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cupcake: {
    keywords: [ "food", "dessert", "bakery", "sweet" ],
    char: '\ud83e\uddc1',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  moon_cake: {
    keywords: [ "food", "autumn" ],
    char: '\ud83e\udd6e',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  birthday: {
    keywords: [ "food", "dessert", "cake" ],
    char: '\ud83c\udf82',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  custard: {
    keywords: [ "dessert", "food" ],
    char: '\ud83c\udf6e',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  candy: {
    keywords: [ "snack", "dessert", "sweet", "lolly" ],
    char: '\ud83c\udf6c',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  lollipop: {
    keywords: [ "food", "snack", "candy", "sweet" ],
    char: '\ud83c\udf6d',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  chocolate_bar: {
    keywords: [ "food", "snack", "dessert", "sweet" ],
    char: '\ud83c\udf6b',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  popcorn: {
    keywords: [ "food", "movie theater", "films", "snack" ],
    char: '\ud83c\udf7f',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  dumpling: {
    keywords: [ "food", "empanada", "pierogi", "potsticker" ],
    char: '\ud83e\udd5f',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  doughnut: {
    keywords: [ "food", "dessert", "snack", "sweet", "donut" ],
    char: '\ud83c\udf69',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cookie: {
    keywords: [ "food", "snack", "oreo", "chocolate", "sweet", "dessert" ],
    char: '\ud83c\udf6a',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  milk_glass: {
    keywords: [ "beverage", "drink", "cow" ],
    char: '\ud83e\udd5b',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  beer: {
    keywords: [ "relax", "beverage", "drink", "drunk", "party", "pub", "summer", "alcohol", "booze" ],
    char: '\ud83c\udf7a',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  beers: {
    keywords: [ "relax", "beverage", "drink", "drunk", "party", "pub", "summer", "alcohol", "booze" ],
    char: '\ud83c\udf7b',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  clinking_glasses: {
    keywords: [ "beverage", "drink", "party", "alcohol", "celebrate", "cheers", "wine", "champagne", "toast" ],
    char: '\ud83e\udd42',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  wine_glass: {
    keywords: [ "drink", "beverage", "drunk", "alcohol", "booze" ],
    char: '\ud83c\udf77',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  tumbler_glass: {
    keywords: [ "drink", "beverage", "drunk", "alcohol", "liquor", "booze", "bourbon", "scotch", "whisky", "glass", "shot" ],
    char: '\ud83e\udd43',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cocktail: {
    keywords: [ "drink", "drunk", "alcohol", "beverage", "booze", "mojito" ],
    char: '\ud83c\udf78',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  tropical_drink: {
    keywords: [ "beverage", "cocktail", "summer", "beach", "alcohol", "booze", "mojito" ],
    char: '\ud83c\udf79',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  champagne: {
    keywords: [ "drink", "wine", "bottle", "celebration" ],
    char: '\ud83c\udf7e',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  sake: {
    keywords: [ "wine", "drink", "drunk", "beverage", "japanese", "alcohol", "booze" ],
    char: '\ud83c\udf76',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  tea: {
    keywords: [ "drink", "bowl", "breakfast", "green", "british" ],
    char: '\ud83c\udf75',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cup_with_straw: {
    keywords: [ "drink", "soda" ],
    char: '\ud83e\udd64',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  coffee: {
    keywords: [ "beverage", "caffeine", "latte", "espresso" ],
    char: '\u2615',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  baby_bottle: {
    keywords: [ "food", "container", "milk" ],
    char: '\ud83c\udf7c',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  salt: {
    keywords: [ "condiment", "shaker" ],
    char: '\ud83e\uddc2',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  spoon: {
    keywords: [ "cutlery", "kitchen", "tableware" ],
    char: '\ud83e\udd44',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  fork_and_knife: {
    keywords: [ "cutlery", "kitchen" ],
    char: '\ud83c\udf74',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  plate_with_cutlery: {
    keywords: [ "food", "eat", "meal", "lunch", "dinner", "restaurant" ],
    char: '\ud83c\udf7d',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  bowl_with_spoon: {
    keywords: [ "food", "breakfast", "cereal", "oatmeal", "porridge" ],
    char: '\ud83e\udd63',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  takeout_box: {
    keywords: [ "food", "leftovers" ],
    char: '\ud83e\udd61',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  chopsticks: {
    keywords: [ "food" ],
    char: '\ud83e\udd62',
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  soccer: {
    keywords: [ "sports", "football" ],
    char: '\u26bd',
    fitzpatrick_scale: false,
    category: "activity"
  },
  basketball: {
    keywords: [ "sports", "balls", "NBA" ],
    char: '\ud83c\udfc0',
    fitzpatrick_scale: false,
    category: "activity"
  },
  football: {
    keywords: [ "sports", "balls", "NFL" ],
    char: '\ud83c\udfc8',
    fitzpatrick_scale: false,
    category: "activity"
  },
  baseball: {
    keywords: [ "sports", "balls" ],
    char: '\u26be',
    fitzpatrick_scale: false,
    category: "activity"
  },
  softball: {
    keywords: [ "sports", "balls" ],
    char: '\ud83e\udd4e',
    fitzpatrick_scale: false,
    category: "activity"
  },
  tennis: {
    keywords: [ "sports", "balls", "green" ],
    char: '\ud83c\udfbe',
    fitzpatrick_scale: false,
    category: "activity"
  },
  volleyball: {
    keywords: [ "sports", "balls" ],
    char: '\ud83c\udfd0',
    fitzpatrick_scale: false,
    category: "activity"
  },
  rugby_football: {
    keywords: [ "sports", "team" ],
    char: '\ud83c\udfc9',
    fitzpatrick_scale: false,
    category: "activity"
  },
  flying_disc: {
    keywords: [ "sports", "frisbee", "ultimate" ],
    char: '\ud83e\udd4f',
    fitzpatrick_scale: false,
    category: "activity"
  },
  "8ball": {
    keywords: [ "pool", "hobby", "game", "luck", "magic" ],
    char: '\ud83c\udfb1',
    fitzpatrick_scale: false,
    category: "activity"
  },
  golf: {
    keywords: [ "sports", "business", "flag", "hole", "summer" ],
    char: '\u26f3',
    fitzpatrick_scale: false,
    category: "activity"
  },
  golfing_woman: {
    keywords: [ "sports", "business", "woman", "female" ],
    char: '\ud83c\udfcc\ufe0f\u200d\u2640\ufe0f',
    fitzpatrick_scale: false,
    category: "activity"
  },
  golfing_man: {
    keywords: [ "sports", "business" ],
    char: '\ud83c\udfcc',
    fitzpatrick_scale: true,
    category: "activity"
  },
  ping_pong: {
    keywords: [ "sports", "pingpong" ],
    char: '\ud83c\udfd3',
    fitzpatrick_scale: false,
    category: "activity"
  },
  badminton: {
    keywords: [ "sports" ],
    char: '\ud83c\udff8',
    fitzpatrick_scale: false,
    category: "activity"
  },
  goal_net: {
    keywords: [ "sports" ],
    char: '\ud83e\udd45',
    fitzpatrick_scale: false,
    category: "activity"
  },
  ice_hockey: {
    keywords: [ "sports" ],
    char: '\ud83c\udfd2',
    fitzpatrick_scale: false,
    category: "activity"
  },
  field_hockey: {
    keywords: [ "sports" ],
    char: '\ud83c\udfd1',
    fitzpatrick_scale: false,
    category: "activity"
  },
  lacrosse: {
    keywords: [ "sports", "ball", "stick" ],
    char: '\ud83e\udd4d',
    fitzpatrick_scale: false,
    category: "activity"
  },
  cricket: {
    keywords: [ "sports" ],
    char: '\ud83c\udfcf',
    fitzpatrick_scale: false,
    category: "activity"
  },
  ski: {
    keywords: [ "sports", "winter", "cold", "snow" ],
    char: '\ud83c\udfbf',
    fitzpatrick_scale: false,
    category: "activity"
  },
  skier: {
    keywords: [ "sports", "winter", "snow" ],
    char: '\u26f7',
    fitzpatrick_scale: false,
    category: "activity"
  },
  snowboarder: {
    keywords: [ "sports", "winter" ],
    char: '\ud83c\udfc2',
    fitzpatrick_scale: true,
    category: "activity"
  },
  person_fencing: {
    keywords: [ "sports", "fencing", "sword" ],
    char: '\ud83e\udd3a',
    fitzpatrick_scale: false,
    category: "activity"
  },
  women_wrestling: {
    keywords: [ "sports", "wrestlers" ],
    char: '\ud83e\udd3c\u200d\u2640\ufe0f',
    fitzpatrick_scale: false,
    category: "activity"
  },
  men_wrestling: {
    keywords: [ "sports", "wrestlers" ],
    char: '\ud83e\udd3c\u200d\u2642\ufe0f',
    fitzpatrick_scale: false,
    category: "activity"
  },
  woman_cartwheeling: {
    keywords: [ "gymnastics" ],
    char: '\ud83e\udd38\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  man_cartwheeling: {
    keywords: [ "gymnastics" ],
    char: '\ud83e\udd38\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  woman_playing_handball: {
    keywords: [ "sports" ],
    char: '\ud83e\udd3e\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  man_playing_handball: {
    keywords: [ "sports" ],
    char: '\ud83e\udd3e\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  ice_skate: {
    keywords: [ "sports" ],
    char: '\u26f8',
    fitzpatrick_scale: false,
    category: "activity"
  },
  curling_stone: {
    keywords: [ "sports" ],
    char: '\ud83e\udd4c',
    fitzpatrick_scale: false,
    category: "activity"
  },
  skateboard: {
    keywords: [ "board" ],
    char: '\ud83d\udef9',
    fitzpatrick_scale: false,
    category: "activity"
  },
  sled: {
    keywords: [ "sleigh", "luge", "toboggan" ],
    char: '\ud83d\udef7',
    fitzpatrick_scale: false,
    category: "activity"
  },
  bow_and_arrow: {
    keywords: [ "sports" ],
    char: '\ud83c\udff9',
    fitzpatrick_scale: false,
    category: "activity"
  },
  fishing_pole_and_fish: {
    keywords: [ "food", "hobby", "summer" ],
    char: '\ud83c\udfa3',
    fitzpatrick_scale: false,
    category: "activity"
  },
  boxing_glove: {
    keywords: [ "sports", "fighting" ],
    char: '\ud83e\udd4a',
    fitzpatrick_scale: false,
    category: "activity"
  },
  martial_arts_uniform: {
    keywords: [ "judo", "karate", "taekwondo" ],
    char: '\ud83e\udd4b',
    fitzpatrick_scale: false,
    category: "activity"
  },
  rowing_woman: {
    keywords: [ "sports", "hobby", "water", "ship", "woman", "female" ],
    char: '\ud83d\udea3\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  rowing_man: {
    keywords: [ "sports", "hobby", "water", "ship" ],
    char: '\ud83d\udea3',
    fitzpatrick_scale: true,
    category: "activity"
  },
  climbing_woman: {
    keywords: [ "sports", "hobby", "woman", "female", "rock" ],
    char: '\ud83e\uddd7\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  climbing_man: {
    keywords: [ "sports", "hobby", "man", "male", "rock" ],
    char: '\ud83e\uddd7\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  swimming_woman: {
    keywords: [ "sports", "exercise", "human", "athlete", "water", "summer", "woman", "female" ],
    char: '\ud83c\udfca\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  swimming_man: {
    keywords: [ "sports", "exercise", "human", "athlete", "water", "summer" ],
    char: '\ud83c\udfca',
    fitzpatrick_scale: true,
    category: "activity"
  },
  woman_playing_water_polo: {
    keywords: [ "sports", "pool" ],
    char: '\ud83e\udd3d\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  man_playing_water_polo: {
    keywords: [ "sports", "pool" ],
    char: '\ud83e\udd3d\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  woman_in_lotus_position: {
    keywords: [ "woman", "female", "meditation", "yoga", "serenity", "zen", "mindfulness" ],
    char: '\ud83e\uddd8\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  man_in_lotus_position: {
    keywords: [ "man", "male", "meditation", "yoga", "serenity", "zen", "mindfulness" ],
    char: '\ud83e\uddd8\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  surfing_woman: {
    keywords: [ "sports", "ocean", "sea", "summer", "beach", "woman", "female" ],
    char: '\ud83c\udfc4\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  surfing_man: {
    keywords: [ "sports", "ocean", "sea", "summer", "beach" ],
    char: '\ud83c\udfc4',
    fitzpatrick_scale: true,
    category: "activity"
  },
  bath: {
    keywords: [ "clean", "shower", "bathroom" ],
    char: '\ud83d\udec0',
    fitzpatrick_scale: true,
    category: "activity"
  },
  basketball_woman: {
    keywords: [ "sports", "human", "woman", "female" ],
    char: '\u26f9\ufe0f\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  basketball_man: {
    keywords: [ "sports", "human" ],
    char: '\u26f9',
    fitzpatrick_scale: true,
    category: "activity"
  },
  weight_lifting_woman: {
    keywords: [ "sports", "training", "exercise", "woman", "female" ],
    char: '\ud83c\udfcb\ufe0f\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  weight_lifting_man: {
    keywords: [ "sports", "training", "exercise" ],
    char: '\ud83c\udfcb',
    fitzpatrick_scale: true,
    category: "activity"
  },
  biking_woman: {
    keywords: [ "sports", "bike", "exercise", "hipster", "woman", "female" ],
    char: '\ud83d\udeb4\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  biking_man: {
    keywords: [ "sports", "bike", "exercise", "hipster" ],
    char: '\ud83d\udeb4',
    fitzpatrick_scale: true,
    category: "activity"
  },
  mountain_biking_woman: {
    keywords: [ "transportation", "sports", "human", "race", "bike", "woman", "female" ],
    char: '\ud83d\udeb5\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  mountain_biking_man: {
    keywords: [ "transportation", "sports", "human", "race", "bike" ],
    char: '\ud83d\udeb5',
    fitzpatrick_scale: true,
    category: "activity"
  },
  horse_racing: {
    keywords: [ "animal", "betting", "competition", "gambling", "luck" ],
    char: '\ud83c\udfc7',
    fitzpatrick_scale: true,
    category: "activity"
  },
  business_suit_levitating: {
    keywords: [ "suit", "business", "levitate", "hover", "jump" ],
    char: '\ud83d\udd74',
    fitzpatrick_scale: true,
    category: "activity"
  },
  trophy: {
    keywords: [ "win", "award", "contest", "place", "ftw", "ceremony" ],
    char: '\ud83c\udfc6',
    fitzpatrick_scale: false,
    category: "activity"
  },
  running_shirt_with_sash: {
    keywords: [ "play", "pageant" ],
    char: '\ud83c\udfbd',
    fitzpatrick_scale: false,
    category: "activity"
  },
  medal_sports: {
    keywords: [ "award", "winning" ],
    char: '\ud83c\udfc5',
    fitzpatrick_scale: false,
    category: "activity"
  },
  medal_military: {
    keywords: [ "award", "winning", "army" ],
    char: '\ud83c\udf96',
    fitzpatrick_scale: false,
    category: "activity"
  },
  "1st_place_medal": {
    keywords: [ "award", "winning", "first" ],
    char: '\ud83e\udd47',
    fitzpatrick_scale: false,
    category: "activity"
  },
  "2nd_place_medal": {
    keywords: [ "award", "second" ],
    char: '\ud83e\udd48',
    fitzpatrick_scale: false,
    category: "activity"
  },
  "3rd_place_medal": {
    keywords: [ "award", "third" ],
    char: '\ud83e\udd49',
    fitzpatrick_scale: false,
    category: "activity"
  },
  reminder_ribbon: {
    keywords: [ "sports", "cause", "support", "awareness" ],
    char: '\ud83c\udf97',
    fitzpatrick_scale: false,
    category: "activity"
  },
  rosette: {
    keywords: [ "flower", "decoration", "military" ],
    char: '\ud83c\udff5',
    fitzpatrick_scale: false,
    category: "activity"
  },
  ticket: {
    keywords: [ "event", "concert", "pass" ],
    char: '\ud83c\udfab',
    fitzpatrick_scale: false,
    category: "activity"
  },
  tickets: {
    keywords: [ "sports", "concert", "entrance" ],
    char: '\ud83c\udf9f',
    fitzpatrick_scale: false,
    category: "activity"
  },
  performing_arts: {
    keywords: [ "acting", "theater", "drama" ],
    char: '\ud83c\udfad',
    fitzpatrick_scale: false,
    category: "activity"
  },
  art: {
    keywords: [ "design", "paint", "draw", "colors" ],
    char: '\ud83c\udfa8',
    fitzpatrick_scale: false,
    category: "activity"
  },
  circus_tent: {
    keywords: [ "festival", "carnival", "party" ],
    char: '\ud83c\udfaa',
    fitzpatrick_scale: false,
    category: "activity"
  },
  woman_juggling: {
    keywords: [ "juggle", "balance", "skill", "multitask" ],
    char: '\ud83e\udd39\u200d\u2640\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  man_juggling: {
    keywords: [ "juggle", "balance", "skill", "multitask" ],
    char: '\ud83e\udd39\u200d\u2642\ufe0f',
    fitzpatrick_scale: true,
    category: "activity"
  },
  microphone: {
    keywords: [ "sound", "music", "PA", "sing", "talkshow" ],
    char: '\ud83c\udfa4',
    fitzpatrick_scale: false,
    category: "activity"
  },
  headphones: {
    keywords: [ "music", "score", "gadgets" ],
    char: '\ud83c\udfa7',
    fitzpatrick_scale: false,
    category: "activity"
  },
  musical_score: {
    keywords: [ "treble", "clef", "compose" ],
    char: '\ud83c\udfbc',
    fitzpatrick_scale: false,
    category: "activity"
  },
  musical_keyboard: {
    keywords: [ "piano", "instrument", "compose" ],
    char: '\ud83c\udfb9',
    fitzpatrick_scale: false,
    category: "activity"
  },
  drum: {
    keywords: [ "music", "instrument", "drumsticks", "snare" ],
    char: '\ud83e\udd41',
    fitzpatrick_scale: false,
    category: "activity"
  },
  saxophone: {
    keywords: [ "music", "instrument", "jazz", "blues" ],
    char: '\ud83c\udfb7',
    fitzpatrick_scale: false,
    category: "activity"
  },
  trumpet: {
    keywords: [ "music", "brass" ],
    char: '\ud83c\udfba',
    fitzpatrick_scale: false,
    category: "activity"
  },
  guitar: {
    keywords: [ "music", "instrument" ],
    char: '\ud83c\udfb8',
    fitzpatrick_scale: false,
    category: "activity"
  },
  violin: {
    keywords: [ "music", "instrument", "orchestra", "symphony" ],
    char: '\ud83c\udfbb',
    fitzpatrick_scale: false,
    category: "activity"
  },
  clapper: {
    keywords: [ "movie", "film", "record" ],
    char: '\ud83c\udfac',
    fitzpatrick_scale: false,
    category: "activity"
  },
  video_game: {
    keywords: [ "play", "console", "PS4", "controller" ],
    char: '\ud83c\udfae',
    fitzpatrick_scale: false,
    category: "activity"
  },
  space_invader: {
    keywords: [ "game", "arcade", "play" ],
    char: '\ud83d\udc7e',
    fitzpatrick_scale: false,
    category: "activity"
  },
  dart: {
    keywords: [ "game", "play", "bar", "target", "bullseye" ],
    char: '\ud83c\udfaf',
    fitzpatrick_scale: false,
    category: "activity"
  },
  game_die: {
    keywords: [ "dice", "random", "tabletop", "play", "luck" ],
    char: '\ud83c\udfb2',
    fitzpatrick_scale: false,
    category: "activity"
  },
  chess_pawn: {
    keywords: [ "expendable" ],
    char: "\u265f",
    fitzpatrick_scale: false,
    category: "activity"
  },
  slot_machine: {
    keywords: [ "bet", "gamble", "vegas", "fruit machine", "luck", "casino" ],
    char: '\ud83c\udfb0',
    fitzpatrick_scale: false,
    category: "activity"
  },
  jigsaw: {
    keywords: [ "interlocking", "puzzle", "piece" ],
    char: '\ud83e\udde9',
    fitzpatrick_scale: false,
    category: "activity"
  },
  bowling: {
    keywords: [ "sports", "fun", "play" ],
    char: '\ud83c\udfb3',
    fitzpatrick_scale: false,
    category: "activity"
  },
  red_car: {
    keywords: [ "red", "transportation", "vehicle" ],
    char: '\ud83d\ude97',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  taxi: {
    keywords: [ "uber", "vehicle", "cars", "transportation" ],
    char: '\ud83d\ude95',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  blue_car: {
    keywords: [ "transportation", "vehicle" ],
    char: '\ud83d\ude99',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  bus: {
    keywords: [ "car", "vehicle", "transportation" ],
    char: '\ud83d\ude8c',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  trolleybus: {
    keywords: [ "bart", "transportation", "vehicle" ],
    char: '\ud83d\ude8e',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  racing_car: {
    keywords: [ "sports", "race", "fast", "formula", "f1" ],
    char: '\ud83c\udfce',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  police_car: {
    keywords: [ "vehicle", "cars", "transportation", "law", "legal", "enforcement" ],
    char: '\ud83d\ude93',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  ambulance: {
    keywords: [ "health", "911", "hospital" ],
    char: '\ud83d\ude91',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  fire_engine: {
    keywords: [ "transportation", "cars", "vehicle" ],
    char: '\ud83d\ude92',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  minibus: {
    keywords: [ "vehicle", "car", "transportation" ],
    char: '\ud83d\ude90',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  truck: {
    keywords: [ "cars", "transportation" ],
    char: '\ud83d\ude9a',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  articulated_lorry: {
    keywords: [ "vehicle", "cars", "transportation", "express" ],
    char: '\ud83d\ude9b',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  tractor: {
    keywords: [ "vehicle", "car", "farming", "agriculture" ],
    char: '\ud83d\ude9c',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  kick_scooter: {
    keywords: [ "vehicle", "kick", "razor" ],
    char: '\ud83d\udef4',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  motorcycle: {
    keywords: [ "race", "sports", "fast" ],
    char: '\ud83c\udfcd',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  bike: {
    keywords: [ "sports", "bicycle", "exercise", "hipster" ],
    char: '\ud83d\udeb2',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  motor_scooter: {
    keywords: [ "vehicle", "vespa", "sasha" ],
    char: '\ud83d\udef5',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  rotating_light: {
    keywords: [ "police", "ambulance", "911", "emergency", "alert", "error", "pinged", "law", "legal" ],
    char: '\ud83d\udea8',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  oncoming_police_car: {
    keywords: [ "vehicle", "law", "legal", "enforcement", "911" ],
    char: '\ud83d\ude94',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  oncoming_bus: {
    keywords: [ "vehicle", "transportation" ],
    char: '\ud83d\ude8d',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  oncoming_automobile: {
    keywords: [ "car", "vehicle", "transportation" ],
    char: '\ud83d\ude98',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  oncoming_taxi: {
    keywords: [ "vehicle", "cars", "uber" ],
    char: '\ud83d\ude96',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  aerial_tramway: {
    keywords: [ "transportation", "vehicle", "ski" ],
    char: '\ud83d\udea1',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  mountain_cableway: {
    keywords: [ "transportation", "vehicle", "ski" ],
    char: '\ud83d\udea0',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  suspension_railway: {
    keywords: [ "vehicle", "transportation" ],
    char: '\ud83d\ude9f',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  railway_car: {
    keywords: [ "transportation", "vehicle" ],
    char: '\ud83d\ude83',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  train: {
    keywords: [ "transportation", "vehicle", "carriage", "public", "travel" ],
    char: '\ud83d\ude8b',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  monorail: {
    keywords: [ "transportation", "vehicle" ],
    char: '\ud83d\ude9d',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  bullettrain_side: {
    keywords: [ "transportation", "vehicle" ],
    char: '\ud83d\ude84',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  bullettrain_front: {
    keywords: [ "transportation", "vehicle", "speed", "fast", "public", "travel" ],
    char: '\ud83d\ude85',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  light_rail: {
    keywords: [ "transportation", "vehicle" ],
    char: '\ud83d\ude88',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  mountain_railway: {
    keywords: [ "transportation", "vehicle" ],
    char: '\ud83d\ude9e',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  steam_locomotive: {
    keywords: [ "transportation", "vehicle", "train" ],
    char: '\ud83d\ude82',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  train2: {
    keywords: [ "transportation", "vehicle" ],
    char: '\ud83d\ude86',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  metro: {
    keywords: [ "transportation", "blue-square", "mrt", "underground", "tube" ],
    char: '\ud83d\ude87',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  tram: {
    keywords: [ "transportation", "vehicle" ],
    char: '\ud83d\ude8a',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  station: {
    keywords: [ "transportation", "vehicle", "public" ],
    char: '\ud83d\ude89',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  flying_saucer: {
    keywords: [ "transportation", "vehicle", "ufo" ],
    char: '\ud83d\udef8',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  helicopter: {
    keywords: [ "transportation", "vehicle", "fly" ],
    char: '\ud83d\ude81',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  small_airplane: {
    keywords: [ "flight", "transportation", "fly", "vehicle" ],
    char: '\ud83d\udee9',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  airplane: {
    keywords: [ "vehicle", "transportation", "flight", "fly" ],
    char: '\u2708\ufe0f',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  flight_departure: {
    keywords: [ "airport", "flight", "landing" ],
    char: '\ud83d\udeeb',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  flight_arrival: {
    keywords: [ "airport", "flight", "boarding" ],
    char: '\ud83d\udeec',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  sailboat: {
    keywords: [ "ship", "summer", "transportation", "water", "sailing" ],
    char: '\u26f5',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  motor_boat: {
    keywords: [ "ship" ],
    char: '\ud83d\udee5',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  speedboat: {
    keywords: [ "ship", "transportation", "vehicle", "summer" ],
    char: '\ud83d\udea4',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  ferry: {
    keywords: [ "boat", "ship", "yacht" ],
    char: '\u26f4',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  passenger_ship: {
    keywords: [ "yacht", "cruise", "ferry" ],
    char: '\ud83d\udef3',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  rocket: {
    keywords: [ "launch", "ship", "staffmode", "NASA", "outer space", "outer_space", "fly" ],
    char: '\ud83d\ude80',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  artificial_satellite: {
    keywords: [ "communication", "gps", "orbit", "spaceflight", "NASA", "ISS" ],
    char: '\ud83d\udef0',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  seat: {
    keywords: [ "sit", "airplane", "transport", "bus", "flight", "fly" ],
    char: '\ud83d\udcba',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  canoe: {
    keywords: [ "boat", "paddle", "water", "ship" ],
    char: '\ud83d\udef6',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  anchor: {
    keywords: [ "ship", "ferry", "sea", "boat" ],
    char: '\u2693',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  construction: {
    keywords: [ "wip", "progress", "caution", "warning" ],
    char: '\ud83d\udea7',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  fuelpump: {
    keywords: [ "gas station", "petroleum" ],
    char: '\u26fd',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  busstop: {
    keywords: [ "transportation", "wait" ],
    char: '\ud83d\ude8f',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  vertical_traffic_light: {
    keywords: [ "transportation", "driving" ],
    char: '\ud83d\udea6',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  traffic_light: {
    keywords: [ "transportation", "signal" ],
    char: '\ud83d\udea5',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  checkered_flag: {
    keywords: [ "contest", "finishline", "race", "gokart" ],
    char: '\ud83c\udfc1',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  ship: {
    keywords: [ "transportation", "titanic", "deploy" ],
    char: '\ud83d\udea2',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  ferris_wheel: {
    keywords: [ "photo", "carnival", "londoneye" ],
    char: '\ud83c\udfa1',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  roller_coaster: {
    keywords: [ "carnival", "playground", "photo", "fun" ],
    char: '\ud83c\udfa2',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  carousel_horse: {
    keywords: [ "photo", "carnival" ],
    char: '\ud83c\udfa0',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  building_construction: {
    keywords: [ "wip", "working", "progress" ],
    char: '\ud83c\udfd7',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  foggy: {
    keywords: [ "photo", "mountain" ],
    char: '\ud83c\udf01',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  tokyo_tower: {
    keywords: [ "photo", "japanese" ],
    char: '\ud83d\uddfc',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  factory: {
    keywords: [ "building", "industry", "pollution", "smoke" ],
    char: '\ud83c\udfed',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  fountain: {
    keywords: [ "photo", "summer", "water", "fresh" ],
    char: '\u26f2',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  rice_scene: {
    keywords: [ "photo", "japan", "asia", "tsukimi" ],
    char: '\ud83c\udf91',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  mountain: {
    keywords: [ "photo", "nature", "environment" ],
    char: '\u26f0',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  mountain_snow: {
    keywords: [ "photo", "nature", "environment", "winter", "cold" ],
    char: '\ud83c\udfd4',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  mount_fuji: {
    keywords: [ "photo", "mountain", "nature", "japanese" ],
    char: '\ud83d\uddfb',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  volcano: {
    keywords: [ "photo", "nature", "disaster" ],
    char: '\ud83c\udf0b',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  japan: {
    keywords: [ "nation", "country", "japanese", "asia" ],
    char: '\ud83d\uddfe',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  camping: {
    keywords: [ "photo", "outdoors", "tent" ],
    char: '\ud83c\udfd5',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  tent: {
    keywords: [ "photo", "camping", "outdoors" ],
    char: '\u26fa',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  national_park: {
    keywords: [ "photo", "environment", "nature" ],
    char: '\ud83c\udfde',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  motorway: {
    keywords: [ "road", "cupertino", "interstate", "highway" ],
    char: '\ud83d\udee3',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  railway_track: {
    keywords: [ "train", "transportation" ],
    char: '\ud83d\udee4',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  sunrise: {
    keywords: [ "morning", "view", "vacation", "photo" ],
    char: '\ud83c\udf05',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  sunrise_over_mountains: {
    keywords: [ "view", "vacation", "photo" ],
    char: '\ud83c\udf04',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  desert: {
    keywords: [ "photo", "warm", "saharah" ],
    char: '\ud83c\udfdc',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  beach_umbrella: {
    keywords: [ "weather", "summer", "sunny", "sand", "mojito" ],
    char: '\ud83c\udfd6',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  desert_island: {
    keywords: [ "photo", "tropical", "mojito" ],
    char: '\ud83c\udfdd',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  city_sunrise: {
    keywords: [ "photo", "good morning", "dawn" ],
    char: '\ud83c\udf07',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  city_sunset: {
    keywords: [ "photo", "evening", "sky", "buildings" ],
    char: '\ud83c\udf06',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  cityscape: {
    keywords: [ "photo", "night life", "urban" ],
    char: '\ud83c\udfd9',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  night_with_stars: {
    keywords: [ "evening", "city", "downtown" ],
    char: '\ud83c\udf03',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  bridge_at_night: {
    keywords: [ "photo", "sanfrancisco" ],
    char: '\ud83c\udf09',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  milky_way: {
    keywords: [ "photo", "space", "stars" ],
    char: '\ud83c\udf0c',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  stars: {
    keywords: [ "night", "photo" ],
    char: '\ud83c\udf20',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  sparkler: {
    keywords: [ "stars", "night", "shine" ],
    char: '\ud83c\udf87',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  fireworks: {
    keywords: [ "photo", "festival", "carnival", "congratulations" ],
    char: '\ud83c\udf86',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  rainbow: {
    keywords: [ "nature", "happy", "unicorn_face", "photo", "sky", "spring" ],
    char: '\ud83c\udf08',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  houses: {
    keywords: [ "buildings", "photo" ],
    char: '\ud83c\udfd8',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  european_castle: {
    keywords: [ "building", "royalty", "history" ],
    char: '\ud83c\udff0',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  japanese_castle: {
    keywords: [ "photo", "building" ],
    char: '\ud83c\udfef',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  stadium: {
    keywords: [ "photo", "place", "sports", "concert", "venue" ],
    char: '\ud83c\udfdf',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  statue_of_liberty: {
    keywords: [ "american", "newyork" ],
    char: '\ud83d\uddfd',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  house: {
    keywords: [ "building", "home" ],
    char: '\ud83c\udfe0',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  house_with_garden: {
    keywords: [ "home", "plant", "nature" ],
    char: '\ud83c\udfe1',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  derelict_house: {
    keywords: [ "abandon", "evict", "broken", "building" ],
    char: '\ud83c\udfda',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  office: {
    keywords: [ "building", "bureau", "work" ],
    char: '\ud83c\udfe2',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  department_store: {
    keywords: [ "building", "shopping", "mall" ],
    char: '\ud83c\udfec',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  post_office: {
    keywords: [ "building", "envelope", "communication" ],
    char: '\ud83c\udfe3',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  european_post_office: {
    keywords: [ "building", "email" ],
    char: '\ud83c\udfe4',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  hospital: {
    keywords: [ "building", "health", "surgery", "doctor" ],
    char: '\ud83c\udfe5',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  bank: {
    keywords: [ "building", "money", "sales", "cash", "business", "enterprise" ],
    char: '\ud83c\udfe6',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  hotel: {
    keywords: [ "building", "accomodation", "checkin" ],
    char: '\ud83c\udfe8',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  convenience_store: {
    keywords: [ "building", "shopping", "groceries" ],
    char: '\ud83c\udfea',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  school: {
    keywords: [ "building", "student", "education", "learn", "teach" ],
    char: '\ud83c\udfeb',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  love_hotel: {
    keywords: [ "like", "affection", "dating" ],
    char: '\ud83c\udfe9',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  wedding: {
    keywords: [ "love", "like", "affection", "couple", "marriage", "bride", "groom" ],
    char: '\ud83d\udc92',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  classical_building: {
    keywords: [ "art", "culture", "history" ],
    char: '\ud83c\udfdb',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  church: {
    keywords: [ "building", "religion", "christ" ],
    char: '\u26ea',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  mosque: {
    keywords: [ "islam", "worship", "minaret" ],
    char: '\ud83d\udd4c',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  synagogue: {
    keywords: [ "judaism", "worship", "temple", "jewish" ],
    char: '\ud83d\udd4d',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  kaaba: {
    keywords: [ "mecca", "mosque", "islam" ],
    char: '\ud83d\udd4b',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  shinto_shrine: {
    keywords: [ "temple", "japan", "kyoto" ],
    char: '\u26e9',
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  watch: {
    keywords: [ "time", "accessories" ],
    char: '\u231a',
    fitzpatrick_scale: false,
    category: "objects"
  },
  iphone: {
    keywords: [ "technology", "apple", "gadgets", "dial" ],
    char: '\ud83d\udcf1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  calling: {
    keywords: [ "iphone", "incoming" ],
    char: '\ud83d\udcf2',
    fitzpatrick_scale: false,
    category: "objects"
  },
  computer: {
    keywords: [ "technology", "laptop", "screen", "display", "monitor" ],
    char: '\ud83d\udcbb',
    fitzpatrick_scale: false,
    category: "objects"
  },
  keyboard: {
    keywords: [ "technology", "computer", "type", "input", "text" ],
    char: '\u2328',
    fitzpatrick_scale: false,
    category: "objects"
  },
  desktop_computer: {
    keywords: [ "technology", "computing", "screen" ],
    char: '\ud83d\udda5',
    fitzpatrick_scale: false,
    category: "objects"
  },
  printer: {
    keywords: [ "paper", "ink" ],
    char: '\ud83d\udda8',
    fitzpatrick_scale: false,
    category: "objects"
  },
  computer_mouse: {
    keywords: [ "click" ],
    char: '\ud83d\uddb1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  trackball: {
    keywords: [ "technology", "trackpad" ],
    char: '\ud83d\uddb2',
    fitzpatrick_scale: false,
    category: "objects"
  },
  joystick: {
    keywords: [ "game", "play" ],
    char: '\ud83d\udd79',
    fitzpatrick_scale: false,
    category: "objects"
  },
  clamp: {
    keywords: [ "tool" ],
    char: '\ud83d\udddc',
    fitzpatrick_scale: false,
    category: "objects"
  },
  minidisc: {
    keywords: [ "technology", "record", "data", "disk", "90s" ],
    char: '\ud83d\udcbd',
    fitzpatrick_scale: false,
    category: "objects"
  },
  floppy_disk: {
    keywords: [ "oldschool", "technology", "save", "90s", "80s" ],
    char: '\ud83d\udcbe',
    fitzpatrick_scale: false,
    category: "objects"
  },
  cd: {
    keywords: [ "technology", "dvd", "disk", "disc", "90s" ],
    char: '\ud83d\udcbf',
    fitzpatrick_scale: false,
    category: "objects"
  },
  dvd: {
    keywords: [ "cd", "disk", "disc" ],
    char: '\ud83d\udcc0',
    fitzpatrick_scale: false,
    category: "objects"
  },
  vhs: {
    keywords: [ "record", "video", "oldschool", "90s", "80s" ],
    char: '\ud83d\udcfc',
    fitzpatrick_scale: false,
    category: "objects"
  },
  camera: {
    keywords: [ "gadgets", "photography" ],
    char: '\ud83d\udcf7',
    fitzpatrick_scale: false,
    category: "objects"
  },
  camera_flash: {
    keywords: [ "photography", "gadgets" ],
    char: '\ud83d\udcf8',
    fitzpatrick_scale: false,
    category: "objects"
  },
  video_camera: {
    keywords: [ "film", "record" ],
    char: '\ud83d\udcf9',
    fitzpatrick_scale: false,
    category: "objects"
  },
  movie_camera: {
    keywords: [ "film", "record" ],
    char: '\ud83c\udfa5',
    fitzpatrick_scale: false,
    category: "objects"
  },
  film_projector: {
    keywords: [ "video", "tape", "record", "movie" ],
    char: '\ud83d\udcfd',
    fitzpatrick_scale: false,
    category: "objects"
  },
  film_strip: {
    keywords: [ "movie" ],
    char: '\ud83c\udf9e',
    fitzpatrick_scale: false,
    category: "objects"
  },
  telephone_receiver: {
    keywords: [ "technology", "communication", "dial" ],
    char: '\ud83d\udcde',
    fitzpatrick_scale: false,
    category: "objects"
  },
  phone: {
    keywords: [ "technology", "communication", "dial", "telephone" ],
    char: '\u260e\ufe0f',
    fitzpatrick_scale: false,
    category: "objects"
  },
  pager: {
    keywords: [ "bbcall", "oldschool", "90s" ],
    char: '\ud83d\udcdf',
    fitzpatrick_scale: false,
    category: "objects"
  },
  fax: {
    keywords: [ "communication", "technology" ],
    char: '\ud83d\udce0',
    fitzpatrick_scale: false,
    category: "objects"
  },
  tv: {
    keywords: [ "technology", "program", "oldschool", "show", "television" ],
    char: '\ud83d\udcfa',
    fitzpatrick_scale: false,
    category: "objects"
  },
  radio: {
    keywords: [ "communication", "music", "podcast", "program" ],
    char: '\ud83d\udcfb',
    fitzpatrick_scale: false,
    category: "objects"
  },
  studio_microphone: {
    keywords: [ "sing", "recording", "artist", "talkshow" ],
    char: '\ud83c\udf99',
    fitzpatrick_scale: false,
    category: "objects"
  },
  level_slider: {
    keywords: [ "scale" ],
    char: '\ud83c\udf9a',
    fitzpatrick_scale: false,
    category: "objects"
  },
  control_knobs: {
    keywords: [ "dial" ],
    char: '\ud83c\udf9b',
    fitzpatrick_scale: false,
    category: "objects"
  },
  compass: {
    keywords: [ "magnetic", "navigation", "orienteering" ],
    char: '\ud83e\udded',
    fitzpatrick_scale: false,
    category: "objects"
  },
  stopwatch: {
    keywords: [ "time", "deadline" ],
    char: '\u23f1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  timer_clock: {
    keywords: [ "alarm" ],
    char: '\u23f2',
    fitzpatrick_scale: false,
    category: "objects"
  },
  alarm_clock: {
    keywords: [ "time", "wake" ],
    char: '\u23f0',
    fitzpatrick_scale: false,
    category: "objects"
  },
  mantelpiece_clock: {
    keywords: [ "time" ],
    char: '\ud83d\udd70',
    fitzpatrick_scale: false,
    category: "objects"
  },
  hourglass_flowing_sand: {
    keywords: [ "oldschool", "time", "countdown" ],
    char: '\u23f3',
    fitzpatrick_scale: false,
    category: "objects"
  },
  hourglass: {
    keywords: [ "time", "clock", "oldschool", "limit", "exam", "quiz", "test" ],
    char: '\u231b',
    fitzpatrick_scale: false,
    category: "objects"
  },
  satellite: {
    keywords: [ "communication", "future", "radio", "space" ],
    char: '\ud83d\udce1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  battery: {
    keywords: [ "power", "energy", "sustain" ],
    char: '\ud83d\udd0b',
    fitzpatrick_scale: false,
    category: "objects"
  },
  electric_plug: {
    keywords: [ "charger", "power" ],
    char: '\ud83d\udd0c',
    fitzpatrick_scale: false,
    category: "objects"
  },
  bulb: {
    keywords: [ "light", "electricity", "idea" ],
    char: '\ud83d\udca1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  flashlight: {
    keywords: [ "dark", "camping", "sight", "night" ],
    char: '\ud83d\udd26',
    fitzpatrick_scale: false,
    category: "objects"
  },
  candle: {
    keywords: [ "fire", "wax" ],
    char: '\ud83d\udd6f',
    fitzpatrick_scale: false,
    category: "objects"
  },
  fire_extinguisher: {
    keywords: [ "quench" ],
    char: '\ud83e\uddef',
    fitzpatrick_scale: false,
    category: "objects"
  },
  wastebasket: {
    keywords: [ "bin", "trash", "rubbish", "garbage", "toss" ],
    char: '\ud83d\uddd1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  oil_drum: {
    keywords: [ "barrell" ],
    char: '\ud83d\udee2',
    fitzpatrick_scale: false,
    category: "objects"
  },
  money_with_wings: {
    keywords: [ "dollar", "bills", "payment", "sale" ],
    char: '\ud83d\udcb8',
    fitzpatrick_scale: false,
    category: "objects"
  },
  dollar: {
    keywords: [ "money", "sales", "bill", "currency" ],
    char: '\ud83d\udcb5',
    fitzpatrick_scale: false,
    category: "objects"
  },
  yen: {
    keywords: [ "money", "sales", "japanese", "dollar", "currency" ],
    char: '\ud83d\udcb4',
    fitzpatrick_scale: false,
    category: "objects"
  },
  euro: {
    keywords: [ "money", "sales", "dollar", "currency" ],
    char: '\ud83d\udcb6',
    fitzpatrick_scale: false,
    category: "objects"
  },
  pound: {
    keywords: [ "british", "sterling", "money", "sales", "bills", "uk", "england", "currency" ],
    char: '\ud83d\udcb7',
    fitzpatrick_scale: false,
    category: "objects"
  },
  moneybag: {
    keywords: [ "dollar", "payment", "coins", "sale" ],
    char: '\ud83d\udcb0',
    fitzpatrick_scale: false,
    category: "objects"
  },
  credit_card: {
    keywords: [ "money", "sales", "dollar", "bill", "payment", "shopping" ],
    char: '\ud83d\udcb3',
    fitzpatrick_scale: false,
    category: "objects"
  },
  gem: {
    keywords: [ "blue", "ruby", "diamond", "jewelry" ],
    char: '\ud83d\udc8e',
    fitzpatrick_scale: false,
    category: "objects"
  },
  balance_scale: {
    keywords: [ "law", "fairness", "weight" ],
    char: '\u2696',
    fitzpatrick_scale: false,
    category: "objects"
  },
  toolbox: {
    keywords: [ "tools", "diy", "fix", "maintainer", "mechanic" ],
    char: '\ud83e\uddf0',
    fitzpatrick_scale: false,
    category: "objects"
  },
  wrench: {
    keywords: [ "tools", "diy", "ikea", "fix", "maintainer" ],
    char: '\ud83d\udd27',
    fitzpatrick_scale: false,
    category: "objects"
  },
  hammer: {
    keywords: [ "tools", "build", "create" ],
    char: '\ud83d\udd28',
    fitzpatrick_scale: false,
    category: "objects"
  },
  hammer_and_pick: {
    keywords: [ "tools", "build", "create" ],
    char: '\u2692',
    fitzpatrick_scale: false,
    category: "objects"
  },
  hammer_and_wrench: {
    keywords: [ "tools", "build", "create" ],
    char: '\ud83d\udee0',
    fitzpatrick_scale: false,
    category: "objects"
  },
  pick: {
    keywords: [ "tools", "dig" ],
    char: '\u26cf',
    fitzpatrick_scale: false,
    category: "objects"
  },
  nut_and_bolt: {
    keywords: [ "handy", "tools", "fix" ],
    char: '\ud83d\udd29',
    fitzpatrick_scale: false,
    category: "objects"
  },
  gear: {
    keywords: [ "cog" ],
    char: '\u2699',
    fitzpatrick_scale: false,
    category: "objects"
  },
  brick: {
    keywords: [ "bricks" ],
    char: '\ud83e\uddf1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  chains: {
    keywords: [ "lock", "arrest" ],
    char: '\u26d3',
    fitzpatrick_scale: false,
    category: "objects"
  },
  magnet: {
    keywords: [ "attraction", "magnetic" ],
    char: '\ud83e\uddf2',
    fitzpatrick_scale: false,
    category: "objects"
  },
  gun: {
    keywords: [ "violence", "weapon", "pistol", "revolver" ],
    char: '\ud83d\udd2b',
    fitzpatrick_scale: false,
    category: "objects"
  },
  bomb: {
    keywords: [ "boom", "explode", "explosion", "terrorism" ],
    char: '\ud83d\udca3',
    fitzpatrick_scale: false,
    category: "objects"
  },
  firecracker: {
    keywords: [ "dynamite", "boom", "explode", "explosion", "explosive" ],
    char: '\ud83e\udde8',
    fitzpatrick_scale: false,
    category: "objects"
  },
  hocho: {
    keywords: [ "knife", "blade", "cutlery", "kitchen", "weapon" ],
    char: '\ud83d\udd2a',
    fitzpatrick_scale: false,
    category: "objects"
  },
  dagger: {
    keywords: [ "weapon" ],
    char: '\ud83d\udde1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  crossed_swords: {
    keywords: [ "weapon" ],
    char: '\u2694',
    fitzpatrick_scale: false,
    category: "objects"
  },
  shield: {
    keywords: [ "protection", "security" ],
    char: '\ud83d\udee1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  smoking: {
    keywords: [ "kills", "tobacco", "cigarette", "joint", "smoke" ],
    char: '\ud83d\udeac',
    fitzpatrick_scale: false,
    category: "objects"
  },
  skull_and_crossbones: {
    keywords: [ "poison", "danger", "deadly", "scary", "death", "pirate", "evil" ],
    char: '\u2620',
    fitzpatrick_scale: false,
    category: "objects"
  },
  coffin: {
    keywords: [ "vampire", "dead", "die", "death", "rip", "graveyard", "cemetery", "casket", "funeral", "box" ],
    char: '\u26b0',
    fitzpatrick_scale: false,
    category: "objects"
  },
  funeral_urn: {
    keywords: [ "dead", "die", "death", "rip", "ashes" ],
    char: '\u26b1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  amphora: {
    keywords: [ "vase", "jar" ],
    char: '\ud83c\udffa',
    fitzpatrick_scale: false,
    category: "objects"
  },
  crystal_ball: {
    keywords: [ "disco", "party", "magic", "circus", "fortune_teller" ],
    char: '\ud83d\udd2e',
    fitzpatrick_scale: false,
    category: "objects"
  },
  prayer_beads: {
    keywords: [ "dhikr", "religious" ],
    char: '\ud83d\udcff',
    fitzpatrick_scale: false,
    category: "objects"
  },
  nazar_amulet: {
    keywords: [ "bead", "charm" ],
    char: '\ud83e\uddff',
    fitzpatrick_scale: false,
    category: "objects"
  },
  barber: {
    keywords: [ "hair", "salon", "style" ],
    char: '\ud83d\udc88',
    fitzpatrick_scale: false,
    category: "objects"
  },
  alembic: {
    keywords: [ "distilling", "science", "experiment", "chemistry" ],
    char: '\u2697',
    fitzpatrick_scale: false,
    category: "objects"
  },
  telescope: {
    keywords: [ "stars", "space", "zoom", "science", "astronomy" ],
    char: '\ud83d\udd2d',
    fitzpatrick_scale: false,
    category: "objects"
  },
  microscope: {
    keywords: [ "laboratory", "experiment", "zoomin", "science", "study" ],
    char: '\ud83d\udd2c',
    fitzpatrick_scale: false,
    category: "objects"
  },
  hole: {
    keywords: [ "embarrassing" ],
    char: '\ud83d\udd73',
    fitzpatrick_scale: false,
    category: "objects"
  },
  pill: {
    keywords: [ "health", "medicine", "doctor", "pharmacy", "drug" ],
    char: '\ud83d\udc8a',
    fitzpatrick_scale: false,
    category: "objects"
  },
  syringe: {
    keywords: [ "health", "hospital", "drugs", "blood", "medicine", "needle", "doctor", "nurse" ],
    char: '\ud83d\udc89',
    fitzpatrick_scale: false,
    category: "objects"
  },
  dna: {
    keywords: [ "biologist", "genetics", "life" ],
    char: '\ud83e\uddec',
    fitzpatrick_scale: false,
    category: "objects"
  },
  microbe: {
    keywords: [ "amoeba", "bacteria", "germs" ],
    char: '\ud83e\udda0',
    fitzpatrick_scale: false,
    category: "objects"
  },
  petri_dish: {
    keywords: [ "bacteria", "biology", "culture", "lab" ],
    char: '\ud83e\uddeb',
    fitzpatrick_scale: false,
    category: "objects"
  },
  test_tube: {
    keywords: [ "chemistry", "experiment", "lab", "science" ],
    char: '\ud83e\uddea',
    fitzpatrick_scale: false,
    category: "objects"
  },
  thermometer: {
    keywords: [ "weather", "temperature", "hot", "cold" ],
    char: '\ud83c\udf21',
    fitzpatrick_scale: false,
    category: "objects"
  },
  broom: {
    keywords: [ "cleaning", "sweeping", "witch" ],
    char: '\ud83e\uddf9',
    fitzpatrick_scale: false,
    category: "objects"
  },
  basket: {
    keywords: [ "laundry" ],
    char: '\ud83e\uddfa',
    fitzpatrick_scale: false,
    category: "objects"
  },
  toilet_paper: {
    keywords: [ "roll" ],
    char: '\ud83e\uddfb',
    fitzpatrick_scale: false,
    category: "objects"
  },
  label: {
    keywords: [ "sale", "tag" ],
    char: '\ud83c\udff7',
    fitzpatrick_scale: false,
    category: "objects"
  },
  bookmark: {
    keywords: [ "favorite", "label", "save" ],
    char: '\ud83d\udd16',
    fitzpatrick_scale: false,
    category: "objects"
  },
  toilet: {
    keywords: [ "restroom", "wc", "washroom", "bathroom", "potty" ],
    char: '\ud83d\udebd',
    fitzpatrick_scale: false,
    category: "objects"
  },
  shower: {
    keywords: [ "clean", "water", "bathroom" ],
    char: '\ud83d\udebf',
    fitzpatrick_scale: false,
    category: "objects"
  },
  bathtub: {
    keywords: [ "clean", "shower", "bathroom" ],
    char: '\ud83d\udec1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  soap: {
    keywords: [ "bar", "bathing", "cleaning", "lather" ],
    char: '\ud83e\uddfc',
    fitzpatrick_scale: false,
    category: "objects"
  },
  sponge: {
    keywords: [ "absorbing", "cleaning", "porous" ],
    char: '\ud83e\uddfd',
    fitzpatrick_scale: false,
    category: "objects"
  },
  lotion_bottle: {
    keywords: [ "moisturizer", "sunscreen" ],
    char: '\ud83e\uddf4',
    fitzpatrick_scale: false,
    category: "objects"
  },
  key: {
    keywords: [ "lock", "door", "password" ],
    char: '\ud83d\udd11',
    fitzpatrick_scale: false,
    category: "objects"
  },
  old_key: {
    keywords: [ "lock", "door", "password" ],
    char: '\ud83d\udddd',
    fitzpatrick_scale: false,
    category: "objects"
  },
  couch_and_lamp: {
    keywords: [ "read", "chill" ],
    char: '\ud83d\udecb',
    fitzpatrick_scale: false,
    category: "objects"
  },
  sleeping_bed: {
    keywords: [ "bed", "rest" ],
    char: '\ud83d\udecc',
    fitzpatrick_scale: true,
    category: "objects"
  },
  bed: {
    keywords: [ "sleep", "rest" ],
    char: '\ud83d\udecf',
    fitzpatrick_scale: false,
    category: "objects"
  },
  door: {
    keywords: [ "house", "entry", "exit" ],
    char: '\ud83d\udeaa',
    fitzpatrick_scale: false,
    category: "objects"
  },
  bellhop_bell: {
    keywords: [ "service" ],
    char: '\ud83d\udece',
    fitzpatrick_scale: false,
    category: "objects"
  },
  teddy_bear: {
    keywords: [ "plush", "stuffed" ],
    char: '\ud83e\uddf8',
    fitzpatrick_scale: false,
    category: "objects"
  },
  framed_picture: {
    keywords: [ "photography" ],
    char: '\ud83d\uddbc',
    fitzpatrick_scale: false,
    category: "objects"
  },
  world_map: {
    keywords: [ "location", "direction" ],
    char: '\ud83d\uddfa',
    fitzpatrick_scale: false,
    category: "objects"
  },
  parasol_on_ground: {
    keywords: [ "weather", "summer" ],
    char: '\u26f1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  moyai: {
    keywords: [ "rock", "easter island", "moai" ],
    char: '\ud83d\uddff',
    fitzpatrick_scale: false,
    category: "objects"
  },
  shopping: {
    keywords: [ "mall", "buy", "purchase" ],
    char: '\ud83d\udecd',
    fitzpatrick_scale: false,
    category: "objects"
  },
  shopping_cart: {
    keywords: [ "trolley" ],
    char: '\ud83d\uded2',
    fitzpatrick_scale: false,
    category: "objects"
  },
  balloon: {
    keywords: [ "party", "celebration", "birthday", "circus" ],
    char: '\ud83c\udf88',
    fitzpatrick_scale: false,
    category: "objects"
  },
  flags: {
    keywords: [ "fish", "japanese", "koinobori", "carp", "banner" ],
    char: '\ud83c\udf8f',
    fitzpatrick_scale: false,
    category: "objects"
  },
  ribbon: {
    keywords: [ "decoration", "pink", "girl", "bowtie" ],
    char: '\ud83c\udf80',
    fitzpatrick_scale: false,
    category: "objects"
  },
  gift: {
    keywords: [ "present", "birthday", "christmas", "xmas" ],
    char: '\ud83c\udf81',
    fitzpatrick_scale: false,
    category: "objects"
  },
  confetti_ball: {
    keywords: [ "festival", "party", "birthday", "circus" ],
    char: '\ud83c\udf8a',
    fitzpatrick_scale: false,
    category: "objects"
  },
  tada: {
    keywords: [ "party", "congratulations", "birthday", "magic", "circus", "celebration" ],
    char: '\ud83c\udf89',
    fitzpatrick_scale: false,
    category: "objects"
  },
  dolls: {
    keywords: [ "japanese", "toy", "kimono" ],
    char: '\ud83c\udf8e',
    fitzpatrick_scale: false,
    category: "objects"
  },
  wind_chime: {
    keywords: [ "nature", "ding", "spring", "bell" ],
    char: '\ud83c\udf90',
    fitzpatrick_scale: false,
    category: "objects"
  },
  crossed_flags: {
    keywords: [ "japanese", "nation", "country", "border" ],
    char: '\ud83c\udf8c',
    fitzpatrick_scale: false,
    category: "objects"
  },
  izakaya_lantern: {
    keywords: [ "light", "paper", "halloween", "spooky" ],
    char: '\ud83c\udfee',
    fitzpatrick_scale: false,
    category: "objects"
  },
  red_envelope: {
    keywords: [ "gift" ],
    char: '\ud83e\udde7',
    fitzpatrick_scale: false,
    category: "objects"
  },
  email: {
    keywords: [ "letter", "postal", "inbox", "communication" ],
    char: '\u2709\ufe0f',
    fitzpatrick_scale: false,
    category: "objects"
  },
  envelope_with_arrow: {
    keywords: [ "email", "communication" ],
    char: '\ud83d\udce9',
    fitzpatrick_scale: false,
    category: "objects"
  },
  incoming_envelope: {
    keywords: [ "email", "inbox" ],
    char: '\ud83d\udce8',
    fitzpatrick_scale: false,
    category: "objects"
  },
  "e-mail": {
    keywords: [ "communication", "inbox" ],
    char: '\ud83d\udce7',
    fitzpatrick_scale: false,
    category: "objects"
  },
  love_letter: {
    keywords: [ "email", "like", "affection", "envelope", "valentines" ],
    char: '\ud83d\udc8c',
    fitzpatrick_scale: false,
    category: "objects"
  },
  postbox: {
    keywords: [ "email", "letter", "envelope" ],
    char: '\ud83d\udcee',
    fitzpatrick_scale: false,
    category: "objects"
  },
  mailbox_closed: {
    keywords: [ "email", "communication", "inbox" ],
    char: '\ud83d\udcea',
    fitzpatrick_scale: false,
    category: "objects"
  },
  mailbox: {
    keywords: [ "email", "inbox", "communication" ],
    char: '\ud83d\udceb',
    fitzpatrick_scale: false,
    category: "objects"
  },
  mailbox_with_mail: {
    keywords: [ "email", "inbox", "communication" ],
    char: '\ud83d\udcec',
    fitzpatrick_scale: false,
    category: "objects"
  },
  mailbox_with_no_mail: {
    keywords: [ "email", "inbox" ],
    char: '\ud83d\udced',
    fitzpatrick_scale: false,
    category: "objects"
  },
  package: {
    keywords: [ "mail", "gift", "cardboard", "box", "moving" ],
    char: '\ud83d\udce6',
    fitzpatrick_scale: false,
    category: "objects"
  },
  postal_horn: {
    keywords: [ "instrument", "music" ],
    char: '\ud83d\udcef',
    fitzpatrick_scale: false,
    category: "objects"
  },
  inbox_tray: {
    keywords: [ "email", "documents" ],
    char: '\ud83d\udce5',
    fitzpatrick_scale: false,
    category: "objects"
  },
  outbox_tray: {
    keywords: [ "inbox", "email" ],
    char: '\ud83d\udce4',
    fitzpatrick_scale: false,
    category: "objects"
  },
  scroll: {
    keywords: [ "documents", "ancient", "history", "paper" ],
    char: '\ud83d\udcdc',
    fitzpatrick_scale: false,
    category: "objects"
  },
  page_with_curl: {
    keywords: [ "documents", "office", "paper" ],
    char: '\ud83d\udcc3',
    fitzpatrick_scale: false,
    category: "objects"
  },
  bookmark_tabs: {
    keywords: [ "favorite", "save", "order", "tidy" ],
    char: '\ud83d\udcd1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  receipt: {
    keywords: [ "accounting", "expenses" ],
    char: '\ud83e\uddfe',
    fitzpatrick_scale: false,
    category: "objects"
  },
  bar_chart: {
    keywords: [ "graph", "presentation", "stats" ],
    char: '\ud83d\udcca',
    fitzpatrick_scale: false,
    category: "objects"
  },
  chart_with_upwards_trend: {
    keywords: [ "graph", "presentation", "stats", "recovery", "business", "economics", "money", "sales", "good", "success" ],
    char: '\ud83d\udcc8',
    fitzpatrick_scale: false,
    category: "objects"
  },
  chart_with_downwards_trend: {
    keywords: [ "graph", "presentation", "stats", "recession", "business", "economics", "money", "sales", "bad", "failure" ],
    char: '\ud83d\udcc9',
    fitzpatrick_scale: false,
    category: "objects"
  },
  page_facing_up: {
    keywords: [ "documents", "office", "paper", "information" ],
    char: '\ud83d\udcc4',
    fitzpatrick_scale: false,
    category: "objects"
  },
  date: {
    keywords: [ "calendar", "schedule" ],
    char: '\ud83d\udcc5',
    fitzpatrick_scale: false,
    category: "objects"
  },
  calendar: {
    keywords: [ "schedule", "date", "planning" ],
    char: '\ud83d\udcc6',
    fitzpatrick_scale: false,
    category: "objects"
  },
  spiral_calendar: {
    keywords: [ "date", "schedule", "planning" ],
    char: '\ud83d\uddd3',
    fitzpatrick_scale: false,
    category: "objects"
  },
  card_index: {
    keywords: [ "business", "stationery" ],
    char: '\ud83d\udcc7',
    fitzpatrick_scale: false,
    category: "objects"
  },
  card_file_box: {
    keywords: [ "business", "stationery" ],
    char: '\ud83d\uddc3',
    fitzpatrick_scale: false,
    category: "objects"
  },
  ballot_box: {
    keywords: [ "election", "vote" ],
    char: '\ud83d\uddf3',
    fitzpatrick_scale: false,
    category: "objects"
  },
  file_cabinet: {
    keywords: [ "filing", "organizing" ],
    char: '\ud83d\uddc4',
    fitzpatrick_scale: false,
    category: "objects"
  },
  clipboard: {
    keywords: [ "stationery", "documents" ],
    char: '\ud83d\udccb',
    fitzpatrick_scale: false,
    category: "objects"
  },
  spiral_notepad: {
    keywords: [ "memo", "stationery" ],
    char: '\ud83d\uddd2',
    fitzpatrick_scale: false,
    category: "objects"
  },
  file_folder: {
    keywords: [ "documents", "business", "office" ],
    char: '\ud83d\udcc1',
    fitzpatrick_scale: false,
    category: "objects"
  },
  open_file_folder: {
    keywords: [ "documents", "load" ],
    char: '\ud83d\udcc2',
    fitzpatrick_scale: false,
    category: "objects"
  },
  card_index_dividers: {
    keywords: [ "organizing", "business", "stationery" ],
    char: '\ud83d\uddc2',
    fitzpatrick_scale: false,
    category: "objects"
  },
  newspaper_roll: {
    keywords: [ "press", "headline" ],
    char: '\ud83d\uddde',
    fitzpatrick_scale: false,
    category: "objects"
  },
  newspaper: {
    keywords: [ "press", "headline" ],
    char: '\ud83d\udcf0',
    fitzpatrick_scale: false,
    category: "objects"
  },
  notebook: {
    keywords: [ "stationery", "record", "notes", "paper", "study" ],
    char: '\ud83d\udcd3',
    fitzpatrick_scale: false,
    category: "objects"
  },
  closed_book: {
    keywords: [ "read", "library", "knowledge", "textbook", "learn" ],
    char: '\ud83d\udcd5',
    fitzpatrick_scale: false,
    category: "objects"
  },
  green_book: {
    keywords: [ "read", "library", "knowledge", "study" ],
    char: '\ud83d\udcd7',
    fitzpatrick_scale: false,
    category: "objects"
  },
  blue_book: {
    keywords: [ "read", "library", "knowledge", "learn", "study" ],
    char: '\ud83d\udcd8',
    fitzpatrick_scale: false,
    category: "objects"
  },
  orange_book: {
    keywords: [ "read", "library", "knowledge", "textbook", "study" ],
    char: '\ud83d\udcd9',
    fitzpatrick_scale: false,
    category: "objects"
  },
  notebook_with_decorative_cover: {
    keywords: [ "classroom", "notes", "record", "paper", "study" ],
    char: '\ud83d\udcd4',
    fitzpatrick_scale: false,
    category: "objects"
  },
  ledger: {
    keywords: [ "notes", "paper" ],
    char: '\ud83d\udcd2',
    fitzpatrick_scale: false,
    category: "objects"
  },
  books: {
    keywords: [ "literature", "library", "study" ],
    char: '\ud83d\udcda',
    fitzpatrick_scale: false,
    category: "objects"
  },
  open_book: {
    keywords: [ "book", "read", "library", "knowledge", "literature", "learn", "study" ],
    char: '\ud83d\udcd6',
    fitzpatrick_scale: false,
    category: "objects"
  },
  safety_pin: {
    keywords: [ "diaper" ],
    char: '\ud83e\uddf7',
    fitzpatrick_scale: false,
    category: "objects"
  },
  link: {
    keywords: [ "rings", "url" ],
    char: '\ud83d\udd17',
    fitzpatrick_scale: false,
    category: "objects"
  },
  paperclip: {
    keywords: [ "documents", "stationery" ],
    char: '\ud83d\udcce',
    fitzpatrick_scale: false,
    category: "objects"
  },
  paperclips: {
    keywords: [ "documents", "stationery" ],
    char: '\ud83d\udd87',
    fitzpatrick_scale: false,
    category: "objects"
  },
  scissors: {
    keywords: [ "stationery", "cut" ],
    char: '\u2702\ufe0f',
    fitzpatrick_scale: false,
    category: "objects"
  },
  triangular_ruler: {
    keywords: [ "stationery", "math", "architect", "sketch" ],
    char: '\ud83d\udcd0',
    fitzpatrick_scale: false,
    category: "objects"
  },
  straight_ruler: {
    keywords: [ "stationery", "calculate", "length", "math", "school", "drawing", "architect", "sketch" ],
    char: '\ud83d\udccf',
    fitzpatrick_scale: false,
    category: "objects"
  },
  abacus: {
    keywords: [ "calculation" ],
    char: '\ud83e\uddee',
    fitzpatrick_scale: false,
    category: "objects"
  },
  pushpin: {
    keywords: [ "stationery", "mark", "here" ],
    char: '\ud83d\udccc',
    fitzpatrick_scale: false,
    category: "objects"
  },
  round_pushpin: {
    keywords: [ "stationery", "location", "map", "here" ],
    char: '\ud83d\udccd',
    fitzpatrick_scale: false,
    category: "objects"
  },
  triangular_flag_on_post: {
    keywords: [ "mark", "milestone", "place" ],
    char: '\ud83d\udea9',
    fitzpatrick_scale: false,
    category: "objects"
  },
  white_flag: {
    keywords: [ "losing", "loser", "lost", "surrender", "give up", "fail" ],
    char: '\ud83c\udff3',
    fitzpatrick_scale: false,
    category: "objects"
  },
  black_flag: {
    keywords: [ "pirate" ],
    char: '\ud83c\udff4',
    fitzpatrick_scale: false,
    category: "objects"
  },
  rainbow_flag: {
    keywords: [ "flag", "rainbow", "pride", "gay", "lgbt", "glbt", "queer", "homosexual", "lesbian", "bisexual", "transgender" ],
    char: '\ud83c\udff3\ufe0f\u200d\ud83c\udf08',
    fitzpatrick_scale: false,
    category: "objects"
  },
  closed_lock_with_key: {
    keywords: [ "security", "privacy" ],
    char: '\ud83d\udd10',
    fitzpatrick_scale: false,
    category: "objects"
  },
  lock: {
    keywords: [ "security", "password", "padlock" ],
    char: '\ud83d\udd12',
    fitzpatrick_scale: false,
    category: "objects"
  },
  unlock: {
    keywords: [ "privacy", "security" ],
    char: '\ud83d\udd13',
    fitzpatrick_scale: false,
    category: "objects"
  },
  lock_with_ink_pen: {
    keywords: [ "security", "secret" ],
    char: '\ud83d\udd0f',
    fitzpatrick_scale: false,
    category: "objects"
  },
  pen: {
    keywords: [ "stationery", "writing", "write" ],
    char: '\ud83d\udd8a',
    fitzpatrick_scale: false,
    category: "objects"
  },
  fountain_pen: {
    keywords: [ "stationery", "writing", "write" ],
    char: '\ud83d\udd8b',
    fitzpatrick_scale: false,
    category: "objects"
  },
  black_nib: {
    keywords: [ "pen", "stationery", "writing", "write" ],
    char: '\u2712\ufe0f',
    fitzpatrick_scale: false,
    category: "objects"
  },
  memo: {
    keywords: [ "write", "documents", "stationery", "pencil", "paper", "writing", "legal", "exam", "quiz", "test", "study", "compose" ],
    char: '\ud83d\udcdd',
    fitzpatrick_scale: false,
    category: "objects"
  },
  pencil2: {
    keywords: [ "stationery", "write", "paper", "writing", "school", "study" ],
    char: '\u270f\ufe0f',
    fitzpatrick_scale: false,
    category: "objects"
  },
  crayon: {
    keywords: [ "drawing", "creativity" ],
    char: '\ud83d\udd8d',
    fitzpatrick_scale: false,
    category: "objects"
  },
  paintbrush: {
    keywords: [ "drawing", "creativity", "art" ],
    char: '\ud83d\udd8c',
    fitzpatrick_scale: false,
    category: "objects"
  },
  mag: {
    keywords: [ "search", "zoom", "find", "detective" ],
    char: '\ud83d\udd0d',
    fitzpatrick_scale: false,
    category: "objects"
  },
  mag_right: {
    keywords: [ "search", "zoom", "find", "detective" ],
    char: '\ud83d\udd0e',
    fitzpatrick_scale: false,
    category: "objects"
  },
  heart: {
    keywords: [ "love", "like", "valentines" ],
    char: '\u2764\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  orange_heart: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: '\ud83e\udde1',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  yellow_heart: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: '\ud83d\udc9b',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  green_heart: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: '\ud83d\udc9a',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  blue_heart: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: '\ud83d\udc99',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  purple_heart: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: '\ud83d\udc9c',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_heart: {
    keywords: [ "evil" ],
    char: '\ud83d\udda4',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  broken_heart: {
    keywords: [ "sad", "sorry", "break", "heart", "heartbreak" ],
    char: '\ud83d\udc94',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_heart_exclamation: {
    keywords: [ "decoration", "love" ],
    char: '\u2763',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  two_hearts: {
    keywords: [ "love", "like", "affection", "valentines", "heart" ],
    char: '\ud83d\udc95',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  revolving_hearts: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: '\ud83d\udc9e',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heartbeat: {
    keywords: [ "love", "like", "affection", "valentines", "pink", "heart" ],
    char: '\ud83d\udc93',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heartpulse: {
    keywords: [ "like", "love", "affection", "valentines", "pink" ],
    char: '\ud83d\udc97',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  sparkling_heart: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: '\ud83d\udc96',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  cupid: {
    keywords: [ "love", "like", "heart", "affection", "valentines" ],
    char: '\ud83d\udc98',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  gift_heart: {
    keywords: [ "love", "valentines" ],
    char: '\ud83d\udc9d',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heart_decoration: {
    keywords: [ "purple-square", "love", "like" ],
    char: '\ud83d\udc9f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  peace_symbol: {
    keywords: [ "hippie" ],
    char: '\u262e',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  latin_cross: {
    keywords: [ "christianity" ],
    char: '\u271d',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  star_and_crescent: {
    keywords: [ "islam" ],
    char: '\u262a',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  om: {
    keywords: [ "hinduism", "buddhism", "sikhism", "jainism" ],
    char: '\ud83d\udd49',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  wheel_of_dharma: {
    keywords: [ "hinduism", "buddhism", "sikhism", "jainism" ],
    char: '\u2638',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  star_of_david: {
    keywords: [ "judaism" ],
    char: '\u2721',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  six_pointed_star: {
    keywords: [ "purple-square", "religion", "jewish", "hexagram" ],
    char: '\ud83d\udd2f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  menorah: {
    keywords: [ "hanukkah", "candles", "jewish" ],
    char: '\ud83d\udd4e',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  yin_yang: {
    keywords: [ "balance" ],
    char: '\u262f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  orthodox_cross: {
    keywords: [ "suppedaneum", "religion" ],
    char: '\u2626',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  place_of_worship: {
    keywords: [ "religion", "church", "temple", "prayer" ],
    char: '\ud83d\uded0',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  ophiuchus: {
    keywords: [ "sign", "purple-square", "constellation", "astrology" ],
    char: '\u26ce',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  aries: {
    keywords: [ "sign", "purple-square", "zodiac", "astrology" ],
    char: '\u2648',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  taurus: {
    keywords: [ "purple-square", "sign", "zodiac", "astrology" ],
    char: '\u2649',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  gemini: {
    keywords: [ "sign", "zodiac", "purple-square", "astrology" ],
    char: '\u264a',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  cancer: {
    keywords: [ "sign", "zodiac", "purple-square", "astrology" ],
    char: '\u264b',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  leo: {
    keywords: [ "sign", "purple-square", "zodiac", "astrology" ],
    char: '\u264c',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  virgo: {
    keywords: [ "sign", "zodiac", "purple-square", "astrology" ],
    char: '\u264d',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  libra: {
    keywords: [ "sign", "purple-square", "zodiac", "astrology" ],
    char: '\u264e',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  scorpius: {
    keywords: [ "sign", "zodiac", "purple-square", "astrology", "scorpio" ],
    char: '\u264f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  sagittarius: {
    keywords: [ "sign", "zodiac", "purple-square", "astrology" ],
    char: '\u2650',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  capricorn: {
    keywords: [ "sign", "zodiac", "purple-square", "astrology" ],
    char: '\u2651',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  aquarius: {
    keywords: [ "sign", "purple-square", "zodiac", "astrology" ],
    char: '\u2652',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  pisces: {
    keywords: [ "purple-square", "sign", "zodiac", "astrology" ],
    char: '\u2653',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  id: {
    keywords: [ "purple-square", "words" ],
    char: '\ud83c\udd94',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  atom_symbol: {
    keywords: [ "science", "physics", "chemistry" ],
    char: '\u269b',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u7a7a: {
    keywords: [ "kanji", "japanese", "chinese", "empty", "sky", "blue-square" ],
    char: '\ud83c\ude33',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u5272: {
    keywords: [ "cut", "divide", "chinese", "kanji", "pink-square" ],
    char: '\ud83c\ude39',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  radioactive: {
    keywords: [ "nuclear", "danger" ],
    char: '\u2622',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  biohazard: {
    keywords: [ "danger" ],
    char: '\u2623',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  mobile_phone_off: {
    keywords: [ "mute", "orange-square", "silence", "quiet" ],
    char: '\ud83d\udcf4',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  vibration_mode: {
    keywords: [ "orange-square", "phone" ],
    char: '\ud83d\udcf3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u6709: {
    keywords: [ "orange-square", "chinese", "have", "kanji" ],
    char: '\ud83c\ude36',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u7121: {
    keywords: [ "nothing", "chinese", "kanji", "japanese", "orange-square" ],
    char: '\ud83c\ude1a',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u7533: {
    keywords: [ "chinese", "japanese", "kanji", "orange-square" ],
    char: '\ud83c\ude38',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u55b6: {
    keywords: [ "japanese", "opening hours", "orange-square" ],
    char: '\ud83c\ude3a',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u6708: {
    keywords: [ "chinese", "month", "moon", "japanese", "orange-square", "kanji" ],
    char: '\ud83c\ude37\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  eight_pointed_black_star: {
    keywords: [ "orange-square", "shape", "polygon" ],
    char: '\u2734\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  vs: {
    keywords: [ "words", "orange-square" ],
    char: '\ud83c\udd9a',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  accept: {
    keywords: [ "ok", "good", "chinese", "kanji", "agree", "yes", "orange-circle" ],
    char: '\ud83c\ude51',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_flower: {
    keywords: [ "japanese", "spring" ],
    char: '\ud83d\udcae',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  ideograph_advantage: {
    keywords: [ "chinese", "kanji", "obtain", "get", "circle" ],
    char: '\ud83c\ude50',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  secret: {
    keywords: [ "privacy", "chinese", "sshh", "kanji", "red-circle" ],
    char: '\u3299\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  congratulations: {
    keywords: [ "chinese", "kanji", "japanese", "red-circle" ],
    char: '\u3297\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u5408: {
    keywords: [ "japanese", "chinese", "join", "kanji", "red-square" ],
    char: '\ud83c\ude34',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u6e80: {
    keywords: [ "full", "chinese", "japanese", "red-square", "kanji" ],
    char: '\ud83c\ude35',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u7981: {
    keywords: [ "kanji", "japanese", "chinese", "forbidden", "limit", "restricted", "red-square" ],
    char: '\ud83c\ude32',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  a: {
    keywords: [ "red-square", "alphabet", "letter" ],
    char: '\ud83c\udd70\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  b: {
    keywords: [ "red-square", "alphabet", "letter" ],
    char: '\ud83c\udd71\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  ab: {
    keywords: [ "red-square", "alphabet" ],
    char: '\ud83c\udd8e',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  cl: {
    keywords: [ "alphabet", "words", "red-square" ],
    char: '\ud83c\udd91',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  o2: {
    keywords: [ "alphabet", "red-square", "letter" ],
    char: '\ud83c\udd7e\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  sos: {
    keywords: [ "help", "red-square", "words", "emergency", "911" ],
    char: '\ud83c\udd98',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_entry: {
    keywords: [ "limit", "security", "privacy", "bad", "denied", "stop", "circle" ],
    char: '\u26d4',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  name_badge: {
    keywords: [ "fire", "forbid" ],
    char: '\ud83d\udcdb',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_entry_sign: {
    keywords: [ "forbid", "stop", "limit", "denied", "disallow", "circle" ],
    char: '\ud83d\udeab',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  x: {
    keywords: [ "no", "delete", "remove", "cancel", "red" ],
    char: '\u274c',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  o: {
    keywords: [ "circle", "round" ],
    char: '\u2b55',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  stop_sign: {
    keywords: [ "stop" ],
    char: '\ud83d\uded1',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  anger: {
    keywords: [ "angry", "mad" ],
    char: '\ud83d\udca2',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  hotsprings: {
    keywords: [ "bath", "warm", "relax" ],
    char: '\u2668\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_pedestrians: {
    keywords: [ "rules", "crossing", "walking", "circle" ],
    char: '\ud83d\udeb7',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  do_not_litter: {
    keywords: [ "trash", "bin", "garbage", "circle" ],
    char: '\ud83d\udeaf',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_bicycles: {
    keywords: [ "cyclist", "prohibited", "circle" ],
    char: '\ud83d\udeb3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  "non-potable_water": {
    keywords: [ "drink", "faucet", "tap", "circle" ],
    char: '\ud83d\udeb1',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  underage: {
    keywords: [ "18", "drink", "pub", "night", "minor", "circle" ],
    char: '\ud83d\udd1e',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_mobile_phones: {
    keywords: [ "iphone", "mute", "circle" ],
    char: '\ud83d\udcf5',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  exclamation: {
    keywords: [ "heavy_exclamation_mark", "danger", "surprise", "punctuation", "wow", "warning" ],
    char: '\u2757',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  grey_exclamation: {
    keywords: [ "surprise", "punctuation", "gray", "wow", "warning" ],
    char: '\u2755',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  question: {
    keywords: [ "doubt", "confused" ],
    char: '\u2753',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  grey_question: {
    keywords: [ "doubts", "gray", "huh", "confused" ],
    char: '\u2754',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  bangbang: {
    keywords: [ "exclamation", "surprise" ],
    char: '\u203c\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  interrobang: {
    keywords: [ "wat", "punctuation", "surprise" ],
    char: '\u2049\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  low_brightness: {
    keywords: [ "sun", "afternoon", "warm", "summer" ],
    char: '\ud83d\udd05',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  high_brightness: {
    keywords: [ "sun", "light" ],
    char: '\ud83d\udd06',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  trident: {
    keywords: [ "weapon", "spear" ],
    char: '\ud83d\udd31',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  fleur_de_lis: {
    keywords: [ "decorative", "scout" ],
    char: '\u269c',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  part_alternation_mark: {
    keywords: [ "graph", "presentation", "stats", "business", "economics", "bad" ],
    char: '\u303d\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  warning: {
    keywords: [ "exclamation", "wip", "alert", "error", "problem", "issue" ],
    char: '\u26a0\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  children_crossing: {
    keywords: [ "school", "warning", "danger", "sign", "driving", "yellow-diamond" ],
    char: '\ud83d\udeb8',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  beginner: {
    keywords: [ "badge", "shield" ],
    char: '\ud83d\udd30',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  recycle: {
    keywords: [ "arrow", "environment", "garbage", "trash" ],
    char: '\u267b\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u6307: {
    keywords: [ "chinese", "point", "green-square", "kanji" ],
    char: '\ud83c\ude2f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  chart: {
    keywords: [ "green-square", "graph", "presentation", "stats" ],
    char: '\ud83d\udcb9',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  sparkle: {
    keywords: [ "stars", "green-square", "awesome", "good", "fireworks" ],
    char: '\u2747\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  eight_spoked_asterisk: {
    keywords: [ "star", "sparkle", "green-square" ],
    char: '\u2733\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  negative_squared_cross_mark: {
    keywords: [ "x", "green-square", "no", "deny" ],
    char: '\u274e',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_check_mark: {
    keywords: [ "green-square", "ok", "agree", "vote", "election", "answer", "tick" ],
    char: '\u2705',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  diamond_shape_with_a_dot_inside: {
    keywords: [ "jewel", "blue", "gem", "crystal", "fancy" ],
    char: '\ud83d\udca0',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  cyclone: {
    keywords: [ "weather", "swirl", "blue", "cloud", "vortex", "spiral", "whirlpool", "spin", "tornado", "hurricane", "typhoon" ],
    char: '\ud83c\udf00',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  loop: {
    keywords: [ "tape", "cassette" ],
    char: '\u27bf',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  globe_with_meridians: {
    keywords: [ "earth", "international", "world", "internet", "interweb", "i18n" ],
    char: '\ud83c\udf10',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  m: {
    keywords: [ "alphabet", "blue-circle", "letter" ],
    char: '\u24c2\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  atm: {
    keywords: [ "money", "sales", "cash", "blue-square", "payment", "bank" ],
    char: '\ud83c\udfe7',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  sa: {
    keywords: [ "japanese", "blue-square", "katakana" ],
    char: '\ud83c\ude02\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  passport_control: {
    keywords: [ "custom", "blue-square" ],
    char: '\ud83d\udec2',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  customs: {
    keywords: [ "passport", "border", "blue-square" ],
    char: '\ud83d\udec3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  baggage_claim: {
    keywords: [ "blue-square", "airport", "transport" ],
    char: '\ud83d\udec4',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  left_luggage: {
    keywords: [ "blue-square", "travel" ],
    char: '\ud83d\udec5',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  wheelchair: {
    keywords: [ "blue-square", "disabled", "a11y", "accessibility" ],
    char: '\u267f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_smoking: {
    keywords: [ "cigarette", "blue-square", "smell", "smoke" ],
    char: '\ud83d\udead',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  wc: {
    keywords: [ "toilet", "restroom", "blue-square" ],
    char: '\ud83d\udebe',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  parking: {
    keywords: [ "cars", "blue-square", "alphabet", "letter" ],
    char: '\ud83c\udd7f\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  potable_water: {
    keywords: [ "blue-square", "liquid", "restroom", "cleaning", "faucet" ],
    char: '\ud83d\udeb0',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  mens: {
    keywords: [ "toilet", "restroom", "wc", "blue-square", "gender", "male" ],
    char: '\ud83d\udeb9',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  womens: {
    keywords: [ "purple-square", "woman", "female", "toilet", "loo", "restroom", "gender" ],
    char: '\ud83d\udeba',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  baby_symbol: {
    keywords: [ "orange-square", "child" ],
    char: '\ud83d\udebc',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  restroom: {
    keywords: [ "blue-square", "toilet", "refresh", "wc", "gender" ],
    char: '\ud83d\udebb',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  put_litter_in_its_place: {
    keywords: [ "blue-square", "sign", "human", "info" ],
    char: '\ud83d\udeae',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  cinema: {
    keywords: [ "blue-square", "record", "film", "movie", "curtain", "stage", "theater" ],
    char: '\ud83c\udfa6',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  signal_strength: {
    keywords: [ "blue-square", "reception", "phone", "internet", "connection", "wifi", "bluetooth", "bars" ],
    char: '\ud83d\udcf6',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  koko: {
    keywords: [ "blue-square", "here", "katakana", "japanese", "destination" ],
    char: '\ud83c\ude01',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  ng: {
    keywords: [ "blue-square", "words", "shape", "icon" ],
    char: '\ud83c\udd96',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  ok: {
    keywords: [ "good", "agree", "yes", "blue-square" ],
    char: '\ud83c\udd97',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  up: {
    keywords: [ "blue-square", "above", "high" ],
    char: '\ud83c\udd99',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  cool: {
    keywords: [ "words", "blue-square" ],
    char: '\ud83c\udd92',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  new: {
    keywords: [ "blue-square", "words", "start" ],
    char: '\ud83c\udd95',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  free: {
    keywords: [ "blue-square", "words" ],
    char: '\ud83c\udd93',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  zero: {
    keywords: [ "0", "numbers", "blue-square", "null" ],
    char: '0\ufe0f\u20e3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  one: {
    keywords: [ "blue-square", "numbers", "1" ],
    char: '1\ufe0f\u20e3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  two: {
    keywords: [ "numbers", "2", "prime", "blue-square" ],
    char: '2\ufe0f\u20e3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  three: {
    keywords: [ "3", "numbers", "prime", "blue-square" ],
    char: '3\ufe0f\u20e3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  four: {
    keywords: [ "4", "numbers", "blue-square" ],
    char: '4\ufe0f\u20e3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  five: {
    keywords: [ "5", "numbers", "blue-square", "prime" ],
    char: '5\ufe0f\u20e3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  six: {
    keywords: [ "6", "numbers", "blue-square" ],
    char: '6\ufe0f\u20e3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  seven: {
    keywords: [ "7", "numbers", "blue-square", "prime" ],
    char: '7\ufe0f\u20e3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  eight: {
    keywords: [ "8", "blue-square", "numbers" ],
    char: '8\ufe0f\u20e3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  nine: {
    keywords: [ "blue-square", "numbers", "9" ],
    char: '9\ufe0f\u20e3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  keycap_ten: {
    keywords: [ "numbers", "10", "blue-square" ],
    char: '\ud83d\udd1f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  asterisk: {
    keywords: [ "star", "keycap" ],
    char: '*\u20e3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  eject_button: {
    keywords: [ "blue-square" ],
    char: '\u23cf\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_forward: {
    keywords: [ "blue-square", "right", "direction", "play" ],
    char: '\u25b6\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  pause_button: {
    keywords: [ "pause", "blue-square" ],
    char: '\u23f8',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  next_track_button: {
    keywords: [ "forward", "next", "blue-square" ],
    char: '\u23ed',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  stop_button: {
    keywords: [ "blue-square" ],
    char: '\u23f9',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  record_button: {
    keywords: [ "blue-square" ],
    char: '\u23fa',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  play_or_pause_button: {
    keywords: [ "blue-square", "play", "pause" ],
    char: '\u23ef',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  previous_track_button: {
    keywords: [ "backward" ],
    char: '\u23ee',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  fast_forward: {
    keywords: [ "blue-square", "play", "speed", "continue" ],
    char: '\u23e9',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  rewind: {
    keywords: [ "play", "blue-square" ],
    char: '\u23ea',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  twisted_rightwards_arrows: {
    keywords: [ "blue-square", "shuffle", "music", "random" ],
    char: '\ud83d\udd00',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  repeat: {
    keywords: [ "loop", "record" ],
    char: '\ud83d\udd01',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  repeat_one: {
    keywords: [ "blue-square", "loop" ],
    char: '\ud83d\udd02',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_backward: {
    keywords: [ "blue-square", "left", "direction" ],
    char: '\u25c0\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_up_small: {
    keywords: [ "blue-square", "triangle", "direction", "point", "forward", "top" ],
    char: '\ud83d\udd3c',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_down_small: {
    keywords: [ "blue-square", "direction", "bottom" ],
    char: '\ud83d\udd3d',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_double_up: {
    keywords: [ "blue-square", "direction", "top" ],
    char: '\u23eb',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_double_down: {
    keywords: [ "blue-square", "direction", "bottom" ],
    char: '\u23ec',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_right: {
    keywords: [ "blue-square", "next" ],
    char: '\u27a1\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_left: {
    keywords: [ "blue-square", "previous", "back" ],
    char: '\u2b05\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_up: {
    keywords: [ "blue-square", "continue", "top", "direction" ],
    char: '\u2b06\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_down: {
    keywords: [ "blue-square", "direction", "bottom" ],
    char: '\u2b07\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_upper_right: {
    keywords: [ "blue-square", "point", "direction", "diagonal", "northeast" ],
    char: '\u2197\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_lower_right: {
    keywords: [ "blue-square", "direction", "diagonal", "southeast" ],
    char: '\u2198\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_lower_left: {
    keywords: [ "blue-square", "direction", "diagonal", "southwest" ],
    char: '\u2199\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_upper_left: {
    keywords: [ "blue-square", "point", "direction", "diagonal", "northwest" ],
    char: '\u2196\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_up_down: {
    keywords: [ "blue-square", "direction", "way", "vertical" ],
    char: '\u2195\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  left_right_arrow: {
    keywords: [ "shape", "direction", "horizontal", "sideways" ],
    char: '\u2194\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrows_counterclockwise: {
    keywords: [ "blue-square", "sync", "cycle" ],
    char: '\ud83d\udd04',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_right_hook: {
    keywords: [ "blue-square", "return", "rotate", "direction" ],
    char: '\u21aa\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  leftwards_arrow_with_hook: {
    keywords: [ "back", "return", "blue-square", "undo", "enter" ],
    char: '\u21a9\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_heading_up: {
    keywords: [ "blue-square", "direction", "top" ],
    char: '\u2934\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_heading_down: {
    keywords: [ "blue-square", "direction", "bottom" ],
    char: '\u2935\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  hash: {
    keywords: [ "symbol", "blue-square", "twitter" ],
    char: '#\ufe0f\u20e3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  information_source: {
    keywords: [ "blue-square", "alphabet", "letter" ],
    char: '\u2139\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  abc: {
    keywords: [ "blue-square", "alphabet" ],
    char: '\ud83d\udd24',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  abcd: {
    keywords: [ "blue-square", "alphabet" ],
    char: '\ud83d\udd21',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  capital_abcd: {
    keywords: [ "alphabet", "words", "blue-square" ],
    char: '\ud83d\udd20',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  symbols: {
    keywords: [ "blue-square", "music", "note", "ampersand", "percent", "glyphs", "characters" ],
    char: '\ud83d\udd23',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  musical_note: {
    keywords: [ "score", "tone", "sound" ],
    char: '\ud83c\udfb5',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  notes: {
    keywords: [ "music", "score" ],
    char: '\ud83c\udfb6',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  wavy_dash: {
    keywords: [ "draw", "line", "moustache", "mustache", "squiggle", "scribble" ],
    char: '\u3030\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  curly_loop: {
    keywords: [ "scribble", "draw", "shape", "squiggle" ],
    char: '\u27b0',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_check_mark: {
    keywords: [ "ok", "nike", "answer", "yes", "tick" ],
    char: '\u2714\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrows_clockwise: {
    keywords: [ "sync", "cycle", "round", "repeat" ],
    char: '\ud83d\udd03',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_plus_sign: {
    keywords: [ "math", "calculation", "addition", "more", "increase" ],
    char: '\u2795',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_minus_sign: {
    keywords: [ "math", "calculation", "subtract", "less" ],
    char: '\u2796',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_division_sign: {
    keywords: [ "divide", "math", "calculation" ],
    char: '\u2797',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_multiplication_x: {
    keywords: [ "math", "calculation" ],
    char: '\u2716\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  infinity: {
    keywords: [ "forever" ],
    char: '\u267e',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_dollar_sign: {
    keywords: [ "money", "sales", "payment", "currency", "buck" ],
    char: '\ud83d\udcb2',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  currency_exchange: {
    keywords: [ "money", "sales", "dollar", "travel" ],
    char: '\ud83d\udcb1',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  copyright: {
    keywords: [ "ip", "license", "circle", "law", "legal" ],
    char: '\xa9\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  registered: {
    keywords: [ "alphabet", "circle" ],
    char: '\xae\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  tm: {
    keywords: [ "trademark", "brand", "law", "legal" ],
    char: '\u2122\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  end: {
    keywords: [ "words", "arrow" ],
    char: '\ud83d\udd1a',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  back: {
    keywords: [ "arrow", "words", "return" ],
    char: '\ud83d\udd19',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  on: {
    keywords: [ "arrow", "words" ],
    char: '\ud83d\udd1b',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  top: {
    keywords: [ "words", "blue-square" ],
    char: '\ud83d\udd1d',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  soon: {
    keywords: [ "arrow", "words" ],
    char: '\ud83d\udd1c',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  ballot_box_with_check: {
    keywords: [ "ok", "agree", "confirm", "black-square", "vote", "election", "yes", "tick" ],
    char: '\u2611\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  radio_button: {
    keywords: [ "input", "old", "music", "circle" ],
    char: '\ud83d\udd18',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_circle: {
    keywords: [ "shape", "round" ],
    char: '\u26aa',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_circle: {
    keywords: [ "shape", "button", "round" ],
    char: '\u26ab',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  red_circle: {
    keywords: [ "shape", "error", "danger" ],
    char: '\ud83d\udd34',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  large_blue_circle: {
    keywords: [ "shape", "icon", "button" ],
    char: '\ud83d\udd35',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  small_orange_diamond: {
    keywords: [ "shape", "jewel", "gem" ],
    char: '\ud83d\udd38',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  small_blue_diamond: {
    keywords: [ "shape", "jewel", "gem" ],
    char: '\ud83d\udd39',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  large_orange_diamond: {
    keywords: [ "shape", "jewel", "gem" ],
    char: '\ud83d\udd36',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  large_blue_diamond: {
    keywords: [ "shape", "jewel", "gem" ],
    char: '\ud83d\udd37',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  small_red_triangle: {
    keywords: [ "shape", "direction", "up", "top" ],
    char: '\ud83d\udd3a',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_small_square: {
    keywords: [ "shape", "icon" ],
    char: '\u25aa\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_small_square: {
    keywords: [ "shape", "icon" ],
    char: '\u25ab\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_large_square: {
    keywords: [ "shape", "icon", "button" ],
    char: '\u2b1b',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_large_square: {
    keywords: [ "shape", "icon", "stone", "button" ],
    char: '\u2b1c',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  small_red_triangle_down: {
    keywords: [ "shape", "direction", "bottom" ],
    char: '\ud83d\udd3b',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_medium_square: {
    keywords: [ "shape", "button", "icon" ],
    char: '\u25fc\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_medium_square: {
    keywords: [ "shape", "stone", "icon" ],
    char: '\u25fb\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_medium_small_square: {
    keywords: [ "icon", "shape", "button" ],
    char: '\u25fe',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_medium_small_square: {
    keywords: [ "shape", "stone", "icon", "button" ],
    char: '\u25fd',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_square_button: {
    keywords: [ "shape", "input", "frame" ],
    char: '\ud83d\udd32',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_square_button: {
    keywords: [ "shape", "input" ],
    char: '\ud83d\udd33',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  speaker: {
    keywords: [ "sound", "volume", "silence", "broadcast" ],
    char: '\ud83d\udd08',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  sound: {
    keywords: [ "volume", "speaker", "broadcast" ],
    char: '\ud83d\udd09',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  loud_sound: {
    keywords: [ "volume", "noise", "noisy", "speaker", "broadcast" ],
    char: '\ud83d\udd0a',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  mute: {
    keywords: [ "sound", "volume", "silence", "quiet" ],
    char: '\ud83d\udd07',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  mega: {
    keywords: [ "sound", "speaker", "volume" ],
    char: '\ud83d\udce3',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  loudspeaker: {
    keywords: [ "volume", "sound" ],
    char: '\ud83d\udce2',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  bell: {
    keywords: [ "sound", "notification", "christmas", "xmas", "chime" ],
    char: '\ud83d\udd14',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_bell: {
    keywords: [ "sound", "volume", "mute", "quiet", "silent" ],
    char: '\ud83d\udd15',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_joker: {
    keywords: [ "poker", "cards", "game", "play", "magic" ],
    char: '\ud83c\udccf',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  mahjong: {
    keywords: [ "game", "play", "chinese", "kanji" ],
    char: '\ud83c\udc04',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  spades: {
    keywords: [ "poker", "cards", "suits", "magic" ],
    char: '\u2660\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clubs: {
    keywords: [ "poker", "cards", "magic", "suits" ],
    char: '\u2663\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  hearts: {
    keywords: [ "poker", "cards", "magic", "suits" ],
    char: '\u2665\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  diamonds: {
    keywords: [ "poker", "cards", "magic", "suits" ],
    char: '\u2666\ufe0f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  flower_playing_cards: {
    keywords: [ "game", "sunset", "red" ],
    char: '\ud83c\udfb4',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  thought_balloon: {
    keywords: [ "bubble", "cloud", "speech", "thinking", "dream" ],
    char: '\ud83d\udcad',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  right_anger_bubble: {
    keywords: [ "caption", "speech", "thinking", "mad" ],
    char: '\ud83d\uddef',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  speech_balloon: {
    keywords: [ "bubble", "words", "message", "talk", "chatting" ],
    char: '\ud83d\udcac',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  left_speech_bubble: {
    keywords: [ "words", "message", "talk", "chatting" ],
    char: '\ud83d\udde8',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock1: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd50',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock2: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd51',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock3: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd52',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock4: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd53',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock5: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd54',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock6: {
    keywords: [ "time", "late", "early", "schedule", "dawn", "dusk" ],
    char: '\ud83d\udd55',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock7: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd56',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock8: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd57',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock9: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd58',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock10: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd59',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock11: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd5a',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock12: {
    keywords: [ "time", "noon", "midnight", "midday", "late", "early", "schedule" ],
    char: '\ud83d\udd5b',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock130: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd5c',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock230: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd5d',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock330: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd5e',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock430: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd5f',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock530: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd60',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock630: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd61',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock730: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd62',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock830: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd63',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock930: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd64',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock1030: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd65',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock1130: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd66',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock1230: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: '\ud83d\udd67',
    fitzpatrick_scale: false,
    category: "symbols"
  },
  afghanistan: {
    keywords: [ "af", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddeb',
    fitzpatrick_scale: false,
    category: "flags"
  },
  aland_islands: {
    keywords: [ "\xc5land", "islands", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddfd',
    fitzpatrick_scale: false,
    category: "flags"
  },
  albania: {
    keywords: [ "al", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddf1',
    fitzpatrick_scale: false,
    category: "flags"
  },
  algeria: {
    keywords: [ "dz", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde9\ud83c\uddff',
    fitzpatrick_scale: false,
    category: "flags"
  },
  american_samoa: {
    keywords: [ "american", "ws", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddf8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  andorra: {
    keywords: [ "ad", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\udde9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  angola: {
    keywords: [ "ao", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddf4',
    fitzpatrick_scale: false,
    category: "flags"
  },
  anguilla: {
    keywords: [ "ai", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddee',
    fitzpatrick_scale: false,
    category: "flags"
  },
  antarctica: {
    keywords: [ "aq", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddf6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  antigua_barbuda: {
    keywords: [ "antigua", "barbuda", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddec',
    fitzpatrick_scale: false,
    category: "flags"
  },
  argentina: {
    keywords: [ "ar", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  armenia: {
    keywords: [ "am", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  aruba: {
    keywords: [ "aw", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddfc',
    fitzpatrick_scale: false,
    category: "flags"
  },
  australia: {
    keywords: [ "au", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddfa',
    fitzpatrick_scale: false,
    category: "flags"
  },
  austria: {
    keywords: [ "at", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddf9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  azerbaijan: {
    keywords: [ "az", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddff',
    fitzpatrick_scale: false,
    category: "flags"
  },
  bahamas: {
    keywords: [ "bs", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddf8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  bahrain: {
    keywords: [ "bh", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\udded',
    fitzpatrick_scale: false,
    category: "flags"
  },
  bangladesh: {
    keywords: [ "bd", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\udde9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  barbados: {
    keywords: [ "bb", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\udde7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  belarus: {
    keywords: [ "by", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddfe',
    fitzpatrick_scale: false,
    category: "flags"
  },
  belgium: {
    keywords: [ "be", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  belize: {
    keywords: [ "bz", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddff',
    fitzpatrick_scale: false,
    category: "flags"
  },
  benin: {
    keywords: [ "bj", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddef',
    fitzpatrick_scale: false,
    category: "flags"
  },
  bermuda: {
    keywords: [ "bm", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  bhutan: {
    keywords: [ "bt", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddf9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  bolivia: {
    keywords: [ "bo", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddf4',
    fitzpatrick_scale: false,
    category: "flags"
  },
  caribbean_netherlands: {
    keywords: [ "bonaire", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddf6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  bosnia_herzegovina: {
    keywords: [ "bosnia", "herzegovina", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\udde6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  botswana: {
    keywords: [ "bw", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddfc',
    fitzpatrick_scale: false,
    category: "flags"
  },
  brazil: {
    keywords: [ "br", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  british_indian_ocean_territory: {
    keywords: [ "british", "indian", "ocean", "territory", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddee\ud83c\uddf4',
    fitzpatrick_scale: false,
    category: "flags"
  },
  british_virgin_islands: {
    keywords: [ "british", "virgin", "islands", "bvi", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfb\ud83c\uddec',
    fitzpatrick_scale: false,
    category: "flags"
  },
  brunei: {
    keywords: [ "bn", "darussalam", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddf3',
    fitzpatrick_scale: false,
    category: "flags"
  },
  bulgaria: {
    keywords: [ "bg", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddec',
    fitzpatrick_scale: false,
    category: "flags"
  },
  burkina_faso: {
    keywords: [ "burkina", "faso", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddeb',
    fitzpatrick_scale: false,
    category: "flags"
  },
  burundi: {
    keywords: [ "bi", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddee',
    fitzpatrick_scale: false,
    category: "flags"
  },
  cape_verde: {
    keywords: [ "cabo", "verde", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddfb',
    fitzpatrick_scale: false,
    category: "flags"
  },
  cambodia: {
    keywords: [ "kh", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf0\ud83c\udded',
    fitzpatrick_scale: false,
    category: "flags"
  },
  cameroon: {
    keywords: [ "cm", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  canada: {
    keywords: [ "ca", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\udde6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  canary_islands: {
    keywords: [ "canary", "islands", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddee\ud83c\udde8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  cayman_islands: {
    keywords: [ "cayman", "islands", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf0\ud83c\uddfe',
    fitzpatrick_scale: false,
    category: "flags"
  },
  central_african_republic: {
    keywords: [ "central", "african", "republic", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddeb',
    fitzpatrick_scale: false,
    category: "flags"
  },
  chad: {
    keywords: [ "td", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\udde9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  chile: {
    keywords: [ "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddf1',
    fitzpatrick_scale: false,
    category: "flags"
  },
  cn: {
    keywords: [ "china", "chinese", "prc", "flag", "country", "nation", "banner" ],
    char: '\ud83c\udde8\ud83c\uddf3',
    fitzpatrick_scale: false,
    category: "flags"
  },
  christmas_island: {
    keywords: [ "christmas", "island", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddfd',
    fitzpatrick_scale: false,
    category: "flags"
  },
  cocos_islands: {
    keywords: [ "cocos", "keeling", "islands", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\udde8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  colombia: {
    keywords: [ "co", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddf4',
    fitzpatrick_scale: false,
    category: "flags"
  },
  comoros: {
    keywords: [ "km", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf0\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  congo_brazzaville: {
    keywords: [ "congo", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddec',
    fitzpatrick_scale: false,
    category: "flags"
  },
  congo_kinshasa: {
    keywords: [ "congo", "democratic", "republic", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\udde9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  cook_islands: {
    keywords: [ "cook", "islands", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddf0',
    fitzpatrick_scale: false,
    category: "flags"
  },
  costa_rica: {
    keywords: [ "costa", "rica", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  croatia: {
    keywords: [ "hr", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udded\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  cuba: {
    keywords: [ "cu", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddfa',
    fitzpatrick_scale: false,
    category: "flags"
  },
  curacao: {
    keywords: [ "cura\xe7ao", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddfc',
    fitzpatrick_scale: false,
    category: "flags"
  },
  cyprus: {
    keywords: [ "cy", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddfe',
    fitzpatrick_scale: false,
    category: "flags"
  },
  czech_republic: {
    keywords: [ "cz", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddff',
    fitzpatrick_scale: false,
    category: "flags"
  },
  denmark: {
    keywords: [ "dk", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde9\ud83c\uddf0',
    fitzpatrick_scale: false,
    category: "flags"
  },
  djibouti: {
    keywords: [ "dj", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde9\ud83c\uddef',
    fitzpatrick_scale: false,
    category: "flags"
  },
  dominica: {
    keywords: [ "dm", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde9\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  dominican_republic: {
    keywords: [ "dominican", "republic", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde9\ud83c\uddf4',
    fitzpatrick_scale: false,
    category: "flags"
  },
  ecuador: {
    keywords: [ "ec", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddea\ud83c\udde8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  egypt: {
    keywords: [ "eg", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddea\ud83c\uddec',
    fitzpatrick_scale: false,
    category: "flags"
  },
  el_salvador: {
    keywords: [ "el", "salvador", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddfb',
    fitzpatrick_scale: false,
    category: "flags"
  },
  equatorial_guinea: {
    keywords: [ "equatorial", "gn", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddf6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  eritrea: {
    keywords: [ "er", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddea\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  estonia: {
    keywords: [ "ee", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddea\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  ethiopia: {
    keywords: [ "et", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddea\ud83c\uddf9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  eu: {
    keywords: [ "european", "union", "flag", "banner" ],
    char: '\ud83c\uddea\ud83c\uddfa',
    fitzpatrick_scale: false,
    category: "flags"
  },
  falkland_islands: {
    keywords: [ "falkland", "islands", "malvinas", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddeb\ud83c\uddf0',
    fitzpatrick_scale: false,
    category: "flags"
  },
  faroe_islands: {
    keywords: [ "faroe", "islands", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddeb\ud83c\uddf4',
    fitzpatrick_scale: false,
    category: "flags"
  },
  fiji: {
    keywords: [ "fj", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddeb\ud83c\uddef',
    fitzpatrick_scale: false,
    category: "flags"
  },
  finland: {
    keywords: [ "fi", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddeb\ud83c\uddee',
    fitzpatrick_scale: false,
    category: "flags"
  },
  fr: {
    keywords: [ "banner", "flag", "nation", "france", "french", "country" ],
    char: '\ud83c\uddeb\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  french_guiana: {
    keywords: [ "french", "guiana", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddeb',
    fitzpatrick_scale: false,
    category: "flags"
  },
  french_polynesia: {
    keywords: [ "french", "polynesia", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\uddeb',
    fitzpatrick_scale: false,
    category: "flags"
  },
  french_southern_territories: {
    keywords: [ "french", "southern", "territories", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\uddeb',
    fitzpatrick_scale: false,
    category: "flags"
  },
  gabon: {
    keywords: [ "ga", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\udde6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  gambia: {
    keywords: [ "gm", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  georgia: {
    keywords: [ "ge", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  de: {
    keywords: [ "german", "nation", "flag", "country", "banner" ],
    char: '\ud83c\udde9\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  ghana: {
    keywords: [ "gh", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\udded',
    fitzpatrick_scale: false,
    category: "flags"
  },
  gibraltar: {
    keywords: [ "gi", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddee',
    fitzpatrick_scale: false,
    category: "flags"
  },
  greece: {
    keywords: [ "gr", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  greenland: {
    keywords: [ "gl", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddf1',
    fitzpatrick_scale: false,
    category: "flags"
  },
  grenada: {
    keywords: [ "gd", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\udde9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  guadeloupe: {
    keywords: [ "gp", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddf5',
    fitzpatrick_scale: false,
    category: "flags"
  },
  guam: {
    keywords: [ "gu", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddfa',
    fitzpatrick_scale: false,
    category: "flags"
  },
  guatemala: {
    keywords: [ "gt", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddf9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  guernsey: {
    keywords: [ "gg", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddec',
    fitzpatrick_scale: false,
    category: "flags"
  },
  guinea: {
    keywords: [ "gn", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddf3',
    fitzpatrick_scale: false,
    category: "flags"
  },
  guinea_bissau: {
    keywords: [ "gw", "bissau", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddfc',
    fitzpatrick_scale: false,
    category: "flags"
  },
  guyana: {
    keywords: [ "gy", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddfe',
    fitzpatrick_scale: false,
    category: "flags"
  },
  haiti: {
    keywords: [ "ht", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udded\ud83c\uddf9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  honduras: {
    keywords: [ "hn", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udded\ud83c\uddf3',
    fitzpatrick_scale: false,
    category: "flags"
  },
  hong_kong: {
    keywords: [ "hong", "kong", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udded\ud83c\uddf0',
    fitzpatrick_scale: false,
    category: "flags"
  },
  hungary: {
    keywords: [ "hu", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udded\ud83c\uddfa',
    fitzpatrick_scale: false,
    category: "flags"
  },
  iceland: {
    keywords: [ "is", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddee\ud83c\uddf8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  india: {
    keywords: [ "in", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddee\ud83c\uddf3',
    fitzpatrick_scale: false,
    category: "flags"
  },
  indonesia: {
    keywords: [ "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddee\ud83c\udde9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  iran: {
    keywords: [ "iran,", "islamic", "republic", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddee\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  iraq: {
    keywords: [ "iq", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddee\ud83c\uddf6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  ireland: {
    keywords: [ "ie", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddee\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  isle_of_man: {
    keywords: [ "isle", "man", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddee\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  israel: {
    keywords: [ "il", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddee\ud83c\uddf1',
    fitzpatrick_scale: false,
    category: "flags"
  },
  it: {
    keywords: [ "italy", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddee\ud83c\uddf9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  cote_divoire: {
    keywords: [ "ivory", "coast", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\uddee',
    fitzpatrick_scale: false,
    category: "flags"
  },
  jamaica: {
    keywords: [ "jm", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddef\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  jp: {
    keywords: [ "japanese", "nation", "flag", "country", "banner" ],
    char: '\ud83c\uddef\ud83c\uddf5',
    fitzpatrick_scale: false,
    category: "flags"
  },
  jersey: {
    keywords: [ "je", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddef\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  jordan: {
    keywords: [ "jo", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddef\ud83c\uddf4',
    fitzpatrick_scale: false,
    category: "flags"
  },
  kazakhstan: {
    keywords: [ "kz", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf0\ud83c\uddff',
    fitzpatrick_scale: false,
    category: "flags"
  },
  kenya: {
    keywords: [ "ke", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf0\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  kiribati: {
    keywords: [ "ki", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf0\ud83c\uddee',
    fitzpatrick_scale: false,
    category: "flags"
  },
  kosovo: {
    keywords: [ "xk", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfd\ud83c\uddf0',
    fitzpatrick_scale: false,
    category: "flags"
  },
  kuwait: {
    keywords: [ "kw", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf0\ud83c\uddfc',
    fitzpatrick_scale: false,
    category: "flags"
  },
  kyrgyzstan: {
    keywords: [ "kg", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf0\ud83c\uddec',
    fitzpatrick_scale: false,
    category: "flags"
  },
  laos: {
    keywords: [ "lao", "democratic", "republic", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf1\ud83c\udde6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  latvia: {
    keywords: [ "lv", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf1\ud83c\uddfb',
    fitzpatrick_scale: false,
    category: "flags"
  },
  lebanon: {
    keywords: [ "lb", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf1\ud83c\udde7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  lesotho: {
    keywords: [ "ls", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf1\ud83c\uddf8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  liberia: {
    keywords: [ "lr", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf1\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  libya: {
    keywords: [ "ly", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf1\ud83c\uddfe',
    fitzpatrick_scale: false,
    category: "flags"
  },
  liechtenstein: {
    keywords: [ "li", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf1\ud83c\uddee',
    fitzpatrick_scale: false,
    category: "flags"
  },
  lithuania: {
    keywords: [ "lt", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf1\ud83c\uddf9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  luxembourg: {
    keywords: [ "lu", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf1\ud83c\uddfa',
    fitzpatrick_scale: false,
    category: "flags"
  },
  macau: {
    keywords: [ "macao", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddf4',
    fitzpatrick_scale: false,
    category: "flags"
  },
  macedonia: {
    keywords: [ "macedonia,", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddf0',
    fitzpatrick_scale: false,
    category: "flags"
  },
  madagascar: {
    keywords: [ "mg", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddec',
    fitzpatrick_scale: false,
    category: "flags"
  },
  malawi: {
    keywords: [ "mw", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddfc',
    fitzpatrick_scale: false,
    category: "flags"
  },
  malaysia: {
    keywords: [ "my", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddfe',
    fitzpatrick_scale: false,
    category: "flags"
  },
  maldives: {
    keywords: [ "mv", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddfb',
    fitzpatrick_scale: false,
    category: "flags"
  },
  mali: {
    keywords: [ "ml", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddf1',
    fitzpatrick_scale: false,
    category: "flags"
  },
  malta: {
    keywords: [ "mt", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddf9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  marshall_islands: {
    keywords: [ "marshall", "islands", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\udded',
    fitzpatrick_scale: false,
    category: "flags"
  },
  martinique: {
    keywords: [ "mq", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddf6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  mauritania: {
    keywords: [ "mr", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  mauritius: {
    keywords: [ "mu", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddfa',
    fitzpatrick_scale: false,
    category: "flags"
  },
  mayotte: {
    keywords: [ "yt", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfe\ud83c\uddf9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  mexico: {
    keywords: [ "mx", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddfd',
    fitzpatrick_scale: false,
    category: "flags"
  },
  micronesia: {
    keywords: [ "micronesia,", "federated", "states", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddeb\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  moldova: {
    keywords: [ "moldova,", "republic", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\udde9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  monaco: {
    keywords: [ "mc", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\udde8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  mongolia: {
    keywords: [ "mn", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddf3',
    fitzpatrick_scale: false,
    category: "flags"
  },
  montenegro: {
    keywords: [ "me", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  montserrat: {
    keywords: [ "ms", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddf8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  morocco: {
    keywords: [ "ma", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\udde6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  mozambique: {
    keywords: [ "mz", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddff',
    fitzpatrick_scale: false,
    category: "flags"
  },
  myanmar: {
    keywords: [ "mm", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  namibia: {
    keywords: [ "na", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf3\ud83c\udde6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  nauru: {
    keywords: [ "nr", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf3\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  nepal: {
    keywords: [ "np", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf3\ud83c\uddf5',
    fitzpatrick_scale: false,
    category: "flags"
  },
  netherlands: {
    keywords: [ "nl", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf3\ud83c\uddf1',
    fitzpatrick_scale: false,
    category: "flags"
  },
  new_caledonia: {
    keywords: [ "new", "caledonia", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf3\ud83c\udde8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  new_zealand: {
    keywords: [ "new", "zealand", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf3\ud83c\uddff',
    fitzpatrick_scale: false,
    category: "flags"
  },
  nicaragua: {
    keywords: [ "ni", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf3\ud83c\uddee',
    fitzpatrick_scale: false,
    category: "flags"
  },
  niger: {
    keywords: [ "ne", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf3\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  nigeria: {
    keywords: [ "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf3\ud83c\uddec',
    fitzpatrick_scale: false,
    category: "flags"
  },
  niue: {
    keywords: [ "nu", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf3\ud83c\uddfa',
    fitzpatrick_scale: false,
    category: "flags"
  },
  norfolk_island: {
    keywords: [ "norfolk", "island", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf3\ud83c\uddeb',
    fitzpatrick_scale: false,
    category: "flags"
  },
  northern_mariana_islands: {
    keywords: [ "northern", "mariana", "islands", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf2\ud83c\uddf5',
    fitzpatrick_scale: false,
    category: "flags"
  },
  north_korea: {
    keywords: [ "north", "korea", "nation", "flag", "country", "banner" ],
    char: '\ud83c\uddf0\ud83c\uddf5',
    fitzpatrick_scale: false,
    category: "flags"
  },
  norway: {
    keywords: [ "no", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf3\ud83c\uddf4',
    fitzpatrick_scale: false,
    category: "flags"
  },
  oman: {
    keywords: [ "om_symbol", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf4\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  pakistan: {
    keywords: [ "pk", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\uddf0',
    fitzpatrick_scale: false,
    category: "flags"
  },
  palau: {
    keywords: [ "pw", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\uddfc',
    fitzpatrick_scale: false,
    category: "flags"
  },
  palestinian_territories: {
    keywords: [ "palestine", "palestinian", "territories", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\uddf8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  panama: {
    keywords: [ "pa", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\udde6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  papua_new_guinea: {
    keywords: [ "papua", "new", "guinea", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\uddec',
    fitzpatrick_scale: false,
    category: "flags"
  },
  paraguay: {
    keywords: [ "py", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\uddfe',
    fitzpatrick_scale: false,
    category: "flags"
  },
  peru: {
    keywords: [ "pe", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  philippines: {
    keywords: [ "ph", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\udded',
    fitzpatrick_scale: false,
    category: "flags"
  },
  pitcairn_islands: {
    keywords: [ "pitcairn", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\uddf3',
    fitzpatrick_scale: false,
    category: "flags"
  },
  poland: {
    keywords: [ "pl", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\uddf1',
    fitzpatrick_scale: false,
    category: "flags"
  },
  portugal: {
    keywords: [ "pt", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\uddf9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  puerto_rico: {
    keywords: [ "puerto", "rico", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  qatar: {
    keywords: [ "qa", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf6\ud83c\udde6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  reunion: {
    keywords: [ "r\xe9union", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf7\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  romania: {
    keywords: [ "ro", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf7\ud83c\uddf4',
    fitzpatrick_scale: false,
    category: "flags"
  },
  ru: {
    keywords: [ "russian", "federation", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf7\ud83c\uddfa',
    fitzpatrick_scale: false,
    category: "flags"
  },
  rwanda: {
    keywords: [ "rw", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf7\ud83c\uddfc',
    fitzpatrick_scale: false,
    category: "flags"
  },
  st_barthelemy: {
    keywords: [ "saint", "barth\xe9lemy", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde7\ud83c\uddf1',
    fitzpatrick_scale: false,
    category: "flags"
  },
  st_helena: {
    keywords: [ "saint", "helena", "ascension", "tristan", "cunha", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\udded',
    fitzpatrick_scale: false,
    category: "flags"
  },
  st_kitts_nevis: {
    keywords: [ "saint", "kitts", "nevis", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf0\ud83c\uddf3',
    fitzpatrick_scale: false,
    category: "flags"
  },
  st_lucia: {
    keywords: [ "saint", "lucia", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf1\ud83c\udde8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  st_pierre_miquelon: {
    keywords: [ "saint", "pierre", "miquelon", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf5\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  st_vincent_grenadines: {
    keywords: [ "saint", "vincent", "grenadines", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfb\ud83c\udde8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  samoa: {
    keywords: [ "ws", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfc\ud83c\uddf8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  san_marino: {
    keywords: [ "san", "marino", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  sao_tome_principe: {
    keywords: [ "sao", "tome", "principe", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddf9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  saudi_arabia: {
    keywords: [ "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\udde6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  senegal: {
    keywords: [ "sn", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddf3',
    fitzpatrick_scale: false,
    category: "flags"
  },
  serbia: {
    keywords: [ "rs", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf7\ud83c\uddf8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  seychelles: {
    keywords: [ "sc", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\udde8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  sierra_leone: {
    keywords: [ "sierra", "leone", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddf1',
    fitzpatrick_scale: false,
    category: "flags"
  },
  singapore: {
    keywords: [ "sg", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddec',
    fitzpatrick_scale: false,
    category: "flags"
  },
  sint_maarten: {
    keywords: [ "sint", "maarten", "dutch", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddfd',
    fitzpatrick_scale: false,
    category: "flags"
  },
  slovakia: {
    keywords: [ "sk", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddf0',
    fitzpatrick_scale: false,
    category: "flags"
  },
  slovenia: {
    keywords: [ "si", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddee',
    fitzpatrick_scale: false,
    category: "flags"
  },
  solomon_islands: {
    keywords: [ "solomon", "islands", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\udde7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  somalia: {
    keywords: [ "so", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddf4',
    fitzpatrick_scale: false,
    category: "flags"
  },
  south_africa: {
    keywords: [ "south", "africa", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddff\ud83c\udde6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  south_georgia_south_sandwich_islands: {
    keywords: [ "south", "georgia", "sandwich", "islands", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddec\ud83c\uddf8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  kr: {
    keywords: [ "south", "korea", "nation", "flag", "country", "banner" ],
    char: '\ud83c\uddf0\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  south_sudan: {
    keywords: [ "south", "sd", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddf8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  es: {
    keywords: [ "spain", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddea\ud83c\uddf8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  sri_lanka: {
    keywords: [ "sri", "lanka", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf1\ud83c\uddf0',
    fitzpatrick_scale: false,
    category: "flags"
  },
  sudan: {
    keywords: [ "sd", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\udde9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  suriname: {
    keywords: [ "sr", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  swaziland: {
    keywords: [ "sz", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddff',
    fitzpatrick_scale: false,
    category: "flags"
  },
  sweden: {
    keywords: [ "se", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  switzerland: {
    keywords: [ "ch", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde8\ud83c\udded',
    fitzpatrick_scale: false,
    category: "flags"
  },
  syria: {
    keywords: [ "syrian", "arab", "republic", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf8\ud83c\uddfe',
    fitzpatrick_scale: false,
    category: "flags"
  },
  taiwan: {
    keywords: [ "tw", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\uddfc',
    fitzpatrick_scale: false,
    category: "flags"
  },
  tajikistan: {
    keywords: [ "tj", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\uddef',
    fitzpatrick_scale: false,
    category: "flags"
  },
  tanzania: {
    keywords: [ "tanzania,", "united", "republic", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\uddff',
    fitzpatrick_scale: false,
    category: "flags"
  },
  thailand: {
    keywords: [ "th", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\udded',
    fitzpatrick_scale: false,
    category: "flags"
  },
  timor_leste: {
    keywords: [ "timor", "leste", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\uddf1',
    fitzpatrick_scale: false,
    category: "flags"
  },
  togo: {
    keywords: [ "tg", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\uddec',
    fitzpatrick_scale: false,
    category: "flags"
  },
  tokelau: {
    keywords: [ "tk", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\uddf0',
    fitzpatrick_scale: false,
    category: "flags"
  },
  tonga: {
    keywords: [ "to", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\uddf4',
    fitzpatrick_scale: false,
    category: "flags"
  },
  trinidad_tobago: {
    keywords: [ "trinidad", "tobago", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\uddf9',
    fitzpatrick_scale: false,
    category: "flags"
  },
  tunisia: {
    keywords: [ "tn", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\uddf3',
    fitzpatrick_scale: false,
    category: "flags"
  },
  tr: {
    keywords: [ "turkey", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\uddf7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  turkmenistan: {
    keywords: [ "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  turks_caicos_islands: {
    keywords: [ "turks", "caicos", "islands", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\udde8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  tuvalu: {
    keywords: [ "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddf9\ud83c\uddfb',
    fitzpatrick_scale: false,
    category: "flags"
  },
  uganda: {
    keywords: [ "ug", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfa\ud83c\uddec',
    fitzpatrick_scale: false,
    category: "flags"
  },
  ukraine: {
    keywords: [ "ua", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfa\ud83c\udde6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  united_arab_emirates: {
    keywords: [ "united", "arab", "emirates", "flag", "nation", "country", "banner" ],
    char: '\ud83c\udde6\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  uk: {
    keywords: [ "united", "kingdom", "great", "britain", "northern", "ireland", "flag", "nation", "country", "banner", "british", "UK", "english", "england", "union jack" ],
    char: '\ud83c\uddec\ud83c\udde7',
    fitzpatrick_scale: false,
    category: "flags"
  },
  england: {
    keywords: [ "flag", "english" ],
    char: '\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f',
    fitzpatrick_scale: false,
    category: "flags"
  },
  scotland: {
    keywords: [ "flag", "scottish" ],
    char: '\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f',
    fitzpatrick_scale: false,
    category: "flags"
  },
  wales: {
    keywords: [ "flag", "welsh" ],
    char: '\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f',
    fitzpatrick_scale: false,
    category: "flags"
  },
  us: {
    keywords: [ "united", "states", "america", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfa\ud83c\uddf8',
    fitzpatrick_scale: false,
    category: "flags"
  },
  us_virgin_islands: {
    keywords: [ "virgin", "islands", "us", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfb\ud83c\uddee',
    fitzpatrick_scale: false,
    category: "flags"
  },
  uruguay: {
    keywords: [ "uy", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfa\ud83c\uddfe',
    fitzpatrick_scale: false,
    category: "flags"
  },
  uzbekistan: {
    keywords: [ "uz", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfa\ud83c\uddff',
    fitzpatrick_scale: false,
    category: "flags"
  },
  vanuatu: {
    keywords: [ "vu", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfb\ud83c\uddfa',
    fitzpatrick_scale: false,
    category: "flags"
  },
  vatican_city: {
    keywords: [ "vatican", "city", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfb\ud83c\udde6',
    fitzpatrick_scale: false,
    category: "flags"
  },
  venezuela: {
    keywords: [ "ve", "bolivarian", "republic", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfb\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  vietnam: {
    keywords: [ "viet", "nam", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfb\ud83c\uddf3',
    fitzpatrick_scale: false,
    category: "flags"
  },
  wallis_futuna: {
    keywords: [ "wallis", "futuna", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfc\ud83c\uddeb',
    fitzpatrick_scale: false,
    category: "flags"
  },
  western_sahara: {
    keywords: [ "western", "sahara", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddea\ud83c\udded',
    fitzpatrick_scale: false,
    category: "flags"
  },
  yemen: {
    keywords: [ "ye", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddfe\ud83c\uddea',
    fitzpatrick_scale: false,
    category: "flags"
  },
  zambia: {
    keywords: [ "zm", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddff\ud83c\uddf2',
    fitzpatrick_scale: false,
    category: "flags"
  },
  zimbabwe: {
    keywords: [ "zw", "flag", "nation", "country", "banner" ],
    char: '\ud83c\uddff\ud83c\uddfc',
    fitzpatrick_scale: false,
    category: "flags"
  },
  united_nations: {
    keywords: [ "un", "flag", "banner" ],
    char: '\ud83c\uddfa\ud83c\uddf3',
    fitzpatrick_scale: false,
    category: "flags"
  },
  pirate_flag: {
    keywords: [ "skull", "crossbones", "flag", "banner" ],
    char: '\ud83c\udff4\u200d\u2620\ufe0f',
    fitzpatrick_scale: false,
    category: "flags"
  }
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/plugins/emoticons/js/emojis.js
================================================
// Source: npm package: emojilib, file:emojis.json
window.tinymce.Resource.add("tinymce.plugins.emoticons", {
  grinning: {
    keywords: [ "face", "smile", "happy", "joy", ":D", "grin" ],
    char: "\ud83d\ude00",
    fitzpatrick_scale: false,
    category: "people"
  },
  grimacing: {
    keywords: [ "face", "grimace", "teeth" ],
    char: "\ud83d\ude2c",
    fitzpatrick_scale: false,
    category: "people"
  },
  grin: {
    keywords: [ "face", "happy", "smile", "joy", "kawaii" ],
    char: "\ud83d\ude01",
    fitzpatrick_scale: false,
    category: "people"
  },
  joy: {
    keywords: [ "face", "cry", "tears", "weep", "happy", "happytears", "haha" ],
    char: "\ud83d\ude02",
    fitzpatrick_scale: false,
    category: "people"
  },
  rofl: {
    keywords: [ "face", "rolling", "floor", "laughing", "lol", "haha" ],
    char: "\ud83e\udd23",
    fitzpatrick_scale: false,
    category: "people"
  },
  partying: {
    keywords: [ "face", "celebration", "woohoo" ],
    char: "\ud83e\udd73",
    fitzpatrick_scale: false,
    category: "people"
  },
  smiley: {
    keywords: [ "face", "happy", "joy", "haha", ":D", ":)", "smile", "funny" ],
    char: "\ud83d\ude03",
    fitzpatrick_scale: false,
    category: "people"
  },
  smile: {
    keywords: [ "face", "happy", "joy", "funny", "haha", "laugh", "like", ":D", ":)" ],
    char: "\ud83d\ude04",
    fitzpatrick_scale: false,
    category: "people"
  },
  sweat_smile: {
    keywords: [ "face", "hot", "happy", "laugh", "sweat", "smile", "relief" ],
    char: "\ud83d\ude05",
    fitzpatrick_scale: false,
    category: "people"
  },
  laughing: {
    keywords: [ "happy", "joy", "lol", "satisfied", "haha", "face", "glad", "XD", "laugh" ],
    char: "\ud83d\ude06",
    fitzpatrick_scale: false,
    category: "people"
  },
  innocent: {
    keywords: [ "face", "angel", "heaven", "halo" ],
    char: "\ud83d\ude07",
    fitzpatrick_scale: false,
    category: "people"
  },
  wink: {
    keywords: [ "face", "happy", "mischievous", "secret", ";)", "smile", "eye" ],
    char: "\ud83d\ude09",
    fitzpatrick_scale: false,
    category: "people"
  },
  blush: {
    keywords: [ "face", "smile", "happy", "flushed", "crush", "embarrassed", "shy", "joy" ],
    char: "\ud83d\ude0a",
    fitzpatrick_scale: false,
    category: "people"
  },
  slightly_smiling_face: {
    keywords: [ "face", "smile" ],
    char: "\ud83d\ude42",
    fitzpatrick_scale: false,
    category: "people"
  },
  upside_down_face: {
    keywords: [ "face", "flipped", "silly", "smile" ],
    char: "\ud83d\ude43",
    fitzpatrick_scale: false,
    category: "people"
  },
  relaxed: {
    keywords: [ "face", "blush", "massage", "happiness" ],
    char: "\u263a\ufe0f",
    fitzpatrick_scale: false,
    category: "people"
  },
  yum: {
    keywords: [ "happy", "joy", "tongue", "smile", "face", "silly", "yummy", "nom", "delicious", "savouring" ],
    char: "\ud83d\ude0b",
    fitzpatrick_scale: false,
    category: "people"
  },
  relieved: {
    keywords: [ "face", "relaxed", "phew", "massage", "happiness" ],
    char: "\ud83d\ude0c",
    fitzpatrick_scale: false,
    category: "people"
  },
  heart_eyes: {
    keywords: [ "face", "love", "like", "affection", "valentines", "infatuation", "crush", "heart" ],
    char: "\ud83d\ude0d",
    fitzpatrick_scale: false,
    category: "people"
  },
  smiling_face_with_three_hearts: {
    keywords: [ "face", "love", "like", "affection", "valentines", "infatuation", "crush", "hearts", "adore" ],
    char: "\ud83e\udd70",
    fitzpatrick_scale: false,
    category: "people"
  },
  kissing_heart: {
    keywords: [ "face", "love", "like", "affection", "valentines", "infatuation", "kiss" ],
    char: "\ud83d\ude18",
    fitzpatrick_scale: false,
    category: "people"
  },
  kissing: {
    keywords: [ "love", "like", "face", "3", "valentines", "infatuation", "kiss" ],
    char: "\ud83d\ude17",
    fitzpatrick_scale: false,
    category: "people"
  },
  kissing_smiling_eyes: {
    keywords: [ "face", "affection", "valentines", "infatuation", "kiss" ],
    char: "\ud83d\ude19",
    fitzpatrick_scale: false,
    category: "people"
  },
  kissing_closed_eyes: {
    keywords: [ "face", "love", "like", "affection", "valentines", "infatuation", "kiss" ],
    char: "\ud83d\ude1a",
    fitzpatrick_scale: false,
    category: "people"
  },
  stuck_out_tongue_winking_eye: {
    keywords: [ "face", "prank", "childish", "playful", "mischievous", "smile", "wink", "tongue" ],
    char: "\ud83d\ude1c",
    fitzpatrick_scale: false,
    category: "people"
  },
  zany: {
    keywords: [ "face", "goofy", "crazy" ],
    char: "\ud83e\udd2a",
    fitzpatrick_scale: false,
    category: "people"
  },
  raised_eyebrow: {
    keywords: [ "face", "distrust", "scepticism", "disapproval", "disbelief", "surprise" ],
    char: "\ud83e\udd28",
    fitzpatrick_scale: false,
    category: "people"
  },
  monocle: {
    keywords: [ "face", "stuffy", "wealthy" ],
    char: "\ud83e\uddd0",
    fitzpatrick_scale: false,
    category: "people"
  },
  stuck_out_tongue_closed_eyes: {
    keywords: [ "face", "prank", "playful", "mischievous", "smile", "tongue" ],
    char: "\ud83d\ude1d",
    fitzpatrick_scale: false,
    category: "people"
  },
  stuck_out_tongue: {
    keywords: [ "face", "prank", "childish", "playful", "mischievous", "smile", "tongue" ],
    char: "\ud83d\ude1b",
    fitzpatrick_scale: false,
    category: "people"
  },
  money_mouth_face: {
    keywords: [ "face", "rich", "dollar", "money" ],
    char: "\ud83e\udd11",
    fitzpatrick_scale: false,
    category: "people"
  },
  nerd_face: {
    keywords: [ "face", "nerdy", "geek", "dork" ],
    char: "\ud83e\udd13",
    fitzpatrick_scale: false,
    category: "people"
  },
  sunglasses: {
    keywords: [ "face", "cool", "smile", "summer", "beach", "sunglass" ],
    char: "\ud83d\ude0e",
    fitzpatrick_scale: false,
    category: "people"
  },
  star_struck: {
    keywords: [ "face", "smile", "starry", "eyes", "grinning" ],
    char: "\ud83e\udd29",
    fitzpatrick_scale: false,
    category: "people"
  },
  clown_face: {
    keywords: [ "face" ],
    char: "\ud83e\udd21",
    fitzpatrick_scale: false,
    category: "people"
  },
  cowboy_hat_face: {
    keywords: [ "face", "cowgirl", "hat" ],
    char: "\ud83e\udd20",
    fitzpatrick_scale: false,
    category: "people"
  },
  hugs: {
    keywords: [ "face", "smile", "hug" ],
    char: "\ud83e\udd17",
    fitzpatrick_scale: false,
    category: "people"
  },
  smirk: {
    keywords: [ "face", "smile", "mean", "prank", "smug", "sarcasm" ],
    char: "\ud83d\ude0f",
    fitzpatrick_scale: false,
    category: "people"
  },
  no_mouth: {
    keywords: [ "face", "hellokitty" ],
    char: "\ud83d\ude36",
    fitzpatrick_scale: false,
    category: "people"
  },
  neutral_face: {
    keywords: [ "indifference", "meh", ":|", "neutral" ],
    char: "\ud83d\ude10",
    fitzpatrick_scale: false,
    category: "people"
  },
  expressionless: {
    keywords: [ "face", "indifferent", "-_-", "meh", "deadpan" ],
    char: "\ud83d\ude11",
    fitzpatrick_scale: false,
    category: "people"
  },
  unamused: {
    keywords: [ "indifference", "bored", "straight face", "serious", "sarcasm", "unimpressed", "skeptical", "dubious", "side_eye" ],
    char: "\ud83d\ude12",
    fitzpatrick_scale: false,
    category: "people"
  },
  roll_eyes: {
    keywords: [ "face", "eyeroll", "frustrated" ],
    char: "\ud83d\ude44",
    fitzpatrick_scale: false,
    category: "people"
  },
  thinking: {
    keywords: [ "face", "hmmm", "think", "consider" ],
    char: "\ud83e\udd14",
    fitzpatrick_scale: false,
    category: "people"
  },
  lying_face: {
    keywords: [ "face", "lie", "pinocchio" ],
    char: "\ud83e\udd25",
    fitzpatrick_scale: false,
    category: "people"
  },
  hand_over_mouth: {
    keywords: [ "face", "whoops", "shock", "surprise" ],
    char: "\ud83e\udd2d",
    fitzpatrick_scale: false,
    category: "people"
  },
  shushing: {
    keywords: [ "face", "quiet", "shhh" ],
    char: "\ud83e\udd2b",
    fitzpatrick_scale: false,
    category: "people"
  },
  symbols_over_mouth: {
    keywords: [ "face", "swearing", "cursing", "cussing", "profanity", "expletive" ],
    char: "\ud83e\udd2c",
    fitzpatrick_scale: false,
    category: "people"
  },
  exploding_head: {
    keywords: [ "face", "shocked", "mind", "blown" ],
    char: "\ud83e\udd2f",
    fitzpatrick_scale: false,
    category: "people"
  },
  flushed: {
    keywords: [ "face", "blush", "shy", "flattered" ],
    char: "\ud83d\ude33",
    fitzpatrick_scale: false,
    category: "people"
  },
  disappointed: {
    keywords: [ "face", "sad", "upset", "depressed", ":(" ],
    char: "\ud83d\ude1e",
    fitzpatrick_scale: false,
    category: "people"
  },
  worried: {
    keywords: [ "face", "concern", "nervous", ":(" ],
    char: "\ud83d\ude1f",
    fitzpatrick_scale: false,
    category: "people"
  },
  angry: {
    keywords: [ "mad", "face", "annoyed", "frustrated" ],
    char: "\ud83d\ude20",
    fitzpatrick_scale: false,
    category: "people"
  },
  rage: {
    keywords: [ "angry", "mad", "hate", "despise" ],
    char: "\ud83d\ude21",
    fitzpatrick_scale: false,
    category: "people"
  },
  pensive: {
    keywords: [ "face", "sad", "depressed", "upset" ],
    char: "\ud83d\ude14",
    fitzpatrick_scale: false,
    category: "people"
  },
  confused: {
    keywords: [ "face", "indifference", "huh", "weird", "hmmm", ":/" ],
    char: "\ud83d\ude15",
    fitzpatrick_scale: false,
    category: "people"
  },
  slightly_frowning_face: {
    keywords: [ "face", "frowning", "disappointed", "sad", "upset" ],
    char: "\ud83d\ude41",
    fitzpatrick_scale: false,
    category: "people"
  },
  frowning_face: {
    keywords: [ "face", "sad", "upset", "frown" ],
    char: "\u2639",
    fitzpatrick_scale: false,
    category: "people"
  },
  persevere: {
    keywords: [ "face", "sick", "no", "upset", "oops" ],
    char: "\ud83d\ude23",
    fitzpatrick_scale: false,
    category: "people"
  },
  confounded: {
    keywords: [ "face", "confused", "sick", "unwell", "oops", ":S" ],
    char: "\ud83d\ude16",
    fitzpatrick_scale: false,
    category: "people"
  },
  tired_face: {
    keywords: [ "sick", "whine", "upset", "frustrated" ],
    char: "\ud83d\ude2b",
    fitzpatrick_scale: false,
    category: "people"
  },
  weary: {
    keywords: [ "face", "tired", "sleepy", "sad", "frustrated", "upset" ],
    char: "\ud83d\ude29",
    fitzpatrick_scale: false,
    category: "people"
  },
  pleading: {
    keywords: [ "face", "begging", "mercy" ],
    char: "\ud83e\udd7a",
    fitzpatrick_scale: false,
    category: "people"
  },
  triumph: {
    keywords: [ "face", "gas", "phew", "proud", "pride" ],
    char: "\ud83d\ude24",
    fitzpatrick_scale: false,
    category: "people"
  },
  open_mouth: {
    keywords: [ "face", "surprise", "impressed", "wow", "whoa", ":O" ],
    char: "\ud83d\ude2e",
    fitzpatrick_scale: false,
    category: "people"
  },
  scream: {
    keywords: [ "face", "munch", "scared", "omg" ],
    char: "\ud83d\ude31",
    fitzpatrick_scale: false,
    category: "people"
  },
  fearful: {
    keywords: [ "face", "scared", "terrified", "nervous", "oops", "huh" ],
    char: "\ud83d\ude28",
    fitzpatrick_scale: false,
    category: "people"
  },
  cold_sweat: {
    keywords: [ "face", "nervous", "sweat" ],
    char: "\ud83d\ude30",
    fitzpatrick_scale: false,
    category: "people"
  },
  hushed: {
    keywords: [ "face", "woo", "shh" ],
    char: "\ud83d\ude2f",
    fitzpatrick_scale: false,
    category: "people"
  },
  frowning: {
    keywords: [ "face", "aw", "what" ],
    char: "\ud83d\ude26",
    fitzpatrick_scale: false,
    category: "people"
  },
  anguished: {
    keywords: [ "face", "stunned", "nervous" ],
    char: "\ud83d\ude27",
    fitzpatrick_scale: false,
    category: "people"
  },
  cry: {
    keywords: [ "face", "tears", "sad", "depressed", "upset", ":'(" ],
    char: "\ud83d\ude22",
    fitzpatrick_scale: false,
    category: "people"
  },
  disappointed_relieved: {
    keywords: [ "face", "phew", "sweat", "nervous" ],
    char: "\ud83d\ude25",
    fitzpatrick_scale: false,
    category: "people"
  },
  drooling_face: {
    keywords: [ "face" ],
    char: "\ud83e\udd24",
    fitzpatrick_scale: false,
    category: "people"
  },
  sleepy: {
    keywords: [ "face", "tired", "rest", "nap" ],
    char: "\ud83d\ude2a",
    fitzpatrick_scale: false,
    category: "people"
  },
  sweat: {
    keywords: [ "face", "hot", "sad", "tired", "exercise" ],
    char: "\ud83d\ude13",
    fitzpatrick_scale: false,
    category: "people"
  },
  hot: {
    keywords: [ "face", "feverish", "heat", "red", "sweating" ],
    char: "\ud83e\udd75",
    fitzpatrick_scale: false,
    category: "people"
  },
  cold: {
    keywords: [ "face", "blue", "freezing", "frozen", "frostbite", "icicles" ],
    char: "\ud83e\udd76",
    fitzpatrick_scale: false,
    category: "people"
  },
  sob: {
    keywords: [ "face", "cry", "tears", "sad", "upset", "depressed" ],
    char: "\ud83d\ude2d",
    fitzpatrick_scale: false,
    category: "people"
  },
  dizzy_face: {
    keywords: [ "spent", "unconscious", "xox", "dizzy" ],
    char: "\ud83d\ude35",
    fitzpatrick_scale: false,
    category: "people"
  },
  astonished: {
    keywords: [ "face", "xox", "surprised", "poisoned" ],
    char: "\ud83d\ude32",
    fitzpatrick_scale: false,
    category: "people"
  },
  zipper_mouth_face: {
    keywords: [ "face", "sealed", "zipper", "secret" ],
    char: "\ud83e\udd10",
    fitzpatrick_scale: false,
    category: "people"
  },
  nauseated_face: {
    keywords: [ "face", "vomit", "gross", "green", "sick", "throw up", "ill" ],
    char: "\ud83e\udd22",
    fitzpatrick_scale: false,
    category: "people"
  },
  sneezing_face: {
    keywords: [ "face", "gesundheit", "sneeze", "sick", "allergy" ],
    char: "\ud83e\udd27",
    fitzpatrick_scale: false,
    category: "people"
  },
  vomiting: {
    keywords: [ "face", "sick" ],
    char: "\ud83e\udd2e",
    fitzpatrick_scale: false,
    category: "people"
  },
  mask: {
    keywords: [ "face", "sick", "ill", "disease" ],
    char: "\ud83d\ude37",
    fitzpatrick_scale: false,
    category: "people"
  },
  face_with_thermometer: {
    keywords: [ "sick", "temperature", "thermometer", "cold", "fever" ],
    char: "\ud83e\udd12",
    fitzpatrick_scale: false,
    category: "people"
  },
  face_with_head_bandage: {
    keywords: [ "injured", "clumsy", "bandage", "hurt" ],
    char: "\ud83e\udd15",
    fitzpatrick_scale: false,
    category: "people"
  },
  woozy: {
    keywords: [ "face", "dizzy", "intoxicated", "tipsy", "wavy" ],
    char: "\ud83e\udd74",
    fitzpatrick_scale: false,
    category: "people"
  },
  sleeping: {
    keywords: [ "face", "tired", "sleepy", "night", "zzz" ],
    char: "\ud83d\ude34",
    fitzpatrick_scale: false,
    category: "people"
  },
  zzz: {
    keywords: [ "sleepy", "tired", "dream" ],
    char: "\ud83d\udca4",
    fitzpatrick_scale: false,
    category: "people"
  },
  poop: {
    keywords: [ "hankey", "shitface", "fail", "turd", "shit" ],
    char: "\ud83d\udca9",
    fitzpatrick_scale: false,
    category: "people"
  },
  smiling_imp: {
    keywords: [ "devil", "horns" ],
    char: "\ud83d\ude08",
    fitzpatrick_scale: false,
    category: "people"
  },
  imp: {
    keywords: [ "devil", "angry", "horns" ],
    char: "\ud83d\udc7f",
    fitzpatrick_scale: false,
    category: "people"
  },
  japanese_ogre: {
    keywords: [ "monster", "red", "mask", "halloween", "scary", "creepy", "devil", "demon", "japanese", "ogre" ],
    char: "\ud83d\udc79",
    fitzpatrick_scale: false,
    category: "people"
  },
  japanese_goblin: {
    keywords: [ "red", "evil", "mask", "monster", "scary", "creepy", "japanese", "goblin" ],
    char: "\ud83d\udc7a",
    fitzpatrick_scale: false,
    category: "people"
  },
  skull: {
    keywords: [ "dead", "skeleton", "creepy", "death" ],
    char: "\ud83d\udc80",
    fitzpatrick_scale: false,
    category: "people"
  },
  ghost: {
    keywords: [ "halloween", "spooky", "scary" ],
    char: "\ud83d\udc7b",
    fitzpatrick_scale: false,
    category: "people"
  },
  alien: {
    keywords: [ "UFO", "paul", "weird", "outer_space" ],
    char: "\ud83d\udc7d",
    fitzpatrick_scale: false,
    category: "people"
  },
  robot: {
    keywords: [ "computer", "machine", "bot" ],
    char: "\ud83e\udd16",
    fitzpatrick_scale: false,
    category: "people"
  },
  smiley_cat: {
    keywords: [ "animal", "cats", "happy", "smile" ],
    char: "\ud83d\ude3a",
    fitzpatrick_scale: false,
    category: "people"
  },
  smile_cat: {
    keywords: [ "animal", "cats", "smile" ],
    char: "\ud83d\ude38",
    fitzpatrick_scale: false,
    category: "people"
  },
  joy_cat: {
    keywords: [ "animal", "cats", "haha", "happy", "tears" ],
    char: "\ud83d\ude39",
    fitzpatrick_scale: false,
    category: "people"
  },
  heart_eyes_cat: {
    keywords: [ "animal", "love", "like", "affection", "cats", "valentines", "heart" ],
    char: "\ud83d\ude3b",
    fitzpatrick_scale: false,
    category: "people"
  },
  smirk_cat: {
    keywords: [ "animal", "cats", "smirk" ],
    char: "\ud83d\ude3c",
    fitzpatrick_scale: false,
    category: "people"
  },
  kissing_cat: {
    keywords: [ "animal", "cats", "kiss" ],
    char: "\ud83d\ude3d",
    fitzpatrick_scale: false,
    category: "people"
  },
  scream_cat: {
    keywords: [ "animal", "cats", "munch", "scared", "scream" ],
    char: "\ud83d\ude40",
    fitzpatrick_scale: false,
    category: "people"
  },
  crying_cat_face: {
    keywords: [ "animal", "tears", "weep", "sad", "cats", "upset", "cry" ],
    char: "\ud83d\ude3f",
    fitzpatrick_scale: false,
    category: "people"
  },
  pouting_cat: {
    keywords: [ "animal", "cats" ],
    char: "\ud83d\ude3e",
    fitzpatrick_scale: false,
    category: "people"
  },
  palms_up: {
    keywords: [ "hands", "gesture", "cupped", "prayer" ],
    char: "\ud83e\udd32",
    fitzpatrick_scale: true,
    category: "people"
  },
  raised_hands: {
    keywords: [ "gesture", "hooray", "yea", "celebration", "hands" ],
    char: "\ud83d\ude4c",
    fitzpatrick_scale: true,
    category: "people"
  },
  clap: {
    keywords: [ "hands", "praise", "applause", "congrats", "yay" ],
    char: "\ud83d\udc4f",
    fitzpatrick_scale: true,
    category: "people"
  },
  wave: {
    keywords: [ "hands", "gesture", "goodbye", "solong", "farewell", "hello", "hi", "palm" ],
    char: "\ud83d\udc4b",
    fitzpatrick_scale: true,
    category: "people"
  },
  call_me_hand: {
    keywords: [ "hands", "gesture" ],
    char: "\ud83e\udd19",
    fitzpatrick_scale: true,
    category: "people"
  },
  "+1": {
    keywords: [ "thumbsup", "yes", "awesome", "good", "agree", "accept", "cool", "hand", "like" ],
    char: "\ud83d\udc4d",
    fitzpatrick_scale: true,
    category: "people"
  },
  "-1": {
    keywords: [ "thumbsdown", "no", "dislike", "hand" ],
    char: "\ud83d\udc4e",
    fitzpatrick_scale: true,
    category: "people"
  },
  facepunch: {
    keywords: [ "angry", "violence", "fist", "hit", "attack", "hand" ],
    char: "\ud83d\udc4a",
    fitzpatrick_scale: true,
    category: "people"
  },
  fist: {
    keywords: [ "fingers", "hand", "grasp" ],
    char: "\u270a",
    fitzpatrick_scale: true,
    category: "people"
  },
  fist_left: {
    keywords: [ "hand", "fistbump" ],
    char: "\ud83e\udd1b",
    fitzpatrick_scale: true,
    category: "people"
  },
  fist_right: {
    keywords: [ "hand", "fistbump" ],
    char: "\ud83e\udd1c",
    fitzpatrick_scale: true,
    category: "people"
  },
  v: {
    keywords: [ "fingers", "ohyeah", "hand", "peace", "victory", "two" ],
    char: "\u270c",
    fitzpatrick_scale: true,
    category: "people"
  },
  ok_hand: {
    keywords: [ "fingers", "limbs", "perfect", "ok", "okay" ],
    char: "\ud83d\udc4c",
    fitzpatrick_scale: true,
    category: "people"
  },
  raised_hand: {
    keywords: [ "fingers", "stop", "highfive", "palm", "ban" ],
    char: "\u270b",
    fitzpatrick_scale: true,
    category: "people"
  },
  raised_back_of_hand: {
    keywords: [ "fingers", "raised", "backhand" ],
    char: "\ud83e\udd1a",
    fitzpatrick_scale: true,
    category: "people"
  },
  open_hands: {
    keywords: [ "fingers", "butterfly", "hands", "open" ],
    char: "\ud83d\udc50",
    fitzpatrick_scale: true,
    category: "people"
  },
  muscle: {
    keywords: [ "arm", "flex", "hand", "summer", "strong", "biceps" ],
    char: "\ud83d\udcaa",
    fitzpatrick_scale: true,
    category: "people"
  },
  pray: {
    keywords: [ "please", "hope", "wish", "namaste", "highfive" ],
    char: "\ud83d\ude4f",
    fitzpatrick_scale: true,
    category: "people"
  },
  foot: {
    keywords: [ "kick", "stomp" ],
    char: "\ud83e\uddb6",
    fitzpatrick_scale: true,
    category: "people"
  },
  leg: {
    keywords: [ "kick", "limb" ],
    char: "\ud83e\uddb5",
    fitzpatrick_scale: true,
    category: "people"
  },
  handshake: {
    keywords: [ "agreement", "shake" ],
    char: "\ud83e\udd1d",
    fitzpatrick_scale: false,
    category: "people"
  },
  point_up: {
    keywords: [ "hand", "fingers", "direction", "up" ],
    char: "\u261d",
    fitzpatrick_scale: true,
    category: "people"
  },
  point_up_2: {
    keywords: [ "fingers", "hand", "direction", "up" ],
    char: "\ud83d\udc46",
    fitzpatrick_scale: true,
    category: "people"
  },
  point_down: {
    keywords: [ "fingers", "hand", "direction", "down" ],
    char: "\ud83d\udc47",
    fitzpatrick_scale: true,
    category: "people"
  },
  point_left: {
    keywords: [ "direction", "fingers", "hand", "left" ],
    char: "\ud83d\udc48",
    fitzpatrick_scale: true,
    category: "people"
  },
  point_right: {
    keywords: [ "fingers", "hand", "direction", "right" ],
    char: "\ud83d\udc49",
    fitzpatrick_scale: true,
    category: "people"
  },
  fu: {
    keywords: [ "hand", "fingers", "rude", "middle", "flipping" ],
    char: "\ud83d\udd95",
    fitzpatrick_scale: true,
    category: "people"
  },
  raised_hand_with_fingers_splayed: {
    keywords: [ "hand", "fingers", "palm" ],
    char: "\ud83d\udd90",
    fitzpatrick_scale: true,
    category: "people"
  },
  love_you: {
    keywords: [ "hand", "fingers", "gesture" ],
    char: "\ud83e\udd1f",
    fitzpatrick_scale: true,
    category: "people"
  },
  metal: {
    keywords: [ "hand", "fingers", "evil_eye", "sign_of_horns", "rock_on" ],
    char: "\ud83e\udd18",
    fitzpatrick_scale: true,
    category: "people"
  },
  crossed_fingers: {
    keywords: [ "good", "lucky" ],
    char: "\ud83e\udd1e",
    fitzpatrick_scale: true,
    category: "people"
  },
  vulcan_salute: {
    keywords: [ "hand", "fingers", "spock", "star trek" ],
    char: "\ud83d\udd96",
    fitzpatrick_scale: true,
    category: "people"
  },
  writing_hand: {
    keywords: [ "lower_left_ballpoint_pen", "stationery", "write", "compose" ],
    char: "\u270d",
    fitzpatrick_scale: true,
    category: "people"
  },
  selfie: {
    keywords: [ "camera", "phone" ],
    char: "\ud83e\udd33",
    fitzpatrick_scale: true,
    category: "people"
  },
  nail_care: {
    keywords: [ "beauty", "manicure", "finger", "fashion", "nail" ],
    char: "\ud83d\udc85",
    fitzpatrick_scale: true,
    category: "people"
  },
  lips: {
    keywords: [ "mouth", "kiss" ],
    char: "\ud83d\udc44",
    fitzpatrick_scale: false,
    category: "people"
  },
  tooth: {
    keywords: [ "teeth", "dentist" ],
    char: "\ud83e\uddb7",
    fitzpatrick_scale: false,
    category: "people"
  },
  tongue: {
    keywords: [ "mouth", "playful" ],
    char: "\ud83d\udc45",
    fitzpatrick_scale: false,
    category: "people"
  },
  ear: {
    keywords: [ "face", "hear", "sound", "listen" ],
    char: "\ud83d\udc42",
    fitzpatrick_scale: true,
    category: "people"
  },
  nose: {
    keywords: [ "smell", "sniff" ],
    char: "\ud83d\udc43",
    fitzpatrick_scale: true,
    category: "people"
  },
  eye: {
    keywords: [ "face", "look", "see", "watch", "stare" ],
    char: "\ud83d\udc41",
    fitzpatrick_scale: false,
    category: "people"
  },
  eyes: {
    keywords: [ "look", "watch", "stalk", "peek", "see" ],
    char: "\ud83d\udc40",
    fitzpatrick_scale: false,
    category: "people"
  },
  brain: {
    keywords: [ "smart", "intelligent" ],
    char: "\ud83e\udde0",
    fitzpatrick_scale: false,
    category: "people"
  },
  bust_in_silhouette: {
    keywords: [ "user", "person", "human" ],
    char: "\ud83d\udc64",
    fitzpatrick_scale: false,
    category: "people"
  },
  busts_in_silhouette: {
    keywords: [ "user", "person", "human", "group", "team" ],
    char: "\ud83d\udc65",
    fitzpatrick_scale: false,
    category: "people"
  },
  speaking_head: {
    keywords: [ "user", "person", "human", "sing", "say", "talk" ],
    char: "\ud83d\udde3",
    fitzpatrick_scale: false,
    category: "people"
  },
  baby: {
    keywords: [ "child", "boy", "girl", "toddler" ],
    char: "\ud83d\udc76",
    fitzpatrick_scale: true,
    category: "people"
  },
  child: {
    keywords: [ "gender-neutral", "young" ],
    char: "\ud83e\uddd2",
    fitzpatrick_scale: true,
    category: "people"
  },
  boy: {
    keywords: [ "man", "male", "guy", "teenager" ],
    char: "\ud83d\udc66",
    fitzpatrick_scale: true,
    category: "people"
  },
  girl: {
    keywords: [ "female", "woman", "teenager" ],
    char: "\ud83d\udc67",
    fitzpatrick_scale: true,
    category: "people"
  },
  adult: {
    keywords: [ "gender-neutral", "person" ],
    char: "\ud83e\uddd1",
    fitzpatrick_scale: true,
    category: "people"
  },
  man: {
    keywords: [ "mustache", "father", "dad", "guy", "classy", "sir", "moustache" ],
    char: "\ud83d\udc68",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman: {
    keywords: [ "female", "girls", "lady" ],
    char: "\ud83d\udc69",
    fitzpatrick_scale: true,
    category: "people"
  },
  blonde_woman: {
    keywords: [ "woman", "female", "girl", "blonde", "person" ],
    char: "\ud83d\udc71\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  blonde_man: {
    keywords: [ "man", "male", "boy", "blonde", "guy", "person" ],
    char: "\ud83d\udc71",
    fitzpatrick_scale: true,
    category: "people"
  },
  bearded_person: {
    keywords: [ "person", "bewhiskered" ],
    char: "\ud83e\uddd4",
    fitzpatrick_scale: true,
    category: "people"
  },
  older_adult: {
    keywords: [ "human", "elder", "senior", "gender-neutral" ],
    char: "\ud83e\uddd3",
    fitzpatrick_scale: true,
    category: "people"
  },
  older_man: {
    keywords: [ "human", "male", "men", "old", "elder", "senior" ],
    char: "\ud83d\udc74",
    fitzpatrick_scale: true,
    category: "people"
  },
  older_woman: {
    keywords: [ "human", "female", "women", "lady", "old", "elder", "senior" ],
    char: "\ud83d\udc75",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_with_gua_pi_mao: {
    keywords: [ "male", "boy", "chinese" ],
    char: "\ud83d\udc72",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_with_headscarf: {
    keywords: [ "female", "hijab", "mantilla", "tichel" ],
    char: "\ud83e\uddd5",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_with_turban: {
    keywords: [ "female", "indian", "hinduism", "arabs", "woman" ],
    char: "\ud83d\udc73\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_with_turban: {
    keywords: [ "male", "indian", "hinduism", "arabs" ],
    char: "\ud83d\udc73",
    fitzpatrick_scale: true,
    category: "people"
  },
  policewoman: {
    keywords: [ "woman", "police", "law", "legal", "enforcement", "arrest", "911", "female" ],
    char: "\ud83d\udc6e\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  policeman: {
    keywords: [ "man", "police", "law", "legal", "enforcement", "arrest", "911" ],
    char: "\ud83d\udc6e",
    fitzpatrick_scale: true,
    category: "people"
  },
  construction_worker_woman: {
    keywords: [ "female", "human", "wip", "build", "construction", "worker", "labor", "woman" ],
    char: "\ud83d\udc77\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  construction_worker_man: {
    keywords: [ "male", "human", "wip", "guy", "build", "construction", "worker", "labor" ],
    char: "\ud83d\udc77",
    fitzpatrick_scale: true,
    category: "people"
  },
  guardswoman: {
    keywords: [ "uk", "gb", "british", "female", "royal", "woman" ],
    char: "\ud83d\udc82\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  guardsman: {
    keywords: [ "uk", "gb", "british", "male", "guy", "royal" ],
    char: "\ud83d\udc82",
    fitzpatrick_scale: true,
    category: "people"
  },
  female_detective: {
    keywords: [ "human", "spy", "detective", "female", "woman" ],
    char: "\ud83d\udd75\ufe0f\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  male_detective: {
    keywords: [ "human", "spy", "detective" ],
    char: "\ud83d\udd75",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_health_worker: {
    keywords: [ "doctor", "nurse", "therapist", "healthcare", "woman", "human" ],
    char: "\ud83d\udc69\u200d\u2695\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_health_worker: {
    keywords: [ "doctor", "nurse", "therapist", "healthcare", "man", "human" ],
    char: "\ud83d\udc68\u200d\u2695\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_farmer: {
    keywords: [ "rancher", "gardener", "woman", "human" ],
    char: "\ud83d\udc69\u200d\ud83c\udf3e",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_farmer: {
    keywords: [ "rancher", "gardener", "man", "human" ],
    char: "\ud83d\udc68\u200d\ud83c\udf3e",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_cook: {
    keywords: [ "chef", "woman", "human" ],
    char: "\ud83d\udc69\u200d\ud83c\udf73",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_cook: {
    keywords: [ "chef", "man", "human" ],
    char: "\ud83d\udc68\u200d\ud83c\udf73",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_student: {
    keywords: [ "graduate", "woman", "human" ],
    char: "\ud83d\udc69\u200d\ud83c\udf93",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_student: {
    keywords: [ "graduate", "man", "human" ],
    char: "\ud83d\udc68\u200d\ud83c\udf93",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_singer: {
    keywords: [ "rockstar", "entertainer", "woman", "human" ],
    char: "\ud83d\udc69\u200d\ud83c\udfa4",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_singer: {
    keywords: [ "rockstar", "entertainer", "man", "human" ],
    char: "\ud83d\udc68\u200d\ud83c\udfa4",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_teacher: {
    keywords: [ "instructor", "professor", "woman", "human" ],
    char: "\ud83d\udc69\u200d\ud83c\udfeb",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_teacher: {
    keywords: [ "instructor", "professor", "man", "human" ],
    char: "\ud83d\udc68\u200d\ud83c\udfeb",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_factory_worker: {
    keywords: [ "assembly", "industrial", "woman", "human" ],
    char: "\ud83d\udc69\u200d\ud83c\udfed",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_factory_worker: {
    keywords: [ "assembly", "industrial", "man", "human" ],
    char: "\ud83d\udc68\u200d\ud83c\udfed",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_technologist: {
    keywords: [ "coder", "developer", "engineer", "programmer", "software", "woman", "human", "laptop", "computer" ],
    char: "\ud83d\udc69\u200d\ud83d\udcbb",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_technologist: {
    keywords: [ "coder", "developer", "engineer", "programmer", "software", "man", "human", "laptop", "computer" ],
    char: "\ud83d\udc68\u200d\ud83d\udcbb",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_office_worker: {
    keywords: [ "business", "manager", "woman", "human" ],
    char: "\ud83d\udc69\u200d\ud83d\udcbc",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_office_worker: {
    keywords: [ "business", "manager", "man", "human" ],
    char: "\ud83d\udc68\u200d\ud83d\udcbc",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_mechanic: {
    keywords: [ "plumber", "woman", "human", "wrench" ],
    char: "\ud83d\udc69\u200d\ud83d\udd27",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_mechanic: {
    keywords: [ "plumber", "man", "human", "wrench" ],
    char: "\ud83d\udc68\u200d\ud83d\udd27",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_scientist: {
    keywords: [ "biologist", "chemist", "engineer", "physicist", "woman", "human" ],
    char: "\ud83d\udc69\u200d\ud83d\udd2c",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_scientist: {
    keywords: [ "biologist", "chemist", "engineer", "physicist", "man", "human" ],
    char: "\ud83d\udc68\u200d\ud83d\udd2c",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_artist: {
    keywords: [ "painter", "woman", "human" ],
    char: "\ud83d\udc69\u200d\ud83c\udfa8",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_artist: {
    keywords: [ "painter", "man", "human" ],
    char: "\ud83d\udc68\u200d\ud83c\udfa8",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_firefighter: {
    keywords: [ "fireman", "woman", "human" ],
    char: "\ud83d\udc69\u200d\ud83d\ude92",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_firefighter: {
    keywords: [ "fireman", "man", "human" ],
    char: "\ud83d\udc68\u200d\ud83d\ude92",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_pilot: {
    keywords: [ "aviator", "plane", "woman", "human" ],
    char: "\ud83d\udc69\u200d\u2708\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_pilot: {
    keywords: [ "aviator", "plane", "man", "human" ],
    char: "\ud83d\udc68\u200d\u2708\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_astronaut: {
    keywords: [ "space", "rocket", "woman", "human" ],
    char: "\ud83d\udc69\u200d\ud83d\ude80",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_astronaut: {
    keywords: [ "space", "rocket", "man", "human" ],
    char: "\ud83d\udc68\u200d\ud83d\ude80",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_judge: {
    keywords: [ "justice", "court", "woman", "human" ],
    char: "\ud83d\udc69\u200d\u2696\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_judge: {
    keywords: [ "justice", "court", "man", "human" ],
    char: "\ud83d\udc68\u200d\u2696\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_superhero: {
    keywords: [ "woman", "female", "good", "heroine", "superpowers" ],
    char: "\ud83e\uddb8\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_superhero: {
    keywords: [ "man", "male", "good", "hero", "superpowers" ],
    char: "\ud83e\uddb8\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_supervillain: {
    keywords: [ "woman", "female", "evil", "bad", "criminal", "heroine", "superpowers" ],
    char: "\ud83e\uddb9\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_supervillain: {
    keywords: [ "man", "male", "evil", "bad", "criminal", "hero", "superpowers" ],
    char: "\ud83e\uddb9\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  mrs_claus: {
    keywords: [ "woman", "female", "xmas", "mother christmas" ],
    char: "\ud83e\udd36",
    fitzpatrick_scale: true,
    category: "people"
  },
  santa: {
    keywords: [ "festival", "man", "male", "xmas", "father christmas" ],
    char: "\ud83c\udf85",
    fitzpatrick_scale: true,
    category: "people"
  },
  sorceress: {
    keywords: [ "woman", "female", "mage", "witch" ],
    char: "\ud83e\uddd9\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  wizard: {
    keywords: [ "man", "male", "mage", "sorcerer" ],
    char: "\ud83e\uddd9\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_elf: {
    keywords: [ "woman", "female" ],
    char: "\ud83e\udddd\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_elf: {
    keywords: [ "man", "male" ],
    char: "\ud83e\udddd\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_vampire: {
    keywords: [ "woman", "female" ],
    char: "\ud83e\udddb\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_vampire: {
    keywords: [ "man", "male", "dracula" ],
    char: "\ud83e\udddb\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_zombie: {
    keywords: [ "woman", "female", "undead", "walking dead" ],
    char: "\ud83e\udddf\u200d\u2640\ufe0f",
    fitzpatrick_scale: false,
    category: "people"
  },
  man_zombie: {
    keywords: [ "man", "male", "dracula", "undead", "walking dead" ],
    char: "\ud83e\udddf\u200d\u2642\ufe0f",
    fitzpatrick_scale: false,
    category: "people"
  },
  woman_genie: {
    keywords: [ "woman", "female" ],
    char: "\ud83e\uddde\u200d\u2640\ufe0f",
    fitzpatrick_scale: false,
    category: "people"
  },
  man_genie: {
    keywords: [ "man", "male" ],
    char: "\ud83e\uddde\u200d\u2642\ufe0f",
    fitzpatrick_scale: false,
    category: "people"
  },
  mermaid: {
    keywords: [ "woman", "female", "merwoman", "ariel" ],
    char: "\ud83e\udddc\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  merman: {
    keywords: [ "man", "male", "triton" ],
    char: "\ud83e\udddc\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_fairy: {
    keywords: [ "woman", "female" ],
    char: "\ud83e\uddda\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_fairy: {
    keywords: [ "man", "male" ],
    char: "\ud83e\uddda\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  angel: {
    keywords: [ "heaven", "wings", "halo" ],
    char: "\ud83d\udc7c",
    fitzpatrick_scale: true,
    category: "people"
  },
  pregnant_woman: {
    keywords: [ "baby" ],
    char: "\ud83e\udd30",
    fitzpatrick_scale: true,
    category: "people"
  },
  breastfeeding: {
    keywords: [ "nursing", "baby" ],
    char: "\ud83e\udd31",
    fitzpatrick_scale: true,
    category: "people"
  },
  princess: {
    keywords: [ "girl", "woman", "female", "blond", "crown", "royal", "queen" ],
    char: "\ud83d\udc78",
    fitzpatrick_scale: true,
    category: "people"
  },
  prince: {
    keywords: [ "boy", "man", "male", "crown", "royal", "king" ],
    char: "\ud83e\udd34",
    fitzpatrick_scale: true,
    category: "people"
  },
  bride_with_veil: {
    keywords: [ "couple", "marriage", "wedding", "woman", "bride" ],
    char: "\ud83d\udc70",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_in_tuxedo: {
    keywords: [ "couple", "marriage", "wedding", "groom" ],
    char: "\ud83e\udd35",
    fitzpatrick_scale: true,
    category: "people"
  },
  running_woman: {
    keywords: [ "woman", "walking", "exercise", "race", "running", "female" ],
    char: "\ud83c\udfc3\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  running_man: {
    keywords: [ "man", "walking", "exercise", "race", "running" ],
    char: "\ud83c\udfc3",
    fitzpatrick_scale: true,
    category: "people"
  },
  walking_woman: {
    keywords: [ "human", "feet", "steps", "woman", "female" ],
    char: "\ud83d\udeb6\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  walking_man: {
    keywords: [ "human", "feet", "steps" ],
    char: "\ud83d\udeb6",
    fitzpatrick_scale: true,
    category: "people"
  },
  dancer: {
    keywords: [ "female", "girl", "woman", "fun" ],
    char: "\ud83d\udc83",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_dancing: {
    keywords: [ "male", "boy", "fun", "dancer" ],
    char: "\ud83d\udd7a",
    fitzpatrick_scale: true,
    category: "people"
  },
  dancing_women: {
    keywords: [ "female", "bunny", "women", "girls" ],
    char: "\ud83d\udc6f",
    fitzpatrick_scale: false,
    category: "people"
  },
  dancing_men: {
    keywords: [ "male", "bunny", "men", "boys" ],
    char: "\ud83d\udc6f\u200d\u2642\ufe0f",
    fitzpatrick_scale: false,
    category: "people"
  },
  couple: {
    keywords: [ "pair", "people", "human", "love", "date", "dating", "like", "affection", "valentines", "marriage" ],
    char: "\ud83d\udc6b",
    fitzpatrick_scale: false,
    category: "people"
  },
  two_men_holding_hands: {
    keywords: [ "pair", "couple", "love", "like", "bromance", "friendship", "people", "human" ],
    char: "\ud83d\udc6c",
    fitzpatrick_scale: false,
    category: "people"
  },
  two_women_holding_hands: {
    keywords: [ "pair", "friendship", "couple", "love", "like", "female", "people", "human" ],
    char: "\ud83d\udc6d",
    fitzpatrick_scale: false,
    category: "people"
  },
  bowing_woman: {
    keywords: [ "woman", "female", "girl" ],
    char: "\ud83d\ude47\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  bowing_man: {
    keywords: [ "man", "male", "boy" ],
    char: "\ud83d\ude47",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_facepalming: {
    keywords: [ "man", "male", "boy", "disbelief" ],
    char: "\ud83e\udd26\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_facepalming: {
    keywords: [ "woman", "female", "girl", "disbelief" ],
    char: "\ud83e\udd26\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_shrugging: {
    keywords: [ "woman", "female", "girl", "confused", "indifferent", "doubt" ],
    char: "\ud83e\udd37",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_shrugging: {
    keywords: [ "man", "male", "boy", "confused", "indifferent", "doubt" ],
    char: "\ud83e\udd37\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  tipping_hand_woman: {
    keywords: [ "female", "girl", "woman", "human", "information" ],
    char: "\ud83d\udc81",
    fitzpatrick_scale: true,
    category: "people"
  },
  tipping_hand_man: {
    keywords: [ "male", "boy", "man", "human", "information" ],
    char: "\ud83d\udc81\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  no_good_woman: {
    keywords: [ "female", "girl", "woman", "nope" ],
    char: "\ud83d\ude45",
    fitzpatrick_scale: true,
    category: "people"
  },
  no_good_man: {
    keywords: [ "male", "boy", "man", "nope" ],
    char: "\ud83d\ude45\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  ok_woman: {
    keywords: [ "women", "girl", "female", "pink", "human", "woman" ],
    char: "\ud83d\ude46",
    fitzpatrick_scale: true,
    category: "people"
  },
  ok_man: {
    keywords: [ "men", "boy", "male", "blue", "human", "man" ],
    char: "\ud83d\ude46\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  raising_hand_woman: {
    keywords: [ "female", "girl", "woman" ],
    char: "\ud83d\ude4b",
    fitzpatrick_scale: true,
    category: "people"
  },
  raising_hand_man: {
    keywords: [ "male", "boy", "man" ],
    char: "\ud83d\ude4b\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  pouting_woman: {
    keywords: [ "female", "girl", "woman" ],
    char: "\ud83d\ude4e",
    fitzpatrick_scale: true,
    category: "people"
  },
  pouting_man: {
    keywords: [ "male", "boy", "man" ],
    char: "\ud83d\ude4e\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  frowning_woman: {
    keywords: [ "female", "girl", "woman", "sad", "depressed", "discouraged", "unhappy" ],
    char: "\ud83d\ude4d",
    fitzpatrick_scale: true,
    category: "people"
  },
  frowning_man: {
    keywords: [ "male", "boy", "man", "sad", "depressed", "discouraged", "unhappy" ],
    char: "\ud83d\ude4d\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  haircut_woman: {
    keywords: [ "female", "girl", "woman" ],
    char: "\ud83d\udc87",
    fitzpatrick_scale: true,
    category: "people"
  },
  haircut_man: {
    keywords: [ "male", "boy", "man" ],
    char: "\ud83d\udc87\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  massage_woman: {
    keywords: [ "female", "girl", "woman", "head" ],
    char: "\ud83d\udc86",
    fitzpatrick_scale: true,
    category: "people"
  },
  massage_man: {
    keywords: [ "male", "boy", "man", "head" ],
    char: "\ud83d\udc86\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  woman_in_steamy_room: {
    keywords: [ "female", "woman", "spa", "steamroom", "sauna" ],
    char: "\ud83e\uddd6\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  man_in_steamy_room: {
    keywords: [ "male", "man", "spa", "steamroom", "sauna" ],
    char: "\ud83e\uddd6\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "people"
  },
  couple_with_heart_woman_man: {
    keywords: [ "pair", "love", "like", "affection", "human", "dating", "valentines", "marriage" ],
    char: "\ud83d\udc91",
    fitzpatrick_scale: false,
    category: "people"
  },
  couple_with_heart_woman_woman: {
    keywords: [ "pair", "love", "like", "affection", "human", "dating", "valentines", "marriage" ],
    char: "\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc69",
    fitzpatrick_scale: false,
    category: "people"
  },
  couple_with_heart_man_man: {
    keywords: [ "pair", "love", "like", "affection", "human", "dating", "valentines", "marriage" ],
    char: "\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc68",
    fitzpatrick_scale: false,
    category: "people"
  },
  couplekiss_man_woman: {
    keywords: [ "pair", "valentines", "love", "like", "dating", "marriage" ],
    char: "\ud83d\udc8f",
    fitzpatrick_scale: false,
    category: "people"
  },
  couplekiss_woman_woman: {
    keywords: [ "pair", "valentines", "love", "like", "dating", "marriage" ],
    char: "\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc69",
    fitzpatrick_scale: false,
    category: "people"
  },
  couplekiss_man_man: {
    keywords: [ "pair", "valentines", "love", "like", "dating", "marriage" ],
    char: "\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc68",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_woman_boy: {
    keywords: [ "home", "parents", "child", "mom", "dad", "father", "mother", "people", "human" ],
    char: "\ud83d\udc6a",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_woman_girl: {
    keywords: [ "home", "parents", "people", "human", "child" ],
    char: "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_woman_girl_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_woman_boy_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_woman_girl_girl: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_woman_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_woman_girl: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_woman_girl_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_woman_boy_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_woman_girl_girl: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_man_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_man_girl: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_man_girl_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_man_boy_boy: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_man_girl_girl: {
    keywords: [ "home", "parents", "people", "human", "children" ],
    char: "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc67",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_boy: {
    keywords: [ "home", "parent", "people", "human", "child" ],
    char: "\ud83d\udc69\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_girl: {
    keywords: [ "home", "parent", "people", "human", "child" ],
    char: "\ud83d\udc69\u200d\ud83d\udc67",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_girl_boy: {
    keywords: [ "home", "parent", "people", "human", "children" ],
    char: "\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_boy_boy: {
    keywords: [ "home", "parent", "people", "human", "children" ],
    char: "\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_woman_girl_girl: {
    keywords: [ "home", "parent", "people", "human", "children" ],
    char: "\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_boy: {
    keywords: [ "home", "parent", "people", "human", "child" ],
    char: "\ud83d\udc68\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_girl: {
    keywords: [ "home", "parent", "people", "human", "child" ],
    char: "\ud83d\udc68\u200d\ud83d\udc67",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_girl_boy: {
    keywords: [ "home", "parent", "people", "human", "children" ],
    char: "\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_boy_boy: {
    keywords: [ "home", "parent", "people", "human", "children" ],
    char: "\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66",
    fitzpatrick_scale: false,
    category: "people"
  },
  family_man_girl_girl: {
    keywords: [ "home", "parent", "people", "human", "children" ],
    char: "\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc67",
    fitzpatrick_scale: false,
    category: "people"
  },
  yarn: {
    keywords: [ "ball", "crochet", "knit" ],
    char: "\ud83e\uddf6",
    fitzpatrick_scale: false,
    category: "people"
  },
  thread: {
    keywords: [ "needle", "sewing", "spool", "string" ],
    char: "\ud83e\uddf5",
    fitzpatrick_scale: false,
    category: "people"
  },
  coat: {
    keywords: [ "jacket" ],
    char: "\ud83e\udde5",
    fitzpatrick_scale: false,
    category: "people"
  },
  labcoat: {
    keywords: [ "doctor", "experiment", "scientist", "chemist" ],
    char: "\ud83e\udd7c",
    fitzpatrick_scale: false,
    category: "people"
  },
  womans_clothes: {
    keywords: [ "fashion", "shopping_bags", "female" ],
    char: "\ud83d\udc5a",
    fitzpatrick_scale: false,
    category: "people"
  },
  tshirt: {
    keywords: [ "fashion", "cloth", "casual", "shirt", "tee" ],
    char: "\ud83d\udc55",
    fitzpatrick_scale: false,
    category: "people"
  },
  jeans: {
    keywords: [ "fashion", "shopping" ],
    char: "\ud83d\udc56",
    fitzpatrick_scale: false,
    category: "people"
  },
  necktie: {
    keywords: [ "shirt", "suitup", "formal", "fashion", "cloth", "business" ],
    char: "\ud83d\udc54",
    fitzpatrick_scale: false,
    category: "people"
  },
  dress: {
    keywords: [ "clothes", "fashion", "shopping" ],
    char: "\ud83d\udc57",
    fitzpatrick_scale: false,
    category: "people"
  },
  bikini: {
    keywords: [ "swimming", "female", "woman", "girl", "fashion", "beach", "summer" ],
    char: "\ud83d\udc59",
    fitzpatrick_scale: false,
    category: "people"
  },
  kimono: {
    keywords: [ "dress", "fashion", "women", "female", "japanese" ],
    char: "\ud83d\udc58",
    fitzpatrick_scale: false,
    category: "people"
  },
  lipstick: {
    keywords: [ "female", "girl", "fashion", "woman" ],
    char: "\ud83d\udc84",
    fitzpatrick_scale: false,
    category: "people"
  },
  kiss: {
    keywords: [ "face", "lips", "love", "like", "affection", "valentines" ],
    char: "\ud83d\udc8b",
    fitzpatrick_scale: false,
    category: "people"
  },
  footprints: {
    keywords: [ "feet", "tracking", "walking", "beach" ],
    char: "\ud83d\udc63",
    fitzpatrick_scale: false,
    category: "people"
  },
  flat_shoe: {
    keywords: [ "ballet", "slip-on", "slipper" ],
    char: "\ud83e\udd7f",
    fitzpatrick_scale: false,
    category: "people"
  },
  high_heel: {
    keywords: [ "fashion", "shoes", "female", "pumps", "stiletto" ],
    char: "\ud83d\udc60",
    fitzpatrick_scale: false,
    category: "people"
  },
  sandal: {
    keywords: [ "shoes", "fashion", "flip flops" ],
    char: "\ud83d\udc61",
    fitzpatrick_scale: false,
    category: "people"
  },
  boot: {
    keywords: [ "shoes", "fashion" ],
    char: "\ud83d\udc62",
    fitzpatrick_scale: false,
    category: "people"
  },
  mans_shoe: {
    keywords: [ "fashion", "male" ],
    char: "\ud83d\udc5e",
    fitzpatrick_scale: false,
    category: "people"
  },
  athletic_shoe: {
    keywords: [ "shoes", "sports", "sneakers" ],
    char: "\ud83d\udc5f",
    fitzpatrick_scale: false,
    category: "people"
  },
  hiking_boot: {
    keywords: [ "backpacking", "camping", "hiking" ],
    char: "\ud83e\udd7e",
    fitzpatrick_scale: false,
    category: "people"
  },
  socks: {
    keywords: [ "stockings", "clothes" ],
    char: "\ud83e\udde6",
    fitzpatrick_scale: false,
    category: "people"
  },
  gloves: {
    keywords: [ "hands", "winter", "clothes" ],
    char: "\ud83e\udde4",
    fitzpatrick_scale: false,
    category: "people"
  },
  scarf: {
    keywords: [ "neck", "winter", "clothes" ],
    char: "\ud83e\udde3",
    fitzpatrick_scale: false,
    category: "people"
  },
  womans_hat: {
    keywords: [ "fashion", "accessories", "female", "lady", "spring" ],
    char: "\ud83d\udc52",
    fitzpatrick_scale: false,
    category: "people"
  },
  tophat: {
    keywords: [ "magic", "gentleman", "classy", "circus" ],
    char: "\ud83c\udfa9",
    fitzpatrick_scale: false,
    category: "people"
  },
  billed_hat: {
    keywords: [ "cap", "baseball" ],
    char: "\ud83e\udde2",
    fitzpatrick_scale: false,
    category: "people"
  },
  rescue_worker_helmet: {
    keywords: [ "construction", "build" ],
    char: "\u26d1",
    fitzpatrick_scale: false,
    category: "people"
  },
  mortar_board: {
    keywords: [ "school", "college", "degree", "university", "graduation", "cap", "hat", "legal", "learn", "education" ],
    char: "\ud83c\udf93",
    fitzpatrick_scale: false,
    category: "people"
  },
  crown: {
    keywords: [ "king", "kod", "leader", "royalty", "lord" ],
    char: "\ud83d\udc51",
    fitzpatrick_scale: false,
    category: "people"
  },
  school_satchel: {
    keywords: [ "student", "education", "bag", "backpack" ],
    char: "\ud83c\udf92",
    fitzpatrick_scale: false,
    category: "people"
  },
  luggage: {
    keywords: [ "packing", "travel" ],
    char: "\ud83e\uddf3",
    fitzpatrick_scale: false,
    category: "people"
  },
  pouch: {
    keywords: [ "bag", "accessories", "shopping" ],
    char: "\ud83d\udc5d",
    fitzpatrick_scale: false,
    category: "people"
  },
  purse: {
    keywords: [ "fashion", "accessories", "money", "sales", "shopping" ],
    char: "\ud83d\udc5b",
    fitzpatrick_scale: false,
    category: "people"
  },
  handbag: {
    keywords: [ "fashion", "accessory", "accessories", "shopping" ],
    char: "\ud83d\udc5c",
    fitzpatrick_scale: false,
    category: "people"
  },
  briefcase: {
    keywords: [ "business", "documents", "work", "law", "legal", "job", "career" ],
    char: "\ud83d\udcbc",
    fitzpatrick_scale: false,
    category: "people"
  },
  eyeglasses: {
    keywords: [ "fashion", "accessories", "eyesight", "nerdy", "dork", "geek" ],
    char: "\ud83d\udc53",
    fitzpatrick_scale: false,
    category: "people"
  },
  dark_sunglasses: {
    keywords: [ "face", "cool", "accessories" ],
    char: "\ud83d\udd76",
    fitzpatrick_scale: false,
    category: "people"
  },
  goggles: {
    keywords: [ "eyes", "protection", "safety" ],
    char: "\ud83e\udd7d",
    fitzpatrick_scale: false,
    category: "people"
  },
  ring: {
    keywords: [ "wedding", "propose", "marriage", "valentines", "diamond", "fashion", "jewelry", "gem", "engagement" ],
    char: "\ud83d\udc8d",
    fitzpatrick_scale: false,
    category: "people"
  },
  closed_umbrella: {
    keywords: [ "weather", "rain", "drizzle" ],
    char: "\ud83c\udf02",
    fitzpatrick_scale: false,
    category: "people"
  },
  dog: {
    keywords: [ "animal", "friend", "nature", "woof", "puppy", "pet", "faithful" ],
    char: "\ud83d\udc36",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cat: {
    keywords: [ "animal", "meow", "nature", "pet", "kitten" ],
    char: "\ud83d\udc31",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  mouse: {
    keywords: [ "animal", "nature", "cheese_wedge", "rodent" ],
    char: "\ud83d\udc2d",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hamster: {
    keywords: [ "animal", "nature" ],
    char: "\ud83d\udc39",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  rabbit: {
    keywords: [ "animal", "nature", "pet", "spring", "magic", "bunny" ],
    char: "\ud83d\udc30",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  fox_face: {
    keywords: [ "animal", "nature", "face" ],
    char: "\ud83e\udd8a",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  bear: {
    keywords: [ "animal", "nature", "wild" ],
    char: "\ud83d\udc3b",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  panda_face: {
    keywords: [ "animal", "nature", "panda" ],
    char: "\ud83d\udc3c",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  koala: {
    keywords: [ "animal", "nature" ],
    char: "\ud83d\udc28",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  tiger: {
    keywords: [ "animal", "cat", "danger", "wild", "nature", "roar" ],
    char: "\ud83d\udc2f",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  lion: {
    keywords: [ "animal", "nature" ],
    char: "\ud83e\udd81",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cow: {
    keywords: [ "beef", "ox", "animal", "nature", "moo", "milk" ],
    char: "\ud83d\udc2e",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  pig: {
    keywords: [ "animal", "oink", "nature" ],
    char: "\ud83d\udc37",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  pig_nose: {
    keywords: [ "animal", "oink" ],
    char: "\ud83d\udc3d",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  frog: {
    keywords: [ "animal", "nature", "croak", "toad" ],
    char: "\ud83d\udc38",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  squid: {
    keywords: [ "animal", "nature", "ocean", "sea" ],
    char: "\ud83e\udd91",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  octopus: {
    keywords: [ "animal", "creature", "ocean", "sea", "nature", "beach" ],
    char: "\ud83d\udc19",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  shrimp: {
    keywords: [ "animal", "ocean", "nature", "seafood" ],
    char: "\ud83e\udd90",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  monkey_face: {
    keywords: [ "animal", "nature", "circus" ],
    char: "\ud83d\udc35",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  gorilla: {
    keywords: [ "animal", "nature", "circus" ],
    char: "\ud83e\udd8d",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  see_no_evil: {
    keywords: [ "monkey", "animal", "nature", "haha" ],
    char: "\ud83d\ude48",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hear_no_evil: {
    keywords: [ "animal", "monkey", "nature" ],
    char: "\ud83d\ude49",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  speak_no_evil: {
    keywords: [ "monkey", "animal", "nature", "omg" ],
    char: "\ud83d\ude4a",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  monkey: {
    keywords: [ "animal", "nature", "banana", "circus" ],
    char: "\ud83d\udc12",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  chicken: {
    keywords: [ "animal", "cluck", "nature", "bird" ],
    char: "\ud83d\udc14",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  penguin: {
    keywords: [ "animal", "nature" ],
    char: "\ud83d\udc27",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  bird: {
    keywords: [ "animal", "nature", "fly", "tweet", "spring" ],
    char: "\ud83d\udc26",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  baby_chick: {
    keywords: [ "animal", "chicken", "bird" ],
    char: "\ud83d\udc24",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hatching_chick: {
    keywords: [ "animal", "chicken", "egg", "born", "baby", "bird" ],
    char: "\ud83d\udc23",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hatched_chick: {
    keywords: [ "animal", "chicken", "baby", "bird" ],
    char: "\ud83d\udc25",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  duck: {
    keywords: [ "animal", "nature", "bird", "mallard" ],
    char: "\ud83e\udd86",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  eagle: {
    keywords: [ "animal", "nature", "bird" ],
    char: "\ud83e\udd85",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  owl: {
    keywords: [ "animal", "nature", "bird", "hoot" ],
    char: "\ud83e\udd89",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  bat: {
    keywords: [ "animal", "nature", "blind", "vampire" ],
    char: "\ud83e\udd87",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  wolf: {
    keywords: [ "animal", "nature", "wild" ],
    char: "\ud83d\udc3a",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  boar: {
    keywords: [ "animal", "nature" ],
    char: "\ud83d\udc17",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  horse: {
    keywords: [ "animal", "brown", "nature" ],
    char: "\ud83d\udc34",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  unicorn: {
    keywords: [ "animal", "nature", "mystical" ],
    char: "\ud83e\udd84",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  honeybee: {
    keywords: [ "animal", "insect", "nature", "bug", "spring", "honey" ],
    char: "\ud83d\udc1d",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  bug: {
    keywords: [ "animal", "insect", "nature", "worm" ],
    char: "\ud83d\udc1b",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  butterfly: {
    keywords: [ "animal", "insect", "nature", "caterpillar" ],
    char: "\ud83e\udd8b",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  snail: {
    keywords: [ "slow", "animal", "shell" ],
    char: "\ud83d\udc0c",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  beetle: {
    keywords: [ "animal", "insect", "nature", "ladybug" ],
    char: "\ud83d\udc1e",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  ant: {
    keywords: [ "animal", "insect", "nature", "bug" ],
    char: "\ud83d\udc1c",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  grasshopper: {
    keywords: [ "animal", "cricket", "chirp" ],
    char: "\ud83e\udd97",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  spider: {
    keywords: [ "animal", "arachnid" ],
    char: "\ud83d\udd77",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  scorpion: {
    keywords: [ "animal", "arachnid" ],
    char: "\ud83e\udd82",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  crab: {
    keywords: [ "animal", "crustacean" ],
    char: "\ud83e\udd80",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  snake: {
    keywords: [ "animal", "evil", "nature", "hiss", "python" ],
    char: "\ud83d\udc0d",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  lizard: {
    keywords: [ "animal", "nature", "reptile" ],
    char: "\ud83e\udd8e",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  "t-rex": {
    keywords: [ "animal", "nature", "dinosaur", "tyrannosaurus", "extinct" ],
    char: "\ud83e\udd96",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sauropod: {
    keywords: [ "animal", "nature", "dinosaur", "brachiosaurus", "brontosaurus", "diplodocus", "extinct" ],
    char: "\ud83e\udd95",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  turtle: {
    keywords: [ "animal", "slow", "nature", "tortoise" ],
    char: "\ud83d\udc22",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  tropical_fish: {
    keywords: [ "animal", "swim", "ocean", "beach", "nemo" ],
    char: "\ud83d\udc20",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  fish: {
    keywords: [ "animal", "food", "nature" ],
    char: "\ud83d\udc1f",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  blowfish: {
    keywords: [ "animal", "nature", "food", "sea", "ocean" ],
    char: "\ud83d\udc21",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dolphin: {
    keywords: [ "animal", "nature", "fish", "sea", "ocean", "flipper", "fins", "beach" ],
    char: "\ud83d\udc2c",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  shark: {
    keywords: [ "animal", "nature", "fish", "sea", "ocean", "jaws", "fins", "beach" ],
    char: "\ud83e\udd88",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  whale: {
    keywords: [ "animal", "nature", "sea", "ocean" ],
    char: "\ud83d\udc33",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  whale2: {
    keywords: [ "animal", "nature", "sea", "ocean" ],
    char: "\ud83d\udc0b",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  crocodile: {
    keywords: [ "animal", "nature", "reptile", "lizard", "alligator" ],
    char: "\ud83d\udc0a",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  leopard: {
    keywords: [ "animal", "nature" ],
    char: "\ud83d\udc06",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  zebra: {
    keywords: [ "animal", "nature", "stripes", "safari" ],
    char: "\ud83e\udd93",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  tiger2: {
    keywords: [ "animal", "nature", "roar" ],
    char: "\ud83d\udc05",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  water_buffalo: {
    keywords: [ "animal", "nature", "ox", "cow" ],
    char: "\ud83d\udc03",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  ox: {
    keywords: [ "animal", "cow", "beef" ],
    char: "\ud83d\udc02",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cow2: {
    keywords: [ "beef", "ox", "animal", "nature", "moo", "milk" ],
    char: "\ud83d\udc04",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  deer: {
    keywords: [ "animal", "nature", "horns", "venison" ],
    char: "\ud83e\udd8c",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dromedary_camel: {
    keywords: [ "animal", "hot", "desert", "hump" ],
    char: "\ud83d\udc2a",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  camel: {
    keywords: [ "animal", "nature", "hot", "desert", "hump" ],
    char: "\ud83d\udc2b",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  giraffe: {
    keywords: [ "animal", "nature", "spots", "safari" ],
    char: "\ud83e\udd92",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  elephant: {
    keywords: [ "animal", "nature", "nose", "th", "circus" ],
    char: "\ud83d\udc18",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  rhinoceros: {
    keywords: [ "animal", "nature", "horn" ],
    char: "\ud83e\udd8f",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  goat: {
    keywords: [ "animal", "nature" ],
    char: "\ud83d\udc10",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  ram: {
    keywords: [ "animal", "sheep", "nature" ],
    char: "\ud83d\udc0f",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sheep: {
    keywords: [ "animal", "nature", "wool", "shipit" ],
    char: "\ud83d\udc11",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  racehorse: {
    keywords: [ "animal", "gamble", "luck" ],
    char: "\ud83d\udc0e",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  pig2: {
    keywords: [ "animal", "nature" ],
    char: "\ud83d\udc16",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  rat: {
    keywords: [ "animal", "mouse", "rodent" ],
    char: "\ud83d\udc00",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  mouse2: {
    keywords: [ "animal", "nature", "rodent" ],
    char: "\ud83d\udc01",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  rooster: {
    keywords: [ "animal", "nature", "chicken" ],
    char: "\ud83d\udc13",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  turkey: {
    keywords: [ "animal", "bird" ],
    char: "\ud83e\udd83",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dove: {
    keywords: [ "animal", "bird" ],
    char: "\ud83d\udd4a",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dog2: {
    keywords: [ "animal", "nature", "friend", "doge", "pet", "faithful" ],
    char: "\ud83d\udc15",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  poodle: {
    keywords: [ "dog", "animal", "101", "nature", "pet" ],
    char: "\ud83d\udc29",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cat2: {
    keywords: [ "animal", "meow", "pet", "cats" ],
    char: "\ud83d\udc08",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  rabbit2: {
    keywords: [ "animal", "nature", "pet", "magic", "spring" ],
    char: "\ud83d\udc07",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  chipmunk: {
    keywords: [ "animal", "nature", "rodent", "squirrel" ],
    char: "\ud83d\udc3f",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hedgehog: {
    keywords: [ "animal", "nature", "spiny" ],
    char: "\ud83e\udd94",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  raccoon: {
    keywords: [ "animal", "nature" ],
    char: "\ud83e\udd9d",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  llama: {
    keywords: [ "animal", "nature", "alpaca" ],
    char: "\ud83e\udd99",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hippopotamus: {
    keywords: [ "animal", "nature" ],
    char: "\ud83e\udd9b",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  kangaroo: {
    keywords: [ "animal", "nature", "australia", "joey", "hop", "marsupial" ],
    char: "\ud83e\udd98",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  badger: {
    keywords: [ "animal", "nature", "honey" ],
    char: "\ud83e\udda1",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  swan: {
    keywords: [ "animal", "nature", "bird" ],
    char: "\ud83e\udda2",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  peacock: {
    keywords: [ "animal", "nature", "peahen", "bird" ],
    char: "\ud83e\udd9a",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  parrot: {
    keywords: [ "animal", "nature", "bird", "pirate", "talk" ],
    char: "\ud83e\udd9c",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  lobster: {
    keywords: [ "animal", "nature", "bisque", "claws", "seafood" ],
    char: "\ud83e\udd9e",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  mosquito: {
    keywords: [ "animal", "nature", "insect", "malaria" ],
    char: "\ud83e\udd9f",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  paw_prints: {
    keywords: [ "animal", "tracking", "footprints", "dog", "cat", "pet", "feet" ],
    char: "\ud83d\udc3e",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dragon: {
    keywords: [ "animal", "myth", "nature", "chinese", "green" ],
    char: "\ud83d\udc09",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dragon_face: {
    keywords: [ "animal", "myth", "nature", "chinese", "green" ],
    char: "\ud83d\udc32",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cactus: {
    keywords: [ "vegetable", "plant", "nature" ],
    char: "\ud83c\udf35",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  christmas_tree: {
    keywords: [ "festival", "vacation", "december", "xmas", "celebration" ],
    char: "\ud83c\udf84",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  evergreen_tree: {
    keywords: [ "plant", "nature" ],
    char: "\ud83c\udf32",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  deciduous_tree: {
    keywords: [ "plant", "nature" ],
    char: "\ud83c\udf33",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  palm_tree: {
    keywords: [ "plant", "vegetable", "nature", "summer", "beach", "mojito", "tropical" ],
    char: "\ud83c\udf34",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  seedling: {
    keywords: [ "plant", "nature", "grass", "lawn", "spring" ],
    char: "\ud83c\udf31",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  herb: {
    keywords: [ "vegetable", "plant", "medicine", "weed", "grass", "lawn" ],
    char: "\ud83c\udf3f",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  shamrock: {
    keywords: [ "vegetable", "plant", "nature", "irish", "clover" ],
    char: "\u2618",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  four_leaf_clover: {
    keywords: [ "vegetable", "plant", "nature", "lucky", "irish" ],
    char: "\ud83c\udf40",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  bamboo: {
    keywords: [ "plant", "nature", "vegetable", "panda", "pine_decoration" ],
    char: "\ud83c\udf8d",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  tanabata_tree: {
    keywords: [ "plant", "nature", "branch", "summer" ],
    char: "\ud83c\udf8b",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  leaves: {
    keywords: [ "nature", "plant", "tree", "vegetable", "grass", "lawn", "spring" ],
    char: "\ud83c\udf43",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  fallen_leaf: {
    keywords: [ "nature", "plant", "vegetable", "leaves" ],
    char: "\ud83c\udf42",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  maple_leaf: {
    keywords: [ "nature", "plant", "vegetable", "ca", "fall" ],
    char: "\ud83c\udf41",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  ear_of_rice: {
    keywords: [ "nature", "plant" ],
    char: "\ud83c\udf3e",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  hibiscus: {
    keywords: [ "plant", "vegetable", "flowers", "beach" ],
    char: "\ud83c\udf3a",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sunflower: {
    keywords: [ "nature", "plant", "fall" ],
    char: "\ud83c\udf3b",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  rose: {
    keywords: [ "flowers", "valentines", "love", "spring" ],
    char: "\ud83c\udf39",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  wilted_flower: {
    keywords: [ "plant", "nature", "flower" ],
    char: "\ud83e\udd40",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  tulip: {
    keywords: [ "flowers", "plant", "nature", "summer", "spring" ],
    char: "\ud83c\udf37",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  blossom: {
    keywords: [ "nature", "flowers", "yellow" ],
    char: "\ud83c\udf3c",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cherry_blossom: {
    keywords: [ "nature", "plant", "spring", "flower" ],
    char: "\ud83c\udf38",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  bouquet: {
    keywords: [ "flowers", "nature", "spring" ],
    char: "\ud83d\udc90",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  mushroom: {
    keywords: [ "plant", "vegetable" ],
    char: "\ud83c\udf44",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  chestnut: {
    keywords: [ "food", "squirrel" ],
    char: "\ud83c\udf30",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  jack_o_lantern: {
    keywords: [ "halloween", "light", "pumpkin", "creepy", "fall" ],
    char: "\ud83c\udf83",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  shell: {
    keywords: [ "nature", "sea", "beach" ],
    char: "\ud83d\udc1a",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  spider_web: {
    keywords: [ "animal", "insect", "arachnid", "silk" ],
    char: "\ud83d\udd78",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  earth_americas: {
    keywords: [ "globe", "world", "USA", "international" ],
    char: "\ud83c\udf0e",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  earth_africa: {
    keywords: [ "globe", "world", "international" ],
    char: "\ud83c\udf0d",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  earth_asia: {
    keywords: [ "globe", "world", "east", "international" ],
    char: "\ud83c\udf0f",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  full_moon: {
    keywords: [ "nature", "yellow", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: "\ud83c\udf15",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  waning_gibbous_moon: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep", "waxing_gibbous_moon" ],
    char: "\ud83c\udf16",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  last_quarter_moon: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: "\ud83c\udf17",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  waning_crescent_moon: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: "\ud83c\udf18",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  new_moon: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: "\ud83c\udf11",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  waxing_crescent_moon: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: "\ud83c\udf12",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  first_quarter_moon: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: "\ud83c\udf13",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  waxing_gibbous_moon: {
    keywords: [ "nature", "night", "sky", "gray", "twilight", "planet", "space", "evening", "sleep" ],
    char: "\ud83c\udf14",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  new_moon_with_face: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: "\ud83c\udf1a",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  full_moon_with_face: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: "\ud83c\udf1d",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  first_quarter_moon_with_face: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: "\ud83c\udf1b",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  last_quarter_moon_with_face: {
    keywords: [ "nature", "twilight", "planet", "space", "night", "evening", "sleep" ],
    char: "\ud83c\udf1c",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sun_with_face: {
    keywords: [ "nature", "morning", "sky" ],
    char: "\ud83c\udf1e",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  crescent_moon: {
    keywords: [ "night", "sleep", "sky", "evening", "magic" ],
    char: "\ud83c\udf19",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  star: {
    keywords: [ "night", "yellow" ],
    char: "\u2b50",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  star2: {
    keywords: [ "night", "sparkle", "awesome", "good", "magic" ],
    char: "\ud83c\udf1f",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dizzy: {
    keywords: [ "star", "sparkle", "shoot", "magic" ],
    char: "\ud83d\udcab",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sparkles: {
    keywords: [ "stars", "shine", "shiny", "cool", "awesome", "good", "magic" ],
    char: "\u2728",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  comet: {
    keywords: [ "space" ],
    char: "\u2604",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sunny: {
    keywords: [ "weather", "nature", "brightness", "summer", "beach", "spring" ],
    char: "\u2600\ufe0f",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sun_behind_small_cloud: {
    keywords: [ "weather" ],
    char: "\ud83c\udf24",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  partly_sunny: {
    keywords: [ "weather", "nature", "cloudy", "morning", "fall", "spring" ],
    char: "\u26c5",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sun_behind_large_cloud: {
    keywords: [ "weather" ],
    char: "\ud83c\udf25",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sun_behind_rain_cloud: {
    keywords: [ "weather" ],
    char: "\ud83c\udf26",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cloud: {
    keywords: [ "weather", "sky" ],
    char: "\u2601\ufe0f",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cloud_with_rain: {
    keywords: [ "weather" ],
    char: "\ud83c\udf27",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cloud_with_lightning_and_rain: {
    keywords: [ "weather", "lightning" ],
    char: "\u26c8",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cloud_with_lightning: {
    keywords: [ "weather", "thunder" ],
    char: "\ud83c\udf29",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  zap: {
    keywords: [ "thunder", "weather", "lightning bolt", "fast" ],
    char: "\u26a1",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  fire: {
    keywords: [ "hot", "cook", "flame" ],
    char: "\ud83d\udd25",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  boom: {
    keywords: [ "bomb", "explode", "explosion", "collision", "blown" ],
    char: "\ud83d\udca5",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  snowflake: {
    keywords: [ "winter", "season", "cold", "weather", "christmas", "xmas" ],
    char: "\u2744\ufe0f",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  cloud_with_snow: {
    keywords: [ "weather" ],
    char: "\ud83c\udf28",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  snowman: {
    keywords: [ "winter", "season", "cold", "weather", "christmas", "xmas", "frozen", "without_snow" ],
    char: "\u26c4",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  snowman_with_snow: {
    keywords: [ "winter", "season", "cold", "weather", "christmas", "xmas", "frozen" ],
    char: "\u2603",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  wind_face: {
    keywords: [ "gust", "air" ],
    char: "\ud83c\udf2c",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  dash: {
    keywords: [ "wind", "air", "fast", "shoo", "fart", "smoke", "puff" ],
    char: "\ud83d\udca8",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  tornado: {
    keywords: [ "weather", "cyclone", "twister" ],
    char: "\ud83c\udf2a",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  fog: {
    keywords: [ "weather" ],
    char: "\ud83c\udf2b",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  open_umbrella: {
    keywords: [ "weather", "spring" ],
    char: "\u2602",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  umbrella: {
    keywords: [ "rainy", "weather", "spring" ],
    char: "\u2614",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  droplet: {
    keywords: [ "water", "drip", "faucet", "spring" ],
    char: "\ud83d\udca7",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  sweat_drops: {
    keywords: [ "water", "drip", "oops" ],
    char: "\ud83d\udca6",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  ocean: {
    keywords: [ "sea", "water", "wave", "nature", "tsunami", "disaster" ],
    char: "\ud83c\udf0a",
    fitzpatrick_scale: false,
    category: "animals_and_nature"
  },
  green_apple: {
    keywords: [ "fruit", "nature" ],
    char: "\ud83c\udf4f",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  apple: {
    keywords: [ "fruit", "mac", "school" ],
    char: "\ud83c\udf4e",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  pear: {
    keywords: [ "fruit", "nature", "food" ],
    char: "\ud83c\udf50",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  tangerine: {
    keywords: [ "food", "fruit", "nature", "orange" ],
    char: "\ud83c\udf4a",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  lemon: {
    keywords: [ "fruit", "nature" ],
    char: "\ud83c\udf4b",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  banana: {
    keywords: [ "fruit", "food", "monkey" ],
    char: "\ud83c\udf4c",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  watermelon: {
    keywords: [ "fruit", "food", "picnic", "summer" ],
    char: "\ud83c\udf49",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  grapes: {
    keywords: [ "fruit", "food", "wine" ],
    char: "\ud83c\udf47",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  strawberry: {
    keywords: [ "fruit", "food", "nature" ],
    char: "\ud83c\udf53",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  melon: {
    keywords: [ "fruit", "nature", "food" ],
    char: "\ud83c\udf48",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cherries: {
    keywords: [ "food", "fruit" ],
    char: "\ud83c\udf52",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  peach: {
    keywords: [ "fruit", "nature", "food" ],
    char: "\ud83c\udf51",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  pineapple: {
    keywords: [ "fruit", "nature", "food" ],
    char: "\ud83c\udf4d",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  coconut: {
    keywords: [ "fruit", "nature", "food", "palm" ],
    char: "\ud83e\udd65",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  kiwi_fruit: {
    keywords: [ "fruit", "food" ],
    char: "\ud83e\udd5d",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  mango: {
    keywords: [ "fruit", "food", "tropical" ],
    char: "\ud83e\udd6d",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  avocado: {
    keywords: [ "fruit", "food" ],
    char: "\ud83e\udd51",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  broccoli: {
    keywords: [ "fruit", "food", "vegetable" ],
    char: "\ud83e\udd66",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  tomato: {
    keywords: [ "fruit", "vegetable", "nature", "food" ],
    char: "\ud83c\udf45",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  eggplant: {
    keywords: [ "vegetable", "nature", "food", "aubergine" ],
    char: "\ud83c\udf46",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cucumber: {
    keywords: [ "fruit", "food", "pickle" ],
    char: "\ud83e\udd52",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  carrot: {
    keywords: [ "vegetable", "food", "orange" ],
    char: "\ud83e\udd55",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  hot_pepper: {
    keywords: [ "food", "spicy", "chilli", "chili" ],
    char: "\ud83c\udf36",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  potato: {
    keywords: [ "food", "tuber", "vegatable", "starch" ],
    char: "\ud83e\udd54",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  corn: {
    keywords: [ "food", "vegetable", "plant" ],
    char: "\ud83c\udf3d",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  leafy_greens: {
    keywords: [ "food", "vegetable", "plant", "bok choy", "cabbage", "kale", "lettuce" ],
    char: "\ud83e\udd6c",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  sweet_potato: {
    keywords: [ "food", "nature" ],
    char: "\ud83c\udf60",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  peanuts: {
    keywords: [ "food", "nut" ],
    char: "\ud83e\udd5c",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  honey_pot: {
    keywords: [ "bees", "sweet", "kitchen" ],
    char: "\ud83c\udf6f",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  croissant: {
    keywords: [ "food", "bread", "french" ],
    char: "\ud83e\udd50",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  bread: {
    keywords: [ "food", "wheat", "breakfast", "toast" ],
    char: "\ud83c\udf5e",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  baguette_bread: {
    keywords: [ "food", "bread", "french" ],
    char: "\ud83e\udd56",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  bagel: {
    keywords: [ "food", "bread", "bakery", "schmear" ],
    char: "\ud83e\udd6f",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  pretzel: {
    keywords: [ "food", "bread", "twisted" ],
    char: "\ud83e\udd68",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cheese: {
    keywords: [ "food", "chadder" ],
    char: "\ud83e\uddc0",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  egg: {
    keywords: [ "food", "chicken", "breakfast" ],
    char: "\ud83e\udd5a",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  bacon: {
    keywords: [ "food", "breakfast", "pork", "pig", "meat" ],
    char: "\ud83e\udd53",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  steak: {
    keywords: [ "food", "cow", "meat", "cut", "chop", "lambchop", "porkchop" ],
    char: "\ud83e\udd69",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  pancakes: {
    keywords: [ "food", "breakfast", "flapjacks", "hotcakes" ],
    char: "\ud83e\udd5e",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  poultry_leg: {
    keywords: [ "food", "meat", "drumstick", "bird", "chicken", "turkey" ],
    char: "\ud83c\udf57",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  meat_on_bone: {
    keywords: [ "good", "food", "drumstick" ],
    char: "\ud83c\udf56",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  bone: {
    keywords: [ "skeleton" ],
    char: "\ud83e\uddb4",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  fried_shrimp: {
    keywords: [ "food", "animal", "appetizer", "summer" ],
    char: "\ud83c\udf64",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  fried_egg: {
    keywords: [ "food", "breakfast", "kitchen", "egg" ],
    char: "\ud83c\udf73",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  hamburger: {
    keywords: [ "meat", "fast food", "beef", "cheeseburger", "mcdonalds", "burger king" ],
    char: "\ud83c\udf54",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  fries: {
    keywords: [ "chips", "snack", "fast food" ],
    char: "\ud83c\udf5f",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  stuffed_flatbread: {
    keywords: [ "food", "flatbread", "stuffed", "gyro" ],
    char: "\ud83e\udd59",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  hotdog: {
    keywords: [ "food", "frankfurter" ],
    char: "\ud83c\udf2d",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  pizza: {
    keywords: [ "food", "party" ],
    char: "\ud83c\udf55",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  sandwich: {
    keywords: [ "food", "lunch", "bread" ],
    char: "\ud83e\udd6a",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  canned_food: {
    keywords: [ "food", "soup" ],
    char: "\ud83e\udd6b",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  spaghetti: {
    keywords: [ "food", "italian", "noodle" ],
    char: "\ud83c\udf5d",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  taco: {
    keywords: [ "food", "mexican" ],
    char: "\ud83c\udf2e",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  burrito: {
    keywords: [ "food", "mexican" ],
    char: "\ud83c\udf2f",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  green_salad: {
    keywords: [ "food", "healthy", "lettuce" ],
    char: "\ud83e\udd57",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  shallow_pan_of_food: {
    keywords: [ "food", "cooking", "casserole", "paella" ],
    char: "\ud83e\udd58",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  ramen: {
    keywords: [ "food", "japanese", "noodle", "chopsticks" ],
    char: "\ud83c\udf5c",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  stew: {
    keywords: [ "food", "meat", "soup" ],
    char: "\ud83c\udf72",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  fish_cake: {
    keywords: [ "food", "japan", "sea", "beach", "narutomaki", "pink", "swirl", "kamaboko", "surimi", "ramen" ],
    char: "\ud83c\udf65",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  fortune_cookie: {
    keywords: [ "food", "prophecy" ],
    char: "\ud83e\udd60",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  sushi: {
    keywords: [ "food", "fish", "japanese", "rice" ],
    char: "\ud83c\udf63",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  bento: {
    keywords: [ "food", "japanese", "box" ],
    char: "\ud83c\udf71",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  curry: {
    keywords: [ "food", "spicy", "hot", "indian" ],
    char: "\ud83c\udf5b",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  rice_ball: {
    keywords: [ "food", "japanese" ],
    char: "\ud83c\udf59",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  rice: {
    keywords: [ "food", "china", "asian" ],
    char: "\ud83c\udf5a",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  rice_cracker: {
    keywords: [ "food", "japanese" ],
    char: "\ud83c\udf58",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  oden: {
    keywords: [ "food", "japanese" ],
    char: "\ud83c\udf62",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  dango: {
    keywords: [ "food", "dessert", "sweet", "japanese", "barbecue", "meat" ],
    char: "\ud83c\udf61",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  shaved_ice: {
    keywords: [ "hot", "dessert", "summer" ],
    char: "\ud83c\udf67",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  ice_cream: {
    keywords: [ "food", "hot", "dessert" ],
    char: "\ud83c\udf68",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  icecream: {
    keywords: [ "food", "hot", "dessert", "summer" ],
    char: "\ud83c\udf66",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  pie: {
    keywords: [ "food", "dessert", "pastry" ],
    char: "\ud83e\udd67",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cake: {
    keywords: [ "food", "dessert" ],
    char: "\ud83c\udf70",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cupcake: {
    keywords: [ "food", "dessert", "bakery", "sweet" ],
    char: "\ud83e\uddc1",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  moon_cake: {
    keywords: [ "food", "autumn" ],
    char: "\ud83e\udd6e",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  birthday: {
    keywords: [ "food", "dessert", "cake" ],
    char: "\ud83c\udf82",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  custard: {
    keywords: [ "dessert", "food" ],
    char: "\ud83c\udf6e",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  candy: {
    keywords: [ "snack", "dessert", "sweet", "lolly" ],
    char: "\ud83c\udf6c",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  lollipop: {
    keywords: [ "food", "snack", "candy", "sweet" ],
    char: "\ud83c\udf6d",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  chocolate_bar: {
    keywords: [ "food", "snack", "dessert", "sweet" ],
    char: "\ud83c\udf6b",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  popcorn: {
    keywords: [ "food", "movie theater", "films", "snack" ],
    char: "\ud83c\udf7f",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  dumpling: {
    keywords: [ "food", "empanada", "pierogi", "potsticker" ],
    char: "\ud83e\udd5f",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  doughnut: {
    keywords: [ "food", "dessert", "snack", "sweet", "donut" ],
    char: "\ud83c\udf69",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cookie: {
    keywords: [ "food", "snack", "oreo", "chocolate", "sweet", "dessert" ],
    char: "\ud83c\udf6a",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  milk_glass: {
    keywords: [ "beverage", "drink", "cow" ],
    char: "\ud83e\udd5b",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  beer: {
    keywords: [ "relax", "beverage", "drink", "drunk", "party", "pub", "summer", "alcohol", "booze" ],
    char: "\ud83c\udf7a",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  beers: {
    keywords: [ "relax", "beverage", "drink", "drunk", "party", "pub", "summer", "alcohol", "booze" ],
    char: "\ud83c\udf7b",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  clinking_glasses: {
    keywords: [ "beverage", "drink", "party", "alcohol", "celebrate", "cheers", "wine", "champagne", "toast" ],
    char: "\ud83e\udd42",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  wine_glass: {
    keywords: [ "drink", "beverage", "drunk", "alcohol", "booze" ],
    char: "\ud83c\udf77",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  tumbler_glass: {
    keywords: [ "drink", "beverage", "drunk", "alcohol", "liquor", "booze", "bourbon", "scotch", "whisky", "glass", "shot" ],
    char: "\ud83e\udd43",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cocktail: {
    keywords: [ "drink", "drunk", "alcohol", "beverage", "booze", "mojito" ],
    char: "\ud83c\udf78",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  tropical_drink: {
    keywords: [ "beverage", "cocktail", "summer", "beach", "alcohol", "booze", "mojito" ],
    char: "\ud83c\udf79",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  champagne: {
    keywords: [ "drink", "wine", "bottle", "celebration" ],
    char: "\ud83c\udf7e",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  sake: {
    keywords: [ "wine", "drink", "drunk", "beverage", "japanese", "alcohol", "booze" ],
    char: "\ud83c\udf76",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  tea: {
    keywords: [ "drink", "bowl", "breakfast", "green", "british" ],
    char: "\ud83c\udf75",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  cup_with_straw: {
    keywords: [ "drink", "soda" ],
    char: "\ud83e\udd64",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  coffee: {
    keywords: [ "beverage", "caffeine", "latte", "espresso" ],
    char: "\u2615",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  baby_bottle: {
    keywords: [ "food", "container", "milk" ],
    char: "\ud83c\udf7c",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  salt: {
    keywords: [ "condiment", "shaker" ],
    char: "\ud83e\uddc2",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  spoon: {
    keywords: [ "cutlery", "kitchen", "tableware" ],
    char: "\ud83e\udd44",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  fork_and_knife: {
    keywords: [ "cutlery", "kitchen" ],
    char: "\ud83c\udf74",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  plate_with_cutlery: {
    keywords: [ "food", "eat", "meal", "lunch", "dinner", "restaurant" ],
    char: "\ud83c\udf7d",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  bowl_with_spoon: {
    keywords: [ "food", "breakfast", "cereal", "oatmeal", "porridge" ],
    char: "\ud83e\udd63",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  takeout_box: {
    keywords: [ "food", "leftovers" ],
    char: "\ud83e\udd61",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  chopsticks: {
    keywords: [ "food" ],
    char: "\ud83e\udd62",
    fitzpatrick_scale: false,
    category: "food_and_drink"
  },
  soccer: {
    keywords: [ "sports", "football" ],
    char: "\u26bd",
    fitzpatrick_scale: false,
    category: "activity"
  },
  basketball: {
    keywords: [ "sports", "balls", "NBA" ],
    char: "\ud83c\udfc0",
    fitzpatrick_scale: false,
    category: "activity"
  },
  football: {
    keywords: [ "sports", "balls", "NFL" ],
    char: "\ud83c\udfc8",
    fitzpatrick_scale: false,
    category: "activity"
  },
  baseball: {
    keywords: [ "sports", "balls" ],
    char: "\u26be",
    fitzpatrick_scale: false,
    category: "activity"
  },
  softball: {
    keywords: [ "sports", "balls" ],
    char: "\ud83e\udd4e",
    fitzpatrick_scale: false,
    category: "activity"
  },
  tennis: {
    keywords: [ "sports", "balls", "green" ],
    char: "\ud83c\udfbe",
    fitzpatrick_scale: false,
    category: "activity"
  },
  volleyball: {
    keywords: [ "sports", "balls" ],
    char: "\ud83c\udfd0",
    fitzpatrick_scale: false,
    category: "activity"
  },
  rugby_football: {
    keywords: [ "sports", "team" ],
    char: "\ud83c\udfc9",
    fitzpatrick_scale: false,
    category: "activity"
  },
  flying_disc: {
    keywords: [ "sports", "frisbee", "ultimate" ],
    char: "\ud83e\udd4f",
    fitzpatrick_scale: false,
    category: "activity"
  },
  "8ball": {
    keywords: [ "pool", "hobby", "game", "luck", "magic" ],
    char: "\ud83c\udfb1",
    fitzpatrick_scale: false,
    category: "activity"
  },
  golf: {
    keywords: [ "sports", "business", "flag", "hole", "summer" ],
    char: "\u26f3",
    fitzpatrick_scale: false,
    category: "activity"
  },
  golfing_woman: {
    keywords: [ "sports", "business", "woman", "female" ],
    char: "\ud83c\udfcc\ufe0f\u200d\u2640\ufe0f",
    fitzpatrick_scale: false,
    category: "activity"
  },
  golfing_man: {
    keywords: [ "sports", "business" ],
    char: "\ud83c\udfcc",
    fitzpatrick_scale: true,
    category: "activity"
  },
  ping_pong: {
    keywords: [ "sports", "pingpong" ],
    char: "\ud83c\udfd3",
    fitzpatrick_scale: false,
    category: "activity"
  },
  badminton: {
    keywords: [ "sports" ],
    char: "\ud83c\udff8",
    fitzpatrick_scale: false,
    category: "activity"
  },
  goal_net: {
    keywords: [ "sports" ],
    char: "\ud83e\udd45",
    fitzpatrick_scale: false,
    category: "activity"
  },
  ice_hockey: {
    keywords: [ "sports" ],
    char: "\ud83c\udfd2",
    fitzpatrick_scale: false,
    category: "activity"
  },
  field_hockey: {
    keywords: [ "sports" ],
    char: "\ud83c\udfd1",
    fitzpatrick_scale: false,
    category: "activity"
  },
  lacrosse: {
    keywords: [ "sports", "ball", "stick" ],
    char: "\ud83e\udd4d",
    fitzpatrick_scale: false,
    category: "activity"
  },
  cricket: {
    keywords: [ "sports" ],
    char: "\ud83c\udfcf",
    fitzpatrick_scale: false,
    category: "activity"
  },
  ski: {
    keywords: [ "sports", "winter", "cold", "snow" ],
    char: "\ud83c\udfbf",
    fitzpatrick_scale: false,
    category: "activity"
  },
  skier: {
    keywords: [ "sports", "winter", "snow" ],
    char: "\u26f7",
    fitzpatrick_scale: false,
    category: "activity"
  },
  snowboarder: {
    keywords: [ "sports", "winter" ],
    char: "\ud83c\udfc2",
    fitzpatrick_scale: true,
    category: "activity"
  },
  person_fencing: {
    keywords: [ "sports", "fencing", "sword" ],
    char: "\ud83e\udd3a",
    fitzpatrick_scale: false,
    category: "activity"
  },
  women_wrestling: {
    keywords: [ "sports", "wrestlers" ],
    char: "\ud83e\udd3c\u200d\u2640\ufe0f",
    fitzpatrick_scale: false,
    category: "activity"
  },
  men_wrestling: {
    keywords: [ "sports", "wrestlers" ],
    char: "\ud83e\udd3c\u200d\u2642\ufe0f",
    fitzpatrick_scale: false,
    category: "activity"
  },
  woman_cartwheeling: {
    keywords: [ "gymnastics" ],
    char: "\ud83e\udd38\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  man_cartwheeling: {
    keywords: [ "gymnastics" ],
    char: "\ud83e\udd38\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  woman_playing_handball: {
    keywords: [ "sports" ],
    char: "\ud83e\udd3e\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  man_playing_handball: {
    keywords: [ "sports" ],
    char: "\ud83e\udd3e\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  ice_skate: {
    keywords: [ "sports" ],
    char: "\u26f8",
    fitzpatrick_scale: false,
    category: "activity"
  },
  curling_stone: {
    keywords: [ "sports" ],
    char: "\ud83e\udd4c",
    fitzpatrick_scale: false,
    category: "activity"
  },
  skateboard: {
    keywords: [ "board" ],
    char: "\ud83d\udef9",
    fitzpatrick_scale: false,
    category: "activity"
  },
  sled: {
    keywords: [ "sleigh", "luge", "toboggan" ],
    char: "\ud83d\udef7",
    fitzpatrick_scale: false,
    category: "activity"
  },
  bow_and_arrow: {
    keywords: [ "sports" ],
    char: "\ud83c\udff9",
    fitzpatrick_scale: false,
    category: "activity"
  },
  fishing_pole_and_fish: {
    keywords: [ "food", "hobby", "summer" ],
    char: "\ud83c\udfa3",
    fitzpatrick_scale: false,
    category: "activity"
  },
  boxing_glove: {
    keywords: [ "sports", "fighting" ],
    char: "\ud83e\udd4a",
    fitzpatrick_scale: false,
    category: "activity"
  },
  martial_arts_uniform: {
    keywords: [ "judo", "karate", "taekwondo" ],
    char: "\ud83e\udd4b",
    fitzpatrick_scale: false,
    category: "activity"
  },
  rowing_woman: {
    keywords: [ "sports", "hobby", "water", "ship", "woman", "female" ],
    char: "\ud83d\udea3\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  rowing_man: {
    keywords: [ "sports", "hobby", "water", "ship" ],
    char: "\ud83d\udea3",
    fitzpatrick_scale: true,
    category: "activity"
  },
  climbing_woman: {
    keywords: [ "sports", "hobby", "woman", "female", "rock" ],
    char: "\ud83e\uddd7\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  climbing_man: {
    keywords: [ "sports", "hobby", "man", "male", "rock" ],
    char: "\ud83e\uddd7\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  swimming_woman: {
    keywords: [ "sports", "exercise", "human", "athlete", "water", "summer", "woman", "female" ],
    char: "\ud83c\udfca\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  swimming_man: {
    keywords: [ "sports", "exercise", "human", "athlete", "water", "summer" ],
    char: "\ud83c\udfca",
    fitzpatrick_scale: true,
    category: "activity"
  },
  woman_playing_water_polo: {
    keywords: [ "sports", "pool" ],
    char: "\ud83e\udd3d\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  man_playing_water_polo: {
    keywords: [ "sports", "pool" ],
    char: "\ud83e\udd3d\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  woman_in_lotus_position: {
    keywords: [ "woman", "female", "meditation", "yoga", "serenity", "zen", "mindfulness" ],
    char: "\ud83e\uddd8\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  man_in_lotus_position: {
    keywords: [ "man", "male", "meditation", "yoga", "serenity", "zen", "mindfulness" ],
    char: "\ud83e\uddd8\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  surfing_woman: {
    keywords: [ "sports", "ocean", "sea", "summer", "beach", "woman", "female" ],
    char: "\ud83c\udfc4\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  surfing_man: {
    keywords: [ "sports", "ocean", "sea", "summer", "beach" ],
    char: "\ud83c\udfc4",
    fitzpatrick_scale: true,
    category: "activity"
  },
  bath: {
    keywords: [ "clean", "shower", "bathroom" ],
    char: "\ud83d\udec0",
    fitzpatrick_scale: true,
    category: "activity"
  },
  basketball_woman: {
    keywords: [ "sports", "human", "woman", "female" ],
    char: "\u26f9\ufe0f\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  basketball_man: {
    keywords: [ "sports", "human" ],
    char: "\u26f9",
    fitzpatrick_scale: true,
    category: "activity"
  },
  weight_lifting_woman: {
    keywords: [ "sports", "training", "exercise", "woman", "female" ],
    char: "\ud83c\udfcb\ufe0f\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  weight_lifting_man: {
    keywords: [ "sports", "training", "exercise" ],
    char: "\ud83c\udfcb",
    fitzpatrick_scale: true,
    category: "activity"
  },
  biking_woman: {
    keywords: [ "sports", "bike", "exercise", "hipster", "woman", "female" ],
    char: "\ud83d\udeb4\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  biking_man: {
    keywords: [ "sports", "bike", "exercise", "hipster" ],
    char: "\ud83d\udeb4",
    fitzpatrick_scale: true,
    category: "activity"
  },
  mountain_biking_woman: {
    keywords: [ "transportation", "sports", "human", "race", "bike", "woman", "female" ],
    char: "\ud83d\udeb5\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  mountain_biking_man: {
    keywords: [ "transportation", "sports", "human", "race", "bike" ],
    char: "\ud83d\udeb5",
    fitzpatrick_scale: true,
    category: "activity"
  },
  horse_racing: {
    keywords: [ "animal", "betting", "competition", "gambling", "luck" ],
    char: "\ud83c\udfc7",
    fitzpatrick_scale: true,
    category: "activity"
  },
  business_suit_levitating: {
    keywords: [ "suit", "business", "levitate", "hover", "jump" ],
    char: "\ud83d\udd74",
    fitzpatrick_scale: true,
    category: "activity"
  },
  trophy: {
    keywords: [ "win", "award", "contest", "place", "ftw", "ceremony" ],
    char: "\ud83c\udfc6",
    fitzpatrick_scale: false,
    category: "activity"
  },
  running_shirt_with_sash: {
    keywords: [ "play", "pageant" ],
    char: "\ud83c\udfbd",
    fitzpatrick_scale: false,
    category: "activity"
  },
  medal_sports: {
    keywords: [ "award", "winning" ],
    char: "\ud83c\udfc5",
    fitzpatrick_scale: false,
    category: "activity"
  },
  medal_military: {
    keywords: [ "award", "winning", "army" ],
    char: "\ud83c\udf96",
    fitzpatrick_scale: false,
    category: "activity"
  },
  "1st_place_medal": {
    keywords: [ "award", "winning", "first" ],
    char: "\ud83e\udd47",
    fitzpatrick_scale: false,
    category: "activity"
  },
  "2nd_place_medal": {
    keywords: [ "award", "second" ],
    char: "\ud83e\udd48",
    fitzpatrick_scale: false,
    category: "activity"
  },
  "3rd_place_medal": {
    keywords: [ "award", "third" ],
    char: "\ud83e\udd49",
    fitzpatrick_scale: false,
    category: "activity"
  },
  reminder_ribbon: {
    keywords: [ "sports", "cause", "support", "awareness" ],
    char: "\ud83c\udf97",
    fitzpatrick_scale: false,
    category: "activity"
  },
  rosette: {
    keywords: [ "flower", "decoration", "military" ],
    char: "\ud83c\udff5",
    fitzpatrick_scale: false,
    category: "activity"
  },
  ticket: {
    keywords: [ "event", "concert", "pass" ],
    char: "\ud83c\udfab",
    fitzpatrick_scale: false,
    category: "activity"
  },
  tickets: {
    keywords: [ "sports", "concert", "entrance" ],
    char: "\ud83c\udf9f",
    fitzpatrick_scale: false,
    category: "activity"
  },
  performing_arts: {
    keywords: [ "acting", "theater", "drama" ],
    char: "\ud83c\udfad",
    fitzpatrick_scale: false,
    category: "activity"
  },
  art: {
    keywords: [ "design", "paint", "draw", "colors" ],
    char: "\ud83c\udfa8",
    fitzpatrick_scale: false,
    category: "activity"
  },
  circus_tent: {
    keywords: [ "festival", "carnival", "party" ],
    char: "\ud83c\udfaa",
    fitzpatrick_scale: false,
    category: "activity"
  },
  woman_juggling: {
    keywords: [ "juggle", "balance", "skill", "multitask" ],
    char: "\ud83e\udd39\u200d\u2640\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  man_juggling: {
    keywords: [ "juggle", "balance", "skill", "multitask" ],
    char: "\ud83e\udd39\u200d\u2642\ufe0f",
    fitzpatrick_scale: true,
    category: "activity"
  },
  microphone: {
    keywords: [ "sound", "music", "PA", "sing", "talkshow" ],
    char: "\ud83c\udfa4",
    fitzpatrick_scale: false,
    category: "activity"
  },
  headphones: {
    keywords: [ "music", "score", "gadgets" ],
    char: "\ud83c\udfa7",
    fitzpatrick_scale: false,
    category: "activity"
  },
  musical_score: {
    keywords: [ "treble", "clef", "compose" ],
    char: "\ud83c\udfbc",
    fitzpatrick_scale: false,
    category: "activity"
  },
  musical_keyboard: {
    keywords: [ "piano", "instrument", "compose" ],
    char: "\ud83c\udfb9",
    fitzpatrick_scale: false,
    category: "activity"
  },
  drum: {
    keywords: [ "music", "instrument", "drumsticks", "snare" ],
    char: "\ud83e\udd41",
    fitzpatrick_scale: false,
    category: "activity"
  },
  saxophone: {
    keywords: [ "music", "instrument", "jazz", "blues" ],
    char: "\ud83c\udfb7",
    fitzpatrick_scale: false,
    category: "activity"
  },
  trumpet: {
    keywords: [ "music", "brass" ],
    char: "\ud83c\udfba",
    fitzpatrick_scale: false,
    category: "activity"
  },
  guitar: {
    keywords: [ "music", "instrument" ],
    char: "\ud83c\udfb8",
    fitzpatrick_scale: false,
    category: "activity"
  },
  violin: {
    keywords: [ "music", "instrument", "orchestra", "symphony" ],
    char: "\ud83c\udfbb",
    fitzpatrick_scale: false,
    category: "activity"
  },
  clapper: {
    keywords: [ "movie", "film", "record" ],
    char: "\ud83c\udfac",
    fitzpatrick_scale: false,
    category: "activity"
  },
  video_game: {
    keywords: [ "play", "console", "PS4", "controller" ],
    char: "\ud83c\udfae",
    fitzpatrick_scale: false,
    category: "activity"
  },
  space_invader: {
    keywords: [ "game", "arcade", "play" ],
    char: "\ud83d\udc7e",
    fitzpatrick_scale: false,
    category: "activity"
  },
  dart: {
    keywords: [ "game", "play", "bar", "target", "bullseye" ],
    char: "\ud83c\udfaf",
    fitzpatrick_scale: false,
    category: "activity"
  },
  game_die: {
    keywords: [ "dice", "random", "tabletop", "play", "luck" ],
    char: "\ud83c\udfb2",
    fitzpatrick_scale: false,
    category: "activity"
  },
  chess_pawn: {
    keywords: [ "expendable" ],
    char: "\u265f",
    fitzpatrick_scale: false,
    category: "activity"
  },
  slot_machine: {
    keywords: [ "bet", "gamble", "vegas", "fruit machine", "luck", "casino" ],
    char: "\ud83c\udfb0",
    fitzpatrick_scale: false,
    category: "activity"
  },
  jigsaw: {
    keywords: [ "interlocking", "puzzle", "piece" ],
    char: "\ud83e\udde9",
    fitzpatrick_scale: false,
    category: "activity"
  },
  bowling: {
    keywords: [ "sports", "fun", "play" ],
    char: "\ud83c\udfb3",
    fitzpatrick_scale: false,
    category: "activity"
  },
  red_car: {
    keywords: [ "red", "transportation", "vehicle" ],
    char: "\ud83d\ude97",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  taxi: {
    keywords: [ "uber", "vehicle", "cars", "transportation" ],
    char: "\ud83d\ude95",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  blue_car: {
    keywords: [ "transportation", "vehicle" ],
    char: "\ud83d\ude99",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  bus: {
    keywords: [ "car", "vehicle", "transportation" ],
    char: "\ud83d\ude8c",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  trolleybus: {
    keywords: [ "bart", "transportation", "vehicle" ],
    char: "\ud83d\ude8e",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  racing_car: {
    keywords: [ "sports", "race", "fast", "formula", "f1" ],
    char: "\ud83c\udfce",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  police_car: {
    keywords: [ "vehicle", "cars", "transportation", "law", "legal", "enforcement" ],
    char: "\ud83d\ude93",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  ambulance: {
    keywords: [ "health", "911", "hospital" ],
    char: "\ud83d\ude91",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  fire_engine: {
    keywords: [ "transportation", "cars", "vehicle" ],
    char: "\ud83d\ude92",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  minibus: {
    keywords: [ "vehicle", "car", "transportation" ],
    char: "\ud83d\ude90",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  truck: {
    keywords: [ "cars", "transportation" ],
    char: "\ud83d\ude9a",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  articulated_lorry: {
    keywords: [ "vehicle", "cars", "transportation", "express" ],
    char: "\ud83d\ude9b",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  tractor: {
    keywords: [ "vehicle", "car", "farming", "agriculture" ],
    char: "\ud83d\ude9c",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  kick_scooter: {
    keywords: [ "vehicle", "kick", "razor" ],
    char: "\ud83d\udef4",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  motorcycle: {
    keywords: [ "race", "sports", "fast" ],
    char: "\ud83c\udfcd",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  bike: {
    keywords: [ "sports", "bicycle", "exercise", "hipster" ],
    char: "\ud83d\udeb2",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  motor_scooter: {
    keywords: [ "vehicle", "vespa", "sasha" ],
    char: "\ud83d\udef5",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  rotating_light: {
    keywords: [ "police", "ambulance", "911", "emergency", "alert", "error", "pinged", "law", "legal" ],
    char: "\ud83d\udea8",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  oncoming_police_car: {
    keywords: [ "vehicle", "law", "legal", "enforcement", "911" ],
    char: "\ud83d\ude94",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  oncoming_bus: {
    keywords: [ "vehicle", "transportation" ],
    char: "\ud83d\ude8d",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  oncoming_automobile: {
    keywords: [ "car", "vehicle", "transportation" ],
    char: "\ud83d\ude98",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  oncoming_taxi: {
    keywords: [ "vehicle", "cars", "uber" ],
    char: "\ud83d\ude96",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  aerial_tramway: {
    keywords: [ "transportation", "vehicle", "ski" ],
    char: "\ud83d\udea1",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  mountain_cableway: {
    keywords: [ "transportation", "vehicle", "ski" ],
    char: "\ud83d\udea0",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  suspension_railway: {
    keywords: [ "vehicle", "transportation" ],
    char: "\ud83d\ude9f",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  railway_car: {
    keywords: [ "transportation", "vehicle" ],
    char: "\ud83d\ude83",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  train: {
    keywords: [ "transportation", "vehicle", "carriage", "public", "travel" ],
    char: "\ud83d\ude8b",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  monorail: {
    keywords: [ "transportation", "vehicle" ],
    char: "\ud83d\ude9d",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  bullettrain_side: {
    keywords: [ "transportation", "vehicle" ],
    char: "\ud83d\ude84",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  bullettrain_front: {
    keywords: [ "transportation", "vehicle", "speed", "fast", "public", "travel" ],
    char: "\ud83d\ude85",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  light_rail: {
    keywords: [ "transportation", "vehicle" ],
    char: "\ud83d\ude88",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  mountain_railway: {
    keywords: [ "transportation", "vehicle" ],
    char: "\ud83d\ude9e",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  steam_locomotive: {
    keywords: [ "transportation", "vehicle", "train" ],
    char: "\ud83d\ude82",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  train2: {
    keywords: [ "transportation", "vehicle" ],
    char: "\ud83d\ude86",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  metro: {
    keywords: [ "transportation", "blue-square", "mrt", "underground", "tube" ],
    char: "\ud83d\ude87",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  tram: {
    keywords: [ "transportation", "vehicle" ],
    char: "\ud83d\ude8a",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  station: {
    keywords: [ "transportation", "vehicle", "public" ],
    char: "\ud83d\ude89",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  flying_saucer: {
    keywords: [ "transportation", "vehicle", "ufo" ],
    char: "\ud83d\udef8",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  helicopter: {
    keywords: [ "transportation", "vehicle", "fly" ],
    char: "\ud83d\ude81",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  small_airplane: {
    keywords: [ "flight", "transportation", "fly", "vehicle" ],
    char: "\ud83d\udee9",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  airplane: {
    keywords: [ "vehicle", "transportation", "flight", "fly" ],
    char: "\u2708\ufe0f",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  flight_departure: {
    keywords: [ "airport", "flight", "landing" ],
    char: "\ud83d\udeeb",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  flight_arrival: {
    keywords: [ "airport", "flight", "boarding" ],
    char: "\ud83d\udeec",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  sailboat: {
    keywords: [ "ship", "summer", "transportation", "water", "sailing" ],
    char: "\u26f5",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  motor_boat: {
    keywords: [ "ship" ],
    char: "\ud83d\udee5",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  speedboat: {
    keywords: [ "ship", "transportation", "vehicle", "summer" ],
    char: "\ud83d\udea4",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  ferry: {
    keywords: [ "boat", "ship", "yacht" ],
    char: "\u26f4",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  passenger_ship: {
    keywords: [ "yacht", "cruise", "ferry" ],
    char: "\ud83d\udef3",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  rocket: {
    keywords: [ "launch", "ship", "staffmode", "NASA", "outer space", "outer_space", "fly" ],
    char: "\ud83d\ude80",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  artificial_satellite: {
    keywords: [ "communication", "gps", "orbit", "spaceflight", "NASA", "ISS" ],
    char: "\ud83d\udef0",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  seat: {
    keywords: [ "sit", "airplane", "transport", "bus", "flight", "fly" ],
    char: "\ud83d\udcba",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  canoe: {
    keywords: [ "boat", "paddle", "water", "ship" ],
    char: "\ud83d\udef6",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  anchor: {
    keywords: [ "ship", "ferry", "sea", "boat" ],
    char: "\u2693",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  construction: {
    keywords: [ "wip", "progress", "caution", "warning" ],
    char: "\ud83d\udea7",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  fuelpump: {
    keywords: [ "gas station", "petroleum" ],
    char: "\u26fd",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  busstop: {
    keywords: [ "transportation", "wait" ],
    char: "\ud83d\ude8f",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  vertical_traffic_light: {
    keywords: [ "transportation", "driving" ],
    char: "\ud83d\udea6",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  traffic_light: {
    keywords: [ "transportation", "signal" ],
    char: "\ud83d\udea5",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  checkered_flag: {
    keywords: [ "contest", "finishline", "race", "gokart" ],
    char: "\ud83c\udfc1",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  ship: {
    keywords: [ "transportation", "titanic", "deploy" ],
    char: "\ud83d\udea2",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  ferris_wheel: {
    keywords: [ "photo", "carnival", "londoneye" ],
    char: "\ud83c\udfa1",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  roller_coaster: {
    keywords: [ "carnival", "playground", "photo", "fun" ],
    char: "\ud83c\udfa2",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  carousel_horse: {
    keywords: [ "photo", "carnival" ],
    char: "\ud83c\udfa0",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  building_construction: {
    keywords: [ "wip", "working", "progress" ],
    char: "\ud83c\udfd7",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  foggy: {
    keywords: [ "photo", "mountain" ],
    char: "\ud83c\udf01",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  tokyo_tower: {
    keywords: [ "photo", "japanese" ],
    char: "\ud83d\uddfc",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  factory: {
    keywords: [ "building", "industry", "pollution", "smoke" ],
    char: "\ud83c\udfed",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  fountain: {
    keywords: [ "photo", "summer", "water", "fresh" ],
    char: "\u26f2",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  rice_scene: {
    keywords: [ "photo", "japan", "asia", "tsukimi" ],
    char: "\ud83c\udf91",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  mountain: {
    keywords: [ "photo", "nature", "environment" ],
    char: "\u26f0",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  mountain_snow: {
    keywords: [ "photo", "nature", "environment", "winter", "cold" ],
    char: "\ud83c\udfd4",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  mount_fuji: {
    keywords: [ "photo", "mountain", "nature", "japanese" ],
    char: "\ud83d\uddfb",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  volcano: {
    keywords: [ "photo", "nature", "disaster" ],
    char: "\ud83c\udf0b",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  japan: {
    keywords: [ "nation", "country", "japanese", "asia" ],
    char: "\ud83d\uddfe",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  camping: {
    keywords: [ "photo", "outdoors", "tent" ],
    char: "\ud83c\udfd5",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  tent: {
    keywords: [ "photo", "camping", "outdoors" ],
    char: "\u26fa",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  national_park: {
    keywords: [ "photo", "environment", "nature" ],
    char: "\ud83c\udfde",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  motorway: {
    keywords: [ "road", "cupertino", "interstate", "highway" ],
    char: "\ud83d\udee3",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  railway_track: {
    keywords: [ "train", "transportation" ],
    char: "\ud83d\udee4",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  sunrise: {
    keywords: [ "morning", "view", "vacation", "photo" ],
    char: "\ud83c\udf05",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  sunrise_over_mountains: {
    keywords: [ "view", "vacation", "photo" ],
    char: "\ud83c\udf04",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  desert: {
    keywords: [ "photo", "warm", "saharah" ],
    char: "\ud83c\udfdc",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  beach_umbrella: {
    keywords: [ "weather", "summer", "sunny", "sand", "mojito" ],
    char: "\ud83c\udfd6",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  desert_island: {
    keywords: [ "photo", "tropical", "mojito" ],
    char: "\ud83c\udfdd",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  city_sunrise: {
    keywords: [ "photo", "good morning", "dawn" ],
    char: "\ud83c\udf07",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  city_sunset: {
    keywords: [ "photo", "evening", "sky", "buildings" ],
    char: "\ud83c\udf06",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  cityscape: {
    keywords: [ "photo", "night life", "urban" ],
    char: "\ud83c\udfd9",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  night_with_stars: {
    keywords: [ "evening", "city", "downtown" ],
    char: "\ud83c\udf03",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  bridge_at_night: {
    keywords: [ "photo", "sanfrancisco" ],
    char: "\ud83c\udf09",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  milky_way: {
    keywords: [ "photo", "space", "stars" ],
    char: "\ud83c\udf0c",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  stars: {
    keywords: [ "night", "photo" ],
    char: "\ud83c\udf20",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  sparkler: {
    keywords: [ "stars", "night", "shine" ],
    char: "\ud83c\udf87",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  fireworks: {
    keywords: [ "photo", "festival", "carnival", "congratulations" ],
    char: "\ud83c\udf86",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  rainbow: {
    keywords: [ "nature", "happy", "unicorn_face", "photo", "sky", "spring" ],
    char: "\ud83c\udf08",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  houses: {
    keywords: [ "buildings", "photo" ],
    char: "\ud83c\udfd8",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  european_castle: {
    keywords: [ "building", "royalty", "history" ],
    char: "\ud83c\udff0",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  japanese_castle: {
    keywords: [ "photo", "building" ],
    char: "\ud83c\udfef",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  stadium: {
    keywords: [ "photo", "place", "sports", "concert", "venue" ],
    char: "\ud83c\udfdf",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  statue_of_liberty: {
    keywords: [ "american", "newyork" ],
    char: "\ud83d\uddfd",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  house: {
    keywords: [ "building", "home" ],
    char: "\ud83c\udfe0",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  house_with_garden: {
    keywords: [ "home", "plant", "nature" ],
    char: "\ud83c\udfe1",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  derelict_house: {
    keywords: [ "abandon", "evict", "broken", "building" ],
    char: "\ud83c\udfda",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  office: {
    keywords: [ "building", "bureau", "work" ],
    char: "\ud83c\udfe2",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  department_store: {
    keywords: [ "building", "shopping", "mall" ],
    char: "\ud83c\udfec",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  post_office: {
    keywords: [ "building", "envelope", "communication" ],
    char: "\ud83c\udfe3",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  european_post_office: {
    keywords: [ "building", "email" ],
    char: "\ud83c\udfe4",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  hospital: {
    keywords: [ "building", "health", "surgery", "doctor" ],
    char: "\ud83c\udfe5",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  bank: {
    keywords: [ "building", "money", "sales", "cash", "business", "enterprise" ],
    char: "\ud83c\udfe6",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  hotel: {
    keywords: [ "building", "accomodation", "checkin" ],
    char: "\ud83c\udfe8",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  convenience_store: {
    keywords: [ "building", "shopping", "groceries" ],
    char: "\ud83c\udfea",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  school: {
    keywords: [ "building", "student", "education", "learn", "teach" ],
    char: "\ud83c\udfeb",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  love_hotel: {
    keywords: [ "like", "affection", "dating" ],
    char: "\ud83c\udfe9",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  wedding: {
    keywords: [ "love", "like", "affection", "couple", "marriage", "bride", "groom" ],
    char: "\ud83d\udc92",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  classical_building: {
    keywords: [ "art", "culture", "history" ],
    char: "\ud83c\udfdb",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  church: {
    keywords: [ "building", "religion", "christ" ],
    char: "\u26ea",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  mosque: {
    keywords: [ "islam", "worship", "minaret" ],
    char: "\ud83d\udd4c",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  synagogue: {
    keywords: [ "judaism", "worship", "temple", "jewish" ],
    char: "\ud83d\udd4d",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  kaaba: {
    keywords: [ "mecca", "mosque", "islam" ],
    char: "\ud83d\udd4b",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  shinto_shrine: {
    keywords: [ "temple", "japan", "kyoto" ],
    char: "\u26e9",
    fitzpatrick_scale: false,
    category: "travel_and_places"
  },
  watch: {
    keywords: [ "time", "accessories" ],
    char: "\u231a",
    fitzpatrick_scale: false,
    category: "objects"
  },
  iphone: {
    keywords: [ "technology", "apple", "gadgets", "dial" ],
    char: "\ud83d\udcf1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  calling: {
    keywords: [ "iphone", "incoming" ],
    char: "\ud83d\udcf2",
    fitzpatrick_scale: false,
    category: "objects"
  },
  computer: {
    keywords: [ "technology", "laptop", "screen", "display", "monitor" ],
    char: "\ud83d\udcbb",
    fitzpatrick_scale: false,
    category: "objects"
  },
  keyboard: {
    keywords: [ "technology", "computer", "type", "input", "text" ],
    char: "\u2328",
    fitzpatrick_scale: false,
    category: "objects"
  },
  desktop_computer: {
    keywords: [ "technology", "computing", "screen" ],
    char: "\ud83d\udda5",
    fitzpatrick_scale: false,
    category: "objects"
  },
  printer: {
    keywords: [ "paper", "ink" ],
    char: "\ud83d\udda8",
    fitzpatrick_scale: false,
    category: "objects"
  },
  computer_mouse: {
    keywords: [ "click" ],
    char: "\ud83d\uddb1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  trackball: {
    keywords: [ "technology", "trackpad" ],
    char: "\ud83d\uddb2",
    fitzpatrick_scale: false,
    category: "objects"
  },
  joystick: {
    keywords: [ "game", "play" ],
    char: "\ud83d\udd79",
    fitzpatrick_scale: false,
    category: "objects"
  },
  clamp: {
    keywords: [ "tool" ],
    char: "\ud83d\udddc",
    fitzpatrick_scale: false,
    category: "objects"
  },
  minidisc: {
    keywords: [ "technology", "record", "data", "disk", "90s" ],
    char: "\ud83d\udcbd",
    fitzpatrick_scale: false,
    category: "objects"
  },
  floppy_disk: {
    keywords: [ "oldschool", "technology", "save", "90s", "80s" ],
    char: "\ud83d\udcbe",
    fitzpatrick_scale: false,
    category: "objects"
  },
  cd: {
    keywords: [ "technology", "dvd", "disk", "disc", "90s" ],
    char: "\ud83d\udcbf",
    fitzpatrick_scale: false,
    category: "objects"
  },
  dvd: {
    keywords: [ "cd", "disk", "disc" ],
    char: "\ud83d\udcc0",
    fitzpatrick_scale: false,
    category: "objects"
  },
  vhs: {
    keywords: [ "record", "video", "oldschool", "90s", "80s" ],
    char: "\ud83d\udcfc",
    fitzpatrick_scale: false,
    category: "objects"
  },
  camera: {
    keywords: [ "gadgets", "photography" ],
    char: "\ud83d\udcf7",
    fitzpatrick_scale: false,
    category: "objects"
  },
  camera_flash: {
    keywords: [ "photography", "gadgets" ],
    char: "\ud83d\udcf8",
    fitzpatrick_scale: false,
    category: "objects"
  },
  video_camera: {
    keywords: [ "film", "record" ],
    char: "\ud83d\udcf9",
    fitzpatrick_scale: false,
    category: "objects"
  },
  movie_camera: {
    keywords: [ "film", "record" ],
    char: "\ud83c\udfa5",
    fitzpatrick_scale: false,
    category: "objects"
  },
  film_projector: {
    keywords: [ "video", "tape", "record", "movie" ],
    char: "\ud83d\udcfd",
    fitzpatrick_scale: false,
    category: "objects"
  },
  film_strip: {
    keywords: [ "movie" ],
    char: "\ud83c\udf9e",
    fitzpatrick_scale: false,
    category: "objects"
  },
  telephone_receiver: {
    keywords: [ "technology", "communication", "dial" ],
    char: "\ud83d\udcde",
    fitzpatrick_scale: false,
    category: "objects"
  },
  phone: {
    keywords: [ "technology", "communication", "dial", "telephone" ],
    char: "\u260e\ufe0f",
    fitzpatrick_scale: false,
    category: "objects"
  },
  pager: {
    keywords: [ "bbcall", "oldschool", "90s" ],
    char: "\ud83d\udcdf",
    fitzpatrick_scale: false,
    category: "objects"
  },
  fax: {
    keywords: [ "communication", "technology" ],
    char: "\ud83d\udce0",
    fitzpatrick_scale: false,
    category: "objects"
  },
  tv: {
    keywords: [ "technology", "program", "oldschool", "show", "television" ],
    char: "\ud83d\udcfa",
    fitzpatrick_scale: false,
    category: "objects"
  },
  radio: {
    keywords: [ "communication", "music", "podcast", "program" ],
    char: "\ud83d\udcfb",
    fitzpatrick_scale: false,
    category: "objects"
  },
  studio_microphone: {
    keywords: [ "sing", "recording", "artist", "talkshow" ],
    char: "\ud83c\udf99",
    fitzpatrick_scale: false,
    category: "objects"
  },
  level_slider: {
    keywords: [ "scale" ],
    char: "\ud83c\udf9a",
    fitzpatrick_scale: false,
    category: "objects"
  },
  control_knobs: {
    keywords: [ "dial" ],
    char: "\ud83c\udf9b",
    fitzpatrick_scale: false,
    category: "objects"
  },
  compass: {
    keywords: [ "magnetic", "navigation", "orienteering" ],
    char: "\ud83e\udded",
    fitzpatrick_scale: false,
    category: "objects"
  },
  stopwatch: {
    keywords: [ "time", "deadline" ],
    char: "\u23f1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  timer_clock: {
    keywords: [ "alarm" ],
    char: "\u23f2",
    fitzpatrick_scale: false,
    category: "objects"
  },
  alarm_clock: {
    keywords: [ "time", "wake" ],
    char: "\u23f0",
    fitzpatrick_scale: false,
    category: "objects"
  },
  mantelpiece_clock: {
    keywords: [ "time" ],
    char: "\ud83d\udd70",
    fitzpatrick_scale: false,
    category: "objects"
  },
  hourglass_flowing_sand: {
    keywords: [ "oldschool", "time", "countdown" ],
    char: "\u23f3",
    fitzpatrick_scale: false,
    category: "objects"
  },
  hourglass: {
    keywords: [ "time", "clock", "oldschool", "limit", "exam", "quiz", "test" ],
    char: "\u231b",
    fitzpatrick_scale: false,
    category: "objects"
  },
  satellite: {
    keywords: [ "communication", "future", "radio", "space" ],
    char: "\ud83d\udce1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  battery: {
    keywords: [ "power", "energy", "sustain" ],
    char: "\ud83d\udd0b",
    fitzpatrick_scale: false,
    category: "objects"
  },
  electric_plug: {
    keywords: [ "charger", "power" ],
    char: "\ud83d\udd0c",
    fitzpatrick_scale: false,
    category: "objects"
  },
  bulb: {
    keywords: [ "light", "electricity", "idea" ],
    char: "\ud83d\udca1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  flashlight: {
    keywords: [ "dark", "camping", "sight", "night" ],
    char: "\ud83d\udd26",
    fitzpatrick_scale: false,
    category: "objects"
  },
  candle: {
    keywords: [ "fire", "wax" ],
    char: "\ud83d\udd6f",
    fitzpatrick_scale: false,
    category: "objects"
  },
  fire_extinguisher: {
    keywords: [ "quench" ],
    char: "\ud83e\uddef",
    fitzpatrick_scale: false,
    category: "objects"
  },
  wastebasket: {
    keywords: [ "bin", "trash", "rubbish", "garbage", "toss" ],
    char: "\ud83d\uddd1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  oil_drum: {
    keywords: [ "barrell" ],
    char: "\ud83d\udee2",
    fitzpatrick_scale: false,
    category: "objects"
  },
  money_with_wings: {
    keywords: [ "dollar", "bills", "payment", "sale" ],
    char: "\ud83d\udcb8",
    fitzpatrick_scale: false,
    category: "objects"
  },
  dollar: {
    keywords: [ "money", "sales", "bill", "currency" ],
    char: "\ud83d\udcb5",
    fitzpatrick_scale: false,
    category: "objects"
  },
  yen: {
    keywords: [ "money", "sales", "japanese", "dollar", "currency" ],
    char: "\ud83d\udcb4",
    fitzpatrick_scale: false,
    category: "objects"
  },
  euro: {
    keywords: [ "money", "sales", "dollar", "currency" ],
    char: "\ud83d\udcb6",
    fitzpatrick_scale: false,
    category: "objects"
  },
  pound: {
    keywords: [ "british", "sterling", "money", "sales", "bills", "uk", "england", "currency" ],
    char: "\ud83d\udcb7",
    fitzpatrick_scale: false,
    category: "objects"
  },
  moneybag: {
    keywords: [ "dollar", "payment", "coins", "sale" ],
    char: "\ud83d\udcb0",
    fitzpatrick_scale: false,
    category: "objects"
  },
  credit_card: {
    keywords: [ "money", "sales", "dollar", "bill", "payment", "shopping" ],
    char: "\ud83d\udcb3",
    fitzpatrick_scale: false,
    category: "objects"
  },
  gem: {
    keywords: [ "blue", "ruby", "diamond", "jewelry" ],
    char: "\ud83d\udc8e",
    fitzpatrick_scale: false,
    category: "objects"
  },
  balance_scale: {
    keywords: [ "law", "fairness", "weight" ],
    char: "\u2696",
    fitzpatrick_scale: false,
    category: "objects"
  },
  toolbox: {
    keywords: [ "tools", "diy", "fix", "maintainer", "mechanic" ],
    char: "\ud83e\uddf0",
    fitzpatrick_scale: false,
    category: "objects"
  },
  wrench: {
    keywords: [ "tools", "diy", "ikea", "fix", "maintainer" ],
    char: "\ud83d\udd27",
    fitzpatrick_scale: false,
    category: "objects"
  },
  hammer: {
    keywords: [ "tools", "build", "create" ],
    char: "\ud83d\udd28",
    fitzpatrick_scale: false,
    category: "objects"
  },
  hammer_and_pick: {
    keywords: [ "tools", "build", "create" ],
    char: "\u2692",
    fitzpatrick_scale: false,
    category: "objects"
  },
  hammer_and_wrench: {
    keywords: [ "tools", "build", "create" ],
    char: "\ud83d\udee0",
    fitzpatrick_scale: false,
    category: "objects"
  },
  pick: {
    keywords: [ "tools", "dig" ],
    char: "\u26cf",
    fitzpatrick_scale: false,
    category: "objects"
  },
  nut_and_bolt: {
    keywords: [ "handy", "tools", "fix" ],
    char: "\ud83d\udd29",
    fitzpatrick_scale: false,
    category: "objects"
  },
  gear: {
    keywords: [ "cog" ],
    char: "\u2699",
    fitzpatrick_scale: false,
    category: "objects"
  },
  brick: {
    keywords: [ "bricks" ],
    char: "\ud83e\uddf1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  chains: {
    keywords: [ "lock", "arrest" ],
    char: "\u26d3",
    fitzpatrick_scale: false,
    category: "objects"
  },
  magnet: {
    keywords: [ "attraction", "magnetic" ],
    char: "\ud83e\uddf2",
    fitzpatrick_scale: false,
    category: "objects"
  },
  gun: {
    keywords: [ "violence", "weapon", "pistol", "revolver" ],
    char: "\ud83d\udd2b",
    fitzpatrick_scale: false,
    category: "objects"
  },
  bomb: {
    keywords: [ "boom", "explode", "explosion", "terrorism" ],
    char: "\ud83d\udca3",
    fitzpatrick_scale: false,
    category: "objects"
  },
  firecracker: {
    keywords: [ "dynamite", "boom", "explode", "explosion", "explosive" ],
    char: "\ud83e\udde8",
    fitzpatrick_scale: false,
    category: "objects"
  },
  hocho: {
    keywords: [ "knife", "blade", "cutlery", "kitchen", "weapon" ],
    char: "\ud83d\udd2a",
    fitzpatrick_scale: false,
    category: "objects"
  },
  dagger: {
    keywords: [ "weapon" ],
    char: "\ud83d\udde1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  crossed_swords: {
    keywords: [ "weapon" ],
    char: "\u2694",
    fitzpatrick_scale: false,
    category: "objects"
  },
  shield: {
    keywords: [ "protection", "security" ],
    char: "\ud83d\udee1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  smoking: {
    keywords: [ "kills", "tobacco", "cigarette", "joint", "smoke" ],
    char: "\ud83d\udeac",
    fitzpatrick_scale: false,
    category: "objects"
  },
  skull_and_crossbones: {
    keywords: [ "poison", "danger", "deadly", "scary", "death", "pirate", "evil" ],
    char: "\u2620",
    fitzpatrick_scale: false,
    category: "objects"
  },
  coffin: {
    keywords: [ "vampire", "dead", "die", "death", "rip", "graveyard", "cemetery", "casket", "funeral", "box" ],
    char: "\u26b0",
    fitzpatrick_scale: false,
    category: "objects"
  },
  funeral_urn: {
    keywords: [ "dead", "die", "death", "rip", "ashes" ],
    char: "\u26b1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  amphora: {
    keywords: [ "vase", "jar" ],
    char: "\ud83c\udffa",
    fitzpatrick_scale: false,
    category: "objects"
  },
  crystal_ball: {
    keywords: [ "disco", "party", "magic", "circus", "fortune_teller" ],
    char: "\ud83d\udd2e",
    fitzpatrick_scale: false,
    category: "objects"
  },
  prayer_beads: {
    keywords: [ "dhikr", "religious" ],
    char: "\ud83d\udcff",
    fitzpatrick_scale: false,
    category: "objects"
  },
  nazar_amulet: {
    keywords: [ "bead", "charm" ],
    char: "\ud83e\uddff",
    fitzpatrick_scale: false,
    category: "objects"
  },
  barber: {
    keywords: [ "hair", "salon", "style" ],
    char: "\ud83d\udc88",
    fitzpatrick_scale: false,
    category: "objects"
  },
  alembic: {
    keywords: [ "distilling", "science", "experiment", "chemistry" ],
    char: "\u2697",
    fitzpatrick_scale: false,
    category: "objects"
  },
  telescope: {
    keywords: [ "stars", "space", "zoom", "science", "astronomy" ],
    char: "\ud83d\udd2d",
    fitzpatrick_scale: false,
    category: "objects"
  },
  microscope: {
    keywords: [ "laboratory", "experiment", "zoomin", "science", "study" ],
    char: "\ud83d\udd2c",
    fitzpatrick_scale: false,
    category: "objects"
  },
  hole: {
    keywords: [ "embarrassing" ],
    char: "\ud83d\udd73",
    fitzpatrick_scale: false,
    category: "objects"
  },
  pill: {
    keywords: [ "health", "medicine", "doctor", "pharmacy", "drug" ],
    char: "\ud83d\udc8a",
    fitzpatrick_scale: false,
    category: "objects"
  },
  syringe: {
    keywords: [ "health", "hospital", "drugs", "blood", "medicine", "needle", "doctor", "nurse" ],
    char: "\ud83d\udc89",
    fitzpatrick_scale: false,
    category: "objects"
  },
  dna: {
    keywords: [ "biologist", "genetics", "life" ],
    char: "\ud83e\uddec",
    fitzpatrick_scale: false,
    category: "objects"
  },
  microbe: {
    keywords: [ "amoeba", "bacteria", "germs" ],
    char: "\ud83e\udda0",
    fitzpatrick_scale: false,
    category: "objects"
  },
  petri_dish: {
    keywords: [ "bacteria", "biology", "culture", "lab" ],
    char: "\ud83e\uddeb",
    fitzpatrick_scale: false,
    category: "objects"
  },
  test_tube: {
    keywords: [ "chemistry", "experiment", "lab", "science" ],
    char: "\ud83e\uddea",
    fitzpatrick_scale: false,
    category: "objects"
  },
  thermometer: {
    keywords: [ "weather", "temperature", "hot", "cold" ],
    char: "\ud83c\udf21",
    fitzpatrick_scale: false,
    category: "objects"
  },
  broom: {
    keywords: [ "cleaning", "sweeping", "witch" ],
    char: "\ud83e\uddf9",
    fitzpatrick_scale: false,
    category: "objects"
  },
  basket: {
    keywords: [ "laundry" ],
    char: "\ud83e\uddfa",
    fitzpatrick_scale: false,
    category: "objects"
  },
  toilet_paper: {
    keywords: [ "roll" ],
    char: "\ud83e\uddfb",
    fitzpatrick_scale: false,
    category: "objects"
  },
  label: {
    keywords: [ "sale", "tag" ],
    char: "\ud83c\udff7",
    fitzpatrick_scale: false,
    category: "objects"
  },
  bookmark: {
    keywords: [ "favorite", "label", "save" ],
    char: "\ud83d\udd16",
    fitzpatrick_scale: false,
    category: "objects"
  },
  toilet: {
    keywords: [ "restroom", "wc", "washroom", "bathroom", "potty" ],
    char: "\ud83d\udebd",
    fitzpatrick_scale: false,
    category: "objects"
  },
  shower: {
    keywords: [ "clean", "water", "bathroom" ],
    char: "\ud83d\udebf",
    fitzpatrick_scale: false,
    category: "objects"
  },
  bathtub: {
    keywords: [ "clean", "shower", "bathroom" ],
    char: "\ud83d\udec1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  soap: {
    keywords: [ "bar", "bathing", "cleaning", "lather" ],
    char: "\ud83e\uddfc",
    fitzpatrick_scale: false,
    category: "objects"
  },
  sponge: {
    keywords: [ "absorbing", "cleaning", "porous" ],
    char: "\ud83e\uddfd",
    fitzpatrick_scale: false,
    category: "objects"
  },
  lotion_bottle: {
    keywords: [ "moisturizer", "sunscreen" ],
    char: "\ud83e\uddf4",
    fitzpatrick_scale: false,
    category: "objects"
  },
  key: {
    keywords: [ "lock", "door", "password" ],
    char: "\ud83d\udd11",
    fitzpatrick_scale: false,
    category: "objects"
  },
  old_key: {
    keywords: [ "lock", "door", "password" ],
    char: "\ud83d\udddd",
    fitzpatrick_scale: false,
    category: "objects"
  },
  couch_and_lamp: {
    keywords: [ "read", "chill" ],
    char: "\ud83d\udecb",
    fitzpatrick_scale: false,
    category: "objects"
  },
  sleeping_bed: {
    keywords: [ "bed", "rest" ],
    char: "\ud83d\udecc",
    fitzpatrick_scale: true,
    category: "objects"
  },
  bed: {
    keywords: [ "sleep", "rest" ],
    char: "\ud83d\udecf",
    fitzpatrick_scale: false,
    category: "objects"
  },
  door: {
    keywords: [ "house", "entry", "exit" ],
    char: "\ud83d\udeaa",
    fitzpatrick_scale: false,
    category: "objects"
  },
  bellhop_bell: {
    keywords: [ "service" ],
    char: "\ud83d\udece",
    fitzpatrick_scale: false,
    category: "objects"
  },
  teddy_bear: {
    keywords: [ "plush", "stuffed" ],
    char: "\ud83e\uddf8",
    fitzpatrick_scale: false,
    category: "objects"
  },
  framed_picture: {
    keywords: [ "photography" ],
    char: "\ud83d\uddbc",
    fitzpatrick_scale: false,
    category: "objects"
  },
  world_map: {
    keywords: [ "location", "direction" ],
    char: "\ud83d\uddfa",
    fitzpatrick_scale: false,
    category: "objects"
  },
  parasol_on_ground: {
    keywords: [ "weather", "summer" ],
    char: "\u26f1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  moyai: {
    keywords: [ "rock", "easter island", "moai" ],
    char: "\ud83d\uddff",
    fitzpatrick_scale: false,
    category: "objects"
  },
  shopping: {
    keywords: [ "mall", "buy", "purchase" ],
    char: "\ud83d\udecd",
    fitzpatrick_scale: false,
    category: "objects"
  },
  shopping_cart: {
    keywords: [ "trolley" ],
    char: "\ud83d\uded2",
    fitzpatrick_scale: false,
    category: "objects"
  },
  balloon: {
    keywords: [ "party", "celebration", "birthday", "circus" ],
    char: "\ud83c\udf88",
    fitzpatrick_scale: false,
    category: "objects"
  },
  flags: {
    keywords: [ "fish", "japanese", "koinobori", "carp", "banner" ],
    char: "\ud83c\udf8f",
    fitzpatrick_scale: false,
    category: "objects"
  },
  ribbon: {
    keywords: [ "decoration", "pink", "girl", "bowtie" ],
    char: "\ud83c\udf80",
    fitzpatrick_scale: false,
    category: "objects"
  },
  gift: {
    keywords: [ "present", "birthday", "christmas", "xmas" ],
    char: "\ud83c\udf81",
    fitzpatrick_scale: false,
    category: "objects"
  },
  confetti_ball: {
    keywords: [ "festival", "party", "birthday", "circus" ],
    char: "\ud83c\udf8a",
    fitzpatrick_scale: false,
    category: "objects"
  },
  tada: {
    keywords: [ "party", "congratulations", "birthday", "magic", "circus", "celebration" ],
    char: "\ud83c\udf89",
    fitzpatrick_scale: false,
    category: "objects"
  },
  dolls: {
    keywords: [ "japanese", "toy", "kimono" ],
    char: "\ud83c\udf8e",
    fitzpatrick_scale: false,
    category: "objects"
  },
  wind_chime: {
    keywords: [ "nature", "ding", "spring", "bell" ],
    char: "\ud83c\udf90",
    fitzpatrick_scale: false,
    category: "objects"
  },
  crossed_flags: {
    keywords: [ "japanese", "nation", "country", "border" ],
    char: "\ud83c\udf8c",
    fitzpatrick_scale: false,
    category: "objects"
  },
  izakaya_lantern: {
    keywords: [ "light", "paper", "halloween", "spooky" ],
    char: "\ud83c\udfee",
    fitzpatrick_scale: false,
    category: "objects"
  },
  red_envelope: {
    keywords: [ "gift" ],
    char: "\ud83e\udde7",
    fitzpatrick_scale: false,
    category: "objects"
  },
  email: {
    keywords: [ "letter", "postal", "inbox", "communication" ],
    char: "\u2709\ufe0f",
    fitzpatrick_scale: false,
    category: "objects"
  },
  envelope_with_arrow: {
    keywords: [ "email", "communication" ],
    char: "\ud83d\udce9",
    fitzpatrick_scale: false,
    category: "objects"
  },
  incoming_envelope: {
    keywords: [ "email", "inbox" ],
    char: "\ud83d\udce8",
    fitzpatrick_scale: false,
    category: "objects"
  },
  "e-mail": {
    keywords: [ "communication", "inbox" ],
    char: "\ud83d\udce7",
    fitzpatrick_scale: false,
    category: "objects"
  },
  love_letter: {
    keywords: [ "email", "like", "affection", "envelope", "valentines" ],
    char: "\ud83d\udc8c",
    fitzpatrick_scale: false,
    category: "objects"
  },
  postbox: {
    keywords: [ "email", "letter", "envelope" ],
    char: "\ud83d\udcee",
    fitzpatrick_scale: false,
    category: "objects"
  },
  mailbox_closed: {
    keywords: [ "email", "communication", "inbox" ],
    char: "\ud83d\udcea",
    fitzpatrick_scale: false,
    category: "objects"
  },
  mailbox: {
    keywords: [ "email", "inbox", "communication" ],
    char: "\ud83d\udceb",
    fitzpatrick_scale: false,
    category: "objects"
  },
  mailbox_with_mail: {
    keywords: [ "email", "inbox", "communication" ],
    char: "\ud83d\udcec",
    fitzpatrick_scale: false,
    category: "objects"
  },
  mailbox_with_no_mail: {
    keywords: [ "email", "inbox" ],
    char: "\ud83d\udced",
    fitzpatrick_scale: false,
    category: "objects"
  },
  package: {
    keywords: [ "mail", "gift", "cardboard", "box", "moving" ],
    char: "\ud83d\udce6",
    fitzpatrick_scale: false,
    category: "objects"
  },
  postal_horn: {
    keywords: [ "instrument", "music" ],
    char: "\ud83d\udcef",
    fitzpatrick_scale: false,
    category: "objects"
  },
  inbox_tray: {
    keywords: [ "email", "documents" ],
    char: "\ud83d\udce5",
    fitzpatrick_scale: false,
    category: "objects"
  },
  outbox_tray: {
    keywords: [ "inbox", "email" ],
    char: "\ud83d\udce4",
    fitzpatrick_scale: false,
    category: "objects"
  },
  scroll: {
    keywords: [ "documents", "ancient", "history", "paper" ],
    char: "\ud83d\udcdc",
    fitzpatrick_scale: false,
    category: "objects"
  },
  page_with_curl: {
    keywords: [ "documents", "office", "paper" ],
    char: "\ud83d\udcc3",
    fitzpatrick_scale: false,
    category: "objects"
  },
  bookmark_tabs: {
    keywords: [ "favorite", "save", "order", "tidy" ],
    char: "\ud83d\udcd1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  receipt: {
    keywords: [ "accounting", "expenses" ],
    char: "\ud83e\uddfe",
    fitzpatrick_scale: false,
    category: "objects"
  },
  bar_chart: {
    keywords: [ "graph", "presentation", "stats" ],
    char: "\ud83d\udcca",
    fitzpatrick_scale: false,
    category: "objects"
  },
  chart_with_upwards_trend: {
    keywords: [ "graph", "presentation", "stats", "recovery", "business", "economics", "money", "sales", "good", "success" ],
    char: "\ud83d\udcc8",
    fitzpatrick_scale: false,
    category: "objects"
  },
  chart_with_downwards_trend: {
    keywords: [ "graph", "presentation", "stats", "recession", "business", "economics", "money", "sales", "bad", "failure" ],
    char: "\ud83d\udcc9",
    fitzpatrick_scale: false,
    category: "objects"
  },
  page_facing_up: {
    keywords: [ "documents", "office", "paper", "information" ],
    char: "\ud83d\udcc4",
    fitzpatrick_scale: false,
    category: "objects"
  },
  date: {
    keywords: [ "calendar", "schedule" ],
    char: "\ud83d\udcc5",
    fitzpatrick_scale: false,
    category: "objects"
  },
  calendar: {
    keywords: [ "schedule", "date", "planning" ],
    char: "\ud83d\udcc6",
    fitzpatrick_scale: false,
    category: "objects"
  },
  spiral_calendar: {
    keywords: [ "date", "schedule", "planning" ],
    char: "\ud83d\uddd3",
    fitzpatrick_scale: false,
    category: "objects"
  },
  card_index: {
    keywords: [ "business", "stationery" ],
    char: "\ud83d\udcc7",
    fitzpatrick_scale: false,
    category: "objects"
  },
  card_file_box: {
    keywords: [ "business", "stationery" ],
    char: "\ud83d\uddc3",
    fitzpatrick_scale: false,
    category: "objects"
  },
  ballot_box: {
    keywords: [ "election", "vote" ],
    char: "\ud83d\uddf3",
    fitzpatrick_scale: false,
    category: "objects"
  },
  file_cabinet: {
    keywords: [ "filing", "organizing" ],
    char: "\ud83d\uddc4",
    fitzpatrick_scale: false,
    category: "objects"
  },
  clipboard: {
    keywords: [ "stationery", "documents" ],
    char: "\ud83d\udccb",
    fitzpatrick_scale: false,
    category: "objects"
  },
  spiral_notepad: {
    keywords: [ "memo", "stationery" ],
    char: "\ud83d\uddd2",
    fitzpatrick_scale: false,
    category: "objects"
  },
  file_folder: {
    keywords: [ "documents", "business", "office" ],
    char: "\ud83d\udcc1",
    fitzpatrick_scale: false,
    category: "objects"
  },
  open_file_folder: {
    keywords: [ "documents", "load" ],
    char: "\ud83d\udcc2",
    fitzpatrick_scale: false,
    category: "objects"
  },
  card_index_dividers: {
    keywords: [ "organizing", "business", "stationery" ],
    char: "\ud83d\uddc2",
    fitzpatrick_scale: false,
    category: "objects"
  },
  newspaper_roll: {
    keywords: [ "press", "headline" ],
    char: "\ud83d\uddde",
    fitzpatrick_scale: false,
    category: "objects"
  },
  newspaper: {
    keywords: [ "press", "headline" ],
    char: "\ud83d\udcf0",
    fitzpatrick_scale: false,
    category: "objects"
  },
  notebook: {
    keywords: [ "stationery", "record", "notes", "paper", "study" ],
    char: "\ud83d\udcd3",
    fitzpatrick_scale: false,
    category: "objects"
  },
  closed_book: {
    keywords: [ "read", "library", "knowledge", "textbook", "learn" ],
    char: "\ud83d\udcd5",
    fitzpatrick_scale: false,
    category: "objects"
  },
  green_book: {
    keywords: [ "read", "library", "knowledge", "study" ],
    char: "\ud83d\udcd7",
    fitzpatrick_scale: false,
    category: "objects"
  },
  blue_book: {
    keywords: [ "read", "library", "knowledge", "learn", "study" ],
    char: "\ud83d\udcd8",
    fitzpatrick_scale: false,
    category: "objects"
  },
  orange_book: {
    keywords: [ "read", "library", "knowledge", "textbook", "study" ],
    char: "\ud83d\udcd9",
    fitzpatrick_scale: false,
    category: "objects"
  },
  notebook_with_decorative_cover: {
    keywords: [ "classroom", "notes", "record", "paper", "study" ],
    char: "\ud83d\udcd4",
    fitzpatrick_scale: false,
    category: "objects"
  },
  ledger: {
    keywords: [ "notes", "paper" ],
    char: "\ud83d\udcd2",
    fitzpatrick_scale: false,
    category: "objects"
  },
  books: {
    keywords: [ "literature", "library", "study" ],
    char: "\ud83d\udcda",
    fitzpatrick_scale: false,
    category: "objects"
  },
  open_book: {
    keywords: [ "book", "read", "library", "knowledge", "literature", "learn", "study" ],
    char: "\ud83d\udcd6",
    fitzpatrick_scale: false,
    category: "objects"
  },
  safety_pin: {
    keywords: [ "diaper" ],
    char: "\ud83e\uddf7",
    fitzpatrick_scale: false,
    category: "objects"
  },
  link: {
    keywords: [ "rings", "url" ],
    char: "\ud83d\udd17",
    fitzpatrick_scale: false,
    category: "objects"
  },
  paperclip: {
    keywords: [ "documents", "stationery" ],
    char: "\ud83d\udcce",
    fitzpatrick_scale: false,
    category: "objects"
  },
  paperclips: {
    keywords: [ "documents", "stationery" ],
    char: "\ud83d\udd87",
    fitzpatrick_scale: false,
    category: "objects"
  },
  scissors: {
    keywords: [ "stationery", "cut" ],
    char: "\u2702\ufe0f",
    fitzpatrick_scale: false,
    category: "objects"
  },
  triangular_ruler: {
    keywords: [ "stationery", "math", "architect", "sketch" ],
    char: "\ud83d\udcd0",
    fitzpatrick_scale: false,
    category: "objects"
  },
  straight_ruler: {
    keywords: [ "stationery", "calculate", "length", "math", "school", "drawing", "architect", "sketch" ],
    char: "\ud83d\udccf",
    fitzpatrick_scale: false,
    category: "objects"
  },
  abacus: {
    keywords: [ "calculation" ],
    char: "\ud83e\uddee",
    fitzpatrick_scale: false,
    category: "objects"
  },
  pushpin: {
    keywords: [ "stationery", "mark", "here" ],
    char: "\ud83d\udccc",
    fitzpatrick_scale: false,
    category: "objects"
  },
  round_pushpin: {
    keywords: [ "stationery", "location", "map", "here" ],
    char: "\ud83d\udccd",
    fitzpatrick_scale: false,
    category: "objects"
  },
  triangular_flag_on_post: {
    keywords: [ "mark", "milestone", "place" ],
    char: "\ud83d\udea9",
    fitzpatrick_scale: false,
    category: "objects"
  },
  white_flag: {
    keywords: [ "losing", "loser", "lost", "surrender", "give up", "fail" ],
    char: "\ud83c\udff3",
    fitzpatrick_scale: false,
    category: "objects"
  },
  black_flag: {
    keywords: [ "pirate" ],
    char: "\ud83c\udff4",
    fitzpatrick_scale: false,
    category: "objects"
  },
  rainbow_flag: {
    keywords: [ "flag", "rainbow", "pride", "gay", "lgbt", "glbt", "queer", "homosexual", "lesbian", "bisexual", "transgender" ],
    char: "\ud83c\udff3\ufe0f\u200d\ud83c\udf08",
    fitzpatrick_scale: false,
    category: "objects"
  },
  closed_lock_with_key: {
    keywords: [ "security", "privacy" ],
    char: "\ud83d\udd10",
    fitzpatrick_scale: false,
    category: "objects"
  },
  lock: {
    keywords: [ "security", "password", "padlock" ],
    char: "\ud83d\udd12",
    fitzpatrick_scale: false,
    category: "objects"
  },
  unlock: {
    keywords: [ "privacy", "security" ],
    char: "\ud83d\udd13",
    fitzpatrick_scale: false,
    category: "objects"
  },
  lock_with_ink_pen: {
    keywords: [ "security", "secret" ],
    char: "\ud83d\udd0f",
    fitzpatrick_scale: false,
    category: "objects"
  },
  pen: {
    keywords: [ "stationery", "writing", "write" ],
    char: "\ud83d\udd8a",
    fitzpatrick_scale: false,
    category: "objects"
  },
  fountain_pen: {
    keywords: [ "stationery", "writing", "write" ],
    char: "\ud83d\udd8b",
    fitzpatrick_scale: false,
    category: "objects"
  },
  black_nib: {
    keywords: [ "pen", "stationery", "writing", "write" ],
    char: "\u2712\ufe0f",
    fitzpatrick_scale: false,
    category: "objects"
  },
  memo: {
    keywords: [ "write", "documents", "stationery", "pencil", "paper", "writing", "legal", "exam", "quiz", "test", "study", "compose" ],
    char: "\ud83d\udcdd",
    fitzpatrick_scale: false,
    category: "objects"
  },
  pencil2: {
    keywords: [ "stationery", "write", "paper", "writing", "school", "study" ],
    char: "\u270f\ufe0f",
    fitzpatrick_scale: false,
    category: "objects"
  },
  crayon: {
    keywords: [ "drawing", "creativity" ],
    char: "\ud83d\udd8d",
    fitzpatrick_scale: false,
    category: "objects"
  },
  paintbrush: {
    keywords: [ "drawing", "creativity", "art" ],
    char: "\ud83d\udd8c",
    fitzpatrick_scale: false,
    category: "objects"
  },
  mag: {
    keywords: [ "search", "zoom", "find", "detective" ],
    char: "\ud83d\udd0d",
    fitzpatrick_scale: false,
    category: "objects"
  },
  mag_right: {
    keywords: [ "search", "zoom", "find", "detective" ],
    char: "\ud83d\udd0e",
    fitzpatrick_scale: false,
    category: "objects"
  },
  heart: {
    keywords: [ "love", "like", "valentines" ],
    char: "\u2764\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  orange_heart: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: "\ud83e\udde1",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  yellow_heart: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: "\ud83d\udc9b",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  green_heart: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: "\ud83d\udc9a",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  blue_heart: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: "\ud83d\udc99",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  purple_heart: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: "\ud83d\udc9c",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_heart: {
    keywords: [ "evil" ],
    char: "\ud83d\udda4",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  broken_heart: {
    keywords: [ "sad", "sorry", "break", "heart", "heartbreak" ],
    char: "\ud83d\udc94",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_heart_exclamation: {
    keywords: [ "decoration", "love" ],
    char: "\u2763",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  two_hearts: {
    keywords: [ "love", "like", "affection", "valentines", "heart" ],
    char: "\ud83d\udc95",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  revolving_hearts: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: "\ud83d\udc9e",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heartbeat: {
    keywords: [ "love", "like", "affection", "valentines", "pink", "heart" ],
    char: "\ud83d\udc93",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heartpulse: {
    keywords: [ "like", "love", "affection", "valentines", "pink" ],
    char: "\ud83d\udc97",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  sparkling_heart: {
    keywords: [ "love", "like", "affection", "valentines" ],
    char: "\ud83d\udc96",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  cupid: {
    keywords: [ "love", "like", "heart", "affection", "valentines" ],
    char: "\ud83d\udc98",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  gift_heart: {
    keywords: [ "love", "valentines" ],
    char: "\ud83d\udc9d",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heart_decoration: {
    keywords: [ "purple-square", "love", "like" ],
    char: "\ud83d\udc9f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  peace_symbol: {
    keywords: [ "hippie" ],
    char: "\u262e",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  latin_cross: {
    keywords: [ "christianity" ],
    char: "\u271d",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  star_and_crescent: {
    keywords: [ "islam" ],
    char: "\u262a",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  om: {
    keywords: [ "hinduism", "buddhism", "sikhism", "jainism" ],
    char: "\ud83d\udd49",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  wheel_of_dharma: {
    keywords: [ "hinduism", "buddhism", "sikhism", "jainism" ],
    char: "\u2638",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  star_of_david: {
    keywords: [ "judaism" ],
    char: "\u2721",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  six_pointed_star: {
    keywords: [ "purple-square", "religion", "jewish", "hexagram" ],
    char: "\ud83d\udd2f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  menorah: {
    keywords: [ "hanukkah", "candles", "jewish" ],
    char: "\ud83d\udd4e",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  yin_yang: {
    keywords: [ "balance" ],
    char: "\u262f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  orthodox_cross: {
    keywords: [ "suppedaneum", "religion" ],
    char: "\u2626",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  place_of_worship: {
    keywords: [ "religion", "church", "temple", "prayer" ],
    char: "\ud83d\uded0",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  ophiuchus: {
    keywords: [ "sign", "purple-square", "constellation", "astrology" ],
    char: "\u26ce",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  aries: {
    keywords: [ "sign", "purple-square", "zodiac", "astrology" ],
    char: "\u2648",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  taurus: {
    keywords: [ "purple-square", "sign", "zodiac", "astrology" ],
    char: "\u2649",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  gemini: {
    keywords: [ "sign", "zodiac", "purple-square", "astrology" ],
    char: "\u264a",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  cancer: {
    keywords: [ "sign", "zodiac", "purple-square", "astrology" ],
    char: "\u264b",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  leo: {
    keywords: [ "sign", "purple-square", "zodiac", "astrology" ],
    char: "\u264c",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  virgo: {
    keywords: [ "sign", "zodiac", "purple-square", "astrology" ],
    char: "\u264d",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  libra: {
    keywords: [ "sign", "purple-square", "zodiac", "astrology" ],
    char: "\u264e",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  scorpius: {
    keywords: [ "sign", "zodiac", "purple-square", "astrology", "scorpio" ],
    char: "\u264f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  sagittarius: {
    keywords: [ "sign", "zodiac", "purple-square", "astrology" ],
    char: "\u2650",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  capricorn: {
    keywords: [ "sign", "zodiac", "purple-square", "astrology" ],
    char: "\u2651",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  aquarius: {
    keywords: [ "sign", "purple-square", "zodiac", "astrology" ],
    char: "\u2652",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  pisces: {
    keywords: [ "purple-square", "sign", "zodiac", "astrology" ],
    char: "\u2653",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  id: {
    keywords: [ "purple-square", "words" ],
    char: "\ud83c\udd94",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  atom_symbol: {
    keywords: [ "science", "physics", "chemistry" ],
    char: "\u269b",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u7a7a: {
    keywords: [ "kanji", "japanese", "chinese", "empty", "sky", "blue-square" ],
    char: "\ud83c\ude33",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u5272: {
    keywords: [ "cut", "divide", "chinese", "kanji", "pink-square" ],
    char: "\ud83c\ude39",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  radioactive: {
    keywords: [ "nuclear", "danger" ],
    char: "\u2622",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  biohazard: {
    keywords: [ "danger" ],
    char: "\u2623",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  mobile_phone_off: {
    keywords: [ "mute", "orange-square", "silence", "quiet" ],
    char: "\ud83d\udcf4",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  vibration_mode: {
    keywords: [ "orange-square", "phone" ],
    char: "\ud83d\udcf3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u6709: {
    keywords: [ "orange-square", "chinese", "have", "kanji" ],
    char: "\ud83c\ude36",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u7121: {
    keywords: [ "nothing", "chinese", "kanji", "japanese", "orange-square" ],
    char: "\ud83c\ude1a",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u7533: {
    keywords: [ "chinese", "japanese", "kanji", "orange-square" ],
    char: "\ud83c\ude38",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u55b6: {
    keywords: [ "japanese", "opening hours", "orange-square" ],
    char: "\ud83c\ude3a",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u6708: {
    keywords: [ "chinese", "month", "moon", "japanese", "orange-square", "kanji" ],
    char: "\ud83c\ude37\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  eight_pointed_black_star: {
    keywords: [ "orange-square", "shape", "polygon" ],
    char: "\u2734\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  vs: {
    keywords: [ "words", "orange-square" ],
    char: "\ud83c\udd9a",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  accept: {
    keywords: [ "ok", "good", "chinese", "kanji", "agree", "yes", "orange-circle" ],
    char: "\ud83c\ude51",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_flower: {
    keywords: [ "japanese", "spring" ],
    char: "\ud83d\udcae",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  ideograph_advantage: {
    keywords: [ "chinese", "kanji", "obtain", "get", "circle" ],
    char: "\ud83c\ude50",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  secret: {
    keywords: [ "privacy", "chinese", "sshh", "kanji", "red-circle" ],
    char: "\u3299\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  congratulations: {
    keywords: [ "chinese", "kanji", "japanese", "red-circle" ],
    char: "\u3297\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u5408: {
    keywords: [ "japanese", "chinese", "join", "kanji", "red-square" ],
    char: "\ud83c\ude34",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u6e80: {
    keywords: [ "full", "chinese", "japanese", "red-square", "kanji" ],
    char: "\ud83c\ude35",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u7981: {
    keywords: [ "kanji", "japanese", "chinese", "forbidden", "limit", "restricted", "red-square" ],
    char: "\ud83c\ude32",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  a: {
    keywords: [ "red-square", "alphabet", "letter" ],
    char: "\ud83c\udd70\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  b: {
    keywords: [ "red-square", "alphabet", "letter" ],
    char: "\ud83c\udd71\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  ab: {
    keywords: [ "red-square", "alphabet" ],
    char: "\ud83c\udd8e",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  cl: {
    keywords: [ "alphabet", "words", "red-square" ],
    char: "\ud83c\udd91",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  o2: {
    keywords: [ "alphabet", "red-square", "letter" ],
    char: "\ud83c\udd7e\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  sos: {
    keywords: [ "help", "red-square", "words", "emergency", "911" ],
    char: "\ud83c\udd98",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_entry: {
    keywords: [ "limit", "security", "privacy", "bad", "denied", "stop", "circle" ],
    char: "\u26d4",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  name_badge: {
    keywords: [ "fire", "forbid" ],
    char: "\ud83d\udcdb",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_entry_sign: {
    keywords: [ "forbid", "stop", "limit", "denied", "disallow", "circle" ],
    char: "\ud83d\udeab",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  x: {
    keywords: [ "no", "delete", "remove", "cancel", "red" ],
    char: "\u274c",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  o: {
    keywords: [ "circle", "round" ],
    char: "\u2b55",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  stop_sign: {
    keywords: [ "stop" ],
    char: "\ud83d\uded1",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  anger: {
    keywords: [ "angry", "mad" ],
    char: "\ud83d\udca2",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  hotsprings: {
    keywords: [ "bath", "warm", "relax" ],
    char: "\u2668\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_pedestrians: {
    keywords: [ "rules", "crossing", "walking", "circle" ],
    char: "\ud83d\udeb7",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  do_not_litter: {
    keywords: [ "trash", "bin", "garbage", "circle" ],
    char: "\ud83d\udeaf",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_bicycles: {
    keywords: [ "cyclist", "prohibited", "circle" ],
    char: "\ud83d\udeb3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  "non-potable_water": {
    keywords: [ "drink", "faucet", "tap", "circle" ],
    char: "\ud83d\udeb1",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  underage: {
    keywords: [ "18", "drink", "pub", "night", "minor", "circle" ],
    char: "\ud83d\udd1e",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_mobile_phones: {
    keywords: [ "iphone", "mute", "circle" ],
    char: "\ud83d\udcf5",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  exclamation: {
    keywords: [ "heavy_exclamation_mark", "danger", "surprise", "punctuation", "wow", "warning" ],
    char: "\u2757",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  grey_exclamation: {
    keywords: [ "surprise", "punctuation", "gray", "wow", "warning" ],
    char: "\u2755",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  question: {
    keywords: [ "doubt", "confused" ],
    char: "\u2753",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  grey_question: {
    keywords: [ "doubts", "gray", "huh", "confused" ],
    char: "\u2754",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  bangbang: {
    keywords: [ "exclamation", "surprise" ],
    char: "\u203c\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  interrobang: {
    keywords: [ "wat", "punctuation", "surprise" ],
    char: "\u2049\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  100: {
    keywords: [ "score", "perfect", "numbers", "century", "exam", "quiz", "test", "pass", "hundred" ],
    char: "\ud83d\udcaf",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  low_brightness: {
    keywords: [ "sun", "afternoon", "warm", "summer" ],
    char: "\ud83d\udd05",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  high_brightness: {
    keywords: [ "sun", "light" ],
    char: "\ud83d\udd06",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  trident: {
    keywords: [ "weapon", "spear" ],
    char: "\ud83d\udd31",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  fleur_de_lis: {
    keywords: [ "decorative", "scout" ],
    char: "\u269c",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  part_alternation_mark: {
    keywords: [ "graph", "presentation", "stats", "business", "economics", "bad" ],
    char: "\u303d\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  warning: {
    keywords: [ "exclamation", "wip", "alert", "error", "problem", "issue" ],
    char: "\u26a0\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  children_crossing: {
    keywords: [ "school", "warning", "danger", "sign", "driving", "yellow-diamond" ],
    char: "\ud83d\udeb8",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  beginner: {
    keywords: [ "badge", "shield" ],
    char: "\ud83d\udd30",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  recycle: {
    keywords: [ "arrow", "environment", "garbage", "trash" ],
    char: "\u267b\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  u6307: {
    keywords: [ "chinese", "point", "green-square", "kanji" ],
    char: "\ud83c\ude2f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  chart: {
    keywords: [ "green-square", "graph", "presentation", "stats" ],
    char: "\ud83d\udcb9",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  sparkle: {
    keywords: [ "stars", "green-square", "awesome", "good", "fireworks" ],
    char: "\u2747\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  eight_spoked_asterisk: {
    keywords: [ "star", "sparkle", "green-square" ],
    char: "\u2733\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  negative_squared_cross_mark: {
    keywords: [ "x", "green-square", "no", "deny" ],
    char: "\u274e",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_check_mark: {
    keywords: [ "green-square", "ok", "agree", "vote", "election", "answer", "tick" ],
    char: "\u2705",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  diamond_shape_with_a_dot_inside: {
    keywords: [ "jewel", "blue", "gem", "crystal", "fancy" ],
    char: "\ud83d\udca0",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  cyclone: {
    keywords: [ "weather", "swirl", "blue", "cloud", "vortex", "spiral", "whirlpool", "spin", "tornado", "hurricane", "typhoon" ],
    char: "\ud83c\udf00",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  loop: {
    keywords: [ "tape", "cassette" ],
    char: "\u27bf",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  globe_with_meridians: {
    keywords: [ "earth", "international", "world", "internet", "interweb", "i18n" ],
    char: "\ud83c\udf10",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  m: {
    keywords: [ "alphabet", "blue-circle", "letter" ],
    char: "\u24c2\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  atm: {
    keywords: [ "money", "sales", "cash", "blue-square", "payment", "bank" ],
    char: "\ud83c\udfe7",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  sa: {
    keywords: [ "japanese", "blue-square", "katakana" ],
    char: "\ud83c\ude02\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  passport_control: {
    keywords: [ "custom", "blue-square" ],
    char: "\ud83d\udec2",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  customs: {
    keywords: [ "passport", "border", "blue-square" ],
    char: "\ud83d\udec3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  baggage_claim: {
    keywords: [ "blue-square", "airport", "transport" ],
    char: "\ud83d\udec4",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  left_luggage: {
    keywords: [ "blue-square", "travel" ],
    char: "\ud83d\udec5",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  wheelchair: {
    keywords: [ "blue-square", "disabled", "a11y", "accessibility" ],
    char: "\u267f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_smoking: {
    keywords: [ "cigarette", "blue-square", "smell", "smoke" ],
    char: "\ud83d\udead",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  wc: {
    keywords: [ "toilet", "restroom", "blue-square" ],
    char: "\ud83d\udebe",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  parking: {
    keywords: [ "cars", "blue-square", "alphabet", "letter" ],
    char: "\ud83c\udd7f\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  potable_water: {
    keywords: [ "blue-square", "liquid", "restroom", "cleaning", "faucet" ],
    char: "\ud83d\udeb0",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  mens: {
    keywords: [ "toilet", "restroom", "wc", "blue-square", "gender", "male" ],
    char: "\ud83d\udeb9",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  womens: {
    keywords: [ "purple-square", "woman", "female", "toilet", "loo", "restroom", "gender" ],
    char: "\ud83d\udeba",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  baby_symbol: {
    keywords: [ "orange-square", "child" ],
    char: "\ud83d\udebc",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  restroom: {
    keywords: [ "blue-square", "toilet", "refresh", "wc", "gender" ],
    char: "\ud83d\udebb",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  put_litter_in_its_place: {
    keywords: [ "blue-square", "sign", "human", "info" ],
    char: "\ud83d\udeae",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  cinema: {
    keywords: [ "blue-square", "record", "film", "movie", "curtain", "stage", "theater" ],
    char: "\ud83c\udfa6",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  signal_strength: {
    keywords: [ "blue-square", "reception", "phone", "internet", "connection", "wifi", "bluetooth", "bars" ],
    char: "\ud83d\udcf6",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  koko: {
    keywords: [ "blue-square", "here", "katakana", "japanese", "destination" ],
    char: "\ud83c\ude01",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  ng: {
    keywords: [ "blue-square", "words", "shape", "icon" ],
    char: "\ud83c\udd96",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  ok: {
    keywords: [ "good", "agree", "yes", "blue-square" ],
    char: "\ud83c\udd97",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  up: {
    keywords: [ "blue-square", "above", "high" ],
    char: "\ud83c\udd99",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  cool: {
    keywords: [ "words", "blue-square" ],
    char: "\ud83c\udd92",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  new: {
    keywords: [ "blue-square", "words", "start" ],
    char: "\ud83c\udd95",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  free: {
    keywords: [ "blue-square", "words" ],
    char: "\ud83c\udd93",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  zero: {
    keywords: [ "0", "numbers", "blue-square", "null" ],
    char: "0\ufe0f\u20e3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  one: {
    keywords: [ "blue-square", "numbers", "1" ],
    char: "1\ufe0f\u20e3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  two: {
    keywords: [ "numbers", "2", "prime", "blue-square" ],
    char: "2\ufe0f\u20e3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  three: {
    keywords: [ "3", "numbers", "prime", "blue-square" ],
    char: "3\ufe0f\u20e3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  four: {
    keywords: [ "4", "numbers", "blue-square" ],
    char: "4\ufe0f\u20e3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  five: {
    keywords: [ "5", "numbers", "blue-square", "prime" ],
    char: "5\ufe0f\u20e3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  six: {
    keywords: [ "6", "numbers", "blue-square" ],
    char: "6\ufe0f\u20e3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  seven: {
    keywords: [ "7", "numbers", "blue-square", "prime" ],
    char: "7\ufe0f\u20e3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  eight: {
    keywords: [ "8", "blue-square", "numbers" ],
    char: "8\ufe0f\u20e3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  nine: {
    keywords: [ "blue-square", "numbers", "9" ],
    char: "9\ufe0f\u20e3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  keycap_ten: {
    keywords: [ "numbers", "10", "blue-square" ],
    char: "\ud83d\udd1f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  asterisk: {
    keywords: [ "star", "keycap" ],
    char: "*\u20e3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  1234: {
    keywords: [ "numbers", "blue-square" ],
    char: "\ud83d\udd22",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  eject_button: {
    keywords: [ "blue-square" ],
    char: "\u23cf\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_forward: {
    keywords: [ "blue-square", "right", "direction", "play" ],
    char: "\u25b6\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  pause_button: {
    keywords: [ "pause", "blue-square" ],
    char: "\u23f8",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  next_track_button: {
    keywords: [ "forward", "next", "blue-square" ],
    char: "\u23ed",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  stop_button: {
    keywords: [ "blue-square" ],
    char: "\u23f9",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  record_button: {
    keywords: [ "blue-square" ],
    char: "\u23fa",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  play_or_pause_button: {
    keywords: [ "blue-square", "play", "pause" ],
    char: "\u23ef",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  previous_track_button: {
    keywords: [ "backward" ],
    char: "\u23ee",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  fast_forward: {
    keywords: [ "blue-square", "play", "speed", "continue" ],
    char: "\u23e9",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  rewind: {
    keywords: [ "play", "blue-square" ],
    char: "\u23ea",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  twisted_rightwards_arrows: {
    keywords: [ "blue-square", "shuffle", "music", "random" ],
    char: "\ud83d\udd00",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  repeat: {
    keywords: [ "loop", "record" ],
    char: "\ud83d\udd01",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  repeat_one: {
    keywords: [ "blue-square", "loop" ],
    char: "\ud83d\udd02",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_backward: {
    keywords: [ "blue-square", "left", "direction" ],
    char: "\u25c0\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_up_small: {
    keywords: [ "blue-square", "triangle", "direction", "point", "forward", "top" ],
    char: "\ud83d\udd3c",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_down_small: {
    keywords: [ "blue-square", "direction", "bottom" ],
    char: "\ud83d\udd3d",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_double_up: {
    keywords: [ "blue-square", "direction", "top" ],
    char: "\u23eb",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_double_down: {
    keywords: [ "blue-square", "direction", "bottom" ],
    char: "\u23ec",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_right: {
    keywords: [ "blue-square", "next" ],
    char: "\u27a1\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_left: {
    keywords: [ "blue-square", "previous", "back" ],
    char: "\u2b05\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_up: {
    keywords: [ "blue-square", "continue", "top", "direction" ],
    char: "\u2b06\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_down: {
    keywords: [ "blue-square", "direction", "bottom" ],
    char: "\u2b07\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_upper_right: {
    keywords: [ "blue-square", "point", "direction", "diagonal", "northeast" ],
    char: "\u2197\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_lower_right: {
    keywords: [ "blue-square", "direction", "diagonal", "southeast" ],
    char: "\u2198\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_lower_left: {
    keywords: [ "blue-square", "direction", "diagonal", "southwest" ],
    char: "\u2199\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_upper_left: {
    keywords: [ "blue-square", "point", "direction", "diagonal", "northwest" ],
    char: "\u2196\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_up_down: {
    keywords: [ "blue-square", "direction", "way", "vertical" ],
    char: "\u2195\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  left_right_arrow: {
    keywords: [ "shape", "direction", "horizontal", "sideways" ],
    char: "\u2194\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrows_counterclockwise: {
    keywords: [ "blue-square", "sync", "cycle" ],
    char: "\ud83d\udd04",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_right_hook: {
    keywords: [ "blue-square", "return", "rotate", "direction" ],
    char: "\u21aa\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  leftwards_arrow_with_hook: {
    keywords: [ "back", "return", "blue-square", "undo", "enter" ],
    char: "\u21a9\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_heading_up: {
    keywords: [ "blue-square", "direction", "top" ],
    char: "\u2934\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrow_heading_down: {
    keywords: [ "blue-square", "direction", "bottom" ],
    char: "\u2935\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  hash: {
    keywords: [ "symbol", "blue-square", "twitter" ],
    char: "#\ufe0f\u20e3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  information_source: {
    keywords: [ "blue-square", "alphabet", "letter" ],
    char: "\u2139\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  abc: {
    keywords: [ "blue-square", "alphabet" ],
    char: "\ud83d\udd24",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  abcd: {
    keywords: [ "blue-square", "alphabet" ],
    char: "\ud83d\udd21",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  capital_abcd: {
    keywords: [ "alphabet", "words", "blue-square" ],
    char: "\ud83d\udd20",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  symbols: {
    keywords: [ "blue-square", "music", "note", "ampersand", "percent", "glyphs", "characters" ],
    char: "\ud83d\udd23",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  musical_note: {
    keywords: [ "score", "tone", "sound" ],
    char: "\ud83c\udfb5",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  notes: {
    keywords: [ "music", "score" ],
    char: "\ud83c\udfb6",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  wavy_dash: {
    keywords: [ "draw", "line", "moustache", "mustache", "squiggle", "scribble" ],
    char: "\u3030\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  curly_loop: {
    keywords: [ "scribble", "draw", "shape", "squiggle" ],
    char: "\u27b0",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_check_mark: {
    keywords: [ "ok", "nike", "answer", "yes", "tick" ],
    char: "\u2714\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  arrows_clockwise: {
    keywords: [ "sync", "cycle", "round", "repeat" ],
    char: "\ud83d\udd03",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_plus_sign: {
    keywords: [ "math", "calculation", "addition", "more", "increase" ],
    char: "\u2795",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_minus_sign: {
    keywords: [ "math", "calculation", "subtract", "less" ],
    char: "\u2796",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_division_sign: {
    keywords: [ "divide", "math", "calculation" ],
    char: "\u2797",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_multiplication_x: {
    keywords: [ "math", "calculation" ],
    char: "\u2716\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  infinity: {
    keywords: [ "forever" ],
    char: "\u267e",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  heavy_dollar_sign: {
    keywords: [ "money", "sales", "payment", "currency", "buck" ],
    char: "\ud83d\udcb2",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  currency_exchange: {
    keywords: [ "money", "sales", "dollar", "travel" ],
    char: "\ud83d\udcb1",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  copyright: {
    keywords: [ "ip", "license", "circle", "law", "legal" ],
    char: "\xa9\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  registered: {
    keywords: [ "alphabet", "circle" ],
    char: "\xae\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  tm: {
    keywords: [ "trademark", "brand", "law", "legal" ],
    char: "\u2122\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  end: {
    keywords: [ "words", "arrow" ],
    char: "\ud83d\udd1a",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  back: {
    keywords: [ "arrow", "words", "return" ],
    char: "\ud83d\udd19",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  on: {
    keywords: [ "arrow", "words" ],
    char: "\ud83d\udd1b",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  top: {
    keywords: [ "words", "blue-square" ],
    char: "\ud83d\udd1d",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  soon: {
    keywords: [ "arrow", "words" ],
    char: "\ud83d\udd1c",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  ballot_box_with_check: {
    keywords: [ "ok", "agree", "confirm", "black-square", "vote", "election", "yes", "tick" ],
    char: "\u2611\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  radio_button: {
    keywords: [ "input", "old", "music", "circle" ],
    char: "\ud83d\udd18",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_circle: {
    keywords: [ "shape", "round" ],
    char: "\u26aa",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_circle: {
    keywords: [ "shape", "button", "round" ],
    char: "\u26ab",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  red_circle: {
    keywords: [ "shape", "error", "danger" ],
    char: "\ud83d\udd34",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  large_blue_circle: {
    keywords: [ "shape", "icon", "button" ],
    char: "\ud83d\udd35",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  small_orange_diamond: {
    keywords: [ "shape", "jewel", "gem" ],
    char: "\ud83d\udd38",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  small_blue_diamond: {
    keywords: [ "shape", "jewel", "gem" ],
    char: "\ud83d\udd39",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  large_orange_diamond: {
    keywords: [ "shape", "jewel", "gem" ],
    char: "\ud83d\udd36",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  large_blue_diamond: {
    keywords: [ "shape", "jewel", "gem" ],
    char: "\ud83d\udd37",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  small_red_triangle: {
    keywords: [ "shape", "direction", "up", "top" ],
    char: "\ud83d\udd3a",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_small_square: {
    keywords: [ "shape", "icon" ],
    char: "\u25aa\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_small_square: {
    keywords: [ "shape", "icon" ],
    char: "\u25ab\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_large_square: {
    keywords: [ "shape", "icon", "button" ],
    char: "\u2b1b",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_large_square: {
    keywords: [ "shape", "icon", "stone", "button" ],
    char: "\u2b1c",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  small_red_triangle_down: {
    keywords: [ "shape", "direction", "bottom" ],
    char: "\ud83d\udd3b",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_medium_square: {
    keywords: [ "shape", "button", "icon" ],
    char: "\u25fc\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_medium_square: {
    keywords: [ "shape", "stone", "icon" ],
    char: "\u25fb\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_medium_small_square: {
    keywords: [ "icon", "shape", "button" ],
    char: "\u25fe",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_medium_small_square: {
    keywords: [ "shape", "stone", "icon", "button" ],
    char: "\u25fd",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_square_button: {
    keywords: [ "shape", "input", "frame" ],
    char: "\ud83d\udd32",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  white_square_button: {
    keywords: [ "shape", "input" ],
    char: "\ud83d\udd33",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  speaker: {
    keywords: [ "sound", "volume", "silence", "broadcast" ],
    char: "\ud83d\udd08",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  sound: {
    keywords: [ "volume", "speaker", "broadcast" ],
    char: "\ud83d\udd09",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  loud_sound: {
    keywords: [ "volume", "noise", "noisy", "speaker", "broadcast" ],
    char: "\ud83d\udd0a",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  mute: {
    keywords: [ "sound", "volume", "silence", "quiet" ],
    char: "\ud83d\udd07",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  mega: {
    keywords: [ "sound", "speaker", "volume" ],
    char: "\ud83d\udce3",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  loudspeaker: {
    keywords: [ "volume", "sound" ],
    char: "\ud83d\udce2",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  bell: {
    keywords: [ "sound", "notification", "christmas", "xmas", "chime" ],
    char: "\ud83d\udd14",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  no_bell: {
    keywords: [ "sound", "volume", "mute", "quiet", "silent" ],
    char: "\ud83d\udd15",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  black_joker: {
    keywords: [ "poker", "cards", "game", "play", "magic" ],
    char: "\ud83c\udccf",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  mahjong: {
    keywords: [ "game", "play", "chinese", "kanji" ],
    char: "\ud83c\udc04",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  spades: {
    keywords: [ "poker", "cards", "suits", "magic" ],
    char: "\u2660\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clubs: {
    keywords: [ "poker", "cards", "magic", "suits" ],
    char: "\u2663\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  hearts: {
    keywords: [ "poker", "cards", "magic", "suits" ],
    char: "\u2665\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  diamonds: {
    keywords: [ "poker", "cards", "magic", "suits" ],
    char: "\u2666\ufe0f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  flower_playing_cards: {
    keywords: [ "game", "sunset", "red" ],
    char: "\ud83c\udfb4",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  thought_balloon: {
    keywords: [ "bubble", "cloud", "speech", "thinking", "dream" ],
    char: "\ud83d\udcad",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  right_anger_bubble: {
    keywords: [ "caption", "speech", "thinking", "mad" ],
    char: "\ud83d\uddef",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  speech_balloon: {
    keywords: [ "bubble", "words", "message", "talk", "chatting" ],
    char: "\ud83d\udcac",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  left_speech_bubble: {
    keywords: [ "words", "message", "talk", "chatting" ],
    char: "\ud83d\udde8",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock1: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd50",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock2: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd51",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock3: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd52",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock4: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd53",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock5: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd54",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock6: {
    keywords: [ "time", "late", "early", "schedule", "dawn", "dusk" ],
    char: "\ud83d\udd55",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock7: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd56",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock8: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd57",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock9: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd58",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock10: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd59",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock11: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd5a",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock12: {
    keywords: [ "time", "noon", "midnight", "midday", "late", "early", "schedule" ],
    char: "\ud83d\udd5b",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock130: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd5c",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock230: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd5d",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock330: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd5e",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock430: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd5f",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock530: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd60",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock630: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd61",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock730: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd62",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock830: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd63",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock930: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd64",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock1030: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd65",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock1130: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd66",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  clock1230: {
    keywords: [ "time", "late", "early", "schedule" ],
    char: "\ud83d\udd67",
    fitzpatrick_scale: false,
    category: "symbols"
  },
  afghanistan: {
    keywords: [ "af", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddeb",
    fitzpatrick_scale: false,
    category: "flags"
  },
  aland_islands: {
    keywords: [ "\xc5land", "islands", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddfd",
    fitzpatrick_scale: false,
    category: "flags"
  },
  albania: {
    keywords: [ "al", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddf1",
    fitzpatrick_scale: false,
    category: "flags"
  },
  algeria: {
    keywords: [ "dz", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde9\ud83c\uddff",
    fitzpatrick_scale: false,
    category: "flags"
  },
  american_samoa: {
    keywords: [ "american", "ws", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddf8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  andorra: {
    keywords: [ "ad", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\udde9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  angola: {
    keywords: [ "ao", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddf4",
    fitzpatrick_scale: false,
    category: "flags"
  },
  anguilla: {
    keywords: [ "ai", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddee",
    fitzpatrick_scale: false,
    category: "flags"
  },
  antarctica: {
    keywords: [ "aq", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddf6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  antigua_barbuda: {
    keywords: [ "antigua", "barbuda", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddec",
    fitzpatrick_scale: false,
    category: "flags"
  },
  argentina: {
    keywords: [ "ar", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  armenia: {
    keywords: [ "am", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  aruba: {
    keywords: [ "aw", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddfc",
    fitzpatrick_scale: false,
    category: "flags"
  },
  australia: {
    keywords: [ "au", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddfa",
    fitzpatrick_scale: false,
    category: "flags"
  },
  austria: {
    keywords: [ "at", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddf9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  azerbaijan: {
    keywords: [ "az", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddff",
    fitzpatrick_scale: false,
    category: "flags"
  },
  bahamas: {
    keywords: [ "bs", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddf8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  bahrain: {
    keywords: [ "bh", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\udded",
    fitzpatrick_scale: false,
    category: "flags"
  },
  bangladesh: {
    keywords: [ "bd", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\udde9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  barbados: {
    keywords: [ "bb", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\udde7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  belarus: {
    keywords: [ "by", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddfe",
    fitzpatrick_scale: false,
    category: "flags"
  },
  belgium: {
    keywords: [ "be", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  belize: {
    keywords: [ "bz", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddff",
    fitzpatrick_scale: false,
    category: "flags"
  },
  benin: {
    keywords: [ "bj", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddef",
    fitzpatrick_scale: false,
    category: "flags"
  },
  bermuda: {
    keywords: [ "bm", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  bhutan: {
    keywords: [ "bt", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddf9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  bolivia: {
    keywords: [ "bo", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddf4",
    fitzpatrick_scale: false,
    category: "flags"
  },
  caribbean_netherlands: {
    keywords: [ "bonaire", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddf6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  bosnia_herzegovina: {
    keywords: [ "bosnia", "herzegovina", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\udde6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  botswana: {
    keywords: [ "bw", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddfc",
    fitzpatrick_scale: false,
    category: "flags"
  },
  brazil: {
    keywords: [ "br", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  british_indian_ocean_territory: {
    keywords: [ "british", "indian", "ocean", "territory", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddee\ud83c\uddf4",
    fitzpatrick_scale: false,
    category: "flags"
  },
  british_virgin_islands: {
    keywords: [ "british", "virgin", "islands", "bvi", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfb\ud83c\uddec",
    fitzpatrick_scale: false,
    category: "flags"
  },
  brunei: {
    keywords: [ "bn", "darussalam", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddf3",
    fitzpatrick_scale: false,
    category: "flags"
  },
  bulgaria: {
    keywords: [ "bg", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddec",
    fitzpatrick_scale: false,
    category: "flags"
  },
  burkina_faso: {
    keywords: [ "burkina", "faso", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddeb",
    fitzpatrick_scale: false,
    category: "flags"
  },
  burundi: {
    keywords: [ "bi", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddee",
    fitzpatrick_scale: false,
    category: "flags"
  },
  cape_verde: {
    keywords: [ "cabo", "verde", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddfb",
    fitzpatrick_scale: false,
    category: "flags"
  },
  cambodia: {
    keywords: [ "kh", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf0\ud83c\udded",
    fitzpatrick_scale: false,
    category: "flags"
  },
  cameroon: {
    keywords: [ "cm", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  canada: {
    keywords: [ "ca", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\udde6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  canary_islands: {
    keywords: [ "canary", "islands", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddee\ud83c\udde8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  cayman_islands: {
    keywords: [ "cayman", "islands", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf0\ud83c\uddfe",
    fitzpatrick_scale: false,
    category: "flags"
  },
  central_african_republic: {
    keywords: [ "central", "african", "republic", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddeb",
    fitzpatrick_scale: false,
    category: "flags"
  },
  chad: {
    keywords: [ "td", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\udde9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  chile: {
    keywords: [ "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddf1",
    fitzpatrick_scale: false,
    category: "flags"
  },
  cn: {
    keywords: [ "china", "chinese", "prc", "flag", "country", "nation", "banner" ],
    char: "\ud83c\udde8\ud83c\uddf3",
    fitzpatrick_scale: false,
    category: "flags"
  },
  christmas_island: {
    keywords: [ "christmas", "island", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddfd",
    fitzpatrick_scale: false,
    category: "flags"
  },
  cocos_islands: {
    keywords: [ "cocos", "keeling", "islands", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\udde8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  colombia: {
    keywords: [ "co", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddf4",
    fitzpatrick_scale: false,
    category: "flags"
  },
  comoros: {
    keywords: [ "km", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf0\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  congo_brazzaville: {
    keywords: [ "congo", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddec",
    fitzpatrick_scale: false,
    category: "flags"
  },
  congo_kinshasa: {
    keywords: [ "congo", "democratic", "republic", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\udde9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  cook_islands: {
    keywords: [ "cook", "islands", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddf0",
    fitzpatrick_scale: false,
    category: "flags"
  },
  costa_rica: {
    keywords: [ "costa", "rica", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  croatia: {
    keywords: [ "hr", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udded\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  cuba: {
    keywords: [ "cu", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddfa",
    fitzpatrick_scale: false,
    category: "flags"
  },
  curacao: {
    keywords: [ "cura\xe7ao", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddfc",
    fitzpatrick_scale: false,
    category: "flags"
  },
  cyprus: {
    keywords: [ "cy", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddfe",
    fitzpatrick_scale: false,
    category: "flags"
  },
  czech_republic: {
    keywords: [ "cz", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddff",
    fitzpatrick_scale: false,
    category: "flags"
  },
  denmark: {
    keywords: [ "dk", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde9\ud83c\uddf0",
    fitzpatrick_scale: false,
    category: "flags"
  },
  djibouti: {
    keywords: [ "dj", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde9\ud83c\uddef",
    fitzpatrick_scale: false,
    category: "flags"
  },
  dominica: {
    keywords: [ "dm", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde9\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  dominican_republic: {
    keywords: [ "dominican", "republic", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde9\ud83c\uddf4",
    fitzpatrick_scale: false,
    category: "flags"
  },
  ecuador: {
    keywords: [ "ec", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddea\ud83c\udde8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  egypt: {
    keywords: [ "eg", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddea\ud83c\uddec",
    fitzpatrick_scale: false,
    category: "flags"
  },
  el_salvador: {
    keywords: [ "el", "salvador", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddfb",
    fitzpatrick_scale: false,
    category: "flags"
  },
  equatorial_guinea: {
    keywords: [ "equatorial", "gn", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddf6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  eritrea: {
    keywords: [ "er", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddea\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  estonia: {
    keywords: [ "ee", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddea\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  ethiopia: {
    keywords: [ "et", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddea\ud83c\uddf9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  eu: {
    keywords: [ "european", "union", "flag", "banner" ],
    char: "\ud83c\uddea\ud83c\uddfa",
    fitzpatrick_scale: false,
    category: "flags"
  },
  falkland_islands: {
    keywords: [ "falkland", "islands", "malvinas", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddeb\ud83c\uddf0",
    fitzpatrick_scale: false,
    category: "flags"
  },
  faroe_islands: {
    keywords: [ "faroe", "islands", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddeb\ud83c\uddf4",
    fitzpatrick_scale: false,
    category: "flags"
  },
  fiji: {
    keywords: [ "fj", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddeb\ud83c\uddef",
    fitzpatrick_scale: false,
    category: "flags"
  },
  finland: {
    keywords: [ "fi", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddeb\ud83c\uddee",
    fitzpatrick_scale: false,
    category: "flags"
  },
  fr: {
    keywords: [ "banner", "flag", "nation", "france", "french", "country" ],
    char: "\ud83c\uddeb\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  french_guiana: {
    keywords: [ "french", "guiana", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddeb",
    fitzpatrick_scale: false,
    category: "flags"
  },
  french_polynesia: {
    keywords: [ "french", "polynesia", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\uddeb",
    fitzpatrick_scale: false,
    category: "flags"
  },
  french_southern_territories: {
    keywords: [ "french", "southern", "territories", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\uddeb",
    fitzpatrick_scale: false,
    category: "flags"
  },
  gabon: {
    keywords: [ "ga", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\udde6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  gambia: {
    keywords: [ "gm", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  georgia: {
    keywords: [ "ge", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  de: {
    keywords: [ "german", "nation", "flag", "country", "banner" ],
    char: "\ud83c\udde9\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  ghana: {
    keywords: [ "gh", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\udded",
    fitzpatrick_scale: false,
    category: "flags"
  },
  gibraltar: {
    keywords: [ "gi", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddee",
    fitzpatrick_scale: false,
    category: "flags"
  },
  greece: {
    keywords: [ "gr", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  greenland: {
    keywords: [ "gl", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddf1",
    fitzpatrick_scale: false,
    category: "flags"
  },
  grenada: {
    keywords: [ "gd", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\udde9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  guadeloupe: {
    keywords: [ "gp", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddf5",
    fitzpatrick_scale: false,
    category: "flags"
  },
  guam: {
    keywords: [ "gu", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddfa",
    fitzpatrick_scale: false,
    category: "flags"
  },
  guatemala: {
    keywords: [ "gt", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddf9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  guernsey: {
    keywords: [ "gg", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddec",
    fitzpatrick_scale: false,
    category: "flags"
  },
  guinea: {
    keywords: [ "gn", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddf3",
    fitzpatrick_scale: false,
    category: "flags"
  },
  guinea_bissau: {
    keywords: [ "gw", "bissau", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddfc",
    fitzpatrick_scale: false,
    category: "flags"
  },
  guyana: {
    keywords: [ "gy", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddfe",
    fitzpatrick_scale: false,
    category: "flags"
  },
  haiti: {
    keywords: [ "ht", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udded\ud83c\uddf9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  honduras: {
    keywords: [ "hn", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udded\ud83c\uddf3",
    fitzpatrick_scale: false,
    category: "flags"
  },
  hong_kong: {
    keywords: [ "hong", "kong", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udded\ud83c\uddf0",
    fitzpatrick_scale: false,
    category: "flags"
  },
  hungary: {
    keywords: [ "hu", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udded\ud83c\uddfa",
    fitzpatrick_scale: false,
    category: "flags"
  },
  iceland: {
    keywords: [ "is", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddee\ud83c\uddf8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  india: {
    keywords: [ "in", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddee\ud83c\uddf3",
    fitzpatrick_scale: false,
    category: "flags"
  },
  indonesia: {
    keywords: [ "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddee\ud83c\udde9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  iran: {
    keywords: [ "iran,", "islamic", "republic", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddee\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  iraq: {
    keywords: [ "iq", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddee\ud83c\uddf6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  ireland: {
    keywords: [ "ie", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddee\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  isle_of_man: {
    keywords: [ "isle", "man", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddee\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  israel: {
    keywords: [ "il", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddee\ud83c\uddf1",
    fitzpatrick_scale: false,
    category: "flags"
  },
  it: {
    keywords: [ "italy", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddee\ud83c\uddf9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  cote_divoire: {
    keywords: [ "ivory", "coast", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\uddee",
    fitzpatrick_scale: false,
    category: "flags"
  },
  jamaica: {
    keywords: [ "jm", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddef\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  jp: {
    keywords: [ "japanese", "nation", "flag", "country", "banner" ],
    char: "\ud83c\uddef\ud83c\uddf5",
    fitzpatrick_scale: false,
    category: "flags"
  },
  jersey: {
    keywords: [ "je", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddef\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  jordan: {
    keywords: [ "jo", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddef\ud83c\uddf4",
    fitzpatrick_scale: false,
    category: "flags"
  },
  kazakhstan: {
    keywords: [ "kz", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf0\ud83c\uddff",
    fitzpatrick_scale: false,
    category: "flags"
  },
  kenya: {
    keywords: [ "ke", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf0\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  kiribati: {
    keywords: [ "ki", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf0\ud83c\uddee",
    fitzpatrick_scale: false,
    category: "flags"
  },
  kosovo: {
    keywords: [ "xk", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfd\ud83c\uddf0",
    fitzpatrick_scale: false,
    category: "flags"
  },
  kuwait: {
    keywords: [ "kw", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf0\ud83c\uddfc",
    fitzpatrick_scale: false,
    category: "flags"
  },
  kyrgyzstan: {
    keywords: [ "kg", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf0\ud83c\uddec",
    fitzpatrick_scale: false,
    category: "flags"
  },
  laos: {
    keywords: [ "lao", "democratic", "republic", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf1\ud83c\udde6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  latvia: {
    keywords: [ "lv", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf1\ud83c\uddfb",
    fitzpatrick_scale: false,
    category: "flags"
  },
  lebanon: {
    keywords: [ "lb", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf1\ud83c\udde7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  lesotho: {
    keywords: [ "ls", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf1\ud83c\uddf8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  liberia: {
    keywords: [ "lr", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf1\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  libya: {
    keywords: [ "ly", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf1\ud83c\uddfe",
    fitzpatrick_scale: false,
    category: "flags"
  },
  liechtenstein: {
    keywords: [ "li", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf1\ud83c\uddee",
    fitzpatrick_scale: false,
    category: "flags"
  },
  lithuania: {
    keywords: [ "lt", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf1\ud83c\uddf9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  luxembourg: {
    keywords: [ "lu", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf1\ud83c\uddfa",
    fitzpatrick_scale: false,
    category: "flags"
  },
  macau: {
    keywords: [ "macao", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddf4",
    fitzpatrick_scale: false,
    category: "flags"
  },
  macedonia: {
    keywords: [ "macedonia,", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddf0",
    fitzpatrick_scale: false,
    category: "flags"
  },
  madagascar: {
    keywords: [ "mg", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddec",
    fitzpatrick_scale: false,
    category: "flags"
  },
  malawi: {
    keywords: [ "mw", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddfc",
    fitzpatrick_scale: false,
    category: "flags"
  },
  malaysia: {
    keywords: [ "my", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddfe",
    fitzpatrick_scale: false,
    category: "flags"
  },
  maldives: {
    keywords: [ "mv", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddfb",
    fitzpatrick_scale: false,
    category: "flags"
  },
  mali: {
    keywords: [ "ml", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddf1",
    fitzpatrick_scale: false,
    category: "flags"
  },
  malta: {
    keywords: [ "mt", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddf9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  marshall_islands: {
    keywords: [ "marshall", "islands", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\udded",
    fitzpatrick_scale: false,
    category: "flags"
  },
  martinique: {
    keywords: [ "mq", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddf6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  mauritania: {
    keywords: [ "mr", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  mauritius: {
    keywords: [ "mu", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddfa",
    fitzpatrick_scale: false,
    category: "flags"
  },
  mayotte: {
    keywords: [ "yt", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfe\ud83c\uddf9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  mexico: {
    keywords: [ "mx", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddfd",
    fitzpatrick_scale: false,
    category: "flags"
  },
  micronesia: {
    keywords: [ "micronesia,", "federated", "states", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddeb\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  moldova: {
    keywords: [ "moldova,", "republic", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\udde9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  monaco: {
    keywords: [ "mc", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\udde8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  mongolia: {
    keywords: [ "mn", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddf3",
    fitzpatrick_scale: false,
    category: "flags"
  },
  montenegro: {
    keywords: [ "me", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  montserrat: {
    keywords: [ "ms", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddf8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  morocco: {
    keywords: [ "ma", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\udde6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  mozambique: {
    keywords: [ "mz", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddff",
    fitzpatrick_scale: false,
    category: "flags"
  },
  myanmar: {
    keywords: [ "mm", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  namibia: {
    keywords: [ "na", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf3\ud83c\udde6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  nauru: {
    keywords: [ "nr", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf3\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  nepal: {
    keywords: [ "np", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf3\ud83c\uddf5",
    fitzpatrick_scale: false,
    category: "flags"
  },
  netherlands: {
    keywords: [ "nl", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf3\ud83c\uddf1",
    fitzpatrick_scale: false,
    category: "flags"
  },
  new_caledonia: {
    keywords: [ "new", "caledonia", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf3\ud83c\udde8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  new_zealand: {
    keywords: [ "new", "zealand", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf3\ud83c\uddff",
    fitzpatrick_scale: false,
    category: "flags"
  },
  nicaragua: {
    keywords: [ "ni", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf3\ud83c\uddee",
    fitzpatrick_scale: false,
    category: "flags"
  },
  niger: {
    keywords: [ "ne", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf3\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  nigeria: {
    keywords: [ "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf3\ud83c\uddec",
    fitzpatrick_scale: false,
    category: "flags"
  },
  niue: {
    keywords: [ "nu", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf3\ud83c\uddfa",
    fitzpatrick_scale: false,
    category: "flags"
  },
  norfolk_island: {
    keywords: [ "norfolk", "island", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf3\ud83c\uddeb",
    fitzpatrick_scale: false,
    category: "flags"
  },
  northern_mariana_islands: {
    keywords: [ "northern", "mariana", "islands", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf2\ud83c\uddf5",
    fitzpatrick_scale: false,
    category: "flags"
  },
  north_korea: {
    keywords: [ "north", "korea", "nation", "flag", "country", "banner" ],
    char: "\ud83c\uddf0\ud83c\uddf5",
    fitzpatrick_scale: false,
    category: "flags"
  },
  norway: {
    keywords: [ "no", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf3\ud83c\uddf4",
    fitzpatrick_scale: false,
    category: "flags"
  },
  oman: {
    keywords: [ "om_symbol", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf4\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  pakistan: {
    keywords: [ "pk", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\uddf0",
    fitzpatrick_scale: false,
    category: "flags"
  },
  palau: {
    keywords: [ "pw", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\uddfc",
    fitzpatrick_scale: false,
    category: "flags"
  },
  palestinian_territories: {
    keywords: [ "palestine", "palestinian", "territories", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\uddf8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  panama: {
    keywords: [ "pa", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\udde6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  papua_new_guinea: {
    keywords: [ "papua", "new", "guinea", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\uddec",
    fitzpatrick_scale: false,
    category: "flags"
  },
  paraguay: {
    keywords: [ "py", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\uddfe",
    fitzpatrick_scale: false,
    category: "flags"
  },
  peru: {
    keywords: [ "pe", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  philippines: {
    keywords: [ "ph", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\udded",
    fitzpatrick_scale: false,
    category: "flags"
  },
  pitcairn_islands: {
    keywords: [ "pitcairn", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\uddf3",
    fitzpatrick_scale: false,
    category: "flags"
  },
  poland: {
    keywords: [ "pl", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\uddf1",
    fitzpatrick_scale: false,
    category: "flags"
  },
  portugal: {
    keywords: [ "pt", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\uddf9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  puerto_rico: {
    keywords: [ "puerto", "rico", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  qatar: {
    keywords: [ "qa", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf6\ud83c\udde6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  reunion: {
    keywords: [ "r\xe9union", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf7\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  romania: {
    keywords: [ "ro", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf7\ud83c\uddf4",
    fitzpatrick_scale: false,
    category: "flags"
  },
  ru: {
    keywords: [ "russian", "federation", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf7\ud83c\uddfa",
    fitzpatrick_scale: false,
    category: "flags"
  },
  rwanda: {
    keywords: [ "rw", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf7\ud83c\uddfc",
    fitzpatrick_scale: false,
    category: "flags"
  },
  st_barthelemy: {
    keywords: [ "saint", "barth\xe9lemy", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde7\ud83c\uddf1",
    fitzpatrick_scale: false,
    category: "flags"
  },
  st_helena: {
    keywords: [ "saint", "helena", "ascension", "tristan", "cunha", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\udded",
    fitzpatrick_scale: false,
    category: "flags"
  },
  st_kitts_nevis: {
    keywords: [ "saint", "kitts", "nevis", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf0\ud83c\uddf3",
    fitzpatrick_scale: false,
    category: "flags"
  },
  st_lucia: {
    keywords: [ "saint", "lucia", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf1\ud83c\udde8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  st_pierre_miquelon: {
    keywords: [ "saint", "pierre", "miquelon", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf5\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  st_vincent_grenadines: {
    keywords: [ "saint", "vincent", "grenadines", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfb\ud83c\udde8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  samoa: {
    keywords: [ "ws", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfc\ud83c\uddf8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  san_marino: {
    keywords: [ "san", "marino", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  sao_tome_principe: {
    keywords: [ "sao", "tome", "principe", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddf9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  saudi_arabia: {
    keywords: [ "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\udde6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  senegal: {
    keywords: [ "sn", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddf3",
    fitzpatrick_scale: false,
    category: "flags"
  },
  serbia: {
    keywords: [ "rs", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf7\ud83c\uddf8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  seychelles: {
    keywords: [ "sc", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\udde8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  sierra_leone: {
    keywords: [ "sierra", "leone", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddf1",
    fitzpatrick_scale: false,
    category: "flags"
  },
  singapore: {
    keywords: [ "sg", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddec",
    fitzpatrick_scale: false,
    category: "flags"
  },
  sint_maarten: {
    keywords: [ "sint", "maarten", "dutch", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddfd",
    fitzpatrick_scale: false,
    category: "flags"
  },
  slovakia: {
    keywords: [ "sk", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddf0",
    fitzpatrick_scale: false,
    category: "flags"
  },
  slovenia: {
    keywords: [ "si", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddee",
    fitzpatrick_scale: false,
    category: "flags"
  },
  solomon_islands: {
    keywords: [ "solomon", "islands", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\udde7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  somalia: {
    keywords: [ "so", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddf4",
    fitzpatrick_scale: false,
    category: "flags"
  },
  south_africa: {
    keywords: [ "south", "africa", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddff\ud83c\udde6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  south_georgia_south_sandwich_islands: {
    keywords: [ "south", "georgia", "sandwich", "islands", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddec\ud83c\uddf8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  kr: {
    keywords: [ "south", "korea", "nation", "flag", "country", "banner" ],
    char: "\ud83c\uddf0\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  south_sudan: {
    keywords: [ "south", "sd", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddf8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  es: {
    keywords: [ "spain", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddea\ud83c\uddf8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  sri_lanka: {
    keywords: [ "sri", "lanka", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf1\ud83c\uddf0",
    fitzpatrick_scale: false,
    category: "flags"
  },
  sudan: {
    keywords: [ "sd", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\udde9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  suriname: {
    keywords: [ "sr", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  swaziland: {
    keywords: [ "sz", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddff",
    fitzpatrick_scale: false,
    category: "flags"
  },
  sweden: {
    keywords: [ "se", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  switzerland: {
    keywords: [ "ch", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde8\ud83c\udded",
    fitzpatrick_scale: false,
    category: "flags"
  },
  syria: {
    keywords: [ "syrian", "arab", "republic", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf8\ud83c\uddfe",
    fitzpatrick_scale: false,
    category: "flags"
  },
  taiwan: {
    keywords: [ "tw", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\uddfc",
    fitzpatrick_scale: false,
    category: "flags"
  },
  tajikistan: {
    keywords: [ "tj", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\uddef",
    fitzpatrick_scale: false,
    category: "flags"
  },
  tanzania: {
    keywords: [ "tanzania,", "united", "republic", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\uddff",
    fitzpatrick_scale: false,
    category: "flags"
  },
  thailand: {
    keywords: [ "th", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\udded",
    fitzpatrick_scale: false,
    category: "flags"
  },
  timor_leste: {
    keywords: [ "timor", "leste", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\uddf1",
    fitzpatrick_scale: false,
    category: "flags"
  },
  togo: {
    keywords: [ "tg", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\uddec",
    fitzpatrick_scale: false,
    category: "flags"
  },
  tokelau: {
    keywords: [ "tk", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\uddf0",
    fitzpatrick_scale: false,
    category: "flags"
  },
  tonga: {
    keywords: [ "to", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\uddf4",
    fitzpatrick_scale: false,
    category: "flags"
  },
  trinidad_tobago: {
    keywords: [ "trinidad", "tobago", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\uddf9",
    fitzpatrick_scale: false,
    category: "flags"
  },
  tunisia: {
    keywords: [ "tn", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\uddf3",
    fitzpatrick_scale: false,
    category: "flags"
  },
  tr: {
    keywords: [ "turkey", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\uddf7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  turkmenistan: {
    keywords: [ "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  turks_caicos_islands: {
    keywords: [ "turks", "caicos", "islands", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\udde8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  tuvalu: {
    keywords: [ "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddf9\ud83c\uddfb",
    fitzpatrick_scale: false,
    category: "flags"
  },
  uganda: {
    keywords: [ "ug", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfa\ud83c\uddec",
    fitzpatrick_scale: false,
    category: "flags"
  },
  ukraine: {
    keywords: [ "ua", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfa\ud83c\udde6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  united_arab_emirates: {
    keywords: [ "united", "arab", "emirates", "flag", "nation", "country", "banner" ],
    char: "\ud83c\udde6\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  uk: {
    keywords: [ "united", "kingdom", "great", "britain", "northern", "ireland", "flag", "nation", "country", "banner", "british", "UK", "english", "england", "union jack" ],
    char: "\ud83c\uddec\ud83c\udde7",
    fitzpatrick_scale: false,
    category: "flags"
  },
  england: {
    keywords: [ "flag", "english" ],
    char: "\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f",
    fitzpatrick_scale: false,
    category: "flags"
  },
  scotland: {
    keywords: [ "flag", "scottish" ],
    char: "\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f",
    fitzpatrick_scale: false,
    category: "flags"
  },
  wales: {
    keywords: [ "flag", "welsh" ],
    char: "\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f",
    fitzpatrick_scale: false,
    category: "flags"
  },
  us: {
    keywords: [ "united", "states", "america", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfa\ud83c\uddf8",
    fitzpatrick_scale: false,
    category: "flags"
  },
  us_virgin_islands: {
    keywords: [ "virgin", "islands", "us", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfb\ud83c\uddee",
    fitzpatrick_scale: false,
    category: "flags"
  },
  uruguay: {
    keywords: [ "uy", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfa\ud83c\uddfe",
    fitzpatrick_scale: false,
    category: "flags"
  },
  uzbekistan: {
    keywords: [ "uz", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfa\ud83c\uddff",
    fitzpatrick_scale: false,
    category: "flags"
  },
  vanuatu: {
    keywords: [ "vu", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfb\ud83c\uddfa",
    fitzpatrick_scale: false,
    category: "flags"
  },
  vatican_city: {
    keywords: [ "vatican", "city", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfb\ud83c\udde6",
    fitzpatrick_scale: false,
    category: "flags"
  },
  venezuela: {
    keywords: [ "ve", "bolivarian", "republic", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfb\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  vietnam: {
    keywords: [ "viet", "nam", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfb\ud83c\uddf3",
    fitzpatrick_scale: false,
    category: "flags"
  },
  wallis_futuna: {
    keywords: [ "wallis", "futuna", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfc\ud83c\uddeb",
    fitzpatrick_scale: false,
    category: "flags"
  },
  western_sahara: {
    keywords: [ "western", "sahara", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddea\ud83c\udded",
    fitzpatrick_scale: false,
    category: "flags"
  },
  yemen: {
    keywords: [ "ye", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddfe\ud83c\uddea",
    fitzpatrick_scale: false,
    category: "flags"
  },
  zambia: {
    keywords: [ "zm", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddff\ud83c\uddf2",
    fitzpatrick_scale: false,
    category: "flags"
  },
  zimbabwe: {
    keywords: [ "zw", "flag", "nation", "country", "banner" ],
    char: "\ud83c\uddff\ud83c\uddfc",
    fitzpatrick_scale: false,
    category: "flags"
  },
  united_nations: {
    keywords: [ "un", "flag", "banner" ],
    char: "\ud83c\uddfa\ud83c\uddf3",
    fitzpatrick_scale: false,
    category: "flags"
  },
  pirate_flag: {
    keywords: [ "skull", "crossbones", "flag", "banner" ],
    char: "\ud83c\udff4\u200d\u2620\ufe0f",
    fitzpatrick_scale: false,
    category: "flags"
  }
});

================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/skins/ui/dark/content.css
================================================
/**
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
* Licensed under the LGPL or a commercial license.
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*/
.mce-content-body .mce-item-anchor {
  background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
  cursor: default;
  display: inline-block;
  height: 12px !important;
  padding: 0 2px;
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  -webkit-user-select: all;
  -ms-user-select: all;
      user-select: all;
  width: 8px !important;
}
.mce-content-body .mce-item-anchor[data-mce-selected] {
  outline-offset: 1px;
}
.tox-comments-visible .tox-comment {
  background-color: #fff0b7;
}
.tox-comments-visible .tox-comment--active {
  background-color: #ffe168;
}
.tox-checklist > li:not(.tox-checklist--hidden) {
  list-style: none;
  margin: 0.25em 0;
}
.tox-checklist > li:not(.tox-checklist--hidden)::before {
  content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
  cursor: pointer;
  height: 1em;
  margin-left: -1.5em;
  margin-top: 0.125em;
  position: absolute;
  width: 1em;
}
.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before {
  content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
}
[dir=rtl] .tox-checklist > li:not(.tox-checklist--hidden)::before {
  margin-left: 0;
  margin-right: -1.5em;
}
/* stylelint-disable */
/* http://prismjs.com/ */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */
code[class*="language-"],
pre[class*="language-"] {
  color: black;
  background: none;
  text-shadow: 0 1px white;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  font-size: 1em;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
  text-shadow: none;
  background: #b3d4fc;
}
@media print {
  code[class*="language-"],
  pre[class*="language-"] {
    text-shadow: none;
  }
}
/* Code blocks */
pre[class*="language-"] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: #f5f2f0;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
  padding: 0.1em;
  border-radius: 0.3em;
  white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: slategray;
}
.token.punctuation {
  color: #999;
}
.namespace {
  opacity: 0.7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #9a6e3a;
  background: hsla(0, 0%, 100%, 0.5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
  color: #07a;
}
.token.function,
.token.class-name {
  color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
  color: #e90;
}
.token.important,
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}
.token.entity {
  cursor: help;
}
/* stylelint-enable */
.mce-content-body {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.mce-content-body .mce-visual-caret {
  background-color: black;
  background-color: currentColor;
  position: absolute;
}
.mce-content-body .mce-visual-caret-hidden {
  display: none;
}
.mce-content-body *[data-mce-caret] {
  left: -1000px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: auto;
  top: 0;
}
.mce-content-body .mce-offscreen-selection {
  left: -2000000px;
  max-width: 1000000px;
  position: absolute;
}
.mce-content-body *[contentEditable=false] {
  cursor: default;
}
.mce-content-body *[contentEditable=true] {
  cursor: text;
}
.tox-cursor-format-painter {
  cursor: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"), default;
}
.mce-content-body figure.align-left {
  float: left;
}
.mce-content-body figure.align-right {
  float: right;
}
.mce-content-body figure.image.align-center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.mce-preview-object {
  border: 1px solid gray;
  display: inline-block;
  line-height: 0;
  margin: 0 2px 0 2px;
  position: relative;
}
.mce-preview-object .mce-shim {
  background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.mce-preview-object[data-mce-selected="2"] .mce-shim {
  display: none;
}
.mce-object {
  background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
  border: 1px dashed #aaa;
}
.mce-pagebreak {
  border: 1px dashed #aaa;
  cursor: default;
  display: block;
  height: 5px;
  margin-top: 15px;
  page-break-before: always;
  width: 100%;
}
@media print {
  .mce-pagebreak {
    border: 0;
  }
}
.tiny-pageembed .mce-shim {
  background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.tiny-pageembed[data-mce-selected="2"] .mce-shim {
  display: none;
}
.tiny-pageembed {
  display: inline-block;
  position: relative;
}
.tiny-pageembed--21by9,
.tiny-pageembed--16by9,
.tiny-pageembed--4by3,
.tiny-pageembed--1by1 {
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.tiny-pageembed--21by9 {
  padding-top: 42.857143%;
}
.tiny-pageembed--16by9 {
  padding-top: 56.25%;
}
.tiny-pageembed--4by3 {
  padding-top: 75%;
}
.tiny-pageembed--1by1 {
  padding-top: 100%;
}
.tiny-pageembed--21by9 iframe,
.tiny-pageembed--16by9 iframe,
.tiny-pageembed--4by3 iframe,
.tiny-pageembed--1by1 iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.mce-content-body[data-mce-placeholder] {
  position: relative;
}
.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before {
  color: rgba(205, 205, 205, 0.5);
  content: attr(data-mce-placeholder);
  position: absolute;
}
.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before {
  left: 1px;
}
.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before {
  right: 1px;
}
.mce-content-body div.mce-resizehandle {
  background-color: #4099ff;
  border-color: #4099ff;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  height: 10px;
  position: absolute;
  width: 10px;
  z-index: 1298;
}
.mce-content-body div.mce-resizehandle:hover {
  background-color: #4099ff;
}
.mce-content-body div.mce-resizehandle:nth-of-type(1) {
  cursor: nwse-resize;
}
.mce-content-body div.mce-resizehandle:nth-of-type(2) {
  cursor: nesw-resize;
}
.mce-content-body div.mce-resizehandle:nth-of-type(3) {
  cursor: nwse-resize;
}
.mce-content-body div.mce-resizehandle:nth-of-type(4) {
  cursor: nesw-resize;
}
.mce-content-body .mce-resize-backdrop {
  z-index: 10000;
}
.mce-content-body .mce-clonedresizable {
  cursor: default;
  opacity: 0.5;
  outline: 1px dashed black;
  position: absolute;
  z-index: 10001;
}
.mce-content-body .mce-clonedresizable.mce-resizetable-columns th,
.mce-content-body .mce-clonedresizable.mce-resizetable-columns td {
  border: 0;
}
.mce-content-body .mce-resize-helper {
  background: #555;
  background: rgba(0, 0, 0, 0.75);
  border: 1px;
  border-radius: 3px;
  color: white;
  display: none;
  font-family: sans-serif;
  font-size: 12px;
  line-height: 14px;
  margin: 5px 10px;
  padding: 5px;
  position: absolute;
  white-space: nowrap;
  z-index: 10002;
}
.tox-rtc-user-selection {
  position: relative;
}
.tox-rtc-user-cursor {
  bottom: 0;
  cursor: default;
  position: absolute;
  top: 0;
  width: 2px;
}
.tox-rtc-user-cursor::before {
  background-color: inherit;
  border-radius: 50%;
  content: '';
  display: block;
  height: 8px;
  position: absolute;
  right: -3px;
  top: -3px;
  width: 8px;
}
.tox-rtc-user-cursor:hover::after {
  background-color: inherit;
  border-radius: 100px;
  box-sizing: border-box;
  color: #fff;
  content: attr(data-user);
  display: block;
  font-size: 12px;
  font-weight: bold;
  left: -5px;
  min-height: 8px;
  min-width: 8px;
  padding: 0 12px;
  position: absolute;
  top: -11px;
  white-space: nowrap;
  z-index: 1000;
}
.tox-rtc-user-selection--1 .tox-rtc-user-cursor {
  background-color: #2dc26b;
}
.tox-rtc-user-selection--2 .tox-rtc-user-cursor {
  background-color: #e03e2d;
}
.tox-rtc-user-selection--3 .tox-rtc-user-cursor {
  background-color: #f1c40f;
}
.tox-rtc-user-selection--4 .tox-rtc-user-cursor {
  background-color: #3598db;
}
.tox-rtc-user-selection--5 .tox-rtc-user-cursor {
  background-color: #b96ad9;
}
.tox-rtc-user-selection--6 .tox-rtc-user-cursor {
  background-color: #e67e23;
}
.tox-rtc-user-selection--7 .tox-rtc-user-cursor {
  background-color: #aaa69d;
}
.tox-rtc-user-selection--8 .tox-rtc-user-cursor {
  background-color: #f368e0;
}
.tox-rtc-remote-image {
  background: #eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;
  border: 1px solid #ccc;
  min-height: 240px;
  min-width: 320px;
}
.mce-match-marker {
  background: #aaa;
  color: #fff;
}
.mce-match-marker-selected {
  background: #39f;
  color: #fff;
}
.mce-match-marker-selected::selection {
  background: #39f;
  color: #fff;
}
.mce-content-body img[data-mce-selected],
.mce-content-body video[data-mce-selected],
.mce-content-body audio[data-mce-selected],
.mce-content-body object[data-mce-selected],
.mce-content-body embed[data-mce-selected],
.mce-content-body table[data-mce-selected] {
  outline: 3px solid #b4d7ff;
}
.mce-content-body hr[data-mce-selected] {
  outline: 3px solid #b4d7ff;
  outline-offset: 1px;
}
.mce-content-body *[contentEditable=false] *[contentEditable=true]:focus {
  outline: 3px solid #b4d7ff;
}
.mce-content-body *[contentEditable=false] *[contentEditable=true]:hover {
  outline: 3px solid #b4d7ff;
}
.mce-content-body *[contentEditable=false][data-mce-selected] {
  cursor: not-allowed;
  outline: 3px solid #b4d7ff;
}
.mce-content-body.mce-content-readonly *[contentEditable=true]:focus,
.mce-content-body.mce-content-readonly *[contentEditable=true]:hover {
  outline: none;
}
.mce-content-body *[data-mce-selected="inline-boundary"] {
  background-color: #b4d7ff;
}
.mce-content-body .mce-edit-focus {
  outline: 3px solid #b4d7ff;
}
.mce-content-body td[data-mce-selected],
.mce-content-body th[data-mce-selected] {
  position: relative;
}
.mce-content-body td[data-mce-selected]::selection,
.mce-content-body th[data-mce-selected]::selection {
  background: none;
}
.mce-content-body td[data-mce-selected] *,
.mce-content-body th[data-mce-selected] * {
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.mce-content-body td[data-mce-selected]::after,
.mce-content-body th[data-mce-selected]::after {
  background-color: rgba(180, 215, 255, 0.7);
  border: 1px solid rgba(180, 215, 255, 0.7);
  bottom: -1px;
  content: '';
  left: -1px;
  mix-blend-mode: multiply;
  position: absolute;
  right: -1px;
  top: -1px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .mce-content-body td[data-mce-selected]::after,
  .mce-content-body th[data-mce-selected]::after {
    border-color: rgba(0, 84, 180, 0.7);
  }
}
.mce-content-body img::selection {
  background: none;
}
.ephox-snooker-resizer-bar {
  background-color: #b4d7ff;
  opacity: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ephox-snooker-resizer-cols {
  cursor: col-resize;
}
.ephox-snooker-resizer-rows {
  cursor: row-resize;
}
.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging {
  opacity: 1;
}
.mce-spellchecker-word {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
  background-position: 0 calc(100% + 1px);
  background-repeat: repeat-x;
  background-size: auto 6px;
  cursor: default;
  height: 2rem;
}
.mce-spellchecker-grammar {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
  background-position: 0 calc(100% + 1px);
  background-repeat: repeat-x;
  background-size: auto 6px;
  cursor: default;
}
.mce-toc {
  border: 1px solid gray;
}
.mce-toc h2 {
  margin: 4px;
}
.mce-toc li {
  list-style-type: none;
}
table[style*="border-width: 0px"],
.mce-item-table:not([border]),
.mce-item-table[border="0"],
table[style*="border-width: 0px"] td,
.mce-item-table:not([border]) td,
.mce-item-table[border="0"] td,
table[style*="border-width: 0px"] th,
.mce-item-table:not([border]) th,
.mce-item-table[border="0"] th,
table[style*="border-width: 0px"] caption,
.mce-item-table:not([border]) caption,
.mce-item-table[border="0"] caption {
  border: 1px dashed #bbb;
}
.mce-visualblocks p,
.mce-visualblocks h1,
.mce-visualblocks h2,
.mce-visualblocks h3,
.mce-visualblocks h4,
.mce-visualblocks h5,
.mce-visualblocks h6,
.mce-visualblocks div:not([data-mce-bogus]),
.mce-visualblocks section,
.mce-visualblocks article,
.mce-visualblocks blockquote,
.mce-visualblocks address,
.mce-visualblocks pre,
.mce-visualblocks figure,
.mce-visualblocks figcaption,
.mce-visualblocks hgroup,
.mce-visualblocks aside,
.mce-visualblocks ul,
.mce-visualblocks ol,
.mce-visualblocks dl {
  background-repeat: no-repeat;
  border: 1px dashed #bbb;
  margin-left: 3px;
  padding-top: 10px;
}
.mce-visualblocks p {
  background-image: url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7);
}
.mce-visualblocks h1 {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==);
}
.mce-visualblocks h2 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==);
}
.mce-visualblocks h3 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7);
}
.mce-visualblocks h4 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==);
}
.mce-visualblocks h5 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==);
}
.mce-visualblocks h6 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==);
}
.mce-visualblocks div:not([data-mce-bogus]) {
  background-image: url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7);
}
.mce-visualblocks section {
  background-image: url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=);
}
.mce-visualblocks article {
  background-image: url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7);
}
.mce-visualblocks blockquote {
  background-image: url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7);
}
.mce-visualblocks address {
  background-image: url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=);
}
.mce-visualblocks pre {
  background-image: url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==);
}
.mce-visualblocks figure {
  background-image: url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7);
}
.mce-visualblocks figcaption {
  border: 1px dashed #bbb;
}
.mce-visualblocks hgroup {
  background-image: url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7);
}
.mce-visualblocks aside {
  background-image: url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=);
}
.mce-visualblocks ul {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==);
}
.mce-visualblocks ol {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==);
}
.mce-visualblocks dl {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==);
}
.mce-visualblocks:not([dir=rtl]) p,
.mce-visualblocks:not([dir=rtl]) h1,
.mce-visualblocks:not([dir=rtl]) h2,
.mce-visualblocks:not([dir=rtl]) h3,
.mce-visualblocks:not([dir=rtl]) h4,
.mce-visualblocks:not([dir=rtl]) h5,
.mce-visualblocks:not([dir=rtl]) h6,
.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),
.mce-visualblocks:not([dir=rtl]) section,
.mce-visualblocks:not([dir=rtl]) article,
.mce-visualblocks:not([dir=rtl]) blockquote,
.mce-visualblocks:not([dir=rtl]) address,
.mce-visualblocks:not([dir=rtl]) pre,
.mce-visualblocks:not([dir=rtl]) figure,
.mce-visualblocks:not([dir=rtl]) figcaption,
.mce-visualblocks:not([dir=rtl]) hgroup,
.mce-visualblocks:not([dir=rtl]) aside,
.mce-visualblocks:not([dir=rtl]) ul,
.mce-visualblocks:not([dir=rtl]) ol,
.mce-visualblocks:not([dir=rtl]) dl {
  margin-left: 3px;
}
.mce-visualblocks[dir=rtl] p,
.mce-visualblocks[dir=rtl] h1,
.mce-visualblocks[dir=rtl] h2,
.mce-visualblocks[dir=rtl] h3,
.mce-visualblocks[dir=rtl] h4,
.mce-visualblocks[dir=rtl] h5,
.mce-visualblocks[dir=rtl] h6,
.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),
.mce-visualblocks[dir=rtl] section,
.mce-visualblocks[dir=rtl] article,
.mce-visualblocks[dir=rtl] blockquote,
.mce-visualblocks[dir=rtl] address,
.mce-visualblocks[dir=rtl] pre,
.mce-visualblocks[dir=rtl] figure,
.mce-visualblocks[dir=rtl] figcaption,
.mce-visualblocks[dir=rtl] hgroup,
.mce-visualblocks[dir=rtl] aside,
.mce-visualblocks[dir=rtl] ul,
.mce-visualblocks[dir=rtl] ol,
.mce-visualblocks[dir=rtl] dl {
  background-position-x: right;
  margin-right: 3px;
}
.mce-nbsp,
.mce-shy {
  background: #aaa;
}
.mce-shy::after {
  content: '-';
}
body {
  font-family: sans-serif;
}
table {
  border-collapse: collapse;
}


================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/skins/ui/dark/content.inline.css
================================================
/**
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
* Licensed under the LGPL or a commercial license.
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*/
.mce-content-body .mce-item-anchor {
  background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
  cursor: default;
  display: inline-block;
  height: 12px !important;
  padding: 0 2px;
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  -webkit-user-select: all;
  -ms-user-select: all;
      user-select: all;
  width: 8px !important;
}
.mce-content-body .mce-item-anchor[data-mce-selected] {
  outline-offset: 1px;
}
.tox-comments-visible .tox-comment {
  background-color: #fff0b7;
}
.tox-comments-visible .tox-comment--active {
  background-color: #ffe168;
}
.tox-checklist > li:not(.tox-checklist--hidden) {
  list-style: none;
  margin: 0.25em 0;
}
.tox-checklist > li:not(.tox-checklist--hidden)::before {
  content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
  cursor: pointer;
  height: 1em;
  margin-left: -1.5em;
  margin-top: 0.125em;
  position: absolute;
  width: 1em;
}
.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before {
  content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
}
[dir=rtl] .tox-checklist > li:not(.tox-checklist--hidden)::before {
  margin-left: 0;
  margin-right: -1.5em;
}
/* stylelint-disable */
/* http://prismjs.com/ */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */
code[class*="language-"],
pre[class*="language-"] {
  color: black;
  background: none;
  text-shadow: 0 1px white;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  font-size: 1em;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
  text-shadow: none;
  background: #b3d4fc;
}
@media print {
  code[class*="language-"],
  pre[class*="language-"] {
    text-shadow: none;
  }
}
/* Code blocks */
pre[class*="language-"] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: #f5f2f0;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
  padding: 0.1em;
  border-radius: 0.3em;
  white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: slategray;
}
.token.punctuation {
  color: #999;
}
.namespace {
  opacity: 0.7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #9a6e3a;
  background: hsla(0, 0%, 100%, 0.5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
  color: #07a;
}
.token.function,
.token.class-name {
  color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
  color: #e90;
}
.token.important,
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}
.token.entity {
  cursor: help;
}
/* stylelint-enable */
.mce-content-body {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.mce-content-body .mce-visual-caret {
  background-color: black;
  background-color: currentColor;
  position: absolute;
}
.mce-content-body .mce-visual-caret-hidden {
  display: none;
}
.mce-content-body *[data-mce-caret] {
  left: -1000px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: auto;
  top: 0;
}
.mce-content-body .mce-offscreen-selection {
  left: -2000000px;
  max-width: 1000000px;
  position: absolute;
}
.mce-content-body *[contentEditable=false] {
  cursor: default;
}
.mce-content-body *[contentEditable=true] {
  cursor: text;
}
.tox-cursor-format-painter {
  cursor: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"), default;
}
.mce-content-body figure.align-left {
  float: left;
}
.mce-content-body figure.align-right {
  float: right;
}
.mce-content-body figure.image.align-center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.mce-preview-object {
  border: 1px solid gray;
  display: inline-block;
  line-height: 0;
  margin: 0 2px 0 2px;
  position: relative;
}
.mce-preview-object .mce-shim {
  background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.mce-preview-object[data-mce-selected="2"] .mce-shim {
  display: none;
}
.mce-object {
  background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
  border: 1px dashed #aaa;
}
.mce-pagebreak {
  border: 1px dashed #aaa;
  cursor: default;
  display: block;
  height: 5px;
  margin-top: 15px;
  page-break-before: always;
  width: 100%;
}
@media print {
  .mce-pagebreak {
    border: 0;
  }
}
.tiny-pageembed .mce-shim {
  background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.tiny-pageembed[data-mce-selected="2"] .mce-shim {
  display: none;
}
.tiny-pageembed {
  display: inline-block;
  position: relative;
}
.tiny-pageembed--21by9,
.tiny-pageembed--16by9,
.tiny-pageembed--4by3,
.tiny-pageembed--1by1 {
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.tiny-pageembed--21by9 {
  padding-top: 42.857143%;
}
.tiny-pageembed--16by9 {
  padding-top: 56.25%;
}
.tiny-pageembed--4by3 {
  padding-top: 75%;
}
.tiny-pageembed--1by1 {
  padding-top: 100%;
}
.tiny-pageembed--21by9 iframe,
.tiny-pageembed--16by9 iframe,
.tiny-pageembed--4by3 iframe,
.tiny-pageembed--1by1 iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.mce-content-body[data-mce-placeholder] {
  position: relative;
}
.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before {
  color: rgba(205, 205, 205, 0.5);
  content: attr(data-mce-placeholder);
  position: absolute;
}
.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before {
  left: 1px;
}
.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before {
  right: 1px;
}
.mce-content-body div.mce-resizehandle {
  background-color: #4099ff;
  border-color: #4099ff;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  height: 10px;
  position: absolute;
  width: 10px;
  z-index: 1298;
}
.mce-content-body div.mce-resizehandle:hover {
  background-color: #4099ff;
}
.mce-content-body div.mce-resizehandle:nth-of-type(1) {
  cursor: nwse-resize;
}
.mce-content-body div.mce-resizehandle:nth-of-type(2) {
  cursor: nesw-resize;
}
.mce-content-body div.mce-resizehandle:nth-of-type(3) {
  cursor: nwse-resize;
}
.mce-content-body div.mce-resizehandle:nth-of-type(4) {
  cursor: nesw-resize;
}
.mce-content-body .mce-resize-backdrop {
  z-index: 10000;
}
.mce-content-body .mce-clonedresizable {
  cursor: default;
  opacity: 0.5;
  outline: 1px dashed black;
  position: absolute;
  z-index: 10001;
}
.mce-content-body .mce-clonedresizable.mce-resizetable-columns th,
.mce-content-body .mce-clonedresizable.mce-resizetable-columns td {
  border: 0;
}
.mce-content-body .mce-resize-helper {
  background: #555;
  background: rgba(0, 0, 0, 0.75);
  border: 1px;
  border-radius: 3px;
  color: white;
  display: none;
  font-family: sans-serif;
  font-size: 12px;
  line-height: 14px;
  margin: 5px 10px;
  padding: 5px;
  position: absolute;
  white-space: nowrap;
  z-index: 10002;
}
.tox-rtc-user-selection {
  position: relative;
}
.tox-rtc-user-cursor {
  bottom: 0;
  cursor: default;
  position: absolute;
  top: 0;
  width: 2px;
}
.tox-rtc-user-cursor::before {
  background-color: inherit;
  border-radius: 50%;
  content: '';
  display: block;
  height: 8px;
  position: absolute;
  right: -3px;
  top: -3px;
  width: 8px;
}
.tox-rtc-user-cursor:hover::after {
  background-color: inherit;
  border-radius: 100px;
  box-sizing: border-box;
  color: #fff;
  content: attr(data-user);
  display: block;
  font-size: 12px;
  font-weight: bold;
  left: -5px;
  min-height: 8px;
  min-width: 8px;
  padding: 0 12px;
  position: absolute;
  top: -11px;
  white-space: nowrap;
  z-index: 1000;
}
.tox-rtc-user-selection--1 .tox-rtc-user-cursor {
  background-color: #2dc26b;
}
.tox-rtc-user-selection--2 .tox-rtc-user-cursor {
  background-color: #e03e2d;
}
.tox-rtc-user-selection--3 .tox-rtc-user-cursor {
  background-color: #f1c40f;
}
.tox-rtc-user-selection--4 .tox-rtc-user-cursor {
  background-color: #3598db;
}
.tox-rtc-user-selection--5 .tox-rtc-user-cursor {
  background-color: #b96ad9;
}
.tox-rtc-user-selection--6 .tox-rtc-user-cursor {
  background-color: #e67e23;
}
.tox-rtc-user-selection--7 .tox-rtc-user-cursor {
  background-color: #aaa69d;
}
.tox-rtc-user-selection--8 .tox-rtc-user-cursor {
  background-color: #f368e0;
}
.tox-rtc-remote-image {
  background: #eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;
  border: 1px solid #ccc;
  min-height: 240px;
  min-width: 320px;
}
.mce-match-marker {
  background: #aaa;
  color: #fff;
}
.mce-match-marker-selected {
  background: #39f;
  color: #fff;
}
.mce-match-marker-selected::selection {
  background: #39f;
  color: #fff;
}
.mce-content-body img[data-mce-selected],
.mce-content-body video[data-mce-selected],
.mce-content-body audio[data-mce-selected],
.mce-content-body object[data-mce-selected],
.mce-content-body embed[data-mce-selected],
.mce-content-body table[data-mce-selected] {
  outline: 3px solid #b4d7ff;
}
.mce-content-body hr[data-mce-selected] {
  outline: 3px solid #b4d7ff;
  outline-offset: 1px;
}
.mce-content-body *[contentEditable=false] *[contentEditable=true]:focus {
  outline: 3px solid #b4d7ff;
}
.mce-content-body *[contentEditable=false] *[contentEditable=true]:hover {
  outline: 3px solid #b4d7ff;
}
.mce-content-body *[contentEditable=false][data-mce-selected] {
  cursor: not-allowed;
  outline: 3px solid #b4d7ff;
}
.mce-content-body.mce-content-readonly *[contentEditable=true]:focus,
.mce-content-body.mce-content-readonly *[contentEditable=true]:hover {
  outline: none;
}
.mce-content-body *[data-mce-selected="inline-boundary"] {
  background-color: #b4d7ff;
}
.mce-content-body .mce-edit-focus {
  outline: 3px solid #b4d7ff;
}
.mce-content-body td[data-mce-selected],
.mce-content-body th[data-mce-selected] {
  position: relative;
}
.mce-content-body td[data-mce-selected]::selection,
.mce-content-body th[data-mce-selected]::selection {
  background: none;
}
.mce-content-body td[data-mce-selected] *,
.mce-content-body th[data-mce-selected] * {
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.mce-content-body td[data-mce-selected]::after,
.mce-content-body th[data-mce-selected]::after {
  background-color: rgba(180, 215, 255, 0.7);
  border: 1px solid rgba(180, 215, 255, 0.7);
  bottom: -1px;
  content: '';
  left: -1px;
  mix-blend-mode: multiply;
  position: absolute;
  right: -1px;
  top: -1px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .mce-content-body td[data-mce-selected]::after,
  .mce-content-body th[data-mce-selected]::after {
    border-color: rgba(0, 84, 180, 0.7);
  }
}
.mce-content-body img::selection {
  background: none;
}
.ephox-snooker-resizer-bar {
  background-color: #b4d7ff;
  opacity: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ephox-snooker-resizer-cols {
  cursor: col-resize;
}
.ephox-snooker-resizer-rows {
  cursor: row-resize;
}
.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging {
  opacity: 1;
}
.mce-spellchecker-word {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
  background-position: 0 calc(100% + 1px);
  background-repeat: repeat-x;
  background-size: auto 6px;
  cursor: default;
  height: 2rem;
}
.mce-spellchecker-grammar {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
  background-position: 0 calc(100% + 1px);
  background-repeat: repeat-x;
  background-size: auto 6px;
  cursor: default;
}
.mce-toc {
  border: 1px solid gray;
}
.mce-toc h2 {
  margin: 4px;
}
.mce-toc li {
  list-style-type: none;
}
table[style*="border-width: 0px"],
.mce-item-table:not([border]),
.mce-item-table[border="0"],
table[style*="border-width: 0px"] td,
.mce-item-table:not([border]) td,
.mce-item-table[border="0"] td,
table[style*="border-width: 0px"] th,
.mce-item-table:not([border]) th,
.mce-item-table[border="0"] th,
table[style*="border-width: 0px"] caption,
.mce-item-table:not([border]) caption,
.mce-item-table[border="0"] caption {
  border: 1px dashed #bbb;
}
.mce-visualblocks p,
.mce-visualblocks h1,
.mce-visualblocks h2,
.mce-visualblocks h3,
.mce-visualblocks h4,
.mce-visualblocks h5,
.mce-visualblocks h6,
.mce-visualblocks div:not([data-mce-bogus]),
.mce-visualblocks section,
.mce-visualblocks article,
.mce-visualblocks blockquote,
.mce-visualblocks address,
.mce-visualblocks pre,
.mce-visualblocks figure,
.mce-visualblocks figcaption,
.mce-visualblocks hgroup,
.mce-visualblocks aside,
.mce-visualblocks ul,
.mce-visualblocks ol,
.mce-visualblocks dl {
  background-repeat: no-repeat;
  border: 1px dashed #bbb;
  margin-left: 3px;
  padding-top: 10px;
}
.mce-visualblocks p {
  background-image: url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7);
}
.mce-visualblocks h1 {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==);
}
.mce-visualblocks h2 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==);
}
.mce-visualblocks h3 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7);
}
.mce-visualblocks h4 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==);
}
.mce-visualblocks h5 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==);
}
.mce-visualblocks h6 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==);
}
.mce-visualblocks div:not([data-mce-bogus]) {
  background-image: url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7);
}
.mce-visualblocks section {
  background-image: url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=);
}
.mce-visualblocks article {
  background-image: url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7);
}
.mce-visualblocks blockquote {
  background-image: url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7);
}
.mce-visualblocks address {
  background-image: url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=);
}
.mce-visualblocks pre {
  background-image: url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==);
}
.mce-visualblocks figure {
  background-image: url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7);
}
.mce-visualblocks figcaption {
  border: 1px dashed #bbb;
}
.mce-visualblocks hgroup {
  background-image: url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7);
}
.mce-visualblocks aside {
  background-image: url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=);
}
.mce-visualblocks ul {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==);
}
.mce-visualblocks ol {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==);
}
.mce-visualblocks dl {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==);
}
.mce-visualblocks:not([dir=rtl]) p,
.mce-visualblocks:not([dir=rtl]) h1,
.mce-visualblocks:not([dir=rtl]) h2,
.mce-visualblocks:not([dir=rtl]) h3,
.mce-visualblocks:not([dir=rtl]) h4,
.mce-visualblocks:not([dir=rtl]) h5,
.mce-visualblocks:not([dir=rtl]) h6,
.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),
.mce-visualblocks:not([dir=rtl]) section,
.mce-visualblocks:not([dir=rtl]) article,
.mce-visualblocks:not([dir=rtl]) blockquote,
.mce-visualblocks:not([dir=rtl]) address,
.mce-visualblocks:not([dir=rtl]) pre,
.mce-visualblocks:not([dir=rtl]) figure,
.mce-visualblocks:not([dir=rtl]) figcaption,
.mce-visualblocks:not([dir=rtl]) hgroup,
.mce-visualblocks:not([dir=rtl]) aside,
.mce-visualblocks:not([dir=rtl]) ul,
.mce-visualblocks:not([dir=rtl]) ol,
.mce-visualblocks:not([dir=rtl]) dl {
  margin-left: 3px;
}
.mce-visualblocks[dir=rtl] p,
.mce-visualblocks[dir=rtl] h1,
.mce-visualblocks[dir=rtl] h2,
.mce-visualblocks[dir=rtl] h3,
.mce-visualblocks[dir=rtl] h4,
.mce-visualblocks[dir=rtl] h5,
.mce-visualblocks[dir=rtl] h6,
.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),
.mce-visualblocks[dir=rtl] section,
.mce-visualblocks[dir=rtl] article,
.mce-visualblocks[dir=rtl] blockquote,
.mce-visualblocks[dir=rtl] address,
.mce-visualblocks[dir=rtl] pre,
.mce-visualblocks[dir=rtl] figure,
.mce-visualblocks[dir=rtl] figcaption,
.mce-visualblocks[dir=rtl] hgroup,
.mce-visualblocks[dir=rtl] aside,
.mce-visualblocks[dir=rtl] ul,
.mce-visualblocks[dir=rtl] ol,
.mce-visualblocks[dir=rtl] dl {
  background-position-x: right;
  margin-right: 3px;
}
.mce-nbsp,
.mce-shy {
  background: #aaa;
}
.mce-shy::after {
  content: '-';
}


================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/skins/ui/dark/content.mobile.css
================================================
/**
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
* Licensed under the LGPL or a commercial license.
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*/
.tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection {
  /* Note: this file is used inside the content, so isn't part of theming */
  background-color: green;
  display: inline-block;
  opacity: 0.5;
  position: absolute;
}
body {
  -webkit-text-size-adjust: none;
}
body img {
  /* this is related to the content margin */
  max-width: 96vw;
}
body table img {
  max-width: 95%;
}
body {
  font-family: sans-serif;
}
table {
  border-collapse: collapse;
}


================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/skins/ui/dark/skin.css
================================================
/**
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
* Licensed under the LGPL or a commercial license.
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*/
.tox {
  box-shadow: none;
  box-sizing: content-box;
  color: #000000;
  cursor: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  vertical-align: initial;
  white-space: normal;
}
.tox *:not(svg):not(rect) {
  box-sizing: inherit;
  color: inherit;
  cursor: inherit;
  direction: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  -webkit-tap-highlight-color: inherit;
  text-align: inherit;
  text-decoration: inherit;
  text-shadow: inherit;
  text-transform: inherit;
  vertical-align: inherit;
  white-space: inherit;
}
.tox *:not(svg):not(rect) {
  /* stylelint-disable-line no-duplicate-selectors */
  background: transparent;
  border: 0;
  box-shadow: none;
  float: none;
  height: auto;
  margin: 0;
  max-width: none;
  outline: 0;
  padding: 0;
  position: static;
  width: auto;
}
.tox:not([dir=rtl]) {
  direction: ltr;
  text-align: left;
}
.tox[dir=rtl] {
  direction: rtl;
  text-align: right;
}
.tox-tinymce {
  border: 1px solid #000000;
  border-radius: 8px;
  box-shadow: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  overflow: hidden;
  position: relative;
  visibility: inherit !important;
}
.tox-tinymce-inline {
  border: none;
  box-shadow: none;
}
.tox-tinymce-inline .tox-editor-header {
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 8px;
  box-shadow: none;
}
.tox-tinymce-aux {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  z-index: 1300;
}
.tox-tinymce *:focus,
.tox-tinymce-aux *:focus {
  outline: none;
}
button::-moz-focus-inner {
  border: 0;
}
.tox[dir=rtl] .tox-icon--flip svg {
  transform: rotateY(180deg);
}
.tox .accessibility-issue__header {
  align-items: center;
  display: flex;
  margin-bottom: 4px;
}
.tox .accessibility-issue__description {
  align-items: stretch;
  border: 1px solid #000000;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
}
.tox .accessibility-issue__description > div {
  padding-bottom: 4px;
}
.tox .accessibility-issue__description > div > div {
  align-items: center;
  display: flex;
  margin-bottom: 4px;
}
.tox .accessibility-issue__description > *:last-child:not(:only-child) {
  border-color: #000000;
  border-style: solid;
}
.tox .accessibility-issue__repair {
  margin-top: 16px;
}
.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description {
  background-color: rgba(32, 122, 183, 0.5);
  border-color: #207ab7;
  color: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description > *:last-child {
  border-color: #207ab7;
}
.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2 {
  color: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg {
  fill: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--info a .tox-icon {
  color: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description {
  background-color: rgba(255, 165, 0, 0.5);
  border-color: rgba(255, 165, 0, 0.8);
  color: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description > *:last-child {
  border-color: rgba(255, 165, 0, 0.8);
}
.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2 {
  color: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg {
  fill: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--warn a .tox-icon {
  color: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description {
  background-color: rgba(204, 0, 0, 0.5);
  border-color: rgba(204, 0, 0, 0.8);
  color: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description > *:last-child {
  border-color: rgba(204, 0, 0, 0.8);
}
.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2 {
  color: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg {
  fill: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--error a .tox-icon {
  color: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description {
  background-color: rgba(120, 171, 70, 0.5);
  border-color: rgba(120, 171, 70, 0.8);
  color: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description > *:last-child {
  border-color: rgba(120, 171, 70, 0.8);
}
.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2 {
  color: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg {
  fill: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue--success a .tox-icon {
  color: #cdcdcd;
}
.tox .tox-dialog__body-content .accessibility-issue__header h1,
.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2 {
  margin-top: 0;
}
.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button {
  margin-left: 4px;
}
.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header > *:nth-last-child(2) {
  margin-left: auto;
}
.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description {
  padding: 4px 4px 4px 8px;
}
.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description > *:last-child {
  border-left-width: 1px;
  padding-left: 4px;
}
.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button {
  margin-right: 4px;
}
.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header > *:nth-last-child(2) {
  margin-right: auto;
}
.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description {
  padding: 4px 8px 4px 4px;
}
.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description > *:last-child {
  border-right-width: 1px;
  padding-right: 4px;
}
.tox .tox-anchorbar {
  display: flex;
  flex: 0 0 auto;
}
.tox .tox-bar {
  display: flex;
  flex: 0 0 auto;
}
.tox .tox-button {
  background-color: #207ab7;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  border-color: #207ab7;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  box-sizing: border-box;
  color: #cdcdcd;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 24px;
  margin: 0;
  outline: none;
  padding: 4px 16px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}
.tox .tox-button[disabled] {
  background-color: #207ab7;
  background-image: none;
  border-color: #207ab7;
  box-shadow: none;
  color: rgba(205, 205, 205, 0.5);
  cursor: not-allowed;
}
.tox .tox-button:focus:not(:disabled) {
  background-color: #1c6ca1;
  background-image: none;
  border-color: #1c6ca1;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-button:hover:not(:disabled) {
  background-color: #1c6ca1;
  background-image: none;
  border-color: #1c6ca1;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-button:active:not(:disabled) {
  background-color: #185d8c;
  background-image: none;
  border-color: #185d8c;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-button--secondary {
  background-color: #3f546f;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  border-color: #3f546f;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  color: #cdcdcd;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  letter-spacing: normal;
  outline: none;
  padding: 4px 16px;
  text-decoration: none;
  text-transform: none;
}
.tox .tox-button--secondary[disabled] {
  background-color: #3f546f;
  background-image: none;
  border-color: #3f546f;
  box-shadow: none;
  color: rgba(205, 205, 205, 0.5);
}
.tox .tox-button--secondary:focus:not(:disabled) {
  background-color: #35485f;
  background-image: none;
  border-color: #35485f;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-button--secondary:hover:not(:disabled) {
  background-color: #35485f;
  background-image: none;
  border-color: #35485f;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-button--secondary:active:not(:disabled) {
  background-color: #2c3b4e;
  background-image: none;
  border-color: #2c3b4e;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-button--icon,
.tox .tox-button.tox-button--icon,
.tox .tox-button.tox-button--secondary.tox-button--icon {
  padding: 4px;
}
.tox .tox-button--icon .tox-icon svg,
.tox .tox-button.tox-button--icon .tox-icon svg,
.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg {
  display: block;
  fill: currentColor;
}
.tox .tox-button-link {
  background: 0;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.tox .tox-button-link--sm {
  font-size: 14px;
}
.tox .tox-button--naked {
  background-color: transparent;
  border-color: transparent;
  box-shadow: unset;
  color: #cdcdcd;
}
.tox .tox-button--naked[disabled] {
  background-color: #3f546f;
  border-color: #3f546f;
  box-shadow: none;
  color: rgba(205, 205, 205, 0.5);
}
.tox .tox-button--naked:hover:not(:disabled) {
  background-color: #35485f;
  border-color: #35485f;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-button--naked:focus:not(:disabled) {
  background-color: #35485f;
  border-color: #35485f;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-button--naked:active:not(:disabled) {
  background-color: #2c3b4e;
  border-color: #2c3b4e;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-button--naked .tox-icon svg {
  fill: currentColor;
}
.tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
  color: #cdcdcd;
}
.tox .tox-checkbox {
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  height: 36px;
  min-width: 36px;
}
.tox .tox-checkbox__input {
  /* Hide from view but visible to screen readers */
  height: 1px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}
.tox .tox-checkbox__icons {
  align-items: center;
  border-radius: 3px;
  box-shadow: 0 0 0 2px transparent;
  box-sizing: content-box;
  display: flex;
  height: 24px;
  justify-content: center;
  padding: calc(4px - 1px);
  width: 24px;
}
.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  display: block;
  fill: rgba(205, 205, 205, 0.2);
}
.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  display: none;
  fill: #207ab7;
}
.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  display: none;
  fill: #207ab7;
}
.tox .tox-checkbox--disabled {
  color: rgba(205, 205, 205, 0.5);
  cursor: not-allowed;
}
.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  fill: rgba(205, 205, 205, 0.5);
}
.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  fill: rgba(205, 205, 205, 0.5);
}
.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  fill: rgba(205, 205, 205, 0.5);
}
.tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  display: none;
}
.tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  display: block;
}
.tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  display: none;
}
.tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  display: block;
}
.tox input.tox-checkbox__input:focus + .tox-checkbox__icons {
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px #207ab7;
  padding: calc(4px - 1px);
}
.tox:not([dir=rtl]) .tox-checkbox__label {
  margin-left: 4px;
}
.tox:not([dir=rtl]) .tox-checkbox__input {
  left: -10000px;
}
.tox:not([dir=rtl]) .tox-bar .tox-checkbox {
  margin-left: 4px;
}
.tox[dir=rtl] .tox-checkbox__label {
  margin-right: 4px;
}
.tox[dir=rtl] .tox-checkbox__input {
  right: -10000px;
}
.tox[dir=rtl] .tox-bar .tox-checkbox {
  margin-right: 4px;
}
.tox {
  /* stylelint-disable-next-line no-descending-specificity */
}
.tox .tox-collection--toolbar .tox-collection__group {
  display: flex;
  padding: 0;
}
.tox .tox-collection--grid .tox-collection__group {
  display: flex;
  flex-wrap: wrap;
  max-height: 208px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
}
.tox .tox-collection--list .tox-collection__group {
  border-bottom-width: 0;
  border-color: #1a1a1a;
  border-left-width: 0;
  border-right-width: 0;
  border-style: solid;
  border-top-width: 1px;
  padding: 4px 0;
}
.tox .tox-collection--list .tox-collection__group:first-child {
  border-top-width: 0;
}
.tox .tox-collection__group-heading {
  background-color: #333333;
  color: #cdcdcd;
  cursor: default;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  margin-bottom: 4px;
  margin-top: -4px;
  padding: 4px 8px;
  text-transform: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.tox .tox-collection__item {
  align-items: center;
  color: #cdcdcd;
  cursor: pointer;
  display: flex;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.tox .tox-collection--list .tox-collection__item {
  padding: 4px 8px;
}
.tox .tox-collection--toolbar .tox-collection__item {
  border-radius: 3px;
  padding: 4px;
}
.tox .tox-collection--grid .tox-collection__item {
  border-radius: 3px;
  padding: 4px;
}
.tox .tox-collection--list .tox-collection__item--enabled {
  background-color: #2c3b4e;
  color: #cdcdcd;
}
.tox .tox-collection--list .tox-collection__item--active {
  background-color: #262626;
}
.tox .tox-collection--toolbar .tox-collection__item--enabled {
  background-color: #262626;
  color: #cdcdcd;
}
.tox .tox-collection--toolbar .tox-collection__item--active {
  background-color: #262626;
}
.tox .tox-collection--grid .tox-collection__item--enabled {
  background-color: #262626;
  color: #cdcdcd;
}
.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  background-color: #262626;
  color: #cdcdcd;
}
.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  color: #cdcdcd;
}
.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  color: #cdcdcd;
}
.tox .tox-collection__item-icon,
.tox .tox-collection__item-checkmark {
  align-items: center;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}
.tox .tox-collection__item-icon svg,
.tox .tox-collection__item-checkmark svg {
  fill: currentColor;
}
.tox .tox-collection--toolbar-lg .tox-collection__item-icon {
  height: 48px;
  width: 48px;
}
.tox .tox-collection__item-label {
  color: currentColor;
  display: inline-block;
  flex: 1;
  -ms-flex-preferred-size: auto;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  text-transform: none;
  word-break: break-all;
}
.tox .tox-collection__item-accessory {
  color: rgba(205, 205, 205, 0.5);
  display: inline-block;
  font-size: 14px;
  height: 24px;
  line-height: 24px;
  text-transform: none;
}
.tox .tox-collection__item-caret {
  align-items: center;
  display: flex;
  min-height: 24px;
}
.tox .tox-collection__item-caret::after {
  content: '';
  font-size: 0;
  min-height: inherit;
}
.tox .tox-collection__item-caret svg {
  fill: #cdcdcd;
}
.tox .tox-collection__item--state-disabled {
  background-color: transparent;
  color: rgba(205, 205, 205, 0.5);
  cursor: not-allowed;
}
.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg {
  fill: rgba(205, 205, 205, 0.5);
}
.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg {
  display: none;
}
.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory + .tox-collection__item-checkmark {
  display: none;
}
.tox .tox-collection--horizontal {
  background-color: #2c3b4e;
  border: 1px solid #1a1a1a;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
  flex-wrap: nowrap;
  margin-bottom: 0;
  overflow-x: auto;
  padding: 0;
}
.tox .tox-collection--horizontal .tox-collection__group {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0 4px;
}
.tox .tox-collection--horizontal .tox-collection__item {
  height: 34px;
  margin: 2px 0 3px 0;
  padding: 0 4px;
}
.tox .tox-collection--horizontal .tox-collection__item-label {
  white-space: nowrap;
}
.tox .tox-collection--horizontal .tox-collection__item-caret {
  margin-left: 4px;
}
.tox .tox-collection__item-container {
  display: flex;
}
.tox .tox-collection__item-container--row {
  align-items: center;
  flex: 1 1 auto;
  flex-direction: row;
}
.tox .tox-collection__item-container--row.tox-collection__item-container--align-left {
  margin-right: auto;
}
.tox .tox-collection__item-container--row.tox-collection__item-container--align-right {
  justify-content: flex-end;
  margin-left: auto;
}
.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top {
  align-items: flex-start;
  margin-bottom: auto;
}
.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle {
  align-items: center;
}
.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom {
  align-items: flex-end;
  margin-top: auto;
}
.tox .tox-collection__item-container--column {
  -ms-grid-row-align: center;
      align-self: center;
  flex: 1 1 auto;
  flex-direction: column;
}
.tox .tox-collection__item-container--column.tox-collection__item-container--align-left {
  align-items: flex-start;
}
.tox .tox-collection__item-container--column.tox-collection__item-container--align-right {
  align-items: flex-end;
}
.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top {
  align-self: flex-start;
}
.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle {
  -ms-grid-row-align: center;
      align-self: center;
}
.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom {
  align-self: flex-end;
}
.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type) {
  border-right: 1px solid #000000;
}
.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item > *:not(:first-child) {
  margin-left: 8px;
}
.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item > .tox-collection__item-label:first-child {
  margin-left: 4px;
}
.tox:not([dir=rtl]) .tox-collection__item-accessory {
  margin-left: 16px;
  text-align: right;
}
.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret {
  margin-left: 16px;
}
.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type) {
  border-left: 1px solid #000000;
}
.tox[dir=rtl] .tox-collection--list .tox-collection__item > *:not(:first-child) {
  margin-right: 8px;
}
.tox[dir=rtl] .tox-collection--list .tox-collection__item > .tox-collection__item-label:first-child {
  margin-right: 4px;
}
.tox[dir=rtl] .tox-collection__item-accessory {
  margin-right: 16px;
  text-align: left;
}
.tox[dir=rtl] .tox-collection .tox-collection__item-caret {
  margin-right: 16px;
  transform: rotateY(180deg);
}
.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret {
  margin-right: 4px;
}
.tox .tox-color-picker-container {
  display: flex;
  flex-direction: row;
  height: 225px;
  margin: 0;
}
.tox .tox-sv-palette {
  box-sizing: border-box;
  display: flex;
  height: 100%;
}
.tox .tox-sv-palette-spectrum {
  height: 100%;
}
.tox .tox-sv-palette,
.tox .tox-sv-palette-spectrum {
  width: 225px;
}
.tox .tox-sv-palette-thumb {
  background: none;
  border: 1px solid black;
  border-radius: 50%;
  box-sizing: content-box;
  height: 12px;
  position: absolute;
  width: 12px;
}
.tox .tox-sv-palette-inner-thumb {
  border: 1px solid white;
  border-radius: 50%;
  height: 10px;
  position: absolute;
  width: 10px;
}
.tox .tox-hue-slider {
  box-sizing: border-box;
  height: 100%;
  width: 25px;
}
.tox .tox-hue-slider-spectrum {
  background: linear-gradient(to bottom, #f00, #ff0080, #f0f, #8000ff, #00f, #0080ff, #0ff, #00ff80, #0f0, #80ff00, #ff0, #ff8000, #f00);
  height: 100%;
  width: 100%;
}
.tox .tox-hue-slider,
.tox .tox-hue-slider-spectrum {
  width: 20px;
}
.tox .tox-hue-slider-thumb {
  background: white;
  border: 1px solid black;
  box-sizing: content-box;
  height: 4px;
  width: 100%;
}
.tox .tox-rgb-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tox .tox-rgb-form div {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  width: inherit;
}
.tox .tox-rgb-form input {
  width: 6em;
}
.tox .tox-rgb-form input.tox-invalid {
  /* Need !important to override Chrome's focus styling unfortunately */
  border: 1px solid red !important;
}
.tox .tox-rgb-form .tox-rgba-preview {
  border: 1px solid black;
  flex-grow: 2;
  margin-bottom: 0;
}
.tox:not([dir=rtl]) .tox-sv-palette {
  margin-right: 15px;
}
.tox:not([dir=rtl]) .tox-hue-slider {
  margin-right: 15px;
}
.tox:not([dir=rtl]) .tox-hue-slider-thumb {
  margin-left: -1px;
}
.tox:not([dir=rtl]) .tox-rgb-form label {
  margin-right: 0.5em;
}
.tox[dir=rtl] .tox-sv-palette {
  margin-left: 15px;
}
.tox[dir=rtl] .tox-hue-slider {
  margin-left: 15px;
}
.tox[dir=rtl] .tox-hue-slider-thumb {
  margin-right: -1px;
}
.tox[dir=rtl] .tox-rgb-form label {
  margin-left: 0.5em;
}
.tox .tox-toolbar .tox-swatches,
.tox .tox-toolbar__primary .tox-swatches,
.tox .tox-toolbar__overflow .tox-swatches {
  margin: 2px 0 3px 4px;
}
.tox .tox-collection--list .tox-collection__group .tox-swatches-menu {
  border: 0;
  margin: -4px 0;
}
.tox .tox-swatches__row {
  display: flex;
}
.tox .tox-swatch {
  height: 30px;
  transition: transform 0.15s, box-shadow 0.15s;
  width: 30px;
}
.tox .tox-swatch:hover,
.tox .tox-swatch:focus {
  box-shadow: 0 0 0 1px rgba(127, 127, 127, 0.3) inset;
  transform: scale(0.8);
}
.tox .tox-swatch--remove {
  align-items: center;
  display: flex;
  justify-content: center;
}
.tox .tox-swatch--remove svg path {
  stroke: #e74c3c;
}
.tox .tox-swatches__picker-btn {
  align-items: center;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  height: 30px;
  justify-content: center;
  outline: none;
  padding: 0;
  width: 30px;
}
.tox .tox-swatches__picker-btn svg {
  height: 24px;
  width: 24px;
}
.tox .tox-swatches__picker-btn:hover {
  background: #262626;
}
.tox:not([dir=rtl]) .tox-swatches__picker-btn {
  margin-left: auto;
}
.tox[dir=rtl] .tox-swatches__picker-btn {
  margin-right: auto;
}
.tox .tox-comment-thread {
  background: #2c3b4e;
  position: relative;
}
.tox .tox-comment-thread > *:not(:first-child) {
  margin-top: 8px;
}
.tox .tox-comment {
  background: #2c3b4e;
  border: 1px solid #000000;
  border-radius: 3px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 8px 8px 16px 8px;
  position: relative;
}
.tox .tox-comment__header {
  align-items: center;
  color: #cdcdcd;
  display: flex;
  justify-content: space-between;
}
.tox .tox-comment__date {
  color: rgba(205, 205, 205, 0.5);
  font-size: 12px;
}
.tox .tox-comment__body {
  color: #cdcdcd;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.3;
  margin-top: 8px;
  position: relative;
  text-transform: initial;
}
.tox .tox-comment__body textarea {
  resize: none;
  white-space: normal;
  width: 100%;
}
.tox .tox-comment__expander {
  padding-top: 8px;
}
.tox .tox-comment__expander p {
  color: rgba(205, 205, 205, 0.5);
  font-size: 14px;
  font-style: normal;
}
.tox .tox-comment__body p {
  margin: 0;
}
.tox .tox-comment__buttonspacing {
  padding-top: 16px;
  text-align: center;
}
.tox .tox-comment-thread__overlay::after {
  background: #2c3b4e;
  bottom: 0;
  content: "";
  display: flex;
  left: 0;
  opacity: 0.9;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
.tox .tox-comment__reply {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 8px;
}
.tox .tox-comment__reply > *:first-child {
  margin-bottom: 8px;
  width: 100%;
}
.tox .tox-comment__edit {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 16px;
}
.tox .tox-comment__gradient::after {
  background: linear-gradient(rgba(44, 59, 78, 0), #2c3b4e);
  bottom: 0;
  content: "";
  display: block;
  height: 5em;
  margin-top: -40px;
  position: absolute;
  width: 100%;
}
.tox .tox-comment__overlay {
  background: #2c3b4e;
  bottom: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  left: 0;
  opacity: 0.9;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 5;
}
.tox .tox-comment__loading-text {
  align-items: center;
  color: #cdcdcd;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tox .tox-comment__loading-text > div {
  padding-bottom: 16px;
}
.tox .tox-comment__overlaytext {
  bottom: 0;
  flex-direction: column;
  font-size: 14px;
  left: 0;
  padding: 1em;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.tox .tox-comment__overlaytext p {
  background-color: #2c3b4e;
  box-shadow: 0 0 8px 8px #2c3b4e;
  color: #cdcdcd;
  text-align: center;
}
.tox .tox-comment__overlaytext div:nth-of-type(2) {
  font-size: 0.8em;
}
.tox .tox-comment__busy-spinner {
  align-items: center;
  background-color: #2c3b4e;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}
.tox .tox-comment__scroll {
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  overflow: auto;
}
.tox .tox-conversations {
  margin: 8px;
}
.tox:not([dir=rtl]) .tox-comment__edit {
  margin-left: 8px;
}
.tox:not([dir=rtl]) .tox-comment__buttonspacing > *:last-child,
.tox:not([dir=rtl]) .tox-comment__edit > *:last-child,
.tox:not([dir=rtl]) .tox-comment__reply > *:last-child {
  margin-left: 8px;
}
.tox[dir=rtl] .tox-comment__edit {
  margin-right: 8px;
}
.tox[dir=rtl] .tox-comment__buttonspacing > *:last-child,
.tox[dir=rtl] .tox-comment__edit > *:last-child,
.tox[dir=rtl] .tox-comment__reply > *:last-child {
  margin-right: 8px;
}
.tox .tox-user {
  align-items: center;
  display: flex;
}
.tox .tox-user__avatar svg {
  fill: rgba(205, 205, 205, 0.5);
}
.tox .tox-user__name {
  color: rgba(205, 205, 205, 0.5);
  font-size: 12px;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
}
.tox:not([dir=rtl]) .tox-user__avatar svg {
  margin-right: 8px;
}
.tox:not([dir=rtl]) .tox-user__avatar + .tox-user__name {
  margin-left: 8px;
}
.tox[dir=rtl] .tox-user__avatar svg {
  margin-left: 8px;
}
.tox[dir=rtl] .tox-user__avatar + .tox-user__name {
  margin-right: 8px;
}
.tox .tox-dialog-wrap {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1100;
}
.tox .tox-dialog-wrap__backdrop {
  background-color: rgba(35, 47, 62, 0.75);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.tox .tox-dialog-wrap__backdrop--opaque {
  background-color: #232f3e;
}
.tox .tox-dialog {
  background-color: #2c3b4e;
  border-color: #000000;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0 16px 16px -10px rgba(0, 0, 0, 0.15), 0 0 40px 1px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  max-height: 100%;
  max-width: 480px;
  overflow: hidden;
  position: relative;
  width: 95vw;
  z-index: 2;
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox .tox-dialog {
    align-self: flex-start;
    margin: 8px auto;
    width: calc(100vw - 16px);
  }
}
.tox .tox-dialog-inline {
  z-index: 1100;
}
.tox .tox-dialog__header {
  align-items: center;
  background-color: #2c3b4e;
  border-bottom: none;
  color: #cdcdcd;
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  padding: 8px 16px 0 16px;
  position: relative;
}
.tox .tox-dialog__header .tox-button {
  z-index: 1;
}
.tox .tox-dialog__draghandle {
  cursor: grab;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.tox .tox-dialog__draghandle:active {
  cursor: grabbing;
}
.tox .tox-dialog__dismiss {
  margin-left: auto;
}
.tox .tox-dialog__title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.3;
  margin: 0;
  text-transform: none;
}
.tox .tox-dialog__body {
  color: #cdcdcd;
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.3;
  min-width: 0;
  text-align: left;
  text-transform: none;
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox .tox-dialog__body {
    flex-direction: column;
  }
}
.tox .tox-dialog__body-nav {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  padding: 16px 16px;
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox .tox-dialog__body-nav {
    flex-direction: row;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    padding-bottom: 0;
  }
}
.tox .tox-dialog__body-nav-item {
  border-bottom: 2px solid transparent;
  color: rgba(205, 205, 205, 0.5);
  display: inline-block;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.tox .tox-dialog__body-nav-item:focus {
  background-color: rgba(32, 122, 183, 0.1);
}
.tox .tox-dialog__body-nav-item--active {
  border-bottom: 2px solid #207ab7;
  color: #207ab7;
}
.tox .tox-dialog__body-content {
  box-sizing: border-box;
  display: flex;
  flex: 1;
  flex-direction: column;
  -ms-flex-preferred-size: auto;
  max-height: 650px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 16px;
}
.tox .tox-dialog__body-content > * {
  margin-bottom: 0;
  margin-top: 16px;
}
.tox .tox-dialog__body-content > *:first-child {
  margin-top: 0;
}
.tox .tox-dialog__body-content > *:last-child {
  margin-bottom: 0;
}
.tox .tox-dialog__body-content > *:only-child {
  margin-bottom: 0;
  margin-top: 0;
}
.tox .tox-dialog__body-content a {
  color: #207ab7;
  cursor: pointer;
  text-decoration: none;
}
.tox .tox-dialog__body-content a:hover,
.tox .tox-dialog__body-content a:focus {
  color: #185d8c;
  text-decoration: none;
}
.tox .tox-dialog__body-content a:active {
  color: #185d8c;
  text-decoration: none;
}
.tox .tox-dialog__body-content svg {
  fill: #cdcdcd;
}
.tox .tox-dialog__body-content ul {
  display: block;
  list-style-type: disc;
  margin-bottom: 16px;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-padding-start: 2.5rem;
          padding-inline-start: 2.5rem;
}
.tox .tox-dialog__body-content .tox-form__group h1 {
  color: #cdcdcd;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  letter-spacing: normal;
  margin-bottom: 16px;
  margin-top: 2rem;
  text-transform: none;
}
.tox .tox-dialog__body-content .tox-form__group h2 {
  color: #cdcdcd;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  letter-spacing: normal;
  margin-bottom: 16px;
  margin-top: 2rem;
  text-transform: none;
}
.tox .tox-dialog__body-content .tox-form__group p {
  margin-bottom: 16px;
}
.tox .tox-dialog__body-content .tox-form__group h1:first-child,
.tox .tox-dialog__body-content .tox-form__group h2:first-child,
.tox .tox-dialog__body-content .tox-form__group p:first-child {
  margin-top: 0;
}
.tox .tox-dialog__body-content .tox-form__group h1:last-child,
.tox .tox-dialog__body-content .tox-form__group h2:last-child,
.tox .tox-dialog__body-content .tox-form__group p:last-child {
  margin-bottom: 0;
}
.tox .tox-dialog__body-content .tox-form__group h1:only-child,
.tox .tox-dialog__body-content .tox-form__group h2:only-child,
.tox .tox-dialog__body-content .tox-form__group p:only-child {
  margin-bottom: 0;
  margin-top: 0;
}
.tox .tox-dialog--width-lg {
  height: 650px;
  max-width: 1200px;
}
.tox .tox-dialog--width-md {
  max-width: 800px;
}
.tox .tox-dialog--width-md .tox-dialog__body-content {
  overflow: auto;
}
.tox .tox-dialog__body-content--centered {
  text-align: center;
}
.tox .tox-dialog__footer {
  align-items: center;
  background-color: #2c3b4e;
  border-top: 1px solid #000000;
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
}
.tox .tox-dialog__footer-start,
.tox .tox-dialog__footer-end {
  display: flex;
}
.tox .tox-dialog__busy-spinner {
  align-items: center;
  background-color: rgba(35, 47, 62, 0.75);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}
.tox .tox-dialog__table {
  border-collapse: collapse;
  width: 100%;
}
.tox .tox-dialog__table thead th {
  font-weight: bold;
  padding-bottom: 8px;
}
.tox .tox-dialog__table tbody tr {
  border-bottom: 1px solid #000000;
}
.tox .tox-dialog__table tbody tr:last-child {
  border-bottom: none;
}
.tox .tox-dialog__table td {
  padding-bottom: 8px;
  padding-top: 8px;
}
.tox .tox-dialog__popups {
  position: absolute;
  width: 100%;
  z-index: 1100;
}
.tox .tox-dialog__body-iframe {
  display: flex;
  flex: 1;
  flex-direction: column;
  -ms-flex-preferred-size: auto;
}
.tox .tox-dialog__body-iframe .tox-navobj {
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2) {
  flex: 1;
  -ms-flex-preferred-size: auto;
  height: 100%;
}
.tox .tox-dialog-dock-fadeout {
  opacity: 0;
  visibility: hidden;
}
.tox .tox-dialog-dock-fadein {
  opacity: 1;
  visibility: visible;
}
.tox .tox-dialog-dock-transition {
  transition: visibility 0s linear 0.3s, opacity 0.3s ease;
}
.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein {
  transition-delay: 0s;
}
.tox.tox-platform-ie {
  /* IE11 CSS styles go here */
}
.tox.tox-platform-ie .tox-dialog-wrap {
  position: -ms-device-fixed;
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav {
    margin-right: 0;
  }
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child) {
    margin-left: 8px;
  }
}
.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start > *,
.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end > * {
  margin-left: 8px;
}
.tox[dir=rtl] .tox-dialog__body {
  text-align: right;
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav {
    margin-left: 0;
  }
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child) {
    margin-right: 8px;
  }
}
.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start > *,
.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end > * {
  margin-right: 8px;
}
body.tox-dialog__disable-scroll {
  overflow: hidden;
}
.tox .tox-dropzone-container {
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-dropzone {
  align-items: center;
  background: #fff;
  border: 2px dashed #000000;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  min-height: 100px;
  padding: 10px;
}
.tox .tox-dropzone p {
  color: rgba(205, 205, 205, 0.5);
  margin: 0 0 16px 0;
}
.tox .tox-edit-area {
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
  overflow: hidden;
  position: relative;
}
.tox .tox-edit-area__iframe {
  background-color: #cdcdcd;
  border: 0;
  box-sizing: border-box;
  flex: 1;
  -ms-flex-preferred-size: auto;
  height: 100%;
  position: absolute;
  width: 100%;
}
.tox.tox-inline-edit-area {
  border: 1px dotted #000000;
}
.tox .tox-editor-container {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  overflow: hidden;
}
.tox .tox-editor-header {
  z-index: 1;
}
.tox:not(.tox-tinymce-inline) .tox-editor-header {
  box-shadow: none;
  transition: box-shadow 0.5s;
}
.tox.tox-tinymce--toolbar-bottom .tox-editor-header,
.tox.tox-tinymce-inline .tox-editor-header {
  margin-bottom: -1px;
}
.tox.tox-tinymce--toolbar-sticky-on .tox-editor-header {
  background-color: transparent;
  box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.25);
}
.tox-editor-dock-fadeout {
  opacity: 0;
  visibility: hidden;
}
.tox-editor-dock-fadein {
  opacity: 1;
  visibility: visible;
}
.tox-editor-dock-transition {
  transition: visibility 0s linear 0.25s, opacity 0.25s ease;
}
.tox-editor-dock-transition.tox-editor-dock-fadein {
  transition-delay: 0s;
}
.tox .tox-control-wrap {
  flex: 1;
  position: relative;
}
.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,
.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,
.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid {
  display: none;
}
.tox .tox-control-wrap svg {
  display: block;
}
.tox .tox-control-wrap__status-icon-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.tox .tox-control-wrap__status-icon-invalid svg {
  fill: #c00;
}
.tox .tox-control-wrap__status-icon-unknown svg {
  fill: orange;
}
.tox .tox-control-wrap__status-icon-valid svg {
  fill: green;
}
.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,
.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,
.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield {
  padding-right: 32px;
}
.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap {
  right: 4px;
}
.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,
.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,
.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield {
  padding-left: 32px;
}
.tox[dir=rtl] .tox-control-wrap__status-icon-wrap {
  left: 4px;
}
.tox .tox-autocompleter {
  max-width: 25em;
}
.tox .tox-autocompleter .tox-menu {
  max-width: 25em;
}
.tox .tox-autocompleter .tox-autocompleter-highlight {
  font-weight: bold;
}
.tox .tox-color-input {
  display: flex;
  position: relative;
  z-index: 1;
}
.tox .tox-color-input .tox-textfield {
  z-index: -1;
}
.tox .tox-color-input span {
  border-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  box-sizing: border-box;
  height: 24px;
  position: absolute;
  top: 6px;
  width: 24px;
}
.tox .tox-color-input span:hover:not([aria-disabled=true]),
.tox .tox-color-input span:focus:not([aria-disabled=true]) {
  border-color: #207ab7;
  cursor: pointer;
}
.tox .tox-color-input span::before {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%), linear-gradient(-45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.25) 75%), linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.25) 75%);
  background-position: 0 0, 0 6px, 6px -6px, -6px 0;
  background-size: 12px 12px;
  border: 1px solid #2c3b4e;
  border-radius: 3px;
  box-sizing: border-box;
  content: '';
  height: 24px;
  left: -1px;
  position: absolute;
  top: -1px;
  width: 24px;
  z-index: -1;
}
.tox .tox-color-input span[aria-disabled=true] {
  cursor: not-allowed;
}
.tox:not([dir=rtl]) .tox-color-input {
  /* stylelint-disable-next-line no-descending-specificity */
}
.tox:not([dir=rtl]) .tox-color-input .tox-textfield {
  padding-left: 36px;
}
.tox:not([dir=rtl]) .tox-color-input span {
  left: 6px;
}
.tox[dir="rtl"] .tox-color-input {
  /* stylelint-disable-next-line no-descending-specificity */
}
.tox[dir="rtl"] .tox-color-input .tox-textfield {
  padding-right: 36px;
}
.tox[dir="rtl"] .tox-color-input span {
  right: 6px;
}
.tox .tox-label,
.tox .tox-toolbar-label {
  color: rgba(205, 205, 205, 0.5);
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.3;
  padding: 0 8px 0 0;
  text-transform: none;
  white-space: nowrap;
}
.tox .tox-toolbar-label {
  padding: 0 8px;
}
.tox[dir=rtl] .tox-label {
  padding: 0 0 0 8px;
}
.tox .tox-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  -ms-flex-preferred-size: auto;
}
.tox .tox-form__group {
  box-sizing: border-box;
  margin-bottom: 4px;
}
.tox .tox-form-group--maximize {
  flex: 1;
}
.tox .tox-form__group--error {
  color: #c00;
}
.tox .tox-form__group--collection {
  display: flex;
}
.tox .tox-form__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tox .tox-form__grid--2col > .tox-form__group {
  width: calc(50% - (8px / 2));
}
.tox .tox-form__grid--3col > .tox-form__group {
  width: calc(100% / 3 - (8px / 2));
}
.tox .tox-form__grid--4col > .tox-form__group {
  width: calc(25% - (8px / 2));
}
.tox .tox-form__controls-h-stack {
  align-items: center;
  display: flex;
}
.tox .tox-form__group--inline {
  align-items: center;
  display: flex;
}
.tox .tox-form__group--stretched {
  display: flex;
  flex: 1;
  flex-direction: column;
  -ms-flex-preferred-size: auto;
}
.tox .tox-form__group--stretched .tox-textarea {
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-form__group--stretched .tox-navobj {
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-form__group--stretched .tox-navobj :nth-child(2) {
  flex: 1;
  -ms-flex-preferred-size: auto;
  height: 100%;
}
.tox:not([dir=rtl]) .tox-form__controls-h-stack > *:not(:first-child) {
  margin-left: 4px;
}
.tox[dir=rtl] .tox-form__controls-h-stack > *:not(:first-child) {
  margin-right: 4px;
}
.tox .tox-lock.tox-locked .tox-lock-icon__unlock,
.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock {
  display: none;
}
.tox .tox-textfield,
.tox .tox-toolbar-textfield,
.tox .tox-listboxfield .tox-listbox--select,
.tox .tox-textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #2c3b4e;
  border-color: #000000;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  box-sizing: border-box;
  color: #cdcdcd;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  min-height: 34px;
  outline: none;
  padding: 5px 4.75px;
  resize: none;
  width: 100%;
}
.tox .tox-textfield[disabled],
.tox .tox-textarea[disabled] {
  background-color: #232f3e;
  color: rgba(205, 205, 205, 0.85);
  cursor: not-allowed;
}
.tox .tox-textfield:focus,
.tox .tox-listboxfield .tox-listbox--select:focus,
.tox .tox-textarea:focus {
  background-color: #2c3b4e;
  border-color: #207ab7;
  box-shadow: none;
  outline: none;
}
.tox .tox-toolbar-textfield {
  border-width: 0;
  margin-bottom: 3px;
  margin-top: 2px;
  max-width: 250px;
}
.tox .tox-naked-btn {
  background-color: transparent;
  border: 0;
  border-color: transparent;
  box-shadow: unset;
  color: #207ab7;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 0;
}
.tox .tox-naked-btn svg {
  display: block;
  fill: #cdcdcd;
}
.tox:not([dir=rtl]) .tox-toolbar-textfield + * {
  margin-left: 4px;
}
.tox[dir=rtl] .tox-toolbar-textfield + * {
  margin-right: 4px;
}
.tox .tox-listboxfield {
  cursor: pointer;
  position: relative;
}
.tox .tox-listboxfield .tox-listbox--select[disabled] {
  background-color: #1a232e;
  color: rgba(205, 205, 205, 0.85);
  cursor: not-allowed;
}
.tox .tox-listbox__select-label {
  cursor: default;
  flex: 1;
  margin: 0 4px;
}
.tox .tox-listbox__select-chevron {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 16px;
}
.tox .tox-listbox__select-chevron svg {
  fill: #cdcdcd;
}
.tox .tox-listboxfield .tox-listbox--select {
  align-items: center;
  display: flex;
}
.tox:not([dir=rtl]) .tox-listboxfield svg {
  right: 8px;
}
.tox[dir=rtl] .tox-listboxfield svg {
  left: 8px;
}
.tox .tox-selectfield {
  cursor: pointer;
  position: relative;
}
.tox .tox-selectfield select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #2c3b4e;
  border-color: #000000;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  box-sizing: border-box;
  color: #cdcdcd;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  min-height: 34px;
  outline: none;
  padding: 5px 4.75px;
  resize: none;
  width: 100%;
}
.tox .tox-selectfield select[disabled] {
  background-color: #1a232e;
  color: rgba(205, 205, 205, 0.85);
  cursor: not-allowed;
}
.tox .tox-selectfield select::-ms-expand {
  display: none;
}
.tox .tox-selectfield select:focus {
  background-color: #2c3b4e;
  border-color: #207ab7;
  box-shadow: none;
  outline: none;
}
.tox .tox-selectfield svg {
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.tox:not([dir=rtl]) .tox-selectfield select[size="0"],
.tox:not([dir=rtl]) .tox-selectfield select[size="1"] {
  padding-right: 24px;
}
.tox:not([dir=rtl]) .tox-selectfield svg {
  right: 8px;
}
.tox[dir=rtl] .tox-selectfield select[size="0"],
.tox[dir=rtl] .tox-selectfield select[size="1"] {
  padding-left: 24px;
}
.tox[dir=rtl] .tox-selectfield svg {
  left: 8px;
}
.tox .tox-textarea {
  -webkit-appearance: textarea;
     -moz-appearance: textarea;
          appearance: textarea;
  white-space: pre-wrap;
}
.tox-fullscreen {
  border: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  padding: 0;
  touch-action: pinch-zoom;
  width: 100%;
}
.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle {
  display: none;
}
.tox.tox-tinymce.tox-fullscreen,
.tox-shadowhost.tox-fullscreen {
  left: 0;
  position: fixed;
  top: 0;
  z-index: 1200;
}
.tox.tox-tinymce.tox-fullscreen {
  background-color: transparent;
}
.tox-fullscreen .tox.tox-tinymce-aux,
.tox-fullscreen ~ .tox.tox-tinymce-aux {
  z-index: 1201;
}
.tox .tox-help__more-link {
  list-style: none;
  margin-top: 1em;
}
.tox .tox-image-tools {
  width: 100%;
}
.tox .tox-image-tools__toolbar {
  align-items: center;
  display: flex;
  justify-content: center;
}
.tox .tox-image-tools__image {
  background-color: #666;
  height: 380px;
  overflow: auto;
  position: relative;
  width: 100%;
}
.tox .tox-image-tools__image,
.tox .tox-image-tools__image + .tox-image-tools__toolbar {
  margin-top: 8px;
}
.tox .tox-image-tools__image-bg {
  background: url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==);
}
.tox .tox-image-tools__toolbar > .tox-spacer {
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-croprect-block {
  background: black;
  filter: alpha(opacity=50);
  opacity: 0.5;
  position: absolute;
  zoom: 1;
}
.tox .tox-croprect-handle {
  border: 2px solid white;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
}
.tox .tox-croprect-handle-move {
  border: 0;
  cursor: move;
  position: absolute;
}
.tox .tox-croprect-handle-nw {
  border-width: 2px 0 0 2px;
  cursor: nw-resize;
  left: 100px;
  margin: -2px 0 0 -2px;
  top: 100px;
}
.tox .tox-croprect-handle-ne {
  border-width: 2px 2px 0 0;
  cursor: ne-resize;
  left: 200px;
  margin: -2px 0 0 -20px;
  top: 100px;
}
.tox .tox-croprect-handle-sw {
  border-width: 0 0 2px 2px;
  cursor: sw-resize;
  left: 100px;
  margin: -20px 2px 0 -2px;
  top: 200px;
}
.tox .tox-croprect-handle-se {
  border-width: 0 2px 2px 0;
  cursor: se-resize;
  left: 200px;
  margin: -20px 0 0 -20px;
  top: 200px;
}
.tox:not([dir=rtl]) .tox-image-tools__toolbar > .tox-slider:not(:first-of-type) {
  margin-left: 8px;
}
.tox:not([dir=rtl]) .tox-image-tools__toolbar > .tox-button + .tox-slider {
  margin-left: 32px;
}
.tox:not([dir=rtl]) .tox-image-tools__toolbar > .tox-slider + .tox-button {
  margin-left: 32px;
}
.tox[dir=rtl] .tox-image-tools__toolbar > .tox-slider:not(:first-of-type) {
  margin-right: 8px;
}
.tox[dir=rtl] .tox-image-tools__toolbar > .tox-button + .tox-slider {
  margin-right: 32px;
}
.tox[dir=rtl] .tox-image-tools__toolbar > .tox-slider + .tox-button {
  margin-right: 32px;
}
.tox .tox-insert-table-picker {
  display: flex;
  flex-wrap: wrap;
  width: 170px;
}
.tox .tox-insert-table-picker > div {
  border-color: #000000;
  border-style: solid;
  border-width: 0 1px 1px 0;
  box-sizing: border-box;
  height: 17px;
  width: 17px;
}
.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker {
  margin: -4px 0;
}
.tox .tox-insert-table-picker .tox-insert-table-picker__selected {
  background-color: rgba(32, 122, 183, 0.5);
  border-color: rgba(32, 122, 183, 0.5);
}
.tox .tox-insert-table-picker__label {
  color: #cdcdcd;
  display: block;
  font-size: 14px;
  padding: 4px;
  text-align: center;
  width: 100%;
}
.tox:not([dir=rtl]) {
  /* stylelint-disable-next-line no-descending-specificity */
}
.tox:not([dir=rtl]) .tox-insert-table-picker > div:nth-child(10n) {
  border-right: 0;
}
.tox[dir=rtl] {
  /* stylelint-disable-next-line no-descending-specificity */
}
.tox[dir=rtl] .tox-insert-table-picker > div:nth-child(10n+1) {
  border-right: 0;
}
.tox {
  /* stylelint-disable */
  /* stylelint-enable */
}
.tox .tox-menu {
  background-color: #2c3b4e;
  border: 1px solid #000000;
  border-radius: 3px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  z-index: 1150;
}
.tox .tox-menu.tox-collection.tox-collection--list {
  padding: 0;
}
.tox .tox-menu.tox-collection.tox-collection--toolbar {
  padding: 4px;
}
.tox .tox-menu.tox-collection.tox-collection--grid {
  padding: 4px;
}
.tox .tox-menu__label h1,
.tox .tox-menu__label h2,
.tox .tox-menu__label h3,
.tox .tox-menu__label h4,
.tox .tox-menu__label h5,
.tox .tox-menu__label h6,
.tox .tox-menu__label p,
.tox .tox-menu__label blockquote,
.tox .tox-menu__label code {
  margin: 0;
}
.tox .tox-menubar {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E") left 0 top 0 #232f3e;
  background-color: #232f3e;
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
  flex-wrap: wrap;
  padding: 0 4px 0 4px;
}
.tox.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-menubar {
  border-top: 1px solid #000000;
}
/* Deprecated. Remove in next major release */
.tox .tox-mbtn {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 3px;
  box-shadow: none;
  color: #cdcdcd;
  display: flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  height: 34px;
  justify-content: center;
  margin: 2px 0 3px 0;
  outline: none;
  overflow: hidden;
  padding: 0 4px;
  text-transform: none;
  width: auto;
}
.tox .tox-mbtn[disabled] {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  color: rgba(205, 205, 205, 0.5);
  cursor: not-allowed;
}
.tox .tox-mbtn:focus:not(:disabled) {
  background: #262626;
  border: 0;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-mbtn--active {
  background: #262626;
  border: 0;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
  background: #262626;
  border: 0;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-mbtn__select-label {
  cursor: default;
  font-weight: normal;
  margin: 0 4px;
}
.tox .tox-mbtn[disabled] .tox-mbtn__select-label {
  cursor: not-allowed;
}
.tox .tox-mbtn__select-chevron {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 16px;
  display: none;
}
.tox .tox-notification {
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  font-size: 14px;
  font-weight: normal;
  -ms-grid-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  margin-top: 4px;
  opacity: 0;
  padding: 4px;
  transition: transform 100ms ease-in, opacity 150ms ease-in;
}
.tox .tox-notification p {
  font-size: 14px;
  font-weight: normal;
}
.tox .tox-notification a {
  cursor: pointer;
  text-decoration: underline;
}
.tox .tox-notification--in {
  opacity: 1;
}
.tox .tox-notification--success {
  background-color: #e4eeda;
  border-color: #d7e6c8;
  color: #cdcdcd;
}
.tox .tox-notification--success p {
  color: #cdcdcd;
}
.tox .tox-notification--success a {
  color: #547831;
}
.tox .tox-notification--success svg {
  fill: #cdcdcd;
}
.tox .tox-notification--error {
  background-color: #f8dede;
  border-color: #f2bfbf;
  color: #cdcdcd;
}
.tox .tox-notification--error p {
  color: #cdcdcd;
}
.tox .tox-notification--error a {
  color: #c00;
}
.tox .tox-notification--error svg {
  fill: #cdcdcd;
}
.tox .tox-notification--warn,
.tox .tox-notification--warning {
  background-color: #fffaea;
  border-color: #ffe89d;
  color: #cdcdcd;
}
.tox .tox-notification--warn p,
.tox .tox-notification--warning p {
  color: #cdcdcd;
}
.tox .tox-notification--warn a,
.tox .tox-notification--warning a {
  color: #cdcdcd;
}
.tox .tox-notification--warn svg,
.tox .tox-notification--warning svg {
  fill: #cdcdcd;
}
.tox .tox-notification--info {
  background-color: #d9edf7;
  border-color: #779ecb;
  color: #cdcdcd;
}
.tox .tox-notification--info p {
  color: #cdcdcd;
}
.tox .tox-notification--info a {
  color: #cdcdcd;
}
.tox .tox-notification--info svg {
  fill: #cdcdcd;
}
.tox .tox-notification__body {
  -ms-grid-row-align: center;
      align-self: center;
  color: #cdcdcd;
  font-size: 14px;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  text-align: center;
  white-space: normal;
  word-break: break-all;
  word-break: break-word;
}
.tox .tox-notification__body > * {
  margin: 0;
}
.tox .tox-notification__body > * + * {
  margin-top: 1rem;
}
.tox .tox-notification__icon {
  -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-column-align: end;
      justify-self: end;
}
.tox .tox-notification__icon svg {
  display: block;
}
.tox .tox-notification__dismiss {
  -ms-grid-row-align: start;
      align-self: start;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-column: 3;
      grid-column-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-column-align: end;
      justify-self: end;
}
.tox .tox-notification .tox-progress-bar {
  -ms-grid-column-span: 3;
  grid-column-end: 4;
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  -ms-grid-row: 2;
      grid-row-start: 2;
  -ms-grid-column-align: center;
      justify-self: center;
}
.tox .tox-pop {
  display: inline-block;
  position: relative;
}
.tox .tox-pop--resizing {
  transition: width 0.1s ease;
}
.tox .tox-pop--resizing .tox-toolbar,
.tox .tox-pop--resizing .tox-toolbar__group {
  flex-wrap: nowrap;
}
.tox .tox-pop--transition {
  transition: 0.15s ease;
  transition-property: left, right, top, bottom;
}
.tox .tox-pop--transition::before,
.tox .tox-pop--transition::after {
  transition: all 0.15s, visibility 0s, opacity 0.075s ease 0.075s;
}
.tox .tox-pop__dialog {
  background-color: #232f3e;
  border: 1px solid #000000;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  min-width: 0;
  overflow: hidden;
}
.tox .tox-pop__dialog > *:not(.tox-toolbar) {
  margin: 4px 4px 4px 8px;
}
.tox .tox-pop__dialog .tox-toolbar {
  background-color: transparent;
  margin-bottom: -1px;
}
.tox .tox-pop::before,
.tox .tox-pop::after {
  border-style: solid;
  content: '';
  display: block;
  height: 0;
  opacity: 1;
  position: absolute;
  width: 0;
}
.tox .tox-pop.tox-pop--inset::before,
.tox .tox-pop.tox-pop--inset::after {
  opacity: 0;
  transition: all 0s 0.15s, visibility 0s, opacity 0.075s ease;
}
.tox .tox-pop.tox-pop--bottom::before,
.tox .tox-pop.tox-pop--bottom::after {
  left: 50%;
  top: 100%;
}
.tox .tox-pop.tox-pop--bottom::after {
  border-color: #232f3e transparent transparent transparent;
  border-width: 8px;
  margin-left: -8px;
  margin-top: -1px;
}
.tox .tox-pop.tox-pop--bottom::before {
  border-color: #000000 transparent transparent transparent;
  border-width: 9px;
  margin-left: -9px;
}
.tox .tox-pop.tox-pop--top::before,
.tox .tox-pop.tox-pop--top::after {
  left: 50%;
  top: 0;
  transform: translateY(-100%);
}
.tox .tox-pop.tox-pop--top::after {
  border-color: transparent transparent #232f3e transparent;
  border-width: 8px;
  margin-left: -8px;
  margin-top: 1px;
}
.tox .tox-pop.tox-pop--top::before {
  border-color: transparent transparent #000000 transparent;
  border-width: 9px;
  margin-left: -9px;
}
.tox .tox-pop.tox-pop--left::before,
.tox .tox-pop.tox-pop--left::after {
  left: 0;
  top: calc(50% - 1px);
  transform: translateY(-50%);
}
.tox .tox-pop.tox-pop--left::after {
  border-color: transparent #232f3e transparent transparent;
  border-width: 8px;
  margin-left: -15px;
}
.tox .tox-pop.tox-pop--left::before {
  border-color: transparent #000000 transparent transparent;
  border-width: 10px;
  margin-left: -19px;
}
.tox .tox-pop.tox-pop--right::before,
.tox .tox-pop.tox-pop--right::after {
  left: 100%;
  top: calc(50% + 1px);
  transform: translateY(-50%);
}
.tox .tox-pop.tox-pop--right::after {
  border-color: transparent transparent transparent #232f3e;
  border-width: 8px;
  margin-left: -1px;
}
.tox .tox-pop.tox-pop--right::before {
  border-color: transparent transparent transparent #000000;
  border-width: 10px;
  margin-left: -1px;
}
.tox .tox-pop.tox-pop--align-left::before,
.tox .tox-pop.tox-pop--align-left::after {
  left: 20px;
}
.tox .tox-pop.tox-pop--align-right::before,
.tox .tox-pop.tox-pop--align-right::after {
  left: calc(100% - 20px);
}
.tox .tox-sidebar-wrap {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  min-height: 0;
}
.tox .tox-sidebar {
  background-color: #232f3e;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.tox .tox-sidebar__slider {
  display: flex;
  overflow: hidden;
}
.tox .tox-sidebar__pane-container {
  display: flex;
}
.tox .tox-sidebar__pane {
  display: flex;
}
.tox .tox-sidebar--sliding-closed {
  opacity: 0;
}
.tox .tox-sidebar--sliding-open {
  opacity: 1;
}
.tox .tox-sidebar--sliding-growing,
.tox .tox-sidebar--sliding-shrinking {
  transition: width 0.5s ease, opacity 0.5s ease;
}
.tox .tox-selector {
  background-color: #4099ff;
  border-color: #4099ff;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  display: inline-block;
  height: 10px;
  position: absolute;
  width: 10px;
}
.tox.tox-platform-touch .tox-selector {
  height: 12px;
  width: 12px;
}
.tox .tox-slider {
  align-items: center;
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
  height: 24px;
  justify-content: center;
  position: relative;
}
.tox .tox-slider__rail {
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 3px;
  height: 10px;
  min-width: 120px;
  width: 100%;
}
.tox .tox-slider__handle {
  background-color: #207ab7;
  border: 2px solid #185d8c;
  border-radius: 3px;
  box-shadow: none;
  height: 24px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 14px;
}
.tox .tox-source-code {
  overflow: auto;
}
.tox .tox-spinner {
  display: flex;
}
.tox .tox-spinner > div {
  animation: tam-bouncing-dots 1.5s ease-in-out 0s infinite both;
  background-color: rgba(205, 205, 205, 0.5);
  border-radius: 100%;
  height: 8px;
  width: 8px;
}
.tox .tox-spinner > div:nth-child(1) {
  animation-delay: -0.32s;
}
.tox .tox-spinner > div:nth-child(2) {
  animation-delay: -0.16s;
}
@keyframes tam-bouncing-dots {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.tox:not([dir=rtl]) .tox-spinner > div:not(:first-child) {
  margin-left: 4px;
}
.tox[dir=rtl] .tox-spinner > div:not(:first-child) {
  margin-right: 4px;
}
.tox .tox-statusbar {
  align-items: center;
  background-color: #232f3e;
  border-top: 1px solid #000000;
  color: #cdcdcd;
  display: flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: normal;
  height: 18px;
  overflow: hidden;
  padding: 0 8px;
  position: relative;
  text-transform: uppercase;
}
.tox .tox-statusbar__text-container {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  overflow: hidden;
}
.tox .tox-statusbar__path {
  display: flex;
  flex: 1 1 auto;
  margin-right: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tox .tox-statusbar__path > * {
  display: inline;
  white-space: nowrap;
}
.tox .tox-statusbar__wordcount {
  flex: 0 0 auto;
  margin-left: 1ch;
}
.tox .tox-statusbar a,
.tox .tox-statusbar__path-item,
.tox .tox-statusbar__wordcount {
  color: #cdcdcd;
  text-decoration: none;
}
.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),
.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),
.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]),
.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),
.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),
.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]) {
  cursor: pointer;
  text-decoration: underline;
}
.tox .tox-statusbar__resize-handle {
  align-items: flex-end;
  align-self: stretch;
  cursor: nwse-resize;
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: -8px;
  padding-left: 1ch;
}
.tox .tox-statusbar__resize-handle svg {
  display: block;
  fill: #cdcdcd;
}
.tox .tox-statusbar__resize-handle:focus svg {
  background-color: #262626;
  border-radius: 1px;
  box-shadow: 0 0 0 2px #262626;
}
.tox:not([dir=rtl]) .tox-statusbar__path > * {
  margin-right: 4px;
}
.tox:not([dir=rtl]) .tox-statusbar__branding {
  margin-left: 1ch;
}
.tox[dir=rtl] .tox-statusbar {
  flex-direction: row-reverse;
}
.tox[dir=rtl] .tox-statusbar__path > * {
  margin-left: 4px;
}
.tox .tox-throbber {
  z-index: 1299;
}
.tox .tox-throbber__busy-spinner {
  align-items: center;
  background-color: rgba(35, 47, 62, 0.6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.tox .tox-tbtn {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 3px;
  box-shadow: none;
  color: #cdcdcd;
  display: flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  height: 34px;
  justify-content: center;
  margin: 2px 0 3px 0;
  outline: none;
  overflow: hidden;
  padding: 0;
  text-transform: none;
  width: 34px;
}
.tox .tox-tbtn svg {
  display: block;
  fill: #cdcdcd;
}
.tox .tox-tbtn.tox-tbtn-more {
  padding-left: 5px;
  padding-right: 5px;
  width: inherit;
}
.tox .tox-tbtn:focus {
  background: #262626;
  border: 0;
  box-shadow: none;
}
.tox .tox-tbtn:hover {
  background: #262626;
  border: 0;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-tbtn:hover svg {
  fill: #cdcdcd;
}
.tox .tox-tbtn:active {
  background: #262626;
  border: 0;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-tbtn:active svg {
  fill: #cdcdcd;
}
.tox .tox-tbtn--disabled,
.tox .tox-tbtn--disabled:hover,
.tox .tox-tbtn:disabled,
.tox .tox-tbtn:disabled:hover {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: rgba(205, 205, 205, 0.5);
  cursor: not-allowed;
}
.tox .tox-tbtn--disabled svg,
.tox .tox-tbtn--disabled:hover svg,
.tox .tox-tbtn:disabled svg,
.tox .tox-tbtn:disabled:hover svg {
  /* stylelint-disable-line no-descending-specificity */
  fill: rgba(205, 205, 205, 0.5);
}
.tox .tox-tbtn--enabled,
.tox .tox-tbtn--enabled:hover {
  background: #262626;
  border: 0;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-tbtn--enabled > *,
.tox .tox-tbtn--enabled:hover > * {
  transform: none;
}
.tox .tox-tbtn--enabled svg,
.tox .tox-tbtn--enabled:hover svg {
  /* stylelint-disable-line no-descending-specificity */
  fill: #cdcdcd;
}
.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) {
  color: #cdcdcd;
}
.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg {
  fill: #cdcdcd;
}
.tox .tox-tbtn:active > * {
  transform: none;
}
.tox .tox-tbtn--md {
  height: 51px;
  width: 51px;
}
.tox .tox-tbtn--lg {
  flex-direction: column;
  height: 68px;
  width: 68px;
}
.tox .tox-tbtn--return {
  -ms-grid-row-align: stretch;
      align-self: stretch;
  height: unset;
  width: 16px;
}
.tox .tox-tbtn--labeled {
  padding: 0 4px;
  width: unset;
}
.tox .tox-tbtn__vlabel {
  display: block;
  font-size: 10px;
  font-weight: normal;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
  white-space: nowrap;
}
.tox .tox-tbtn--select {
  margin: 2px 0 3px 0;
  padding: 0 4px;
  width: auto;
}
.tox .tox-tbtn__select-label {
  cursor: default;
  font-weight: normal;
  margin: 0 4px;
}
.tox .tox-tbtn__select-chevron {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 16px;
}
.tox .tox-tbtn__select-chevron svg {
  fill: rgba(205, 205, 205, 0.5);
}
.tox .tox-tbtn--bespoke .tox-tbtn__select-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 7em;
}
.tox .tox-split-button {
  border: 0;
  border-radius: 3px;
  box-sizing: border-box;
  display: flex;
  margin: 2px 0 3px 0;
  overflow: hidden;
}
.tox .tox-split-button:hover {
  box-shadow: 0 0 0 1px #262626 inset;
}
.tox .tox-split-button:focus {
  background: #262626;
  box-shadow: none;
  color: #cdcdcd;
}
.tox .tox-split-button > * {
  border-radius: 0;
}
.tox .tox-split-button__chevron {
  width: 16px;
}
.tox .tox-split-button__chevron svg {
  fill: rgba(205, 205, 205, 0.5);
}
.tox .tox-split-button .tox-tbtn {
  margin: 0;
}
.tox.tox-platform-touch .tox-split-button .tox-tbtn:first-child {
  width: 30px;
}
.tox.tox-platform-touch .tox-split-button__chevron {
  width: 20px;
}
.tox .tox-split-button.tox-tbtn--disabled:hover,
.tox .tox-split-button.tox-tbtn--disabled:focus,
.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,
.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus {
  background: transparent;
  box-shadow: none;
  color: rgba(205, 205, 205, 0.5);
}
.tox .tox-toolbar-overlord {
  background-color: #232f3e;
}
.tox .tox-toolbar,
.tox .tox-toolbar__primary,
.tox .tox-toolbar__overflow {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E") left 0 top 0 #232f3e;
  background-color: #232f3e;
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
  flex-wrap: wrap;
  padding: 0 0;
}
.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed {
  height: 0;
  opacity: 0;
  padding-bottom: 0;
  padding-top: 0;
  visibility: hidden;
}
.tox .tox-toolbar__overflow--growing {
  transition: height 0.3s ease, opacity 0.2s linear 0.1s;
}
.tox .tox-toolbar__overflow--shrinking {
  transition: opacity 0.3s ease, height 0.2s linear 0.1s, visibility 0s linear 0.3s;
}
.tox .tox-menubar + .tox-toolbar,
.tox .tox-menubar + .tox-toolbar-overlord .tox-toolbar__primary {
  border-top: 1px solid #000000;
  margin-top: -1px;
}
.tox .tox-toolbar--scrolling {
  flex-wrap: nowrap;
  overflow-x: auto;
}
.tox .tox-pop .tox-toolbar {
  border-width: 0;
}
.tox .tox-toolbar--no-divider {
  background-image: none;
}
.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar:first-child,
.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar-overlord:first-child .tox-toolbar__primary {
  border-top: 1px solid #000000;
}
.tox.tox-tinymce-aux .tox-toolbar__overflow {
  background-color: #232f3e;
  border: 1px solid #000000;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.tox .tox-toolbar__group {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0;
  padding: 0 4px 0 4px;
}
.tox .tox-toolbar__group--pull-right {
  margin-left: auto;
}
.tox .tox-toolbar--scrolling .tox-toolbar__group {
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
  border-right: 1px solid #000000;
}
.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type) {
  border-left: 1px solid #000000;
}
.tox .tox-tooltip {
  display: inline-block;
  padding: 8px;
  position: relative;
}
.tox .tox-tooltip__body {
  background-color: #3f546f;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: rgba(205, 205, 205, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  padding: 4px 8px;
  text-transform: none;
}
.tox .tox-tooltip__arrow {
  position: absolute;
}
.tox .tox-tooltip--down .tox-tooltip__arrow {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #3f546f;
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.tox .tox-tooltip--up .tox-tooltip__arrow {
  border-bottom: 8px solid #3f546f;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}
.tox .tox-tooltip--right .tox-tooltip__arrow {
  border-bottom: 8px solid transparent;
  border-left: 8px solid #3f546f;
  border-top: 8px solid transparent;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tox .tox-tooltip--left .tox-tooltip__arrow {
  border-bottom: 8px solid transparent;
  border-right: 8px solid #3f546f;
  border-top: 8px solid transparent;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.tox .tox-well {
  border: 1px solid #000000;
  border-radius: 3px;
  padding: 8px;
  width: 100%;
}
.tox .tox-well > *:first-child {
  margin-top: 0;
}
.tox .tox-well > *:last-child {
  margin-bottom: 0;
}
.tox .tox-well > *:only-child {
  margin: 0;
}
.tox .tox-custom-editor {
  border: 1px solid #000000;
  border-radius: 3px;
  display: flex;
  flex: 1;
  position: relative;
}
/* stylelint-disable */
.tox {
  /* stylelint-enable */
}
.tox .tox-dialog-loading::before {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 1000;
}
.tox .tox-tab {
  cursor: pointer;
}
.tox .tox-dialog__content-js {
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-dialog__body-content .tox-collection {
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-image-tools-edit-panel {
  height: 60px;
}
.tox .tox-image-tools__sidebar {
  height: 60px;
}


================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/skins/ui/dark/skin.mobile.css
================================================
/**
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
* Licensed under the LGPL or a commercial license.
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*/
/* RESET all the things! */
.tinymce-mobile-outer-container {
  all: initial;
  display: block;
}
.tinymce-mobile-outer-container * {
  border: 0;
  box-sizing: initial;
  cursor: inherit;
  float: none;
  line-height: 1;
  margin: 0;
  outline: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  /* TBIO-3691, stop the gray flicker on touch. */
  text-shadow: none;
  white-space: nowrap;
}
.tinymce-mobile-icon-arrow-back::before {
  content: "\e5cd";
}
.tinymce-mobile-icon-image::before {
  content: "\e412";
}
.tinymce-mobile-icon-cancel-circle::before {
  content: "\e5c9";
}
.tinymce-mobile-icon-full-dot::before {
  content: "\e061";
}
.tinymce-mobile-icon-align-center::before {
  content: "\e234";
}
.tinymce-mobile-icon-align-left::before {
  content: "\e236";
}
.tinymce-mobile-icon-align-right::before {
  content: "\e237";
}
.tinymce-mobile-icon-bold::before {
  content: "\e238";
}
.tinymce-mobile-icon-italic::before {
  content: "\e23f";
}
.tinymce-mobile-icon-unordered-list::before {
  content: "\e241";
}
.tinymce-mobile-icon-ordered-list::before {
  content: "\e242";
}
.tinymce-mobile-icon-font-size::before {
  content: "\e245";
}
.tinymce-mobile-icon-underline::before {
  content: "\e249";
}
.tinymce-mobile-icon-link::before {
  content: "\e157";
}
.tinymce-mobile-icon-unlink::before {
  content: "\eca2";
}
.tinymce-mobile-icon-color::before {
  content: "\e891";
}
.tinymce-mobile-icon-previous::before {
  content: "\e314";
}
.tinymce-mobile-icon-next::before {
  content: "\e315";
}
.tinymce-mobile-icon-large-font::before,
.tinymce-mobile-icon-style-formats::before {
  content: "\e264";
}
.tinymce-mobile-icon-undo::before {
  content: "\e166";
}
.tinymce-mobile-icon-redo::before {
  content: "\e15a";
}
.tinymce-mobile-icon-removeformat::before {
  content: "\e239";
}
.tinymce-mobile-icon-small-font::before {
  content: "\e906";
}
.tinymce-mobile-icon-readonly-back::before,
.tinymce-mobile-format-matches::after {
  content: "\e5ca";
}
.tinymce-mobile-icon-small-heading::before {
  content: "small";
}
.tinymce-mobile-icon-large-heading::before {
  content: "large";
}
.tinymce-mobile-icon-small-heading::before,
.tinymce-mobile-icon-large-heading::before {
  font-family: sans-serif;
  font-size: 80%;
}
.tinymce-mobile-mask-edit-icon::before {
  content: "\e254";
}
.tinymce-mobile-icon-back::before {
  content: "\e5c4";
}
.tinymce-mobile-icon-heading::before {
  /* TODO: Translate */
  content: "Headings";
  font-family: sans-serif;
  font-size: 80%;
  font-weight: bold;
}
.tinymce-mobile-icon-h1::before {
  content: "H1";
  font-weight: bold;
}
.tinymce-mobile-icon-h2::before {
  content: "H2";
  font-weight: bold;
}
.tinymce-mobile-icon-h3::before {
  content: "H3";
  font-weight: bold;
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask {
  align-items: center;
  display: flex;
  justify-content: center;
  background: rgba(51, 51, 51, 0.5);
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container {
  align-items: center;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  font-size: 1em;
  justify-content: space-between;
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .mixin-menu-item {
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  height: 2.1em;
  width: 2.1em;
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 1em;
}
@media only screen and (min-device-width:700px) {
  .tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section {
    font-size: 1.2em;
  }
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section .tinymce-mobile-mask-tap-icon {
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  height: 2.1em;
  width: 2.1em;
  background-color: white;
  color: #207ab7;
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section .tinymce-mobile-mask-tap-icon::before {
  content: "\e900";
  font-family: 'tinymce-mobile', sans-serif;
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section:not(.tinymce-mobile-mask-tap-icon-selected) .tinymce-mobile-mask-tap-icon {
  z-index: 2;
}
.tinymce-mobile-android-container.tinymce-mobile-android-maximized {
  background: #ffffff;
  border: none;
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
.tinymce-mobile-android-container:not(.tinymce-mobile-android-maximized) {
  position: relative;
}
.tinymce-mobile-android-container .tinymce-mobile-editor-socket {
  display: flex;
  flex-grow: 1;
}
.tinymce-mobile-android-container .tinymce-mobile-editor-socket iframe {
  display: flex !important;
  flex-grow: 1;
  height: auto !important;
}
.tinymce-mobile-android-scroll-reload {
  overflow: hidden;
}
:not(.tinymce-mobile-readonly-mode) > .tinymce-mobile-android-selection-context-toolbar {
  margin-top: 23px;
}
.tinymce-mobile-toolstrip {
  background: #fff;
  display: flex;
  flex: 0 0 auto;
  z-index: 1;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar {
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #cccccc;
  display: flex;
  flex: 1;
  height: 2.5em;
  width: 100%;
  /* Make it no larger than the toolstrip, so that it needs to scroll */
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group {
  align-items: center;
  display: flex;
  height: 100%;
  flex-shrink: 1;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group > div {
  align-items: center;
  display: flex;
  height: 100%;
  flex: 1;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group.tinymce-mobile-exit-container {
  background: #f44336;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group.tinymce-mobile-toolbar-scrollable-group {
  flex-grow: 1;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item.tinymce-mobile-toolbar-button {
  align-items: center;
  display: flex;
  height: 80%;
  margin-left: 2px;
  margin-right: 2px;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item.tinymce-mobile-toolbar-button.tinymce-mobile-toolbar-button-selected {
  background: #bfbfbf;
  color: #cccccc;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group:first-of-type,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group:last-of-type {
  background: #207ab7;
  color: #eceff1;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar {
  /* Note, this file is imported inside .tinymce-mobile-context-toolbar, so that prefix is on everything here. */
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group {
  align-items: center;
  display: flex;
  height: 100%;
  flex: 1;
  padding-bottom: 0.4em;
  padding-top: 0.4em;
  /* Make any buttons appearing on the left and right display in the centre (e.g. color edges) */
  /* For widgets like the colour picker, use the whole height */
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog {
  display: flex;
  min-height: 1.5em;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  width: 100%;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain {
  display: flex;
  height: 100%;
  transition: left cubic-bezier(0.4, 0, 1, 1) 0.15s;
  width: 100%;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  width: 100%;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen input {
  font-family: Sans-serif;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-input-container {
  display: flex;
  flex-grow: 1;
  position: relative;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-input-container .tinymce-mobile-input-container-x {
  -ms-grid-row-align: center;
      align-self: center;
  background: inherit;
  border: none;
  border-radius: 50%;
  color: #888;
  font-size: 0.6em;
  font-weight: bold;
  height: 100%;
  padding-right: 2px;
  position: absolute;
  right: 0;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-input-container.tinymce-mobile-input-container-empty .tinymce-mobile-input-container-x {
  display: none;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-previous,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-next {
  align-items: center;
  display: flex;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-previous::before,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-next::before {
  align-items: center;
  display: flex;
  font-weight: bold;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-previous.tinymce-mobile-toolbar-navigation-disabled::before,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-next.tinymce-mobile-toolbar-navigation-disabled::before {
  visibility: hidden;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-dot-item {
  color: #cccccc;
  font-size: 10px;
  line-height: 10px;
  margin: 0 2px;
  padding-top: 3px;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-dot-item.tinymce-mobile-dot-active {
  color: #bfbfbf;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-icon-large-font::before,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-icon-large-heading::before {
  margin-left: 0.5em;
  margin-right: 0.9em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-icon-small-font::before,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-icon-small-heading::before {
  margin-left: 0.9em;
  margin-right: 0.5em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider {
  display: flex;
  flex: 1;
  margin-left: 0;
  margin-right: 0;
  padding: 0.28em 0;
  position: relative;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider .tinymce-mobile-slider-size-container {
  align-items: center;
  display: flex;
  flex-grow: 1;
  height: 100%;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider .tinymce-mobile-slider-size-container .tinymce-mobile-slider-size-line {
  background: #cccccc;
  display: flex;
  flex: 1;
  height: 0.2em;
  margin-bottom: 0.3em;
  margin-top: 0.3em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container {
  padding-left: 2em;
  padding-right: 2em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container .tinymce-mobile-slider-gradient-container {
  align-items: center;
  display: flex;
  flex-grow: 1;
  height: 100%;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container .tinymce-mobile-slider-gradient-container .tinymce-mobile-slider-gradient {
  background: linear-gradient(to right, hsl(0, 100%, 50%) 0%, hsl(60, 100%, 50%) 17%, hsl(120, 100%, 50%) 33%, hsl(180, 100%, 50%) 50%, hsl(240, 100%, 50%) 67%, hsl(300, 100%, 50%) 83%, hsl(0, 100%, 50%) 100%);
  display: flex;
  flex: 1;
  height: 0.2em;
  margin-bottom: 0.3em;
  margin-top: 0.3em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container .tinymce-mobile-hue-slider-black {
  /* Not part of theming */
  background: black;
  height: 0.2em;
  margin-bottom: 0.3em;
  margin-top: 0.3em;
  width: 1.2em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container .tinymce-mobile-hue-slider-white {
  /* Not part of theming */
  background: white;
  height: 0.2em;
  margin-bottom: 0.3em;
  margin-top: 0.3em;
  width: 1.2em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider .tinymce-mobile-slider-thumb {
  /* vertically centering trick (margin: auto, top: 0, bottom: 0). On iOS and Safari, if you leave
     * out these values, then it shows the thumb at the top of the spectrum. This is probably because it is
     * absolutely positioned with only a left value, and not a top. Note, on Chrome it seems to be fine without
     * this approach.
    */
  align-items: center;
  background-clip: padding-box;
  background-color: #455a64;
  border: 0.5em solid rgba(136, 136, 136, 0);
  border-radius: 3em;
  bottom: 0;
  color: #fff;
  display: flex;
  height: 0.5em;
  justify-content: center;
  left: -10px;
  margin: auto;
  position: absolute;
  top: 0;
  transition: border 120ms cubic-bezier(0.39, 0.58, 0.57, 1);
  width: 0.5em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider .tinymce-mobile-slider-thumb.tinymce-mobile-thumb-active {
  border: 0.5em solid rgba(136, 136, 136, 0.39);
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serializer-wrapper,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group > div {
  align-items: center;
  display: flex;
  height: 100%;
  flex: 1;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serializer-wrapper {
  flex-direction: column;
  justify-content: center;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item {
  align-items: center;
  display: flex;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item:not(.tinymce-mobile-serialised-dialog) {
  height: 100%;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-dot-container {
  display: flex;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group input {
  background: #ffffff;
  border: none;
  border-radius: 0;
  color: #455a64;
  flex-grow: 1;
  font-size: 0.85em;
  padding-bottom: 0.1em;
  padding-left: 5px;
  padding-top: 0.1em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #888;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group input:-ms-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #888;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group input::placeholder {
  /* WebKit, Blink, Edge */
  color: #888;
}
/* dropup */
.tinymce-mobile-dropup {
  background: white;
  display: flex;
  overflow: hidden;
  width: 100%;
}
.tinymce-mobile-dropup.tinymce-mobile-dropup-shrinking {
  transition: height 0.3s ease-out;
}
.tinymce-mobile-dropup.tinymce-mobile-dropup-growing {
  transition: height 0.3s ease-in;
}
.tinymce-mobile-dropup.tinymce-mobile-dropup-closed {
  flex-grow: 0;
}
.tinymce-mobile-dropup.tinymce-mobile-dropup-open:not(.tinymce-mobile-dropup-growing) {
  flex-grow: 1;
}
/* TODO min-height for device size and orientation */
.tinymce-mobile-ios-container .tinymce-mobile-dropup:not(.tinymce-mobile-dropup-closed) {
  min-height: 200px;
}
@media only screen and (orientation: landscape) {
  .tinymce-mobile-dropup:not(.tinymce-mobile-dropup-closed) {
    min-height: 200px;
  }
}
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) {
  .tinymce-mobile-ios-container .tinymce-mobile-dropup:not(.tinymce-mobile-dropup-closed) {
    min-height: 150px;
  }
}
/* styles menu */
.tinymce-mobile-styles-menu {
  font-family: sans-serif;
  outline: 4px solid black;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.tinymce-mobile-styles-menu [role="menu"] {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: absolute;
  width: 100%;
}
.tinymce-mobile-styles-menu [role="menu"].transitioning {
  transition: transform 0.5s ease-in-out;
}
.tinymce-mobile-styles-menu .tinymce-mobile-styles-item {
  border-bottom: 1px solid #ddd;
  color: #455a64;
  cursor: pointer;
  display: flex;
  padding: 1em 1em;
  position: relative;
}
.tinymce-mobile-styles-menu .tinymce-mobile-styles-collapser .tinymce-mobile-styles-collapse-icon::before {
  color: #455a64;
  content: "\e314";
  font-family: 'tinymce-mobile', sans-serif;
}
.tinymce-mobile-styles-menu .tinymce-mobile-styles-item.tinymce-mobile-styles-item-is-menu::after {
  color: #455a64;
  content: "\e315";
  font-family: 'tinymce-mobile', sans-serif;
  padding-left: 1em;
  padding-right: 1em;
  position: absolute;
  right: 0;
}
.tinymce-mobile-styles-menu .tinymce-mobile-styles-item.tinymce-mobile-format-matches::after {
  font-family: 'tinymce-mobile', sans-serif;
  padding-left: 1em;
  padding-right: 1em;
  position: absolute;
  right: 0;
}
.tinymce-mobile-styles-menu .tinymce-mobile-styles-separator,
.tinymce-mobile-styles-menu .tinymce-mobile-styles-collapser {
  align-items: center;
  background: #fff;
  border-top: #455a64;
  color: #455a64;
  display: flex;
  min-height: 2.5em;
  padding-left: 1em;
  padding-right: 1em;
}
.tinymce-mobile-styles-menu [data-transitioning-destination="before"][data-transitioning-state],
.tinymce-mobile-styles-menu [data-transitioning-state="before"] {
  transform: translate(-100%);
}
.tinymce-mobile-styles-menu [data-transitioning-destination="current"][data-transitioning-state],
.tinymce-mobile-styles-menu [data-transitioning-state="current"] {
  transform: translate(0%);
}
.tinymce-mobile-styles-menu [data-transitioning-destination="after"][data-transitioning-state],
.tinymce-mobile-styles-menu [data-transitioning-state="after"] {
  transform: translate(100%);
}
@font-face {
  font-family: 'tinymce-mobile';
  font-style: normal;
  font-weight: normal;
  src: url('fonts/tinymce-mobile.woff?8x92w3') format('woff');
}
@media (min-device-width: 700px) {
  .tinymce-mobile-outer-container,
  .tinymce-mobile-outer-container input {
    font-size: 25px;
  }
}
@media (max-device-width: 700px) {
  .tinymce-mobile-outer-container,
  .tinymce-mobile-outer-container input {
    font-size: 18px;
  }
}
.tinymce-mobile-icon {
  font-family: 'tinymce-mobile', sans-serif;
}
.mixin-flex-and-centre {
  align-items: center;
  display: flex;
  justify-content: center;
}
.mixin-flex-bar {
  align-items: center;
  display: flex;
  height: 100%;
}
.tinymce-mobile-outer-container .tinymce-mobile-editor-socket iframe {
  background-color: #fff;
  width: 100%;
}
.tinymce-mobile-editor-socket .tinymce-mobile-mask-edit-icon {
  /* Note, on the iPod touch in landscape, this isn't visible when the navbar appears */
  background-color: #207ab7;
  border-radius: 50%;
  bottom: 1em;
  color: white;
  font-size: 1em;
  height: 2.1em;
  position: fixed;
  right: 2em;
  width: 2.1em;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media only screen and (min-device-width:700px) {
  .tinymce-mobile-editor-socket .tinymce-mobile-mask-edit-icon {
    font-size: 1.2em;
  }
}
.tinymce-mobile-outer-container:not(.tinymce-mobile-fullscreen-maximized) .tinymce-mobile-editor-socket {
  height: 300px;
  overflow: hidden;
}
.tinymce-mobile-outer-container:not(.tinymce-mobile-fullscreen-maximized) .tinymce-mobile-editor-socket iframe {
  height: 100%;
}
.tinymce-mobile-outer-container:not(.tinymce-mobile-fullscreen-maximized) .tinymce-mobile-toolstrip {
  display: none;
}
/*
  Note, that if you don't include this (::-webkit-file-upload-button), the toolbar width gets
  increased and the whole body becomes scrollable. It's important!
 */
input[type="file"]::-webkit-file-upload-button {
  display: none;
}
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) {
  .tinymce-mobile-ios-container .tinymce-mobile-editor-socket .tinymce-mobile-mask-edit-icon {
    bottom: 50%;
  }
}


================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/skins/ui/light/content.css
================================================
/**
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
* Licensed under the LGPL or a commercial license.
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*/
.mce-content-body .mce-item-anchor {
  background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
  cursor: default;
  display: inline-block;
  height: 12px !important;
  padding: 0 2px;
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  -webkit-user-select: all;
  -ms-user-select: all;
      user-select: all;
  width: 8px !important;
}
.mce-content-body .mce-item-anchor[data-mce-selected] {
  outline-offset: 1px;
}
.tox-comments-visible .tox-comment {
  background-color: #fff0b7;
}
.tox-comments-visible .tox-comment--active {
  background-color: #ffe168;
}
.tox-checklist > li:not(.tox-checklist--hidden) {
  list-style: none;
  margin: 0.25em 0;
}
.tox-checklist > li:not(.tox-checklist--hidden)::before {
  content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
  cursor: pointer;
  height: 1em;
  margin-left: -1.5em;
  margin-top: 0.125em;
  position: absolute;
  width: 1em;
}
.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before {
  content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
}
[dir=rtl] .tox-checklist > li:not(.tox-checklist--hidden)::before {
  margin-left: 0;
  margin-right: -1.5em;
}
/* stylelint-disable */
/* http://prismjs.com/ */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */
code[class*="language-"],
pre[class*="language-"] {
  color: black;
  background: none;
  text-shadow: 0 1px white;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  font-size: 1em;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
  text-shadow: none;
  background: #b3d4fc;
}
@media print {
  code[class*="language-"],
  pre[class*="language-"] {
    text-shadow: none;
  }
}
/* Code blocks */
pre[class*="language-"] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: #f5f2f0;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
  padding: 0.1em;
  border-radius: 0.3em;
  white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: slategray;
}
.token.punctuation {
  color: #999;
}
.namespace {
  opacity: 0.7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #9a6e3a;
  background: hsla(0, 0%, 100%, 0.5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
  color: #07a;
}
.token.function,
.token.class-name {
  color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
  color: #e90;
}
.token.important,
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}
.token.entity {
  cursor: help;
}
/* stylelint-enable */
.mce-content-body {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.mce-content-body .mce-visual-caret {
  background-color: black;
  background-color: currentColor;
  position: absolute;
}
.mce-content-body .mce-visual-caret-hidden {
  display: none;
}
.mce-content-body *[data-mce-caret] {
  left: -1000px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: auto;
  top: 0;
}
.mce-content-body .mce-offscreen-selection {
  left: -2000000px;
  max-width: 1000000px;
  position: absolute;
}
.mce-content-body *[contentEditable=false] {
  cursor: default;
}
.mce-content-body *[contentEditable=true] {
  cursor: text;
}
.tox-cursor-format-painter {
  cursor: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"), default;
}
.mce-content-body figure.align-left {
  float: left;
}
.mce-content-body figure.align-right {
  float: right;
}
.mce-content-body figure.image.align-center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.mce-preview-object {
  border: 1px solid gray;
  display: inline-block;
  line-height: 0;
  margin: 0 2px 0 2px;
  position: relative;
}
.mce-preview-object .mce-shim {
  background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.mce-preview-object[data-mce-selected="2"] .mce-shim {
  display: none;
}
.mce-object {
  background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
  border: 1px dashed #aaa;
}
.mce-pagebreak {
  border: 1px dashed #aaa;
  cursor: default;
  display: block;
  height: 5px;
  margin-top: 15px;
  page-break-before: always;
  width: 100%;
}
@media print {
  .mce-pagebreak {
    border: 0;
  }
}
.tiny-pageembed .mce-shim {
  background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.tiny-pageembed[data-mce-selected="2"] .mce-shim {
  display: none;
}
.tiny-pageembed {
  display: inline-block;
  position: relative;
}
.tiny-pageembed--21by9,
.tiny-pageembed--16by9,
.tiny-pageembed--4by3,
.tiny-pageembed--1by1 {
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.tiny-pageembed--21by9 {
  padding-top: 42.857143%;
}
.tiny-pageembed--16by9 {
  padding-top: 56.25%;
}
.tiny-pageembed--4by3 {
  padding-top: 75%;
}
.tiny-pageembed--1by1 {
  padding-top: 100%;
}
.tiny-pageembed--21by9 iframe,
.tiny-pageembed--16by9 iframe,
.tiny-pageembed--4by3 iframe,
.tiny-pageembed--1by1 iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.mce-content-body[data-mce-placeholder] {
  position: relative;
}
.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before {
  color: rgba(34, 47, 62, 0.7);
  content: attr(data-mce-placeholder);
  position: absolute;
}
.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before {
  left: 1px;
}
.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before {
  right: 1px;
}
.mce-content-body div.mce-resizehandle {
  background-color: #4099ff;
  border-color: #4099ff;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  height: 10px;
  position: absolute;
  width: 10px;
  z-index: 1298;
}
.mce-content-body div.mce-resizehandle:hover {
  background-color: #4099ff;
}
.mce-content-body div.mce-resizehandle:nth-of-type(1) {
  cursor: nwse-resize;
}
.mce-content-body div.mce-resizehandle:nth-of-type(2) {
  cursor: nesw-resize;
}
.mce-content-body div.mce-resizehandle:nth-of-type(3) {
  cursor: nwse-resize;
}
.mce-content-body div.mce-resizehandle:nth-of-type(4) {
  cursor: nesw-resize;
}
.mce-content-body .mce-resize-backdrop {
  z-index: 10000;
}
.mce-content-body .mce-clonedresizable {
  cursor: default;
  opacity: 0.5;
  outline: 1px dashed black;
  position: absolute;
  z-index: 10001;
}
.mce-content-body .mce-clonedresizable.mce-resizetable-columns th,
.mce-content-body .mce-clonedresizable.mce-resizetable-columns td {
  border: 0;
}
.mce-content-body .mce-resize-helper {
  background: #555;
  background: rgba(0, 0, 0, 0.75);
  border: 1px;
  border-radius: 3px;
  color: white;
  display: none;
  font-family: sans-serif;
  font-size: 12px;
  line-height: 14px;
  margin: 5px 10px;
  padding: 5px;
  position: absolute;
  white-space: nowrap;
  z-index: 10002;
}
.tox-rtc-user-selection {
  position: relative;
}
.tox-rtc-user-cursor {
  bottom: 0;
  cursor: default;
  position: absolute;
  top: 0;
  width: 2px;
}
.tox-rtc-user-cursor::before {
  background-color: inherit;
  border-radius: 50%;
  content: '';
  display: block;
  height: 8px;
  position: absolute;
  right: -3px;
  top: -3px;
  width: 8px;
}
.tox-rtc-user-cursor:hover::after {
  background-color: inherit;
  border-radius: 100px;
  box-sizing: border-box;
  color: #fff;
  content: attr(data-user);
  display: block;
  font-size: 12px;
  font-weight: bold;
  left: -5px;
  min-height: 8px;
  min-width: 8px;
  padding: 0 12px;
  position: absolute;
  top: -11px;
  white-space: nowrap;
  z-index: 1000;
}
.tox-rtc-user-selection--1 .tox-rtc-user-cursor {
  background-color: #2dc26b;
}
.tox-rtc-user-selection--2 .tox-rtc-user-cursor {
  background-color: #e03e2d;
}
.tox-rtc-user-selection--3 .tox-rtc-user-cursor {
  background-color: #f1c40f;
}
.tox-rtc-user-selection--4 .tox-rtc-user-cursor {
  background-color: #3598db;
}
.tox-rtc-user-selection--5 .tox-rtc-user-cursor {
  background-color: #b96ad9;
}
.tox-rtc-user-selection--6 .tox-rtc-user-cursor {
  background-color: #e67e23;
}
.tox-rtc-user-selection--7 .tox-rtc-user-cursor {
  background-color: #aaa69d;
}
.tox-rtc-user-selection--8 .tox-rtc-user-cursor {
  background-color: #f368e0;
}
.tox-rtc-remote-image {
  background: #eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;
  border: 1px solid #ccc;
  min-height: 240px;
  min-width: 320px;
}
.mce-match-marker {
  background: #aaa;
  color: #fff;
}
.mce-match-marker-selected {
  background: #39f;
  color: #fff;
}
.mce-match-marker-selected::selection {
  background: #39f;
  color: #fff;
}
.mce-content-body img[data-mce-selected],
.mce-content-body video[data-mce-selected],
.mce-content-body audio[data-mce-selected],
.mce-content-body object[data-mce-selected],
.mce-content-body embed[data-mce-selected],
.mce-content-body table[data-mce-selected] {
  outline: 3px solid #b4d7ff;
}
.mce-content-body hr[data-mce-selected] {
  outline: 3px solid #b4d7ff;
  outline-offset: 1px;
}
.mce-content-body *[contentEditable=false] *[contentEditable=true]:focus {
  outline: 3px solid #b4d7ff;
}
.mce-content-body *[contentEditable=false] *[contentEditable=true]:hover {
  outline: 3px solid #b4d7ff;
}
.mce-content-body *[contentEditable=false][data-mce-selected] {
  cursor: not-allowed;
  outline: 3px solid #b4d7ff;
}
.mce-content-body.mce-content-readonly *[contentEditable=true]:focus,
.mce-content-body.mce-content-readonly *[contentEditable=true]:hover {
  outline: none;
}
.mce-content-body *[data-mce-selected="inline-boundary"] {
  background-color: #b4d7ff;
}
.mce-content-body .mce-edit-focus {
  outline: 3px solid #b4d7ff;
}
.mce-content-body td[data-mce-selected],
.mce-content-body th[data-mce-selected] {
  position: relative;
}
.mce-content-body td[data-mce-selected]::selection,
.mce-content-body th[data-mce-selected]::selection {
  background: none;
}
.mce-content-body td[data-mce-selected] *,
.mce-content-body th[data-mce-selected] * {
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.mce-content-body td[data-mce-selected]::after,
.mce-content-body th[data-mce-selected]::after {
  background-color: rgba(180, 215, 255, 0.7);
  border: 1px solid rgba(180, 215, 255, 0.7);
  bottom: -1px;
  content: '';
  left: -1px;
  mix-blend-mode: multiply;
  position: absolute;
  right: -1px;
  top: -1px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .mce-content-body td[data-mce-selected]::after,
  .mce-content-body th[data-mce-selected]::after {
    border-color: rgba(0, 84, 180, 0.7);
  }
}
.mce-content-body img::selection {
  background: none;
}
.ephox-snooker-resizer-bar {
  background-color: #b4d7ff;
  opacity: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ephox-snooker-resizer-cols {
  cursor: col-resize;
}
.ephox-snooker-resizer-rows {
  cursor: row-resize;
}
.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging {
  opacity: 1;
}
.mce-spellchecker-word {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
  background-position: 0 calc(100% + 1px);
  background-repeat: repeat-x;
  background-size: auto 6px;
  cursor: default;
  height: 2rem;
}
.mce-spellchecker-grammar {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
  background-position: 0 calc(100% + 1px);
  background-repeat: repeat-x;
  background-size: auto 6px;
  cursor: default;
}
.mce-toc {
  border: 1px solid gray;
}
.mce-toc h2 {
  margin: 4px;
}
.mce-toc li {
  list-style-type: none;
}
table[style*="border-width: 0px"],
.mce-item-table:not([border]),
.mce-item-table[border="0"],
table[style*="border-width: 0px"] td,
.mce-item-table:not([border]) td,
.mce-item-table[border="0"] td,
table[style*="border-width: 0px"] th,
.mce-item-table:not([border]) th,
.mce-item-table[border="0"] th,
table[style*="border-width: 0px"] caption,
.mce-item-table:not([border]) caption,
.mce-item-table[border="0"] caption {
  border: 1px dashed #bbb;
}
.mce-visualblocks p,
.mce-visualblocks h1,
.mce-visualblocks h2,
.mce-visualblocks h3,
.mce-visualblocks h4,
.mce-visualblocks h5,
.mce-visualblocks h6,
.mce-visualblocks div:not([data-mce-bogus]),
.mce-visualblocks section,
.mce-visualblocks article,
.mce-visualblocks blockquote,
.mce-visualblocks address,
.mce-visualblocks pre,
.mce-visualblocks figure,
.mce-visualblocks figcaption,
.mce-visualblocks hgroup,
.mce-visualblocks aside,
.mce-visualblocks ul,
.mce-visualblocks ol,
.mce-visualblocks dl {
  background-repeat: no-repeat;
  border: 1px dashed #bbb;
  margin-left: 3px;
  padding-top: 10px;
}
.mce-visualblocks p {
  background-image: url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7);
}
.mce-visualblocks h1 {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==);
}
.mce-visualblocks h2 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==);
}
.mce-visualblocks h3 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7);
}
.mce-visualblocks h4 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==);
}
.mce-visualblocks h5 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==);
}
.mce-visualblocks h6 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==);
}
.mce-visualblocks div:not([data-mce-bogus]) {
  background-image: url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7);
}
.mce-visualblocks section {
  background-image: url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=);
}
.mce-visualblocks article {
  background-image: url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7);
}
.mce-visualblocks blockquote {
  background-image: url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7);
}
.mce-visualblocks address {
  background-image: url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=);
}
.mce-visualblocks pre {
  background-image: url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==);
}
.mce-visualblocks figure {
  background-image: url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7);
}
.mce-visualblocks figcaption {
  border: 1px dashed #bbb;
}
.mce-visualblocks hgroup {
  background-image: url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7);
}
.mce-visualblocks aside {
  background-image: url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=);
}
.mce-visualblocks ul {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==);
}
.mce-visualblocks ol {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==);
}
.mce-visualblocks dl {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==);
}
.mce-visualblocks:not([dir=rtl]) p,
.mce-visualblocks:not([dir=rtl]) h1,
.mce-visualblocks:not([dir=rtl]) h2,
.mce-visualblocks:not([dir=rtl]) h3,
.mce-visualblocks:not([dir=rtl]) h4,
.mce-visualblocks:not([dir=rtl]) h5,
.mce-visualblocks:not([dir=rtl]) h6,
.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),
.mce-visualblocks:not([dir=rtl]) section,
.mce-visualblocks:not([dir=rtl]) article,
.mce-visualblocks:not([dir=rtl]) blockquote,
.mce-visualblocks:not([dir=rtl]) address,
.mce-visualblocks:not([dir=rtl]) pre,
.mce-visualblocks:not([dir=rtl]) figure,
.mce-visualblocks:not([dir=rtl]) figcaption,
.mce-visualblocks:not([dir=rtl]) hgroup,
.mce-visualblocks:not([dir=rtl]) aside,
.mce-visualblocks:not([dir=rtl]) ul,
.mce-visualblocks:not([dir=rtl]) ol,
.mce-visualblocks:not([dir=rtl]) dl {
  margin-left: 3px;
}
.mce-visualblocks[dir=rtl] p,
.mce-visualblocks[dir=rtl] h1,
.mce-visualblocks[dir=rtl] h2,
.mce-visualblocks[dir=rtl] h3,
.mce-visualblocks[dir=rtl] h4,
.mce-visualblocks[dir=rtl] h5,
.mce-visualblocks[dir=rtl] h6,
.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),
.mce-visualblocks[dir=rtl] section,
.mce-visualblocks[dir=rtl] article,
.mce-visualblocks[dir=rtl] blockquote,
.mce-visualblocks[dir=rtl] address,
.mce-visualblocks[dir=rtl] pre,
.mce-visualblocks[dir=rtl] figure,
.mce-visualblocks[dir=rtl] figcaption,
.mce-visualblocks[dir=rtl] hgroup,
.mce-visualblocks[dir=rtl] aside,
.mce-visualblocks[dir=rtl] ul,
.mce-visualblocks[dir=rtl] ol,
.mce-visualblocks[dir=rtl] dl {
  background-position-x: right;
  margin-right: 3px;
}
.mce-nbsp,
.mce-shy {
  background: #aaa;
}
.mce-shy::after {
  content: '-';
}
body {
  font-family: sans-serif;
}
table {
  border-collapse: collapse;
}


================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/skins/ui/light/content.inline.css
================================================
/**
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
* Licensed under the LGPL or a commercial license.
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*/
.mce-content-body .mce-item-anchor {
  background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
  cursor: default;
  display: inline-block;
  height: 12px !important;
  padding: 0 2px;
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  -webkit-user-select: all;
  -ms-user-select: all;
      user-select: all;
  width: 8px !important;
}
.mce-content-body .mce-item-anchor[data-mce-selected] {
  outline-offset: 1px;
}
.tox-comments-visible .tox-comment {
  background-color: #fff0b7;
}
.tox-comments-visible .tox-comment--active {
  background-color: #ffe168;
}
.tox-checklist > li:not(.tox-checklist--hidden) {
  list-style: none;
  margin: 0.25em 0;
}
.tox-checklist > li:not(.tox-checklist--hidden)::before {
  content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
  cursor: pointer;
  height: 1em;
  margin-left: -1.5em;
  margin-top: 0.125em;
  position: absolute;
  width: 1em;
}
.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before {
  content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
}
[dir=rtl] .tox-checklist > li:not(.tox-checklist--hidden)::before {
  margin-left: 0;
  margin-right: -1.5em;
}
/* stylelint-disable */
/* http://prismjs.com/ */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */
code[class*="language-"],
pre[class*="language-"] {
  color: black;
  background: none;
  text-shadow: 0 1px white;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  font-size: 1em;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
  text-shadow: none;
  background: #b3d4fc;
}
@media print {
  code[class*="language-"],
  pre[class*="language-"] {
    text-shadow: none;
  }
}
/* Code blocks */
pre[class*="language-"] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: #f5f2f0;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
  padding: 0.1em;
  border-radius: 0.3em;
  white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: slategray;
}
.token.punctuation {
  color: #999;
}
.namespace {
  opacity: 0.7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #9a6e3a;
  background: hsla(0, 0%, 100%, 0.5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
  color: #07a;
}
.token.function,
.token.class-name {
  color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
  color: #e90;
}
.token.important,
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}
.token.entity {
  cursor: help;
}
/* stylelint-enable */
.mce-content-body {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.mce-content-body .mce-visual-caret {
  background-color: black;
  background-color: currentColor;
  position: absolute;
}
.mce-content-body .mce-visual-caret-hidden {
  display: none;
}
.mce-content-body *[data-mce-caret] {
  left: -1000px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: auto;
  top: 0;
}
.mce-content-body .mce-offscreen-selection {
  left: -2000000px;
  max-width: 1000000px;
  position: absolute;
}
.mce-content-body *[contentEditable=false] {
  cursor: default;
}
.mce-content-body *[contentEditable=true] {
  cursor: text;
}
.tox-cursor-format-painter {
  cursor: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"), default;
}
.mce-content-body figure.align-left {
  float: left;
}
.mce-content-body figure.align-right {
  float: right;
}
.mce-content-body figure.image.align-center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.mce-preview-object {
  border: 1px solid gray;
  display: inline-block;
  line-height: 0;
  margin: 0 2px 0 2px;
  position: relative;
}
.mce-preview-object .mce-shim {
  background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.mce-preview-object[data-mce-selected="2"] .mce-shim {
  display: none;
}
.mce-object {
  background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
  border: 1px dashed #aaa;
}
.mce-pagebreak {
  border: 1px dashed #aaa;
  cursor: default;
  display: block;
  height: 5px;
  margin-top: 15px;
  page-break-before: always;
  width: 100%;
}
@media print {
  .mce-pagebreak {
    border: 0;
  }
}
.tiny-pageembed .mce-shim {
  background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.tiny-pageembed[data-mce-selected="2"] .mce-shim {
  display: none;
}
.tiny-pageembed {
  display: inline-block;
  position: relative;
}
.tiny-pageembed--21by9,
.tiny-pageembed--16by9,
.tiny-pageembed--4by3,
.tiny-pageembed--1by1 {
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.tiny-pageembed--21by9 {
  padding-top: 42.857143%;
}
.tiny-pageembed--16by9 {
  padding-top: 56.25%;
}
.tiny-pageembed--4by3 {
  padding-top: 75%;
}
.tiny-pageembed--1by1 {
  padding-top: 100%;
}
.tiny-pageembed--21by9 iframe,
.tiny-pageembed--16by9 iframe,
.tiny-pageembed--4by3 iframe,
.tiny-pageembed--1by1 iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.mce-content-body[data-mce-placeholder] {
  position: relative;
}
.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before {
  color: rgba(34, 47, 62, 0.7);
  content: attr(data-mce-placeholder);
  position: absolute;
}
.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before {
  left: 1px;
}
.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before {
  right: 1px;
}
.mce-content-body div.mce-resizehandle {
  background-color: #4099ff;
  border-color: #4099ff;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  height: 10px;
  position: absolute;
  width: 10px;
  z-index: 1298;
}
.mce-content-body div.mce-resizehandle:hover {
  background-color: #4099ff;
}
.mce-content-body div.mce-resizehandle:nth-of-type(1) {
  cursor: nwse-resize;
}
.mce-content-body div.mce-resizehandle:nth-of-type(2) {
  cursor: nesw-resize;
}
.mce-content-body div.mce-resizehandle:nth-of-type(3) {
  cursor: nwse-resize;
}
.mce-content-body div.mce-resizehandle:nth-of-type(4) {
  cursor: nesw-resize;
}
.mce-content-body .mce-resize-backdrop {
  z-index: 10000;
}
.mce-content-body .mce-clonedresizable {
  cursor: default;
  opacity: 0.5;
  outline: 1px dashed black;
  position: absolute;
  z-index: 10001;
}
.mce-content-body .mce-clonedresizable.mce-resizetable-columns th,
.mce-content-body .mce-clonedresizable.mce-resizetable-columns td {
  border: 0;
}
.mce-content-body .mce-resize-helper {
  background: #555;
  background: rgba(0, 0, 0, 0.75);
  border: 1px;
  border-radius: 3px;
  color: white;
  display: none;
  font-family: sans-serif;
  font-size: 12px;
  line-height: 14px;
  margin: 5px 10px;
  padding: 5px;
  position: absolute;
  white-space: nowrap;
  z-index: 10002;
}
.tox-rtc-user-selection {
  position: relative;
}
.tox-rtc-user-cursor {
  bottom: 0;
  cursor: default;
  position: absolute;
  top: 0;
  width: 2px;
}
.tox-rtc-user-cursor::before {
  background-color: inherit;
  border-radius: 50%;
  content: '';
  display: block;
  height: 8px;
  position: absolute;
  right: -3px;
  top: -3px;
  width: 8px;
}
.tox-rtc-user-cursor:hover::after {
  background-color: inherit;
  border-radius: 100px;
  box-sizing: border-box;
  color: #fff;
  content: attr(data-user);
  display: block;
  font-size: 12px;
  font-weight: bold;
  left: -5px;
  min-height: 8px;
  min-width: 8px;
  padding: 0 12px;
  position: absolute;
  top: -11px;
  white-space: nowrap;
  z-index: 1000;
}
.tox-rtc-user-selection--1 .tox-rtc-user-cursor {
  background-color: #2dc26b;
}
.tox-rtc-user-selection--2 .tox-rtc-user-cursor {
  background-color: #e03e2d;
}
.tox-rtc-user-selection--3 .tox-rtc-user-cursor {
  background-color: #f1c40f;
}
.tox-rtc-user-selection--4 .tox-rtc-user-cursor {
  background-color: #3598db;
}
.tox-rtc-user-selection--5 .tox-rtc-user-cursor {
  background-color: #b96ad9;
}
.tox-rtc-user-selection--6 .tox-rtc-user-cursor {
  background-color: #e67e23;
}
.tox-rtc-user-selection--7 .tox-rtc-user-cursor {
  background-color: #aaa69d;
}
.tox-rtc-user-selection--8 .tox-rtc-user-cursor {
  background-color: #f368e0;
}
.tox-rtc-remote-image {
  background: #eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;
  border: 1px solid #ccc;
  min-height: 240px;
  min-width: 320px;
}
.mce-match-marker {
  background: #aaa;
  color: #fff;
}
.mce-match-marker-selected {
  background: #39f;
  color: #fff;
}
.mce-match-marker-selected::selection {
  background: #39f;
  color: #fff;
}
.mce-content-body img[data-mce-selected],
.mce-content-body video[data-mce-selected],
.mce-content-body audio[data-mce-selected],
.mce-content-body object[data-mce-selected],
.mce-content-body embed[data-mce-selected],
.mce-content-body table[data-mce-selected] {
  outline: 3px solid #b4d7ff;
}
.mce-content-body hr[data-mce-selected] {
  outline: 3px solid #b4d7ff;
  outline-offset: 1px;
}
.mce-content-body *[contentEditable=false] *[contentEditable=true]:focus {
  outline: 3px solid #b4d7ff;
}
.mce-content-body *[contentEditable=false] *[contentEditable=true]:hover {
  outline: 3px solid #b4d7ff;
}
.mce-content-body *[contentEditable=false][data-mce-selected] {
  cursor: not-allowed;
  outline: 3px solid #b4d7ff;
}
.mce-content-body.mce-content-readonly *[contentEditable=true]:focus,
.mce-content-body.mce-content-readonly *[contentEditable=true]:hover {
  outline: none;
}
.mce-content-body *[data-mce-selected="inline-boundary"] {
  background-color: #b4d7ff;
}
.mce-content-body .mce-edit-focus {
  outline: 3px solid #b4d7ff;
}
.mce-content-body td[data-mce-selected],
.mce-content-body th[data-mce-selected] {
  position: relative;
}
.mce-content-body td[data-mce-selected]::selection,
.mce-content-body th[data-mce-selected]::selection {
  background: none;
}
.mce-content-body td[data-mce-selected] *,
.mce-content-body th[data-mce-selected] * {
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.mce-content-body td[data-mce-selected]::after,
.mce-content-body th[data-mce-selected]::after {
  background-color: rgba(180, 215, 255, 0.7);
  border: 1px solid rgba(180, 215, 255, 0.7);
  bottom: -1px;
  content: '';
  left: -1px;
  mix-blend-mode: multiply;
  position: absolute;
  right: -1px;
  top: -1px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .mce-content-body td[data-mce-selected]::after,
  .mce-content-body th[data-mce-selected]::after {
    border-color: rgba(0, 84, 180, 0.7);
  }
}
.mce-content-body img::selection {
  background: none;
}
.ephox-snooker-resizer-bar {
  background-color: #b4d7ff;
  opacity: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ephox-snooker-resizer-cols {
  cursor: col-resize;
}
.ephox-snooker-resizer-rows {
  cursor: row-resize;
}
.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging {
  opacity: 1;
}
.mce-spellchecker-word {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
  background-position: 0 calc(100% + 1px);
  background-repeat: repeat-x;
  background-size: auto 6px;
  cursor: default;
  height: 2rem;
}
.mce-spellchecker-grammar {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
  background-position: 0 calc(100% + 1px);
  background-repeat: repeat-x;
  background-size: auto 6px;
  cursor: default;
}
.mce-toc {
  border: 1px solid gray;
}
.mce-toc h2 {
  margin: 4px;
}
.mce-toc li {
  list-style-type: none;
}
table[style*="border-width: 0px"],
.mce-item-table:not([border]),
.mce-item-table[border="0"],
table[style*="border-width: 0px"] td,
.mce-item-table:not([border]) td,
.mce-item-table[border="0"] td,
table[style*="border-width: 0px"] th,
.mce-item-table:not([border]) th,
.mce-item-table[border="0"] th,
table[style*="border-width: 0px"] caption,
.mce-item-table:not([border]) caption,
.mce-item-table[border="0"] caption {
  border: 1px dashed #bbb;
}
.mce-visualblocks p,
.mce-visualblocks h1,
.mce-visualblocks h2,
.mce-visualblocks h3,
.mce-visualblocks h4,
.mce-visualblocks h5,
.mce-visualblocks h6,
.mce-visualblocks div:not([data-mce-bogus]),
.mce-visualblocks section,
.mce-visualblocks article,
.mce-visualblocks blockquote,
.mce-visualblocks address,
.mce-visualblocks pre,
.mce-visualblocks figure,
.mce-visualblocks figcaption,
.mce-visualblocks hgroup,
.mce-visualblocks aside,
.mce-visualblocks ul,
.mce-visualblocks ol,
.mce-visualblocks dl {
  background-repeat: no-repeat;
  border: 1px dashed #bbb;
  margin-left: 3px;
  padding-top: 10px;
}
.mce-visualblocks p {
  background-image: url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7);
}
.mce-visualblocks h1 {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==);
}
.mce-visualblocks h2 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==);
}
.mce-visualblocks h3 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7);
}
.mce-visualblocks h4 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==);
}
.mce-visualblocks h5 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==);
}
.mce-visualblocks h6 {
  background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==);
}
.mce-visualblocks div:not([data-mce-bogus]) {
  background-image: url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7);
}
.mce-visualblocks section {
  background-image: url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=);
}
.mce-visualblocks article {
  background-image: url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7);
}
.mce-visualblocks blockquote {
  background-image: url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7);
}
.mce-visualblocks address {
  background-image: url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=);
}
.mce-visualblocks pre {
  background-image: url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==);
}
.mce-visualblocks figure {
  background-image: url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7);
}
.mce-visualblocks figcaption {
  border: 1px dashed #bbb;
}
.mce-visualblocks hgroup {
  background-image: url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7);
}
.mce-visualblocks aside {
  background-image: url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=);
}
.mce-visualblocks ul {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==);
}
.mce-visualblocks ol {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==);
}
.mce-visualblocks dl {
  background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==);
}
.mce-visualblocks:not([dir=rtl]) p,
.mce-visualblocks:not([dir=rtl]) h1,
.mce-visualblocks:not([dir=rtl]) h2,
.mce-visualblocks:not([dir=rtl]) h3,
.mce-visualblocks:not([dir=rtl]) h4,
.mce-visualblocks:not([dir=rtl]) h5,
.mce-visualblocks:not([dir=rtl]) h6,
.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),
.mce-visualblocks:not([dir=rtl]) section,
.mce-visualblocks:not([dir=rtl]) article,
.mce-visualblocks:not([dir=rtl]) blockquote,
.mce-visualblocks:not([dir=rtl]) address,
.mce-visualblocks:not([dir=rtl]) pre,
.mce-visualblocks:not([dir=rtl]) figure,
.mce-visualblocks:not([dir=rtl]) figcaption,
.mce-visualblocks:not([dir=rtl]) hgroup,
.mce-visualblocks:not([dir=rtl]) aside,
.mce-visualblocks:not([dir=rtl]) ul,
.mce-visualblocks:not([dir=rtl]) ol,
.mce-visualblocks:not([dir=rtl]) dl {
  margin-left: 3px;
}
.mce-visualblocks[dir=rtl] p,
.mce-visualblocks[dir=rtl] h1,
.mce-visualblocks[dir=rtl] h2,
.mce-visualblocks[dir=rtl] h3,
.mce-visualblocks[dir=rtl] h4,
.mce-visualblocks[dir=rtl] h5,
.mce-visualblocks[dir=rtl] h6,
.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),
.mce-visualblocks[dir=rtl] section,
.mce-visualblocks[dir=rtl] article,
.mce-visualblocks[dir=rtl] blockquote,
.mce-visualblocks[dir=rtl] address,
.mce-visualblocks[dir=rtl] pre,
.mce-visualblocks[dir=rtl] figure,
.mce-visualblocks[dir=rtl] figcaption,
.mce-visualblocks[dir=rtl] hgroup,
.mce-visualblocks[dir=rtl] aside,
.mce-visualblocks[dir=rtl] ul,
.mce-visualblocks[dir=rtl] ol,
.mce-visualblocks[dir=rtl] dl {
  background-position-x: right;
  margin-right: 3px;
}
.mce-nbsp,
.mce-shy {
  background: #aaa;
}
.mce-shy::after {
  content: '-';
}


================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/skins/ui/light/content.mobile.css
================================================
/**
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
* Licensed under the LGPL or a commercial license.
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*/
.tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection {
  /* Note: this file is used inside the content, so isn't part of theming */
  background-color: green;
  display: inline-block;
  opacity: 0.5;
  position: absolute;
}
body {
  -webkit-text-size-adjust: none;
}
body img {
  /* this is related to the content margin */
  max-width: 96vw;
}
body table img {
  max-width: 95%;
}
body {
  font-family: sans-serif;
}
table {
  border-collapse: collapse;
}


================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/skins/ui/light/skin.css
================================================
/**
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
* Licensed under the LGPL or a commercial license.
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*/
.tox {
  box-shadow: none;
  box-sizing: content-box;
  color: #222f3e;
  cursor: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  vertical-align: initial;
  white-space: normal;
}
.tox *:not(svg):not(rect) {
  box-sizing: inherit;
  color: inherit;
  cursor: inherit;
  direction: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  -webkit-tap-highlight-color: inherit;
  text-align: inherit;
  text-decoration: inherit;
  text-shadow: inherit;
  text-transform: inherit;
  vertical-align: inherit;
  white-space: inherit;
}
.tox *:not(svg):not(rect) {
  /* stylelint-disable-line no-duplicate-selectors */
  background: transparent;
  border: 0;
  box-shadow: none;
  float: none;
  height: auto;
  margin: 0;
  max-width: none;
  outline: 0;
  padding: 0;
  position: static;
  width: auto;
}
.tox:not([dir=rtl]) {
  direction: ltr;
  text-align: left;
}
.tox[dir=rtl] {
  direction: rtl;
  text-align: right;
}
.tox-tinymce {
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  overflow: hidden;
  position: relative;
  visibility: inherit !important;
}
.tox-tinymce-inline {
  border: none;
  box-shadow: none;
}
.tox-tinymce-inline .tox-editor-header {
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: none;
}
.tox-tinymce-aux {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  z-index: 1300;
}
.tox-tinymce *:focus,
.tox-tinymce-aux *:focus {
  outline: none;
}
button::-moz-focus-inner {
  border: 0;
}
.tox[dir=rtl] .tox-icon--flip svg {
  transform: rotateY(180deg);
}
.tox .accessibility-issue__header {
  align-items: center;
  display: flex;
  margin-bottom: 4px;
}
.tox .accessibility-issue__description {
  align-items: stretch;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
}
.tox .accessibility-issue__description > div {
  padding-bottom: 4px;
}
.tox .accessibility-issue__description > div > div {
  align-items: center;
  display: flex;
  margin-bottom: 4px;
}
.tox .accessibility-issue__description > *:last-child:not(:only-child) {
  border-color: #ccc;
  border-style: solid;
}
.tox .accessibility-issue__repair {
  margin-top: 16px;
}
.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description {
  background-color: rgba(32, 122, 183, 0.1);
  border-color: rgba(32, 122, 183, 0.4);
  color: #222f3e;
}
.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description > *:last-child {
  border-color: rgba(32, 122, 183, 0.4);
}
.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2 {
  color: #207ab7;
}
.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg {
  fill: #207ab7;
}
.tox .tox-dialog__body-content .accessibility-issue--info a .tox-icon {
  color: #207ab7;
}
.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description {
  background-color: rgba(255, 165, 0, 0.1);
  border-color: rgba(255, 165, 0, 0.5);
  color: #222f3e;
}
.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description > *:last-child {
  border-color: rgba(255, 165, 0, 0.5);
}
.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2 {
  color: #cc8500;
}
.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg {
  fill: #cc8500;
}
.tox .tox-dialog__body-content .accessibility-issue--warn a .tox-icon {
  color: #cc8500;
}
.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description {
  background-color: rgba(204, 0, 0, 0.1);
  border-color: rgba(204, 0, 0, 0.4);
  color: #222f3e;
}
.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description > *:last-child {
  border-color: rgba(204, 0, 0, 0.4);
}
.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2 {
  color: #c00;
}
.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg {
  fill: #c00;
}
.tox .tox-dialog__body-content .accessibility-issue--error a .tox-icon {
  color: #c00;
}
.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description {
  background-color: rgba(120, 171, 70, 0.1);
  border-color: rgba(120, 171, 70, 0.4);
  color: #222f3e;
}
.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description > *:last-child {
  border-color: rgba(120, 171, 70, 0.4);
}
.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2 {
  color: #78AB46;
}
.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg {
  fill: #78AB46;
}
.tox .tox-dialog__body-content .accessibility-issue--success a .tox-icon {
  color: #78AB46;
}
.tox .tox-dialog__body-content .accessibility-issue__header h1,
.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2 {
  margin-top: 0;
}
.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button {
  margin-left: 4px;
}
.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header > *:nth-last-child(2) {
  margin-left: auto;
}
.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description {
  padding: 4px 4px 4px 8px;
}
.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description > *:last-child {
  border-left-width: 1px;
  padding-left: 4px;
}
.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button {
  margin-right: 4px;
}
.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header > *:nth-last-child(2) {
  margin-right: auto;
}
.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description {
  padding: 4px 8px 4px 4px;
}
.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description > *:last-child {
  border-right-width: 1px;
  padding-right: 4px;
}
.tox .tox-anchorbar {
  display: flex;
  flex: 0 0 auto;
}
.tox .tox-bar {
  display: flex;
  flex: 0 0 auto;
}
.tox .tox-button {
  background-color: #207ab7;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  border-color: #207ab7;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 24px;
  margin: 0;
  outline: none;
  padding: 4px 16px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}
.tox .tox-button[disabled] {
  background-color: #207ab7;
  background-image: none;
  border-color: #207ab7;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
}
.tox .tox-button:focus:not(:disabled) {
  background-color: #1c6ca1;
  background-image: none;
  border-color: #1c6ca1;
  box-shadow: none;
  color: #fff;
}
.tox .tox-button:hover:not(:disabled) {
  background-color: #1c6ca1;
  background-image: none;
  border-color: #1c6ca1;
  box-shadow: none;
  color: #fff;
}
.tox .tox-button:active:not(:disabled) {
  background-color: #185d8c;
  background-image: none;
  border-color: #185d8c;
  box-shadow: none;
  color: #fff;
}
.tox .tox-button--secondary {
  background-color: #f0f0f0;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  border-color: #f0f0f0;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  color: #222f3e;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  letter-spacing: normal;
  outline: none;
  padding: 4px 16px;
  text-decoration: none;
  text-transform: none;
}
.tox .tox-button--secondary[disabled] {
  background-color: #f0f0f0;
  background-image: none;
  border-color: #f0f0f0;
  box-shadow: none;
  color: rgba(34, 47, 62, 0.5);
}
.tox .tox-button--secondary:focus:not(:disabled) {
  background-color: #e3e3e3;
  background-image: none;
  border-color: #e3e3e3;
  box-shadow: none;
  color: #222f3e;
}
.tox .tox-button--secondary:hover:not(:disabled) {
  background-color: #e3e3e3;
  background-image: none;
  border-color: #e3e3e3;
  box-shadow: none;
  color: #222f3e;
}
.tox .tox-button--secondary:active:not(:disabled) {
  background-color: #d6d6d6;
  background-image: none;
  border-color: #d6d6d6;
  box-shadow: none;
  color: #222f3e;
}
.tox .tox-button--icon,
.tox .tox-button.tox-button--icon,
.tox .tox-button.tox-button--secondary.tox-button--icon {
  padding: 4px;
}
.tox .tox-button--icon .tox-icon svg,
.tox .tox-button.tox-button--icon .tox-icon svg,
.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg {
  display: block;
  fill: currentColor;
}
.tox .tox-button-link {
  background: 0;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.tox .tox-button-link--sm {
  font-size: 14px;
}
.tox .tox-button--naked {
  background-color: transparent;
  border-color: transparent;
  box-shadow: unset;
  color: #222f3e;
}
.tox .tox-button--naked[disabled] {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  box-shadow: none;
  color: rgba(34, 47, 62, 0.5);
}
.tox .tox-button--naked:hover:not(:disabled) {
  background-color: #e3e3e3;
  border-color: #e3e3e3;
  box-shadow: none;
  color: #222f3e;
}
.tox .tox-button--naked:focus:not(:disabled) {
  background-color: #e3e3e3;
  border-color: #e3e3e3;
  box-shadow: none;
  color: #222f3e;
}
.tox .tox-button--naked:active:not(:disabled) {
  background-color: #d6d6d6;
  border-color: #d6d6d6;
  box-shadow: none;
  color: #222f3e;
}
.tox .tox-button--naked .tox-icon svg {
  fill: currentColor;
}
.tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
  color: #222f3e;
}
.tox .tox-checkbox {
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  height: 36px;
  min-width: 36px;
}
.tox .tox-checkbox__input {
  /* Hide from view but visible to screen readers */
  height: 1px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}
.tox .tox-checkbox__icons {
  align-items: center;
  border-radius: 3px;
  box-shadow: 0 0 0 2px transparent;
  box-sizing: content-box;
  display: flex;
  height: 24px;
  justify-content: center;
  padding: calc(4px - 1px);
  width: 24px;
}
.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  display: block;
  fill: rgba(34, 47, 62, 0.3);
}
.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  display: none;
  fill: #207ab7;
}
.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  display: none;
  fill: #207ab7;
}
.tox .tox-checkbox--disabled {
  color: rgba(34, 47, 62, 0.5);
  cursor: not-allowed;
}
.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  fill: rgba(34, 47, 62, 0.5);
}
.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  fill: rgba(34, 47, 62, 0.5);
}
.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  fill: rgba(34, 47, 62, 0.5);
}
.tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  display: none;
}
.tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  display: block;
}
.tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  display: none;
}
.tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  display: block;
}
.tox input.tox-checkbox__input:focus + .tox-checkbox__icons {
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px #207ab7;
  padding: calc(4px - 1px);
}
.tox:not([dir=rtl]) .tox-checkbox__label {
  margin-left: 4px;
}
.tox:not([dir=rtl]) .tox-checkbox__input {
  left: -10000px;
}
.tox:not([dir=rtl]) .tox-bar .tox-checkbox {
  margin-left: 4px;
}
.tox[dir=rtl] .tox-checkbox__label {
  margin-right: 4px;
}
.tox[dir=rtl] .tox-checkbox__input {
  right: -10000px;
}
.tox[dir=rtl] .tox-bar .tox-checkbox {
  margin-right: 4px;
}
.tox {
  /* stylelint-disable-next-line no-descending-specificity */
}
.tox .tox-collection--toolbar .tox-collection__group {
  display: flex;
  padding: 0;
}
.tox .tox-collection--grid .tox-collection__group {
  display: flex;
  flex-wrap: wrap;
  max-height: 208px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
}
.tox .tox-collection--list .tox-collection__group {
  border-bottom-width: 0;
  border-color: #ccc;
  border-left-width: 0;
  border-right-width: 0;
  border-style: solid;
  border-top-width: 1px;
  padding: 4px 0;
}
.tox .tox-collection--list .tox-collection__group:first-child {
  border-top-width: 0;
}
.tox .tox-collection__group-heading {
  background-color: #e6e6e6;
  color: rgba(34, 47, 62, 0.7);
  cursor: default;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  margin-bottom: 4px;
  margin-top: -4px;
  padding: 4px 8px;
  text-transform: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.tox .tox-collection__item {
  align-items: center;
  color: #222f3e;
  cursor: pointer;
  display: flex;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.tox .tox-collection--list .tox-collection__item {
  padding: 4px 8px;
}
.tox .tox-collection--toolbar .tox-collection__item {
  border-radius: 3px;
  padding: 4px;
}
.tox .tox-collection--grid .tox-collection__item {
  border-radius: 3px;
  padding: 4px;
}
.tox .tox-collection--list .tox-collection__item--enabled {
  background-color: #fff;
  color: #222f3e;
}
.tox .tox-collection--list .tox-collection__item--active {
  background-color: #dee0e2;
}
.tox .tox-collection--toolbar .tox-collection__item--enabled {
  background-color: #dee0e2;
  color: #222f3e;
}
.tox .tox-collection--toolbar .tox-collection__item--active {
  background-color: #dee0e2;
}
.tox .tox-collection--grid .tox-collection__item--enabled {
  background-color: #dee0e2;
  color: #222f3e;
}
.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  background-color: #dee0e2;
  color: #222f3e;
}
.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  color: #222f3e;
}
.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  color: #222f3e;
}
.tox .tox-collection__item-icon,
.tox .tox-collection__item-checkmark {
  align-items: center;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}
.tox .tox-collection__item-icon svg,
.tox .tox-collection__item-checkmark svg {
  fill: currentColor;
}
.tox .tox-collection--toolbar-lg .tox-collection__item-icon {
  height: 48px;
  width: 48px;
}
.tox .tox-collection__item-label {
  color: currentColor;
  display: inline-block;
  flex: 1;
  -ms-flex-preferred-size: auto;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 24px;
  text-transform: none;
  word-break: break-all;
}
.tox .tox-collection__item-accessory {
  color: rgba(34, 47, 62, 0.7);
  display: inline-block;
  font-size: 14px;
  height: 24px;
  line-height: 24px;
  text-transform: none;
}
.tox .tox-collection__item-caret {
  align-items: center;
  display: flex;
  min-height: 24px;
}
.tox .tox-collection__item-caret::after {
  content: '';
  font-size: 0;
  min-height: inherit;
}
.tox .tox-collection__item-caret svg {
  fill: #222f3e;
}
.tox .tox-collection__item--state-disabled {
  background-color: transparent;
  color: rgba(34, 47, 62, 0.5);
  cursor: not-allowed;
}
.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg {
  fill: rgba(34, 47, 62, 0.5);
}
.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg {
  display: none;
}
.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory + .tox-collection__item-checkmark {
  display: none;
}
.tox .tox-collection--horizontal {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
  flex-wrap: nowrap;
  margin-bottom: 0;
  overflow-x: auto;
  padding: 0;
}
.tox .tox-collection--horizontal .tox-collection__group {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0 4px;
}
.tox .tox-collection--horizontal .tox-collection__item {
  height: 34px;
  margin: 2px 0 3px 0;
  padding: 0 4px;
}
.tox .tox-collection--horizontal .tox-collection__item-label {
  white-space: nowrap;
}
.tox .tox-collection--horizontal .tox-collection__item-caret {
  margin-left: 4px;
}
.tox .tox-collection__item-container {
  display: flex;
}
.tox .tox-collection__item-container--row {
  align-items: center;
  flex: 1 1 auto;
  flex-direction: row;
}
.tox .tox-collection__item-container--row.tox-collection__item-container--align-left {
  margin-right: auto;
}
.tox .tox-collection__item-container--row.tox-collection__item-container--align-right {
  justify-content: flex-end;
  margin-left: auto;
}
.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top {
  align-items: flex-start;
  margin-bottom: auto;
}
.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle {
  align-items: center;
}
.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom {
  align-items: flex-end;
  margin-top: auto;
}
.tox .tox-collection__item-container--column {
  -ms-grid-row-align: center;
      align-self: center;
  flex: 1 1 auto;
  flex-direction: column;
}
.tox .tox-collection__item-container--column.tox-collection__item-container--align-left {
  align-items: flex-start;
}
.tox .tox-collection__item-container--column.tox-collection__item-container--align-right {
  align-items: flex-end;
}
.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top {
  align-self: flex-start;
}
.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle {
  -ms-grid-row-align: center;
      align-self: center;
}
.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom {
  align-self: flex-end;
}
.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type) {
  border-right: 1px solid #ccc;
}
.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item > *:not(:first-child) {
  margin-left: 8px;
}
.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item > .tox-collection__item-label:first-child {
  margin-left: 4px;
}
.tox:not([dir=rtl]) .tox-collection__item-accessory {
  margin-left: 16px;
  text-align: right;
}
.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret {
  margin-left: 16px;
}
.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type) {
  border-left: 1px solid #ccc;
}
.tox[dir=rtl] .tox-collection--list .tox-collection__item > *:not(:first-child) {
  margin-right: 8px;
}
.tox[dir=rtl] .tox-collection--list .tox-collection__item > .tox-collection__item-label:first-child {
  margin-right: 4px;
}
.tox[dir=rtl] .tox-collection__item-accessory {
  margin-right: 16px;
  text-align: left;
}
.tox[dir=rtl] .tox-collection .tox-collection__item-caret {
  margin-right: 16px;
  transform: rotateY(180deg);
}
.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret {
  margin-right: 4px;
}
.tox .tox-color-picker-container {
  display: flex;
  flex-direction: row;
  height: 225px;
  margin: 0;
}
.tox .tox-sv-palette {
  box-sizing: border-box;
  display: flex;
  height: 100%;
}
.tox .tox-sv-palette-spectrum {
  height: 100%;
}
.tox .tox-sv-palette,
.tox .tox-sv-palette-spectrum {
  width: 225px;
}
.tox .tox-sv-palette-thumb {
  background: none;
  border: 1px solid black;
  border-radius: 50%;
  box-sizing: content-box;
  height: 12px;
  position: absolute;
  width: 12px;
}
.tox .tox-sv-palette-inner-thumb {
  border: 1px solid white;
  border-radius: 50%;
  height: 10px;
  position: absolute;
  width: 10px;
}
.tox .tox-hue-slider {
  box-sizing: border-box;
  height: 100%;
  width: 25px;
}
.tox .tox-hue-slider-spectrum {
  background: linear-gradient(to bottom, #f00, #ff0080, #f0f, #8000ff, #00f, #0080ff, #0ff, #00ff80, #0f0, #80ff00, #ff0, #ff8000, #f00);
  height: 100%;
  width: 100%;
}
.tox .tox-hue-slider,
.tox .tox-hue-slider-spectrum {
  width: 20px;
}
.tox .tox-hue-slider-thumb {
  background: white;
  border: 1px solid black;
  box-sizing: content-box;
  height: 4px;
  width: 100%;
}
.tox .tox-rgb-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tox .tox-rgb-form div {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  width: inherit;
}
.tox .tox-rgb-form input {
  width: 6em;
}
.tox .tox-rgb-form input.tox-invalid {
  /* Need !important to override Chrome's focus styling unfortunately */
  border: 1px solid red !important;
}
.tox .tox-rgb-form .tox-rgba-preview {
  border: 1px solid black;
  flex-grow: 2;
  margin-bottom: 0;
}
.tox:not([dir=rtl]) .tox-sv-palette {
  margin-right: 15px;
}
.tox:not([dir=rtl]) .tox-hue-slider {
  margin-right: 15px;
}
.tox:not([dir=rtl]) .tox-hue-slider-thumb {
  margin-left: -1px;
}
.tox:not([dir=rtl]) .tox-rgb-form label {
  margin-right: 0.5em;
}
.tox[dir=rtl] .tox-sv-palette {
  margin-left: 15px;
}
.tox[dir=rtl] .tox-hue-slider {
  margin-left: 15px;
}
.tox[dir=rtl] .tox-hue-slider-thumb {
  margin-right: -1px;
}
.tox[dir=rtl] .tox-rgb-form label {
  margin-left: 0.5em;
}
.tox .tox-toolbar .tox-swatches,
.tox .tox-toolbar__primary .tox-swatches,
.tox .tox-toolbar__overflow .tox-swatches {
  margin: 2px 0 3px 4px;
}
.tox .tox-collection--list .tox-collection__group .tox-swatches-menu {
  border: 0;
  margin: -4px 0;
}
.tox .tox-swatches__row {
  display: flex;
}
.tox .tox-swatch {
  height: 30px;
  transition: transform 0.15s, box-shadow 0.15s;
  width: 30px;
}
.tox .tox-swatch:hover,
.tox .tox-swatch:focus {
  box-shadow: 0 0 0 1px rgba(127, 127, 127, 0.3) inset;
  transform: scale(0.8);
}
.tox .tox-swatch--remove {
  align-items: center;
  display: flex;
  justify-content: center;
}
.tox .tox-swatch--remove svg path {
  stroke: #e74c3c;
}
.tox .tox-swatches__picker-btn {
  align-items: center;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  height: 30px;
  justify-content: center;
  outline: none;
  padding: 0;
  width: 30px;
}
.tox .tox-swatches__picker-btn svg {
  height: 24px;
  width: 24px;
}
.tox .tox-swatches__picker-btn:hover {
  background: #dee0e2;
}
.tox:not([dir=rtl]) .tox-swatches__picker-btn {
  margin-left: auto;
}
.tox[dir=rtl] .tox-swatches__picker-btn {
  margin-right: auto;
}
.tox .tox-comment-thread {
  background: #fff;
  position: relative;
}
.tox .tox-comment-thread > *:not(:first-child) {
  margin-top: 8px;
}
.tox .tox-comment {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
  padding: 8px 8px 16px 8px;
  position: relative;
}
.tox .tox-comment__header {
  align-items: center;
  color: #222f3e;
  display: flex;
  justify-content: space-between;
}
.tox .tox-comment__date {
  color: rgba(34, 47, 62, 0.7);
  font-size: 12px;
}
.tox .tox-comment__body {
  color: #222f3e;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.3;
  margin-top: 8px;
  position: relative;
  text-transform: initial;
}
.tox .tox-comment__body textarea {
  resize: none;
  white-space: normal;
  width: 100%;
}
.tox .tox-comment__expander {
  padding-top: 8px;
}
.tox .tox-comment__expander p {
  color: rgba(34, 47, 62, 0.7);
  font-size: 14px;
  font-style: normal;
}
.tox .tox-comment__body p {
  margin: 0;
}
.tox .tox-comment__buttonspacing {
  padding-top: 16px;
  text-align: center;
}
.tox .tox-comment-thread__overlay::after {
  background: #fff;
  bottom: 0;
  content: "";
  display: flex;
  left: 0;
  opacity: 0.9;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
.tox .tox-comment__reply {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 8px;
}
.tox .tox-comment__reply > *:first-child {
  margin-bottom: 8px;
  width: 100%;
}
.tox .tox-comment__edit {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 16px;
}
.tox .tox-comment__gradient::after {
  background: linear-gradient(rgba(255, 255, 255, 0), #fff);
  bottom: 0;
  content: "";
  display: block;
  height: 5em;
  margin-top: -40px;
  position: absolute;
  width: 100%;
}
.tox .tox-comment__overlay {
  background: #fff;
  bottom: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  left: 0;
  opacity: 0.9;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 5;
}
.tox .tox-comment__loading-text {
  align-items: center;
  color: #222f3e;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tox .tox-comment__loading-text > div {
  padding-bottom: 16px;
}
.tox .tox-comment__overlaytext {
  bottom: 0;
  flex-direction: column;
  font-size: 14px;
  left: 0;
  padding: 1em;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.tox .tox-comment__overlaytext p {
  background-color: #fff;
  box-shadow: 0 0 8px 8px #fff;
  color: #222f3e;
  text-align: center;
}
.tox .tox-comment__overlaytext div:nth-of-type(2) {
  font-size: 0.8em;
}
.tox .tox-comment__busy-spinner {
  align-items: center;
  background-color: #fff;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}
.tox .tox-comment__scroll {
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  overflow: auto;
}
.tox .tox-conversations {
  margin: 8px;
}
.tox:not([dir=rtl]) .tox-comment__edit {
  margin-left: 8px;
}
.tox:not([dir=rtl]) .tox-comment__buttonspacing > *:last-child,
.tox:not([dir=rtl]) .tox-comment__edit > *:last-child,
.tox:not([dir=rtl]) .tox-comment__reply > *:last-child {
  margin-left: 8px;
}
.tox[dir=rtl] .tox-comment__edit {
  margin-right: 8px;
}
.tox[dir=rtl] .tox-comment__buttonspacing > *:last-child,
.tox[dir=rtl] .tox-comment__edit > *:last-child,
.tox[dir=rtl] .tox-comment__reply > *:last-child {
  margin-right: 8px;
}
.tox .tox-user {
  align-items: center;
  display: flex;
}
.tox .tox-user__avatar svg {
  fill: rgba(34, 47, 62, 0.7);
}
.tox .tox-user__name {
  color: rgba(34, 47, 62, 0.7);
  font-size: 12px;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
}
.tox:not([dir=rtl]) .tox-user__avatar svg {
  margin-right: 8px;
}
.tox:not([dir=rtl]) .tox-user__avatar + .tox-user__name {
  margin-left: 8px;
}
.tox[dir=rtl] .tox-user__avatar svg {
  margin-left: 8px;
}
.tox[dir=rtl] .tox-user__avatar + .tox-user__name {
  margin-right: 8px;
}
.tox .tox-dialog-wrap {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1100;
}
.tox .tox-dialog-wrap__backdrop {
  background-color: rgba(255, 255, 255, 0.75);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.tox .tox-dialog-wrap__backdrop--opaque {
  background-color: #fff;
}
.tox .tox-dialog {
  background-color: #fff;
  border-color: #ccc;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0 16px 16px -10px rgba(34, 47, 62, 0.15), 0 0 40px 1px rgba(34, 47, 62, 0.15);
  display: flex;
  flex-direction: column;
  max-height: 100%;
  max-width: 480px;
  overflow: hidden;
  position: relative;
  width: 95vw;
  z-index: 2;
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox .tox-dialog {
    align-self: flex-start;
    margin: 8px auto;
    width: calc(100vw - 16px);
  }
}
.tox .tox-dialog-inline {
  z-index: 1100;
}
.tox .tox-dialog__header {
  align-items: center;
  background-color: #fff;
  border-bottom: none;
  color: #222f3e;
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  padding: 8px 16px 0 16px;
  position: relative;
}
.tox .tox-dialog__header .tox-button {
  z-index: 1;
}
.tox .tox-dialog__draghandle {
  cursor: grab;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.tox .tox-dialog__draghandle:active {
  cursor: grabbing;
}
.tox .tox-dialog__dismiss {
  margin-left: auto;
}
.tox .tox-dialog__title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.3;
  margin: 0;
  text-transform: none;
}
.tox .tox-dialog__body {
  color: #222f3e;
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.3;
  min-width: 0;
  text-align: left;
  text-transform: none;
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox .tox-dialog__body {
    flex-direction: column;
  }
}
.tox .tox-dialog__body-nav {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  padding: 16px 16px;
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox .tox-dialog__body-nav {
    flex-direction: row;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    padding-bottom: 0;
  }
}
.tox .tox-dialog__body-nav-item {
  border-bottom: 2px solid transparent;
  color: rgba(34, 47, 62, 0.7);
  display: inline-block;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.tox .tox-dialog__body-nav-item:focus {
  background-color: rgba(32, 122, 183, 0.1);
}
.tox .tox-dialog__body-nav-item--active {
  border-bottom: 2px solid #207ab7;
  color: #207ab7;
}
.tox .tox-dialog__body-content {
  box-sizing: border-box;
  display: flex;
  flex: 1;
  flex-direction: column;
  -ms-flex-preferred-size: auto;
  max-height: 650px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 16px;
}
.tox .tox-dialog__body-content > * {
  margin-bottom: 0;
  margin-top: 16px;
}
.tox .tox-dialog__body-content > *:first-child {
  margin-top: 0;
}
.tox .tox-dialog__body-content > *:last-child {
  margin-bottom: 0;
}
.tox .tox-dialog__body-content > *:only-child {
  margin-bottom: 0;
  margin-top: 0;
}
.tox .tox-dialog__body-content a {
  color: #207ab7;
  cursor: pointer;
  text-decoration: none;
}
.tox .tox-dialog__body-content a:hover,
.tox .tox-dialog__body-content a:focus {
  color: #185d8c;
  text-decoration: none;
}
.tox .tox-dialog__body-content a:active {
  color: #185d8c;
  text-decoration: none;
}
.tox .tox-dialog__body-content svg {
  fill: #222f3e;
}
.tox .tox-dialog__body-content ul {
  display: block;
  list-style-type: disc;
  margin-bottom: 16px;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-padding-start: 2.5rem;
          padding-inline-start: 2.5rem;
}
.tox .tox-dialog__body-content .tox-form__group h1 {
  color: #222f3e;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  letter-spacing: normal;
  margin-bottom: 16px;
  margin-top: 2rem;
  text-transform: none;
}
.tox .tox-dialog__body-content .tox-form__group h2 {
  color: #222f3e;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  letter-spacing: normal;
  margin-bottom: 16px;
  margin-top: 2rem;
  text-transform: none;
}
.tox .tox-dialog__body-content .tox-form__group p {
  margin-bottom: 16px;
}
.tox .tox-dialog__body-content .tox-form__group h1:first-child,
.tox .tox-dialog__body-content .tox-form__group h2:first-child,
.tox .tox-dialog__body-content .tox-form__group p:first-child {
  margin-top: 0;
}
.tox .tox-dialog__body-content .tox-form__group h1:last-child,
.tox .tox-dialog__body-content .tox-form__group h2:last-child,
.tox .tox-dialog__body-content .tox-form__group p:last-child {
  margin-bottom: 0;
}
.tox .tox-dialog__body-content .tox-form__group h1:only-child,
.tox .tox-dialog__body-content .tox-form__group h2:only-child,
.tox .tox-dialog__body-content .tox-form__group p:only-child {
  margin-bottom: 0;
  margin-top: 0;
}
.tox .tox-dialog--width-lg {
  height: 650px;
  max-width: 1200px;
}
.tox .tox-dialog--width-md {
  max-width: 800px;
}
.tox .tox-dialog--width-md .tox-dialog__body-content {
  overflow: auto;
}
.tox .tox-dialog__body-content--centered {
  text-align: center;
}
.tox .tox-dialog__footer {
  align-items: center;
  background-color: #fff;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
}
.tox .tox-dialog__footer-start,
.tox .tox-dialog__footer-end {
  display: flex;
}
.tox .tox-dialog__busy-spinner {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.75);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}
.tox .tox-dialog__table {
  border-collapse: collapse;
  width: 100%;
}
.tox .tox-dialog__table thead th {
  font-weight: bold;
  padding-bottom: 8px;
}
.tox .tox-dialog__table tbody tr {
  border-bottom: 1px solid #ccc;
}
.tox .tox-dialog__table tbody tr:last-child {
  border-bottom: none;
}
.tox .tox-dialog__table td {
  padding-bottom: 8px;
  padding-top: 8px;
}
.tox .tox-dialog__popups {
  position: absolute;
  width: 100%;
  z-index: 1100;
}
.tox .tox-dialog__body-iframe {
  display: flex;
  flex: 1;
  flex-direction: column;
  -ms-flex-preferred-size: auto;
}
.tox .tox-dialog__body-iframe .tox-navobj {
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2) {
  flex: 1;
  -ms-flex-preferred-size: auto;
  height: 100%;
}
.tox .tox-dialog-dock-fadeout {
  opacity: 0;
  visibility: hidden;
}
.tox .tox-dialog-dock-fadein {
  opacity: 1;
  visibility: visible;
}
.tox .tox-dialog-dock-transition {
  transition: visibility 0s linear 0.3s, opacity 0.3s ease;
}
.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein {
  transition-delay: 0s;
}
.tox.tox-platform-ie {
  /* IE11 CSS styles go here */
}
.tox.tox-platform-ie .tox-dialog-wrap {
  position: -ms-device-fixed;
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav {
    margin-right: 0;
  }
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child) {
    margin-left: 8px;
  }
}
.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start > *,
.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end > * {
  margin-left: 8px;
}
.tox[dir=rtl] .tox-dialog__body {
  text-align: right;
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav {
    margin-left: 0;
  }
}
@media only screen and (max-width:767px) {
  body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child) {
    margin-right: 8px;
  }
}
.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start > *,
.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end > * {
  margin-right: 8px;
}
body.tox-dialog__disable-scroll {
  overflow: hidden;
}
.tox .tox-dropzone-container {
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-dropzone {
  align-items: center;
  background: #fff;
  border: 2px dashed #ccc;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  min-height: 100px;
  padding: 10px;
}
.tox .tox-dropzone p {
  color: rgba(34, 47, 62, 0.7);
  margin: 0 0 16px 0;
}
.tox .tox-edit-area {
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
  overflow: hidden;
  position: relative;
}
.tox .tox-edit-area__iframe {
  background-color: #fff;
  border: 0;
  box-sizing: border-box;
  flex: 1;
  -ms-flex-preferred-size: auto;
  height: 100%;
  position: absolute;
  width: 100%;
}
.tox.tox-inline-edit-area {
  border: 1px dotted #ccc;
}
.tox .tox-editor-container {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  overflow: hidden;
}
.tox .tox-editor-header {
  z-index: 1;
}
.tox:not(.tox-tinymce-inline) .tox-editor-header {
  box-shadow: none;
  transition: box-shadow 0.5s;
}
.tox.tox-tinymce--toolbar-bottom .tox-editor-header,
.tox.tox-tinymce-inline .tox-editor-header {
  margin-bottom: -1px;
}
.tox.tox-tinymce--toolbar-sticky-on .tox-editor-header {
  background-color: transparent;
  box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.25);
}
.tox-editor-dock-fadeout {
  opacity: 0;
  visibility: hidden;
}
.tox-editor-dock-fadein {
  opacity: 1;
  visibility: visible;
}
.tox-editor-dock-transition {
  transition: visibility 0s linear 0.25s, opacity 0.25s ease;
}
.tox-editor-dock-transition.tox-editor-dock-fadein {
  transition-delay: 0s;
}
.tox .tox-control-wrap {
  flex: 1;
  position: relative;
}
.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,
.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,
.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid {
  display: none;
}
.tox .tox-control-wrap svg {
  display: block;
}
.tox .tox-control-wrap__status-icon-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.tox .tox-control-wrap__status-icon-invalid svg {
  fill: #c00;
}
.tox .tox-control-wrap__status-icon-unknown svg {
  fill: orange;
}
.tox .tox-control-wrap__status-icon-valid svg {
  fill: green;
}
.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,
.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,
.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield {
  padding-right: 32px;
}
.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap {
  right: 4px;
}
.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,
.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,
.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield {
  padding-left: 32px;
}
.tox[dir=rtl] .tox-control-wrap__status-icon-wrap {
  left: 4px;
}
.tox .tox-autocompleter {
  max-width: 25em;
}
.tox .tox-autocompleter .tox-menu {
  max-width: 25em;
}
.tox .tox-autocompleter .tox-autocompleter-highlight {
  font-weight: bold;
}
.tox .tox-color-input {
  display: flex;
  position: relative;
  z-index: 1;
}
.tox .tox-color-input .tox-textfield {
  z-index: -1;
}
.tox .tox-color-input span {
  border-color: rgba(34, 47, 62, 0.2);
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  box-sizing: border-box;
  height: 24px;
  position: absolute;
  top: 6px;
  width: 24px;
}
.tox .tox-color-input span:hover:not([aria-disabled=true]),
.tox .tox-color-input span:focus:not([aria-disabled=true]) {
  border-color: #207ab7;
  cursor: pointer;
}
.tox .tox-color-input span::before {
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%), linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.25) 75%), linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.25) 75%);
  background-position: 0 0, 0 6px, 6px -6px, -6px 0;
  background-size: 12px 12px;
  border: 1px solid #fff;
  border-radius: 3px;
  box-sizing: border-box;
  content: '';
  height: 24px;
  left: -1px;
  position: absolute;
  top: -1px;
  width: 24px;
  z-index: -1;
}
.tox .tox-color-input span[aria-disabled=true] {
  cursor: not-allowed;
}
.tox:not([dir=rtl]) .tox-color-input {
  /* stylelint-disable-next-line no-descending-specificity */
}
.tox:not([dir=rtl]) .tox-color-input .tox-textfield {
  padding-left: 36px;
}
.tox:not([dir=rtl]) .tox-color-input span {
  left: 6px;
}
.tox[dir="rtl"] .tox-color-input {
  /* stylelint-disable-next-line no-descending-specificity */
}
.tox[dir="rtl"] .tox-color-input .tox-textfield {
  padding-right: 36px;
}
.tox[dir="rtl"] .tox-color-input span {
  right: 6px;
}
.tox .tox-label,
.tox .tox-toolbar-label {
  color: rgba(34, 47, 62, 0.7);
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.3;
  padding: 0 8px 0 0;
  text-transform: none;
  white-space: nowrap;
}
.tox .tox-toolbar-label {
  padding: 0 8px;
}
.tox[dir=rtl] .tox-label {
  padding: 0 0 0 8px;
}
.tox .tox-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  -ms-flex-preferred-size: auto;
}
.tox .tox-form__group {
  box-sizing: border-box;
  margin-bottom: 4px;
}
.tox .tox-form-group--maximize {
  flex: 1;
}
.tox .tox-form__group--error {
  color: #c00;
}
.tox .tox-form__group--collection {
  display: flex;
}
.tox .tox-form__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tox .tox-form__grid--2col > .tox-form__group {
  width: calc(50% - (8px / 2));
}
.tox .tox-form__grid--3col > .tox-form__group {
  width: calc(100% / 3 - (8px / 2));
}
.tox .tox-form__grid--4col > .tox-form__group {
  width: calc(25% - (8px / 2));
}
.tox .tox-form__controls-h-stack {
  align-items: center;
  display: flex;
}
.tox .tox-form__group--inline {
  align-items: center;
  display: flex;
}
.tox .tox-form__group--stretched {
  display: flex;
  flex: 1;
  flex-direction: column;
  -ms-flex-preferred-size: auto;
}
.tox .tox-form__group--stretched .tox-textarea {
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-form__group--stretched .tox-navobj {
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-form__group--stretched .tox-navobj :nth-child(2) {
  flex: 1;
  -ms-flex-preferred-size: auto;
  height: 100%;
}
.tox:not([dir=rtl]) .tox-form__controls-h-stack > *:not(:first-child) {
  margin-left: 4px;
}
.tox[dir=rtl] .tox-form__controls-h-stack > *:not(:first-child) {
  margin-right: 4px;
}
.tox .tox-lock.tox-locked .tox-lock-icon__unlock,
.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock {
  display: none;
}
.tox .tox-textfield,
.tox .tox-toolbar-textfield,
.tox .tox-listboxfield .tox-listbox--select,
.tox .tox-textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #ccc;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  box-sizing: border-box;
  color: #222f3e;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  min-height: 34px;
  outline: none;
  padding: 5px 4.75px;
  resize: none;
  width: 100%;
}
.tox .tox-textfield[disabled],
.tox .tox-textarea[disabled] {
  background-color: #f2f2f2;
  color: rgba(34, 47, 62, 0.85);
  cursor: not-allowed;
}
.tox .tox-textfield:focus,
.tox .tox-listboxfield .tox-listbox--select:focus,
.tox .tox-textarea:focus {
  background-color: #fff;
  border-color: #207ab7;
  box-shadow: none;
  outline: none;
}
.tox .tox-toolbar-textfield {
  border-width: 0;
  margin-bottom: 3px;
  margin-top: 2px;
  max-width: 250px;
}
.tox .tox-naked-btn {
  background-color: transparent;
  border: 0;
  border-color: transparent;
  box-shadow: unset;
  color: #207ab7;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 0;
}
.tox .tox-naked-btn svg {
  display: block;
  fill: #222f3e;
}
.tox:not([dir=rtl]) .tox-toolbar-textfield + * {
  margin-left: 4px;
}
.tox[dir=rtl] .tox-toolbar-textfield + * {
  margin-right: 4px;
}
.tox .tox-listboxfield {
  cursor: pointer;
  position: relative;
}
.tox .tox-listboxfield .tox-listbox--select[disabled] {
  background-color: #f2f2f2;
  color: rgba(34, 47, 62, 0.85);
  cursor: not-allowed;
}
.tox .tox-listbox__select-label {
  cursor: default;
  flex: 1;
  margin: 0 4px;
}
.tox .tox-listbox__select-chevron {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 16px;
}
.tox .tox-listbox__select-chevron svg {
  fill: #222f3e;
}
.tox .tox-listboxfield .tox-listbox--select {
  align-items: center;
  display: flex;
}
.tox:not([dir=rtl]) .tox-listboxfield svg {
  right: 8px;
}
.tox[dir=rtl] .tox-listboxfield svg {
  left: 8px;
}
.tox .tox-selectfield {
  cursor: pointer;
  position: relative;
}
.tox .tox-selectfield select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #ccc;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  box-sizing: border-box;
  color: #222f3e;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  min-height: 34px;
  outline: none;
  padding: 5px 4.75px;
  resize: none;
  width: 100%;
}
.tox .tox-selectfield select[disabled] {
  background-color: #f2f2f2;
  color: rgba(34, 47, 62, 0.85);
  cursor: not-allowed;
}
.tox .tox-selectfield select::-ms-expand {
  display: none;
}
.tox .tox-selectfield select:focus {
  background-color: #fff;
  border-color: #207ab7;
  box-shadow: none;
  outline: none;
}
.tox .tox-selectfield svg {
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.tox:not([dir=rtl]) .tox-selectfield select[size="0"],
.tox:not([dir=rtl]) .tox-selectfield select[size="1"] {
  padding-right: 24px;
}
.tox:not([dir=rtl]) .tox-selectfield svg {
  right: 8px;
}
.tox[dir=rtl] .tox-selectfield select[size="0"],
.tox[dir=rtl] .tox-selectfield select[size="1"] {
  padding-left: 24px;
}
.tox[dir=rtl] .tox-selectfield svg {
  left: 8px;
}
.tox .tox-textarea {
  -webkit-appearance: textarea;
     -moz-appearance: textarea;
          appearance: textarea;
  white-space: pre-wrap;
}
.tox-fullscreen {
  border: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  padding: 0;
  touch-action: pinch-zoom;
  width: 100%;
}
.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle {
  display: none;
}
.tox.tox-tinymce.tox-fullscreen,
.tox-shadowhost.tox-fullscreen {
  left: 0;
  position: fixed;
  top: 0;
  z-index: 1200;
}
.tox.tox-tinymce.tox-fullscreen {
  background-color: transparent;
}
.tox-fullscreen .tox.tox-tinymce-aux,
.tox-fullscreen ~ .tox.tox-tinymce-aux {
  z-index: 1201;
}
.tox .tox-help__more-link {
  list-style: none;
  margin-top: 1em;
}
.tox .tox-image-tools {
  width: 100%;
}
.tox .tox-image-tools__toolbar {
  align-items: center;
  display: flex;
  justify-content: center;
}
.tox .tox-image-tools__image {
  background-color: #666;
  height: 380px;
  overflow: auto;
  position: relative;
  width: 100%;
}
.tox .tox-image-tools__image,
.tox .tox-image-tools__image + .tox-image-tools__toolbar {
  margin-top: 8px;
}
.tox .tox-image-tools__image-bg {
  background: url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==);
}
.tox .tox-image-tools__toolbar > .tox-spacer {
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-croprect-block {
  background: black;
  filter: alpha(opacity=50);
  opacity: 0.5;
  position: absolute;
  zoom: 1;
}
.tox .tox-croprect-handle {
  border: 2px solid white;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
}
.tox .tox-croprect-handle-move {
  border: 0;
  cursor: move;
  position: absolute;
}
.tox .tox-croprect-handle-nw {
  border-width: 2px 0 0 2px;
  cursor: nw-resize;
  left: 100px;
  margin: -2px 0 0 -2px;
  top: 100px;
}
.tox .tox-croprect-handle-ne {
  border-width: 2px 2px 0 0;
  cursor: ne-resize;
  left: 200px;
  margin: -2px 0 0 -20px;
  top: 100px;
}
.tox .tox-croprect-handle-sw {
  border-width: 0 0 2px 2px;
  cursor: sw-resize;
  left: 100px;
  margin: -20px 2px 0 -2px;
  top: 200px;
}
.tox .tox-croprect-handle-se {
  border-width: 0 2px 2px 0;
  cursor: se-resize;
  left: 200px;
  margin: -20px 0 0 -20px;
  top: 200px;
}
.tox:not([dir=rtl]) .tox-image-tools__toolbar > .tox-slider:not(:first-of-type) {
  margin-left: 8px;
}
.tox:not([dir=rtl]) .tox-image-tools__toolbar > .tox-button + .tox-slider {
  margin-left: 32px;
}
.tox:not([dir=rtl]) .tox-image-tools__toolbar > .tox-slider + .tox-button {
  margin-left: 32px;
}
.tox[dir=rtl] .tox-image-tools__toolbar > .tox-slider:not(:first-of-type) {
  margin-right: 8px;
}
.tox[dir=rtl] .tox-image-tools__toolbar > .tox-button + .tox-slider {
  margin-right: 32px;
}
.tox[dir=rtl] .tox-image-tools__toolbar > .tox-slider + .tox-button {
  margin-right: 32px;
}
.tox .tox-insert-table-picker {
  display: flex;
  flex-wrap: wrap;
  width: 170px;
}
.tox .tox-insert-table-picker > div {
  border-color: #ccc;
  border-style: solid;
  border-width: 0 1px 1px 0;
  box-sizing: border-box;
  height: 17px;
  width: 17px;
}
.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker {
  margin: -4px 0;
}
.tox .tox-insert-table-picker .tox-insert-table-picker__selected {
  background-color: rgba(32, 122, 183, 0.5);
  border-color: rgba(32, 122, 183, 0.5);
}
.tox .tox-insert-table-picker__label {
  color: rgba(34, 47, 62, 0.7);
  display: block;
  font-size: 14px;
  padding: 4px;
  text-align: center;
  width: 100%;
}
.tox:not([dir=rtl]) {
  /* stylelint-disable-next-line no-descending-specificity */
}
.tox:not([dir=rtl]) .tox-insert-table-picker > div:nth-child(10n) {
  border-right: 0;
}
.tox[dir=rtl] {
  /* stylelint-disable-next-line no-descending-specificity */
}
.tox[dir=rtl] .tox-insert-table-picker > div:nth-child(10n+1) {
  border-right: 0;
}
.tox {
  /* stylelint-disable */
  /* stylelint-enable */
}
.tox .tox-menu {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  z-index: 1150;
}
.tox .tox-menu.tox-collection.tox-collection--list {
  padding: 0;
}
.tox .tox-menu.tox-collection.tox-collection--toolbar {
  padding: 4px;
}
.tox .tox-menu.tox-collection.tox-collection--grid {
  padding: 4px;
}
.tox .tox-menu__label h1,
.tox .tox-menu__label h2,
.tox .tox-menu__label h3,
.tox .tox-menu__label h4,
.tox .tox-menu__label h5,
.tox .tox-menu__label h6,
.tox .tox-menu__label p,
.tox .tox-menu__label blockquote,
.tox .tox-menu__label code {
  margin: 0;
}
.tox .tox-menubar {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23ccc'/%3E%3C/svg%3E") left 0 top 0 #fff;
  background-color: #fff;
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
  flex-wrap: wrap;
  padding: 0 4px 0 4px;
}
.tox.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-menubar {
  border-top: 1px solid #ccc;
}
/* Deprecated. Remove in next major release */
.tox .tox-mbtn {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 3px;
  box-shadow: none;
  color: #222f3e;
  display: flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  height: 34px;
  justify-content: center;
  margin: 2px 0 3px 0;
  outline: none;
  overflow: hidden;
  padding: 0 4px;
  text-transform: none;
  width: auto;
}
.tox .tox-mbtn[disabled] {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  color: rgba(34, 47, 62, 0.5);
  cursor: not-allowed;
}
.tox .tox-mbtn:focus:not(:disabled) {
  background: #dee0e2;
  border: 0;
  box-shadow: none;
  color: #222f3e;
}
.tox .tox-mbtn--active {
  background: #dee0e2;
  border: 0;
  box-shadow: none;
  color: #222f3e;
}
.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
  background: #dee0e2;
  border: 0;
  box-shadow: none;
  color: #222f3e;
}
.tox .tox-mbtn__select-label {
  cursor: default;
  font-weight: normal;
  margin: 0 4px;
}
.tox .tox-mbtn[disabled] .tox-mbtn__select-label {
  cursor: not-allowed;
}
.tox .tox-mbtn__select-chevron {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 16px;
  display: none;
}
.tox .tox-notification {
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none;
  box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  font-size: 14px;
  font-weight: normal;
  -ms-grid-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  margin-top: 4px;
  opacity: 0;
  padding: 4px;
  transition: transform 100ms ease-in, opacity 150ms ease-in;
}
.tox .tox-notification p {
  font-size: 14px;
  font-weight: normal;
}
.tox .tox-notification a {
  cursor: pointer;
  text-decoration: underline;
}
.tox .tox-notification--in {
  opacity: 1;
}
.tox .tox-notification--success {
  background-color: #e4eeda;
  border-color: #d7e6c8;
  color: #222f3e;
}
.tox .tox-notification--success p {
  color: #222f3e;
}
.tox .tox-notification--success a {
  color: #547831;
}
.tox .tox-notification--success svg {
  fill: #222f3e;
}
.tox .tox-notification--error {
  background-color: #f8dede;
  border-color: #f2bfbf;
  color: #222f3e;
}
.tox .tox-notification--error p {
  color: #222f3e;
}
.tox .tox-notification--error a {
  color: #c00;
}
.tox .tox-notification--error svg {
  fill: #222f3e;
}
.tox .tox-notification--warn,
.tox .tox-notification--warning {
  background-color: #fffaea;
  border-color: #ffe89d;
  color: #222f3e;
}
.tox .tox-notification--warn p,
.tox .tox-notification--warning p {
  color: #222f3e;
}
.tox .tox-notification--warn a,
.tox .tox-notification--warning a {
  color: #222f3e;
}
.tox .tox-notification--warn svg,
.tox .tox-notification--warning svg {
  fill: #222f3e;
}
.tox .tox-notification--info {
  background-color: #d9edf7;
  border-color: #779ecb;
  color: #222f3e;
}
.tox .tox-notification--info p {
  color: #222f3e;
}
.tox .tox-notification--info a {
  color: #222f3e;
}
.tox .tox-notification--info svg {
  fill: #222f3e;
}
.tox .tox-notification__body {
  -ms-grid-row-align: center;
      align-self: center;
  color: #222f3e;
  font-size: 14px;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  text-align: center;
  white-space: normal;
  word-break: break-all;
  word-break: break-word;
}
.tox .tox-notification__body > * {
  margin: 0;
}
.tox .tox-notification__body > * + * {
  margin-top: 1rem;
}
.tox .tox-notification__icon {
  -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-column-align: end;
      justify-self: end;
}
.tox .tox-notification__icon svg {
  display: block;
}
.tox .tox-notification__dismiss {
  -ms-grid-row-align: start;
      align-self: start;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-column: 3;
      grid-column-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-column-align: end;
      justify-self: end;
}
.tox .tox-notification .tox-progress-bar {
  -ms-grid-column-span: 3;
  grid-column-end: 4;
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  -ms-grid-row: 2;
      grid-row-start: 2;
  -ms-grid-column-align: center;
      justify-self: center;
}
.tox .tox-pop {
  display: inline-block;
  position: relative;
}
.tox .tox-pop--resizing {
  transition: width 0.1s ease;
}
.tox .tox-pop--resizing .tox-toolbar,
.tox .tox-pop--resizing .tox-toolbar__group {
  flex-wrap: nowrap;
}
.tox .tox-pop--transition {
  transition: 0.15s ease;
  transition-property: left, right, top, bottom;
}
.tox .tox-pop--transition::before,
.tox .tox-pop--transition::after {
  transition: all 0.15s, visibility 0s, opacity 0.075s ease 0.075s;
}
.tox .tox-pop__dialog {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  min-width: 0;
  overflow: hidden;
}
.tox .tox-pop__dialog > *:not(.tox-toolbar) {
  margin: 4px 4px 4px 8px;
}
.tox .tox-pop__dialog .tox-toolbar {
  background-color: transparent;
  margin-bottom: -1px;
}
.tox .tox-pop::before,
.tox .tox-pop::after {
  border-style: solid;
  content: '';
  display: block;
  height: 0;
  opacity: 1;
  position: absolute;
  width: 0;
}
.tox .tox-pop.tox-pop--inset::before,
.tox .tox-pop.tox-pop--inset::after {
  opacity: 0;
  transition: all 0s 0.15s, visibility 0s, opacity 0.075s ease;
}
.tox .tox-pop.tox-pop--bottom::before,
.tox .tox-pop.tox-pop--bottom::after {
  left: 50%;
  top: 100%;
}
.tox .tox-pop.tox-pop--bottom::after {
  border-color: #fff transparent transparent transparent;
  border-width: 8px;
  margin-left: -8px;
  margin-top: -1px;
}
.tox .tox-pop.tox-pop--bottom::before {
  border-color: #ccc transparent transparent transparent;
  border-width: 9px;
  margin-left: -9px;
}
.tox .tox-pop.tox-pop--top::before,
.tox .tox-pop.tox-pop--top::after {
  left: 50%;
  top: 0;
  transform: translateY(-100%);
}
.tox .tox-pop.tox-pop--top::after {
  border-color: transparent transparent #fff transparent;
  border-width: 8px;
  margin-left: -8px;
  margin-top: 1px;
}
.tox .tox-pop.tox-pop--top::before {
  border-color: transparent transparent #ccc transparent;
  border-width: 9px;
  margin-left: -9px;
}
.tox .tox-pop.tox-pop--left::before,
.tox .tox-pop.tox-pop--left::after {
  left: 0;
  top: calc(50% - 1px);
  transform: translateY(-50%);
}
.tox .tox-pop.tox-pop--left::after {
  border-color: transparent #fff transparent transparent;
  border-width: 8px;
  margin-left: -15px;
}
.tox .tox-pop.tox-pop--left::before {
  border-color: transparent #ccc transparent transparent;
  border-width: 10px;
  margin-left: -19px;
}
.tox .tox-pop.tox-pop--right::before,
.tox .tox-pop.tox-pop--right::after {
  left: 100%;
  top: calc(50% + 1px);
  transform: translateY(-50%);
}
.tox .tox-pop.tox-pop--right::after {
  border-color: transparent transparent transparent #fff;
  border-width: 8px;
  margin-left: -1px;
}
.tox .tox-pop.tox-pop--right::before {
  border-color: transparent transparent transparent #ccc;
  border-width: 10px;
  margin-left: -1px;
}
.tox .tox-pop.tox-pop--align-left::before,
.tox .tox-pop.tox-pop--align-left::after {
  left: 20px;
}
.tox .tox-pop.tox-pop--align-right::before,
.tox .tox-pop.tox-pop--align-right::after {
  left: calc(100% - 20px);
}
.tox .tox-sidebar-wrap {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  min-height: 0;
}
.tox .tox-sidebar {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.tox .tox-sidebar__slider {
  display: flex;
  overflow: hidden;
}
.tox .tox-sidebar__pane-container {
  display: flex;
}
.tox .tox-sidebar__pane {
  display: flex;
}
.tox .tox-sidebar--sliding-closed {
  opacity: 0;
}
.tox .tox-sidebar--sliding-open {
  opacity: 1;
}
.tox .tox-sidebar--sliding-growing,
.tox .tox-sidebar--sliding-shrinking {
  transition: width 0.5s ease, opacity 0.5s ease;
}
.tox .tox-selector {
  background-color: #4099ff;
  border-color: #4099ff;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  display: inline-block;
  height: 10px;
  position: absolute;
  width: 10px;
}
.tox.tox-platform-touch .tox-selector {
  height: 12px;
  width: 12px;
}
.tox .tox-slider {
  align-items: center;
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
  height: 24px;
  justify-content: center;
  position: relative;
}
.tox .tox-slider__rail {
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 3px;
  height: 10px;
  min-width: 120px;
  width: 100%;
}
.tox .tox-slider__handle {
  background-color: #207ab7;
  border: 2px solid #185d8c;
  border-radius: 3px;
  box-shadow: none;
  height: 24px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 14px;
}
.tox .tox-source-code {
  overflow: auto;
}
.tox .tox-spinner {
  display: flex;
}
.tox .tox-spinner > div {
  animation: tam-bouncing-dots 1.5s ease-in-out 0s infinite both;
  background-color: rgba(34, 47, 62, 0.7);
  border-radius: 100%;
  height: 8px;
  width: 8px;
}
.tox .tox-spinner > div:nth-child(1) {
  animation-delay: -0.32s;
}
.tox .tox-spinner > div:nth-child(2) {
  animation-delay: -0.16s;
}
@keyframes tam-bouncing-dots {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.tox:not([dir=rtl]) .tox-spinner > div:not(:first-child) {
  margin-left: 4px;
}
.tox[dir=rtl] .tox-spinner > div:not(:first-child) {
  margin-right: 4px;
}
.tox .tox-statusbar {
  align-items: center;
  background-color: #fff;
  border-top: 1px solid #ccc;
  color: rgba(34, 47, 62, 0.7);
  display: flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: normal;
  height: 18px;
  overflow: hidden;
  padding: 0 8px;
  position: relative;
  text-transform: uppercase;
}
.tox .tox-statusbar__text-container {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  overflow: hidden;
}
.tox .tox-statusbar__path {
  display: flex;
  flex: 1 1 auto;
  margin-right: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tox .tox-statusbar__path > * {
  display: inline;
  white-space: nowrap;
}
.tox .tox-statusbar__wordcount {
  flex: 0 0 auto;
  margin-left: 1ch;
}
.tox .tox-statusbar a,
.tox .tox-statusbar__path-item,
.tox .tox-statusbar__wordcount {
  color: rgba(34, 47, 62, 0.7);
  text-decoration: none;
}
.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),
.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),
.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]),
.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),
.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),
.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]) {
  cursor: pointer;
  text-decoration: underline;
}
.tox .tox-statusbar__resize-handle {
  align-items: flex-end;
  align-self: stretch;
  cursor: nwse-resize;
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: -8px;
  padding-left: 1ch;
}
.tox .tox-statusbar__resize-handle svg {
  display: block;
  fill: rgba(34, 47, 62, 0.7);
}
.tox .tox-statusbar__resize-handle:focus svg {
  background-color: #dee0e2;
  border-radius: 1px;
  box-shadow: 0 0 0 2px #dee0e2;
}
.tox:not([dir=rtl]) .tox-statusbar__path > * {
  margin-right: 4px;
}
.tox:not([dir=rtl]) .tox-statusbar__branding {
  margin-left: 1ch;
}
.tox[dir=rtl] .tox-statusbar {
  flex-direction: row-reverse;
}
.tox[dir=rtl] .tox-statusbar__path > * {
  margin-left: 4px;
}
.tox .tox-throbber {
  z-index: 1299;
}
.tox .tox-throbber__busy-spinner {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.tox .tox-tbtn {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 3px;
  box-shadow: none;
  color: #222f3e;
  display: flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  height: 34px;
  justify-content: center;
  margin: 2px 0 3px 0;
  outline: none;
  overflow: hidden;
  padding: 0;
  text-transform: none;
  width: 34px;
}
.tox .tox-tbtn svg {
  display: block;
  fill: #222f3e;
}
.tox .tox-tbtn.tox-tbtn-more {
  padding-left: 5px;
  padding-right: 5px;
  width: inherit;
}
.tox .tox-tbtn:focus {
  background: #dee0e2;
  border: 0;
  box-shadow: none;
}
.tox .tox-tbtn:hover {
  background: #dee0e2;
  border: 0;
  box-shadow: none;
  color: #222f3e;
}
.tox .tox-tbtn:hover svg {
  fill: #222f3e;
}
.tox .tox-tbtn:active {
  background: #dee0e2;
  border: 0;
  box-shadow: none;
  color: #222f3e;
}
.tox .tox-tbtn:active svg {
  fill: #222f3e;
}
.tox .tox-tbtn--disabled,
.tox .tox-tbtn--disabled:hover,
.tox .tox-tbtn:disabled,
.tox .tox-tbtn:disabled:hover {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: rgba(34, 47, 62, 0.5);
  cursor: not-allowed;
}
.tox .tox-tbtn--disabled svg,
.tox .tox-tbtn--disabled:hover svg,
.tox .tox-tbtn:disabled svg,
.tox .tox-tbtn:disabled:hover svg {
  /* stylelint-disable-line no-descending-specificity */
  fill: rgba(34, 47, 62, 0.5);
}
.tox .tox-tbtn--enabled,
.tox .tox-tbtn--enabled:hover {
  background: #dee0e2;
  border: 0;
  box-shadow: none;
  color: #222f3e;
}
.tox .tox-tbtn--enabled > *,
.tox .tox-tbtn--enabled:hover > * {
  transform: none;
}
.tox .tox-tbtn--enabled svg,
.tox .tox-tbtn--enabled:hover svg {
  /* stylelint-disable-line no-descending-specificity */
  fill: #222f3e;
}
.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) {
  color: #222f3e;
}
.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg {
  fill: #222f3e;
}
.tox .tox-tbtn:active > * {
  transform: none;
}
.tox .tox-tbtn--md {
  height: 51px;
  width: 51px;
}
.tox .tox-tbtn--lg {
  flex-direction: column;
  height: 68px;
  width: 68px;
}
.tox .tox-tbtn--return {
  -ms-grid-row-align: stretch;
      align-self: stretch;
  height: unset;
  width: 16px;
}
.tox .tox-tbtn--labeled {
  padding: 0 4px;
  width: unset;
}
.tox .tox-tbtn__vlabel {
  display: block;
  font-size: 10px;
  font-weight: normal;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
  white-space: nowrap;
}
.tox .tox-tbtn--select {
  margin: 2px 0 3px 0;
  padding: 0 4px;
  width: auto;
}
.tox .tox-tbtn__select-label {
  cursor: default;
  font-weight: normal;
  margin: 0 4px;
}
.tox .tox-tbtn__select-chevron {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 16px;
}
.tox .tox-tbtn__select-chevron svg {
  fill: rgba(34, 47, 62, 0.5);
}
.tox .tox-tbtn--bespoke .tox-tbtn__select-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 7em;
}
.tox .tox-split-button {
  border: 0;
  border-radius: 3px;
  box-sizing: border-box;
  display: flex;
  margin: 2px 0 3px 0;
  overflow: hidden;
}
.tox .tox-split-button:hover {
  box-shadow: 0 0 0 1px #dee0e2 inset;
}
.tox .tox-split-button:focus {
  background: #dee0e2;
  box-shadow: none;
  color: #222f3e;
}
.tox .tox-split-button > * {
  border-radius: 0;
}
.tox .tox-split-button__chevron {
  width: 16px;
}
.tox .tox-split-button__chevron svg {
  fill: rgba(34, 47, 62, 0.5);
}
.tox .tox-split-button .tox-tbtn {
  margin: 0;
}
.tox.tox-platform-touch .tox-split-button .tox-tbtn:first-child {
  width: 30px;
}
.tox.tox-platform-touch .tox-split-button__chevron {
  width: 20px;
}
.tox .tox-split-button.tox-tbtn--disabled:hover,
.tox .tox-split-button.tox-tbtn--disabled:focus,
.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,
.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus {
  background: transparent;
  box-shadow: none;
  color: rgba(34, 47, 62, 0.5);
}
.tox .tox-toolbar-overlord {
  background-color: #fff;
}
.tox .tox-toolbar,
.tox .tox-toolbar__primary,
.tox .tox-toolbar__overflow {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23ccc'/%3E%3C/svg%3E") left 0 top 0 #fff;
  background-color: #fff;
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
  flex-wrap: wrap;
  padding: 0 0;
}
.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed {
  height: 0;
  opacity: 0;
  padding-bottom: 0;
  padding-top: 0;
  visibility: hidden;
}
.tox .tox-toolbar__overflow--growing {
  transition: height 0.3s ease, opacity 0.2s linear 0.1s;
}
.tox .tox-toolbar__overflow--shrinking {
  transition: opacity 0.3s ease, height 0.2s linear 0.1s, visibility 0s linear 0.3s;
}
.tox .tox-menubar + .tox-toolbar,
.tox .tox-menubar + .tox-toolbar-overlord .tox-toolbar__primary {
  border-top: 1px solid #ccc;
  margin-top: -1px;
}
.tox .tox-toolbar--scrolling {
  flex-wrap: nowrap;
  overflow-x: auto;
}
.tox .tox-pop .tox-toolbar {
  border-width: 0;
}
.tox .tox-toolbar--no-divider {
  background-image: none;
}
.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar:first-child,
.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar-overlord:first-child .tox-toolbar__primary {
  border-top: 1px solid #ccc;
}
.tox.tox-tinymce-aux .tox-toolbar__overflow {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.tox .tox-toolbar__group {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0;
  padding: 0 4px 0 4px;
}
.tox .tox-toolbar__group--pull-right {
  margin-left: auto;
}
.tox .tox-toolbar--scrolling .tox-toolbar__group {
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
  border-right: 1px solid #ccc;
}
.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type) {
  border-left: 1px solid #ccc;
}
.tox .tox-tooltip {
  display: inline-block;
  padding: 8px;
  position: relative;
}
.tox .tox-tooltip__body {
  background-color: #222f3e;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(34, 47, 62, 0.3);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  padding: 4px 8px;
  text-transform: none;
}
.tox .tox-tooltip__arrow {
  position: absolute;
}
.tox .tox-tooltip--down .tox-tooltip__arrow {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #222f3e;
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.tox .tox-tooltip--up .tox-tooltip__arrow {
  border-bottom: 8px solid #222f3e;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}
.tox .tox-tooltip--right .tox-tooltip__arrow {
  border-bottom: 8px solid transparent;
  border-left: 8px solid #222f3e;
  border-top: 8px solid transparent;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tox .tox-tooltip--left .tox-tooltip__arrow {
  border-bottom: 8px solid transparent;
  border-right: 8px solid #222f3e;
  border-top: 8px solid transparent;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.tox .tox-well {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 8px;
  width: 100%;
}
.tox .tox-well > *:first-child {
  margin-top: 0;
}
.tox .tox-well > *:last-child {
  margin-bottom: 0;
}
.tox .tox-well > *:only-child {
  margin: 0;
}
.tox .tox-custom-editor {
  border: 1px solid #ccc;
  border-radius: 3px;
  display: flex;
  flex: 1;
  position: relative;
}
/* stylelint-disable */
.tox {
  /* stylelint-enable */
}
.tox .tox-dialog-loading::before {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 1000;
}
.tox .tox-tab {
  cursor: pointer;
}
.tox .tox-dialog__content-js {
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-dialog__body-content .tox-collection {
  display: flex;
  flex: 1;
  -ms-flex-preferred-size: auto;
}
.tox .tox-image-tools-edit-panel {
  height: 60px;
}
.tox .tox-image-tools__sidebar {
  height: 60px;
}


================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/skins/ui/light/skin.mobile.css
================================================
/**
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
* Licensed under the LGPL or a commercial license.
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*/
/* RESET all the things! */
.tinymce-mobile-outer-container {
  all: initial;
  display: block;
}
.tinymce-mobile-outer-container * {
  border: 0;
  box-sizing: initial;
  cursor: inherit;
  float: none;
  line-height: 1;
  margin: 0;
  outline: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  /* TBIO-3691, stop the gray flicker on touch. */
  text-shadow: none;
  white-space: nowrap;
}
.tinymce-mobile-icon-arrow-back::before {
  content: "\e5cd";
}
.tinymce-mobile-icon-image::before {
  content: "\e412";
}
.tinymce-mobile-icon-cancel-circle::before {
  content: "\e5c9";
}
.tinymce-mobile-icon-full-dot::before {
  content: "\e061";
}
.tinymce-mobile-icon-align-center::before {
  content: "\e234";
}
.tinymce-mobile-icon-align-left::before {
  content: "\e236";
}
.tinymce-mobile-icon-align-right::before {
  content: "\e237";
}
.tinymce-mobile-icon-bold::before {
  content: "\e238";
}
.tinymce-mobile-icon-italic::before {
  content: "\e23f";
}
.tinymce-mobile-icon-unordered-list::before {
  content: "\e241";
}
.tinymce-mobile-icon-ordered-list::before {
  content: "\e242";
}
.tinymce-mobile-icon-font-size::before {
  content: "\e245";
}
.tinymce-mobile-icon-underline::before {
  content: "\e249";
}
.tinymce-mobile-icon-link::before {
  content: "\e157";
}
.tinymce-mobile-icon-unlink::before {
  content: "\eca2";
}
.tinymce-mobile-icon-color::before {
  content: "\e891";
}
.tinymce-mobile-icon-previous::before {
  content: "\e314";
}
.tinymce-mobile-icon-next::before {
  content: "\e315";
}
.tinymce-mobile-icon-large-font::before,
.tinymce-mobile-icon-style-formats::before {
  content: "\e264";
}
.tinymce-mobile-icon-undo::before {
  content: "\e166";
}
.tinymce-mobile-icon-redo::before {
  content: "\e15a";
}
.tinymce-mobile-icon-removeformat::before {
  content: "\e239";
}
.tinymce-mobile-icon-small-font::before {
  content: "\e906";
}
.tinymce-mobile-icon-readonly-back::before,
.tinymce-mobile-format-matches::after {
  content: "\e5ca";
}
.tinymce-mobile-icon-small-heading::before {
  content: "small";
}
.tinymce-mobile-icon-large-heading::before {
  content: "large";
}
.tinymce-mobile-icon-small-heading::before,
.tinymce-mobile-icon-large-heading::before {
  font-family: sans-serif;
  font-size: 80%;
}
.tinymce-mobile-mask-edit-icon::before {
  content: "\e254";
}
.tinymce-mobile-icon-back::before {
  content: "\e5c4";
}
.tinymce-mobile-icon-heading::before {
  /* TODO: Translate */
  content: "Headings";
  font-family: sans-serif;
  font-size: 80%;
  font-weight: bold;
}
.tinymce-mobile-icon-h1::before {
  content: "H1";
  font-weight: bold;
}
.tinymce-mobile-icon-h2::before {
  content: "H2";
  font-weight: bold;
}
.tinymce-mobile-icon-h3::before {
  content: "H3";
  font-weight: bold;
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask {
  align-items: center;
  display: flex;
  justify-content: center;
  background: rgba(51, 51, 51, 0.5);
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container {
  align-items: center;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  font-size: 1em;
  justify-content: space-between;
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .mixin-menu-item {
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  height: 2.1em;
  width: 2.1em;
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 1em;
}
@media only screen and (min-device-width:700px) {
  .tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section {
    font-size: 1.2em;
  }
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section .tinymce-mobile-mask-tap-icon {
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  height: 2.1em;
  width: 2.1em;
  background-color: white;
  color: #207ab7;
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section .tinymce-mobile-mask-tap-icon::before {
  content: "\e900";
  font-family: 'tinymce-mobile', sans-serif;
}
.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section:not(.tinymce-mobile-mask-tap-icon-selected) .tinymce-mobile-mask-tap-icon {
  z-index: 2;
}
.tinymce-mobile-android-container.tinymce-mobile-android-maximized {
  background: #ffffff;
  border: none;
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
.tinymce-mobile-android-container:not(.tinymce-mobile-android-maximized) {
  position: relative;
}
.tinymce-mobile-android-container .tinymce-mobile-editor-socket {
  display: flex;
  flex-grow: 1;
}
.tinymce-mobile-android-container .tinymce-mobile-editor-socket iframe {
  display: flex !important;
  flex-grow: 1;
  height: auto !important;
}
.tinymce-mobile-android-scroll-reload {
  overflow: hidden;
}
:not(.tinymce-mobile-readonly-mode) > .tinymce-mobile-android-selection-context-toolbar {
  margin-top: 23px;
}
.tinymce-mobile-toolstrip {
  background: #fff;
  display: flex;
  flex: 0 0 auto;
  z-index: 1;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar {
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #cccccc;
  display: flex;
  flex: 1;
  height: 2.5em;
  width: 100%;
  /* Make it no larger than the toolstrip, so that it needs to scroll */
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group {
  align-items: center;
  display: flex;
  height: 100%;
  flex-shrink: 1;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group > div {
  align-items: center;
  display: flex;
  height: 100%;
  flex: 1;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group.tinymce-mobile-exit-container {
  background: #f44336;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group.tinymce-mobile-toolbar-scrollable-group {
  flex-grow: 1;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item.tinymce-mobile-toolbar-button {
  align-items: center;
  display: flex;
  height: 80%;
  margin-left: 2px;
  margin-right: 2px;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item.tinymce-mobile-toolbar-button.tinymce-mobile-toolbar-button-selected {
  background: #c8cbcf;
  color: #cccccc;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group:first-of-type,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group:last-of-type {
  background: #207ab7;
  color: #eceff1;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar {
  /* Note, this file is imported inside .tinymce-mobile-context-toolbar, so that prefix is on everything here. */
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group {
  align-items: center;
  display: flex;
  height: 100%;
  flex: 1;
  padding-bottom: 0.4em;
  padding-top: 0.4em;
  /* Make any buttons appearing on the left and right display in the centre (e.g. color edges) */
  /* For widgets like the colour picker, use the whole height */
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog {
  display: flex;
  min-height: 1.5em;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  width: 100%;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain {
  display: flex;
  height: 100%;
  transition: left cubic-bezier(0.4, 0, 1, 1) 0.15s;
  width: 100%;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  width: 100%;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen input {
  font-family: Sans-serif;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-input-container {
  display: flex;
  flex-grow: 1;
  position: relative;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-input-container .tinymce-mobile-input-container-x {
  -ms-grid-row-align: center;
      align-self: center;
  background: inherit;
  border: none;
  border-radius: 50%;
  color: #888;
  font-size: 0.6em;
  font-weight: bold;
  height: 100%;
  padding-right: 2px;
  position: absolute;
  right: 0;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-input-container.tinymce-mobile-input-container-empty .tinymce-mobile-input-container-x {
  display: none;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-previous,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-next {
  align-items: center;
  display: flex;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-previous::before,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-next::before {
  align-items: center;
  display: flex;
  font-weight: bold;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-previous.tinymce-mobile-toolbar-navigation-disabled::before,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-next.tinymce-mobile-toolbar-navigation-disabled::before {
  visibility: hidden;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-dot-item {
  color: #cccccc;
  font-size: 10px;
  line-height: 10px;
  margin: 0 2px;
  padding-top: 3px;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-dot-item.tinymce-mobile-dot-active {
  color: #c8cbcf;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-icon-large-font::before,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-icon-large-heading::before {
  margin-left: 0.5em;
  margin-right: 0.9em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-icon-small-font::before,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-icon-small-heading::before {
  margin-left: 0.9em;
  margin-right: 0.5em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider {
  display: flex;
  flex: 1;
  margin-left: 0;
  margin-right: 0;
  padding: 0.28em 0;
  position: relative;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider .tinymce-mobile-slider-size-container {
  align-items: center;
  display: flex;
  flex-grow: 1;
  height: 100%;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider .tinymce-mobile-slider-size-container .tinymce-mobile-slider-size-line {
  background: #cccccc;
  display: flex;
  flex: 1;
  height: 0.2em;
  margin-bottom: 0.3em;
  margin-top: 0.3em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container {
  padding-left: 2em;
  padding-right: 2em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container .tinymce-mobile-slider-gradient-container {
  align-items: center;
  display: flex;
  flex-grow: 1;
  height: 100%;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container .tinymce-mobile-slider-gradient-container .tinymce-mobile-slider-gradient {
  background: linear-gradient(to right, hsl(0, 100%, 50%) 0%, hsl(60, 100%, 50%) 17%, hsl(120, 100%, 50%) 33%, hsl(180, 100%, 50%) 50%, hsl(240, 100%, 50%) 67%, hsl(300, 100%, 50%) 83%, hsl(0, 100%, 50%) 100%);
  display: flex;
  flex: 1;
  height: 0.2em;
  margin-bottom: 0.3em;
  margin-top: 0.3em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container .tinymce-mobile-hue-slider-black {
  /* Not part of theming */
  background: black;
  height: 0.2em;
  margin-bottom: 0.3em;
  margin-top: 0.3em;
  width: 1.2em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container .tinymce-mobile-hue-slider-white {
  /* Not part of theming */
  background: white;
  height: 0.2em;
  margin-bottom: 0.3em;
  margin-top: 0.3em;
  width: 1.2em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider .tinymce-mobile-slider-thumb {
  /* vertically centering trick (margin: auto, top: 0, bottom: 0). On iOS and Safari, if you leave
     * out these values, then it shows the thumb at the top of the spectrum. This is probably because it is
     * absolutely positioned with only a left value, and not a top. Note, on Chrome it seems to be fine without
     * this approach.
    */
  align-items: center;
  background-clip: padding-box;
  background-color: #455a64;
  border: 0.5em solid rgba(136, 136, 136, 0);
  border-radius: 3em;
  bottom: 0;
  color: #fff;
  display: flex;
  height: 0.5em;
  justify-content: center;
  left: -10px;
  margin: auto;
  position: absolute;
  top: 0;
  transition: border 120ms cubic-bezier(0.39, 0.58, 0.57, 1);
  width: 0.5em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider .tinymce-mobile-slider-thumb.tinymce-mobile-thumb-active {
  border: 0.5em solid rgba(136, 136, 136, 0.39);
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serializer-wrapper,
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group > div {
  align-items: center;
  display: flex;
  height: 100%;
  flex: 1;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serializer-wrapper {
  flex-direction: column;
  justify-content: center;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item {
  align-items: center;
  display: flex;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item:not(.tinymce-mobile-serialised-dialog) {
  height: 100%;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-dot-container {
  display: flex;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group input {
  background: #ffffff;
  border: none;
  border-radius: 0;
  color: #455a64;
  flex-grow: 1;
  font-size: 0.85em;
  padding-bottom: 0.1em;
  padding-left: 5px;
  padding-top: 0.1em;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #888;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group input:-ms-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #888;
}
.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group input::placeholder {
  /* WebKit, Blink, Edge */
  color: #888;
}
/* dropup */
.tinymce-mobile-dropup {
  background: white;
  display: flex;
  overflow: hidden;
  width: 100%;
}
.tinymce-mobile-dropup.tinymce-mobile-dropup-shrinking {
  transition: height 0.3s ease-out;
}
.tinymce-mobile-dropup.tinymce-mobile-dropup-growing {
  transition: height 0.3s ease-in;
}
.tinymce-mobile-dropup.tinymce-mobile-dropup-closed {
  flex-grow: 0;
}
.tinymce-mobile-dropup.tinymce-mobile-dropup-open:not(.tinymce-mobile-dropup-growing) {
  flex-grow: 1;
}
/* TODO min-height for device size and orientation */
.tinymce-mobile-ios-container .tinymce-mobile-dropup:not(.tinymce-mobile-dropup-closed) {
  min-height: 200px;
}
@media only screen and (orientation: landscape) {
  .tinymce-mobile-dropup:not(.tinymce-mobile-dropup-closed) {
    min-height: 200px;
  }
}
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) {
  .tinymce-mobile-ios-container .tinymce-mobile-dropup:not(.tinymce-mobile-dropup-closed) {
    min-height: 150px;
  }
}
/* styles menu */
.tinymce-mobile-styles-menu {
  font-family: sans-serif;
  outline: 4px solid black;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.tinymce-mobile-styles-menu [role="menu"] {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: absolute;
  width: 100%;
}
.tinymce-mobile-styles-menu [role="menu"].transitioning {
  transition: transform 0.5s ease-in-out;
}
.tinymce-mobile-styles-menu .tinymce-mobile-styles-item {
  border-bottom: 1px solid #ddd;
  color: #455a64;
  cursor: pointer;
  display: flex;
  padding: 1em 1em;
  position: relative;
}
.tinymce-mobile-styles-menu .tinymce-mobile-styles-collapser .tinymce-mobile-styles-collapse-icon::before {
  color: #455a64;
  content: "\e314";
  font-family: 'tinymce-mobile', sans-serif;
}
.tinymce-mobile-styles-menu .tinymce-mobile-styles-item.tinymce-mobile-styles-item-is-menu::after {
  color: #455a64;
  content: "\e315";
  font-family: 'tinymce-mobile', sans-serif;
  padding-left: 1em;
  padding-right: 1em;
  position: absolute;
  right: 0;
}
.tinymce-mobile-styles-menu .tinymce-mobile-styles-item.tinymce-mobile-format-matches::after {
  font-family: 'tinymce-mobile', sans-serif;
  padding-left: 1em;
  padding-right: 1em;
  position: absolute;
  right: 0;
}
.tinymce-mobile-styles-menu .tinymce-mobile-styles-separator,
.tinymce-mobile-styles-menu .tinymce-mobile-styles-collapser {
  align-items: center;
  background: #fff;
  border-top: #455a64;
  color: #455a64;
  display: flex;
  min-height: 2.5em;
  padding-left: 1em;
  padding-right: 1em;
}
.tinymce-mobile-styles-menu [data-transitioning-destination="before"][data-transitioning-state],
.tinymce-mobile-styles-menu [data-transitioning-state="before"] {
  transform: translate(-100%);
}
.tinymce-mobile-styles-menu [data-transitioning-destination="current"][data-transitioning-state],
.tinymce-mobile-styles-menu [data-transitioning-state="current"] {
  transform: translate(0%);
}
.tinymce-mobile-styles-menu [data-transitioning-destination="after"][data-transitioning-state],
.tinymce-mobile-styles-menu [data-transitioning-state="after"] {
  transform: translate(100%);
}
@font-face {
  font-family: 'tinymce-mobile';
  font-style: normal;
  font-weight: normal;
  src: url('fonts/tinymce-mobile.woff?8x92w3') format('woff');
}
@media (min-device-width: 700px) {
  .tinymce-mobile-outer-container,
  .tinymce-mobile-outer-container input {
    font-size: 25px;
  }
}
@media (max-device-width: 700px) {
  .tinymce-mobile-outer-container,
  .tinymce-mobile-outer-container input {
    font-size: 18px;
  }
}
.tinymce-mobile-icon {
  font-family: 'tinymce-mobile', sans-serif;
}
.mixin-flex-and-centre {
  align-items: center;
  display: flex;
  justify-content: center;
}
.mixin-flex-bar {
  align-items: center;
  display: flex;
  height: 100%;
}
.tinymce-mobile-outer-container .tinymce-mobile-editor-socket iframe {
  background-color: #fff;
  width: 100%;
}
.tinymce-mobile-editor-socket .tinymce-mobile-mask-edit-icon {
  /* Note, on the iPod touch in landscape, this isn't visible when the navbar appears */
  background-color: #207ab7;
  border-radius: 50%;
  bottom: 1em;
  color: white;
  font-size: 1em;
  height: 2.1em;
  position: fixed;
  right: 2em;
  width: 2.1em;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media only screen and (min-device-width:700px) {
  .tinymce-mobile-editor-socket .tinymce-mobile-mask-edit-icon {
    font-size: 1.2em;
  }
}
.tinymce-mobile-outer-container:not(.tinymce-mobile-fullscreen-maximized) .tinymce-mobile-editor-socket {
  height: 300px;
  overflow: hidden;
}
.tinymce-mobile-outer-container:not(.tinymce-mobile-fullscreen-maximized) .tinymce-mobile-editor-socket iframe {
  height: 100%;
}
.tinymce-mobile-outer-container:not(.tinymce-mobile-fullscreen-maximized) .tinymce-mobile-toolstrip {
  display: none;
}
/*
  Note, that if you don't include this (::-webkit-file-upload-button), the toolbar width gets
  increased and the whole body becomes scrollable. It's important!
 */
input[type="file"]::-webkit-file-upload-button {
  display: none;
}
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) {
  .tinymce-mobile-ios-container .tinymce-mobile-editor-socket .tinymce-mobile-mask-edit-icon {
    bottom: 50%;
  }
}


================================================
FILE: public/vendor/filament-forms-tinyeditor/tinymce/tinymce.d.ts
================================================
interface StringPathBookmark {
    start: string;
    end?: string;
}
interface RangeBookmark {
    rng: Range;
}
interface IdBookmark {
    id: string;
    keep?: boolean;
}
interface IndexBookmark {
    name: string;
    index: number;
}
interface PathBookmark {
    start: number[];
    end?: number[];
    isFakeCaret?: boolean;
}
declare type Bookmark = StringPathBookmark | RangeBookmark | IdBookmark | IndexBookmark | PathBookmark;
declare type NormalizedEvent = E & {
    readonly type: string;
    readonly target: T;
    readonly isDefaultPrevented: () => boolean;
    readonly preventDefault: () => void;
    readonly isPropagationStopped: () => boolean;
    readonly stopPropagation: () => void;
    readonly isImmediatePropagationStopped: () => boolean;
    readonly stopImmediatePropagation: () => void;
};
declare type MappedEvent = K extends keyof T ? T[K] : any;
interface NativeEventMap {
    'beforepaste': Event;
    'blur': FocusEvent;
    'beforeinput': InputEvent;
    'click': MouseEvent;
    'compositionend': Event;
    'compositionstart': Event;
    'compositionupdate': Event;
    'contextmenu': PointerEvent;
    'copy': ClipboardEvent;
    'cut': ClipboardEvent;
    'dblclick': MouseEvent;
    'drag': DragEvent;
    'dragdrop': DragEvent;
    'dragend': DragEvent;
    'draggesture': DragEvent;
    'dragover': DragEvent;
    'dragstart': DragEvent;
    'drop': DragEvent;
    'focus': FocusEvent;
    'focusin': FocusEvent;
    'focusout': FocusEvent;
    'input': InputEvent;
    'keydown': KeyboardEvent;
    'keypress': KeyboardEvent;
    'keyup': KeyboardEvent;
    'mousedown': MouseEvent;
    'mouseenter': MouseEvent;
    'mouseleave': MouseEvent;
    'mousemove': MouseEvent;
    'mouseout': MouseEvent;
    'mouseover': MouseEvent;
    'mouseup': MouseEvent;
    'paste': ClipboardEvent;
    'selectionchange': Event;
    'submit': Event;
    'touchend': TouchEvent;
    'touchmove': TouchEvent;
    'touchstart': TouchEvent;
    'touchcancel': TouchEvent;
    'wheel': WheelEvent;
}
declare type EditorEvent = NormalizedEvent;
interface EventDispatcherSettings {
    scope?: any;
    toggleEvent?: (name: string, state: boolean) => void | boolean;
    beforeFire?: (args: EditorEvent) => void;
}
interface EventDispatcherConstructor {
    readonly prototype: EventDispatcher;
    new (settings?: EventDispatcherSettings): EventDispatcher;
    isNative: (name: string) => boolean;
}
declare class EventDispatcher {
    static isNative(name: string): boolean;
    private readonly settings;
    private readonly scope;
    private readonly toggleEvent;
    private bindings;
    constructor(settings?: Record);
    fire>(name: K, args?: U): EditorEvent;
    on(name: K, callback: false | ((event: EditorEvent>) => void), prepend?: boolean, extra?: {}): this;
    off(name?: K, callback?: (event: EditorEvent>) => void): this;
    once(name: K, callback: (event: EditorEvent>) => void, prepend?: boolean): this;
    has(name: string): boolean;
}
declare const enum UndoLevelType {
    Fragmented = "fragmented",
    Complete = "complete"
}
interface UndoLevel {
    type: UndoLevelType;
    fragments: string[];
    content: string;
    bookmark: Bookmark;
    beforeBookmark: Bookmark;
}
interface UndoManager {
    data: UndoLevel[];
    typing: boolean;
    add: (level?: UndoLevel, event?: EditorEvent) => UndoLevel;
    beforeChange: () => void;
    undo: () => UndoLevel;
    redo: () => UndoLevel;
    clear: () => void;
    reset: () => void;
    hasUndo: () => boolean;
    hasRedo: () => boolean;
    transact: (callback: () => void) => UndoLevel;
    ignore: (callback: () => void) => void;
    extra: (callback1: () => void, callback2: () => void) => void;
}
declare type ArrayCallback$1 = (x: T, i: number, xs: ReadonlyArray) => R;
declare type ObjCallback$1 = (value: T, key: string, obj: Record) => R;
declare type ArrayCallback = ArrayCallback$1;
declare type ObjCallback = ObjCallback$1;
interface Tools {
    is: (obj: any, type: string) => boolean;
    isArray: (arr: any) => arr is Array;
    inArray: (arr: ArrayLike, value: T) => number;
    grep: {
        (arr: ArrayLike | null | undefined, pred?: ArrayCallback): T[];
        (arr: Record | null | undefined, pred?: ObjCallback): T[];
    };
    trim: (str: string) => string;
    toArray: (obj: ArrayLike) => T[];
    hasOwn: (obj: any, name: string) => boolean;
    makeMap: (items: ArrayLike | string, delim?: string | RegExp, map?: Record) => Record;
    each: {
        (arr: ArrayLike | null | undefined, cb: ArrayCallback, scope?: any): boolean;
        (obj: Record | null | undefined, cb: ObjCallback, scope?: any): boolean;
    };
    map: {
        (arr: ArrayLike | null | undefined, cb: ArrayCallback): R[];
        (obj: Record | null | undefined, cb: ObjCallback): R[];
    };
    extend: (obj: Object, ext: Object, ...objs: Object[]) => any;
    create: (name: string, p: Object, root?: Object) => void;
    walk: (obj: T, f: Function, n?: keyof T, scope?: any) => void;
    createNS: (name: string, o?: Object) => any;
    resolve: (path: string, o?: Object) => any;
    explode: (s: string, d?: string | RegExp) => string[];
    _addCacheSuffix: (url: string) => string;
}
declare type EventUtilsCallback = (event: EventUtilsEvent) => void;
declare type EventUtilsEvent = NormalizedEvent & {
    metaKey: boolean;
};
interface EventUtilsConstructor {
    readonly prototype: EventUtils;
    new (): EventUtils;
    Event: EventUtils;
}
declare class EventUtils {
    static Event: EventUtils;
    domLoaded: boolean;
    events: Record;
    private readonly expando;
    private hasFocusIn;
    private hasMouseEnterLeave;
    private mouseEnterLeave;
    private count;
    constructor();
    bind(target: any, name: K, callback: EventUtilsCallback, scope?: any): EventUtilsCallback;
    bind(target: any, names: string, callback: EventUtilsCallback, scope?: any): EventUtilsCallback;
    unbind(target: any, name: K, callback?: EventUtilsCallback): this;
    unbind(target: any, names: string, callback?: EventUtilsCallback): this;
    unbind(target: any): this;
    fire(target: any, name: string, args?: {}): this;
    clean(target: any): this;
    destroy(): void;
    cancel(e: EventUtilsEvent): boolean;
    private executeHandlers;
}
declare type DomQuerySelector = string | T | T[] | DomQuery;
declare type DomQueryInitSelector = DomQuerySelector | Window;
interface Hook {
    get: (elm: T) => string;
    set: ($elm: DomQuery, value: string | null) => void;
}
interface DomQueryConstructor {
    readonly prototype: DomQuery;
    attrHooks: Record;
    cssHooks: Record;
    fn: DomQuery;
    find: any;
    expr: {
        cacheLength: number;
        createPseudo: Function;
        match: Record;
        attrHandle: {};
        find: Record;
        relative: Record;
        preFilter: Record;
        filter: Record;
        pseudos: Record;
    };
    extend: Tools['extend'];
    isArray: Tools['isArray'];
    new (selector?: DomQueryInitSelector, context?: Node): DomQuery;
    (selector?: DomQueryInitSelector, context?: Node): DomQuery;
    overrideDefaults(callback: () => {
        context: Node;
        element: Element;
    }): DomQueryConstructor;
    makeArray(object: T): T[];
    inArray(item: {}, array: T[]): number;
    each(obj: T[], callback: (i: number, value: T) => void): void;
    each(obj: T, callback: (key: string, obj: T[keyof T]) => void): void;
    trim(str: string): string;
    grep(array: T[], callback: (item: any, i: number) => boolean): T[];
    unique(results: T[]): T[];
    text(elem: Node): string;
    contains(context: any, elem: Node): boolean;
    filter(expr: string, elems: Node[], not?: boolean): any;
}
interface DomQuery extends ArrayLike {
    init: (selector?: DomQueryInitSelector, context?: Node) => void;
    context: T;
    length: number;
    selector: string;
    add(items: Array | DomQuery, sort?: boolean): this;
    addClass(className: string): this;
    after(content: DomQuerySelector): this;
    append(content: DomQuerySelector): this;
    appendTo(val: DomQuerySelector): this;
    attr(name: string, value: string | boolean | number | null): this;
    attr(attrs: Record): this;
    attr(name: string): string;
    before(content: DomQuerySelector): this;
    children(selector?: string): DomQuery;
    clone(): this;
    closest(selector: DomQuerySelector): this;
    contents(selector?: string): DomQuery;
    css(name: string, value: string | number | null): this;
    css(styles: Record): this;
    css(name: string): string;
    each(callback: (i: number, value: T) => void): this;
    empty(): this;
    eq(index: number): this;
    filter(selector: string | ((i: number, item: any) => boolean)): this;
    find(selector: K): DomQuery;
    find(selector: string): DomQuery;
    first(): this;
    hasClass(className: string): boolean;
    hide(): this;
    html(value: string): this;
    html(): string;
    is(selector: string | ((i: number, item: any) => boolean)): boolean;
    last(): this;
    next(selector?: string): DomQuery;
    nextUntil(selector: DomQuerySelector, until?: string): DomQuery;
    off(name: K, callback?: EventUtilsCallback): this;
    off(name?: string, callback?: EventUtilsCallback): this;
    offset(offset?: {}): {} | this;
    on(name: K, callback: EventUtilsCallback): this;
    on(name: string, callback: EventUtilsCallback): this;
    parent(selector?: string): DomQuery;
    parents(selector?: string): DomQuery;
    parentsUntil(selector: DomQuerySelector, filter?: string): DomQuery;
    prepend(content: DomQuerySelector): this;
    prependTo(val: DomQuerySelector): this;
    prev(selector?: string): DomQuery;
    prevUntil(selector: DomQuerySelector, filter?: string): DomQuery;
    prop(name: string, value: string): this;
    prop(props: Record): this;
    prop(name: string): string;
    push(...items: T[]): number;
    remove(): this;
    removeAttr(name: string): this;
    removeClass(className: string): this;
    replaceWith(content: DomQuerySelector): this;
    show(): this;
    slice(start: number, end?: number): this;
    splice(start: number, deleteCount?: number): T[];
    sort(compareFn?: (a: T, b: T) => number): T[];
    text(value: string): DomQuery;
    text(): string;
    toArray(): T[];
    toggleClass(className: string, state?: boolean): this;
    trigger(name: string | {
        type: string;
    }): this;
    unwrap(): this;
    wrap(content: DomQuerySelector): this;
    wrapAll(content: DomQuerySelector): this;
    wrapInner(content: string): this;
}
declare type SchemaType = 'html4' | 'html5' | 'html5-strict';
interface SchemaSettings {
    block_elements?: string;
    boolean_attributes?: string;
    custom_elements?: string;
    extended_valid_elements?: string;
    invalid_elements?: string;
    invalid_styles?: string | Record;
    move_caret_before_on_enter_elements?: string;
    non_empty_elements?: string;
    schema?: SchemaType;
    self_closing_elements?: string;
    short_ended_elements?: string;
    special?: string;
    text_block_elements?: string;
    text_inline_elements?: string;
    valid_children?: string;
    valid_classes?: string | Record;
    valid_elements?: string;
    valid_styles?: string | Record;
    verify_html?: boolean;
    whitespace_elements?: string;
}
interface Attribute {
    required?: boolean;
    defaultValue?: string;
    forcedValue?: string;
    validValues?: any;
}
interface DefaultAttribute {
    name: string;
    value: string;
}
interface AttributePattern {
    defaultValue?: string;
    forcedValue?: string;
    pattern: RegExp;
    required?: boolean;
    validValues?: Record;
}
interface ElementRule {
    attributes: Record;
    attributesDefault?: DefaultAttribute[];
    attributesForced?: DefaultAttribute[];
    attributesOrder: string[];
    attributePatterns?: AttributePattern[];
    attributesRequired?: string[];
    paddEmpty?: boolean;
    removeEmpty?: boolean;
    removeEmptyAttrs?: boolean;
}
interface SchemaElement extends ElementRule {
    outputName?: string;
    parentsRequired?: string[];
    pattern?: RegExp;
}
interface SchemaMap {
    [name: string]: {};
}
interface SchemaRegExpMap {
    [name: string]: RegExp;
}
interface Schema {
    children: Record;
    elements: Record;
    getValidStyles: () => Record | undefined;
    getValidClasses: () => Record | undefined;
    getBlockElements: () => SchemaMap;
    getInvalidStyles: () => Record | undefined;
    getShortEndedElements: () => SchemaMap;
    getTextBlockElements: () => SchemaMap;
    getTextInlineElements: () => SchemaMap;
    getBoolAttrs: () => SchemaMap;
    getElementRule: (name: string) => SchemaElement | undefined;
    getSelfClosingElements: () => SchemaMap;
    getNonEmptyElements: () => SchemaMap;
    getMoveCaretBeforeOnEnterElements: () => SchemaMap;
    getWhiteSpaceElements: () => SchemaMap;
    getSpecialElements: () => SchemaRegExpMap;
    isValidChild: (name: string, child: string) => boolean;
    isValid: (name: string, attr?: string) => boolean;
    getCustomElements: () => SchemaMap;
    addValidElements: (validElements: string) => void;
    setValidElements: (validElements: string) => void;
    addCustomElements: (customElements: string) => void;
    addValidChildren: (validChildren: any) => void;
}
declare type Attributes$1 = Array<{
    name: string;
    value: string;
}> & {
    map: Record;
};
interface AstNodeConstructor {
    readonly prototype: AstNode;
    new (name: string, type: number): AstNode;
    create(name: string, attrs?: Record): AstNode;
}
declare class AstNode {
    static create(name: string, attrs?: Record): AstNode;
    name: string;
    type: number;
    attributes?: Attributes$1;
    value?: string;
    shortEnded?: boolean;
    parent?: AstNode;
    firstChild?: AstNode;
    lastChild?: AstNode;
    next?: AstNode;
    prev?: AstNode;
    raw?: boolean;
    fixed?: boolean;
    constructor(name: string, type: number);
    replace(node: AstNode): AstNode;
    attr(name: string, value: string | null): AstNode | undefined;
    attr(name: Record): AstNode | undefined;
    attr(name: string): string | undefined;
    clone(): AstNode;
    wrap(wrapper: AstNode): AstNode;
    unwrap(): void;
    remove(): AstNode;
    append(node: AstNode): AstNode;
    insert(node: AstNode, refNode: AstNode, before?: boolean): AstNode;
    getAll(name: string): AstNode[];
    children(): AstNode[];
    empty(): AstNode;
    isEmpty(elements: SchemaMap, whitespace?: SchemaMap, predicate?: (node: AstNode) => boolean): boolean;
    walk(prev?: boolean): AstNode;
}
declare type Content = string | AstNode;
declare type ContentFormat = 'raw' | 'text' | 'html' | 'tree';
interface GetContentArgs {
    format?: ContentFormat;
    get?: boolean;
    content?: string;
    getInner?: boolean;
    no_events?: boolean;
    [key: string]: any;
}
interface SetContentArgs {
    format?: string;
    set?: boolean;
    content?: string;
    no_events?: boolean;
    no_selection?: boolean;
}
interface BlobInfoData {
    id?: string;
    name?: string;
    filename?: string;
    blob: Blob;
    base64: string;
    blobUri?: string;
    uri?: string;
}
interface BlobInfo {
    id: () => string;
    name: () => string;
    filename: () => string;
    blob: () => Blob;
    base64: () => string;
    blobUri: () => string;
    uri: () => string | undefined;
}
interface BlobCache {
    create: (o: string | BlobInfoData, blob?: Blob, base64?: string, name?: string, filename?: string) => BlobInfo;
    add: (blobInfo: BlobInfo) => void;
    get: (id: string) => BlobInfo | undefined;
    getByUri: (blobUri: string) => BlobInfo | undefined;
    getByData: (base64: string, type: string) => BlobInfo | undefined;
    findFirst: (predicate: (blobInfo: BlobInfo) => boolean) => BlobInfo | undefined;
    removeByUri: (blobUri: string) => void;
    destroy: () => void;
}
interface NotificationManagerImpl {
    open: (spec: NotificationSpec, closeCallback?: () => void) => NotificationApi;
    close: (notification: T) => void;
    reposition: (notifications: T[]) => void;
    getArgs: (notification: T) => NotificationSpec;
}
interface NotificationSpec {
    type?: 'info' | 'warning' | 'error' | 'success';
    text: string;
    icon?: string;
    progressBar?: boolean;
    timeout?: number;
    closeButton?: boolean;
}
interface NotificationApi {
    close: () => void;
    progressBar: {
        value: (percent: number) => void;
    };
    text: (text: string) => void;
    moveTo: (x: number, y: number) => void;
    moveRel: (element: Element, rel: 'tc-tc' | 'bc-bc' | 'bc-tc' | 'tc-bc' | 'banner') => void;
    getEl: () => HTMLElement;
    settings: NotificationSpec;
}
interface NotificationManager {
    open: (spec: NotificationSpec) => NotificationApi;
    close: () => void;
    getNotifications: () => NotificationApi[];
}
interface UploadFailureOptions {
    remove?: boolean;
}
declare type UploadHandler = (blobInfo: BlobInfo, success: (url: string) => void, failure: (err: string, options?: UploadFailureOptions) => void, progress?: (percent: number) => void) => void;
interface UploadResult$2 {
    url: string;
    blobInfo: BlobInfo;
    status: boolean;
    error?: {
        options: UploadFailureOptions;
        message: string;
    };
}
interface RangeLikeObject {
    startContainer: Node;
    startOffset: number;
    endContainer: Node;
    endOffset: number;
}
declare type ApplyFormat = BlockFormat | InlineFormat | SelectorFormat;
declare type RemoveFormat = RemoveBlockFormat | RemoveInlineFormat | RemoveSelectorFormat;
declare type Format = ApplyFormat | RemoveFormat;
declare type Formats = Record;
declare type FormatAttrOrStyleValue = string | ((vars?: FormatVars) => string);
declare type FormatVars = Record;
interface BaseFormat {
    ceFalseOverride?: boolean;
    classes?: string | string[];
    collapsed?: boolean;
    exact?: boolean;
    expand?: boolean;
    links?: boolean;
    mixed?: boolean;
    block_expand?: boolean;
    onmatch?: (node: Node, fmt: T, itemName: string) => boolean;
    remove?: 'none' | 'empty' | 'all';
    remove_similar?: boolean;
    split?: boolean;
    deep?: boolean;
    preserve_attributes?: string[];
}
interface Block {
    block: string;
    list_block?: string;
    wrapper?: boolean;
}
interface Inline {
    inline: string;
}
interface Selector {
    selector: string;
    inherit?: boolean;
}
interface CommonFormat extends BaseFormat {
    attributes?: Record;
    styles?: Record;
    toggle?: boolean;
    preview?: string | false;
    onformat?: (elm: Node, fmt: T, vars?: FormatVars, node?: Node | RangeLikeObject) => void;
    clear_child_styles?: boolean;
    merge_siblings?: boolean;
    merge_with_parents?: boolean;
    defaultBlock?: string;
}
interface BlockFormat extends Block, CommonFormat {
}
interface InlineFormat extends Inline, CommonFormat {
}
interface SelectorFormat extends Selector, CommonFormat {
}
interface CommonRemoveFormat extends BaseFormat {
    attributes?: string[] | Record;
    styles?: string[] | Record;
}
interface RemoveBlockFormat extends Block, CommonRemoveFormat {
}
interface RemoveInlineFormat extends Inline, CommonRemoveFormat {
}
interface RemoveSelectorFormat extends Selector, CommonRemoveFormat {
}
type Format_d_Formats = Formats;
type Format_d_Format = Format;
type Format_d_ApplyFormat = ApplyFormat;
type Format_d_BlockFormat = BlockFormat;
type Format_d_InlineFormat = InlineFormat;
type Format_d_SelectorFormat = SelectorFormat;
type Format_d_RemoveFormat = RemoveFormat;
type Format_d_RemoveBlockFormat = RemoveBlockFormat;
type Format_d_RemoveInlineFormat = RemoveInlineFormat;
type Format_d_RemoveSelectorFormat = RemoveSelectorFormat;
declare namespace Format_d {
    export { Format_d_Formats as Formats, Format_d_Format as Format, Format_d_ApplyFormat as ApplyFormat, Format_d_BlockFormat as BlockFormat, Format_d_InlineFormat as InlineFormat, Format_d_SelectorFormat as SelectorFormat, Format_d_RemoveFormat as RemoveFormat, Format_d_RemoveBlockFormat as RemoveBlockFormat, Format_d_RemoveInlineFormat as RemoveInlineFormat, Format_d_RemoveSelectorFormat as RemoveSelectorFormat, };
}
declare type StyleFormat = BlockStyleFormat | InlineStyleFormat | SelectorStyleFormat;
declare type AllowedFormat = Separator | FormatReference | StyleFormat | NestedFormatting;
interface Separator {
    title: string;
}
interface FormatReference {
    title: string;
    format: string;
    icon?: string;
}
interface NestedFormatting {
    title: string;
    items: Array;
}
interface CommonStyleFormat {
    name?: string;
    title: string;
    icon?: string;
}
interface BlockStyleFormat extends BlockFormat, CommonStyleFormat {
}
interface InlineStyleFormat extends InlineFormat, CommonStyleFormat {
}
interface SelectorStyleFormat extends SelectorFormat, CommonStyleFormat {
}
interface AlertBannerSpec {
    type: 'alertbanner';
    level: 'info' | 'warn' | 'error' | 'success';
    text: string;
    icon: string;
    url?: string;
}
interface ButtonSpec {
    type: 'button';
    text: string;
    disabled?: boolean;
    primary?: boolean;
    name?: string;
    icon?: string;
    borderless?: boolean;
}
interface CheckboxSpec {
    name: string;
    type: 'checkbox';
    label: string;
    disabled?: boolean;
}
interface FormComponentSpec {
    type: string;
    name: string;
}
interface FormComponentWithLabelSpec extends FormComponentSpec {
    label?: string;
}
interface CollectionSpec extends FormComponentWithLabelSpec {
    type: 'collection';
}
interface ColorInputSpec extends FormComponentWithLabelSpec {
    type: 'colorinput';
}
interface ColorPickerSpec extends FormComponentWithLabelSpec {
    type: 'colorpicker';
}
interface CustomEditorInit {
    setValue: (value: string) => void;
    getValue: () => string;
    destroy: () => void;
}
declare type CustomEditorInitFn = (elm: HTMLElement, settings: any) => Promise;
interface CustomEditorOldSpec extends FormComponentSpec {
    type: 'customeditor';
    tag?: string;
    init: (e: HTMLElement) => Promise;
}
interface CustomEditorNewSpec extends FormComponentSpec {
    type: 'customeditor';
    tag?: string;
    scriptId: string;
    scriptUrl: string;
    settings?: any;
}
declare type CustomEditorSpec = CustomEditorOldSpec | CustomEditorNewSpec;
interface DropZoneSpec extends FormComponentWithLabelSpec {
    type: 'dropzone';
}
interface GridSpec {
    type: 'grid';
    columns: number;
    items: BodyComponentSpec[];
}
interface HtmlPanelSpec {
    type: 'htmlpanel';
    html: string;
    presets?: 'presentation' | 'document';
}
interface IframeSpec extends FormComponentWithLabelSpec {
    type: 'iframe';
    sandboxed?: boolean;
}
interface ImageToolsState {
    blob: Blob;
    url: string;
}
interface ImageToolsSpec extends FormComponentWithLabelSpec {
    type: 'imagetools';
    currentState: ImageToolsState;
}
interface InputSpec extends FormComponentWithLabelSpec {
    type: 'input';
    inputMode?: string;
    placeholder?: string;
    maximized?: boolean;
    disabled?: boolean;
}
interface LabelSpec {
    type: 'label';
    label: string;
    items: BodyComponentSpec[];
}
interface ListBoxSingleItemSpec {
    text: string;
    value: string;
}
interface ListBoxNestedItemSpec {
    text: string;
    items: ListBoxItemSpec[];
}
declare type ListBoxItemSpec = ListBoxNestedItemSpec | ListBoxSingleItemSpec;
interface ListBoxSpec extends FormComponentWithLabelSpec {
    type: 'listbox';
    items: ListBoxItemSpec[];
    disabled?: boolean;
}
interface PanelSpec {
    type: 'panel';
    classes?: string[];
    items: BodyComponentSpec[];
}
interface SelectBoxItemSpec {
    text: string;
    value: string;
}
interface SelectBoxSpec extends FormComponentWithLabelSpec {
    type: 'selectbox';
    items: SelectBoxItemSpec[];
    size?: number;
    disabled?: boolean;
}
interface SizeInputSpec extends FormComponentWithLabelSpec {
    type: 'sizeinput';
    constrain?: boolean;
    disabled?: boolean;
}
interface TableSpec {
    type: 'table';
    header: string[];
    cells: string[][];
}
interface TextAreaSpec extends FormComponentWithLabelSpec {
    type: 'textarea';
    placeholder?: string;
    maximized?: boolean;
    disabled?: boolean;
}
interface UrlInputSpec extends FormComponentWithLabelSpec {
    type: 'urlinput';
    filetype?: 'image' | 'media' | 'file';
    disabled?: boolean;
}
declare type BodyComponentSpec = BarSpec | ButtonSpec | CheckboxSpec | TextAreaSpec | InputSpec | ListBoxSpec | SelectBoxSpec | SizeInputSpec | IframeSpec | HtmlPanelSpec | UrlInputSpec | DropZoneSpec | ColorInputSpec | GridSpec | ColorPickerSpec | ImageToolsSpec | AlertBannerSpec | CollectionSpec | LabelSpec | TableSpec | PanelSpec | CustomEditorSpec;
interface BarSpec {
    type: 'bar';
    items: BodyComponentSpec[];
}
interface CommonMenuItemSpec {
    disabled?: boolean;
    text?: string;
    value?: string;
    meta?: Record;
    shortcut?: string;
}
interface CommonMenuItemInstanceApi {
    isDisabled: () => boolean;
    setDisabled: (state: boolean) => void;
}
interface DialogToggleMenuItemSpec extends CommonMenuItemSpec {
    type?: 'togglemenuitem';
    name: string;
}
declare type DialogFooterMenuButtonItemSpec = DialogToggleMenuItemSpec;
interface BaseDialogFooterButtonSpec {
    name?: string;
    align?: 'start' | 'end';
    primary?: boolean;
    disabled?: boolean;
    icon?: string;
}
interface DialogFooterNormalButtonSpec extends BaseDialogFooterButtonSpec {
    type: 'submit' | 'cancel' | 'custom';
    text: string;
}
interface DialogFooterMenuButtonSpec extends BaseDialogFooterButtonSpec {
    type: 'menu';
    text?: string;
    tooltip?: string;
    icon?: string;
    items: DialogFooterMenuButtonItemSpec[];
}
declare type DialogFooterButtonSpec = DialogFooterNormalButtonSpec | DialogFooterMenuButtonSpec;
interface TabSpec {
    name?: string;
    title: string;
    items: BodyComponentSpec[];
}
interface TabPanelSpec {
    type: 'tabpanel';
    tabs: TabSpec[];
}
declare type DialogDataItem = any;
declare type DialogData = Record;
interface DialogInstanceApi {
    getData: () => T;
    setData: (data: Partial) => void;
    disable: (name: string) => void;
    focus: (name: string) => void;
    showTab: (name: string) => void;
    redial: (nu: DialogSpec) => void;
    enable: (name: string) => void;
    block: (msg: string) => void;
    unblock: () => void;
    close: () => void;
}
interface DialogActionDetails {
    name: string;
    value?: any;
}
interface DialogChangeDetails {
    name: keyof T;
}
interface DialogTabChangeDetails {
    newTabName: string;
    oldTabName: string;
}
declare type DialogActionHandler = (api: DialogInstanceApi, details: DialogActionDetails) => void;
declare type DialogChangeHandler = (api: DialogInstanceApi, details: DialogChangeDetails) => void;
declare type DialogSubmitHandler = (api: DialogInstanceApi) => void;
declare type DialogCloseHandler = () => void;
declare type DialogCancelHandler = (api: DialogInstanceApi) => void;
declare type DialogTabChangeHandler = (api: DialogInstanceApi, details: DialogTabChangeDetails) => void;
declare type DialogSize = 'normal' | 'medium' | 'large';
interface DialogSpec {
    title: string;
    size?: DialogSize;
    body: TabPanelSpec | PanelSpec;
    buttons: DialogFooterButtonSpec[];
    initialData?: T;
    onAction?: DialogActionHandler;
    onChange?: DialogChangeHandler;
    onSubmit?: DialogSubmitHandler;
    onClose?: DialogCloseHandler;
    onCancel?: DialogCancelHandler;
    onTabChange?: DialogTabChangeHandler;
}
interface UrlDialogInstanceApi {
    block: (msg: string) => void;
    unblock: () => void;
    close: () => void;
    sendMessage: (msg: any) => void;
}
interface UrlDialogActionDetails {
    name: string;
    value?: any;
}
interface UrlDialogMessage {
    mceAction: string;
    [key: string]: any;
}
declare type UrlDialogActionHandler = (api: UrlDialogInstanceApi, actions: UrlDialogActionDetails) => void;
declare type UrlDialogCloseHandler = () => void;
declare type UrlDialogCancelHandler = (api: UrlDialogInstanceApi) => void;
declare type UrlDialogMessageHandler = (api: UrlDialogInstanceApi, message: UrlDialogMessage) => void;
interface UrlDialogFooterButtonSpec extends DialogFooterNormalButtonSpec {
    type: 'cancel' | 'custom';
}
interface UrlDialogSpec {
    title: string;
    url: string;
    height?: number;
    width?: number;
    buttons?: UrlDialogFooterButtonSpec[];
    onAction?: UrlDialogActionHandler;
    onClose?: UrlDialogCloseHandler;
    onCancel?: UrlDialogCancelHandler;
    onMessage?: UrlDialogMessageHandler;
}
declare type CardContainerDirection = 'vertical' | 'horizontal';
declare type CardContainerAlign = 'left' | 'right';
declare type CardContainerValign = 'top' | 'middle' | 'bottom';
interface CardContainerSpec {
    type: 'cardcontainer';
    items: CardItemSpec[];
    direction?: CardContainerDirection;
    align?: CardContainerAlign;
    valign?: CardContainerValign;
}
interface CardImageSpec {
    type: 'cardimage';
    src: string;
    alt?: string;
    classes?: string[];
}
interface CardTextSpec {
    type: 'cardtext';
    text: string;
    name?: string;
    classes?: string[];
}
declare type CardItemSpec = CardContainerSpec | CardImageSpec | CardTextSpec;
interface CardMenuItemInstanceApi extends CommonMenuItemInstanceApi {
}
interface CardMenuItemSpec extends Omit {
    type: 'cardmenuitem';
    label?: string;
    items: CardItemSpec[];
    onSetup?: (api: CardMenuItemInstanceApi) => (api: CardMenuItemInstanceApi) => void;
    onAction?: (api: CardMenuItemInstanceApi) => void;
}
interface SeparatorMenuItemSpec {
    type?: 'separator';
    text?: string;
}
declare type ColumnTypes$1 = number | 'auto';
declare type SeparatorItemSpec = SeparatorMenuItemSpec;
interface AutocompleterItemSpec {
    type?: 'autocompleteitem';
    value: string;
    text?: string;
    icon?: string;
    meta?: Record;
}
declare type AutocompleterContents = SeparatorItemSpec | AutocompleterItemSpec | CardMenuItemSpec;
interface AutocompleterSpec {
    type?: 'autocompleter';
    ch: string;
    minChars?: number;
    columns?: ColumnTypes$1;
    matches?: (rng: Range, text: string, pattern: string) => boolean;
    fetch: (pattern: string, maxResults: number, fetchOptions: Record) => Promise;
    onAction: (autocompleterApi: AutocompleterInstanceApi, rng: Range, value: string, meta: Record) => void;
    maxResults?: number;
    highlightOn?: string[];
}
interface AutocompleterInstanceApi {
    hide: () => void;
    reload: (fetchOptions: Record) => void;
}
declare type ContextPosition = 'node' | 'selection' | 'line';
declare type ContextScope = 'node' | 'editor';
interface ContextBarSpec {
    predicate?: (elem: Element) => boolean;
    position?: ContextPosition;
    scope?: ContextScope;
}
interface BaseToolbarButtonSpec {
    disabled?: boolean;
    tooltip?: string;
    icon?: string;
    text?: string;
    onSetup?: (api: I) => (api: I) => void;
}
interface BaseToolbarButtonInstanceApi {
    isDisabled: () => boolean;
    setDisabled: (state: boolean) => void;
}
interface ToolbarButtonSpec extends BaseToolbarButtonSpec {
    type?: 'button';
    onAction: (api: ToolbarButtonInstanceApi) => void;
}
interface ToolbarButtonInstanceApi extends BaseToolbarButtonInstanceApi {
}
interface BaseToolbarToggleButtonSpec extends BaseToolbarButtonSpec {
    active?: boolean;
}
interface BaseToolbarToggleButtonInstanceApi extends BaseToolbarButtonInstanceApi {
    isActive: () => boolean;
    setActive: (state: boolean) => void;
}
interface ToolbarToggleButtonSpec extends BaseToolbarToggleButtonSpec {
    type?: 'togglebutton';
    onAction: (api: ToolbarToggleButtonInstanceApi) => void;
}
interface ToolbarToggleButtonInstanceApi extends BaseToolbarToggleButtonInstanceApi {
}
interface ContextFormLaunchButtonApi extends BaseToolbarButtonSpec {
    type: 'contextformbutton';
}
interface ContextFormLaunchToggleButtonSpec extends BaseToolbarToggleButtonSpec {
    type: 'contextformtogglebutton';
}
interface ContextFormButtonInstanceApi extends BaseToolbarButtonInstanceApi {
}
interface ContextFormToggleButtonInstanceApi extends BaseToolbarToggleButtonInstanceApi {
}
interface ContextFormButtonSpec extends BaseToolbarButtonSpec {
    type?: 'contextformbutton';
    primary?: boolean;
    onAction: (formApi: ContextFormInstanceApi, api: ContextFormButtonInstanceApi) => void;
}
interface ContextFormToggleButtonSpec extends BaseToolbarToggleButtonSpec {
    type?: 'contextformtogglebutton';
    onAction: (formApi: ContextFormInstanceApi, buttonApi: ContextFormToggleButtonInstanceApi) => void;
    primary?: boolean;
}
interface ContextFormInstanceApi {
    hide: () => void;
    getValue: () => string;
}
interface ContextFormSpec extends ContextBarSpec {
    type?: 'contextform';
    initValue?: () => string;
    label?: string;
    launch?: ContextFormLaunchButtonApi | ContextFormLaunchToggleButtonSpec;
    commands: Array;
}
interface ContextToolbarSpec extends ContextBarSpec {
    type?: 'contexttoolbar';
    items: string;
}
interface ChoiceMenuItemSpec extends CommonMenuItemSpec {
    type?: 'choiceitem';
    icon?: string;
}
interface ChoiceMenuItemInstanceApi extends CommonMenuItemInstanceApi {
    isActive: () => boolean;
    setActive: (state: boolean) => void;
}
interface ContextMenuItem extends CommonMenuItemSpec {
    text: string;
    icon?: string;
    type?: 'item';
    onAction: () => void;
}
interface ContextSubMenu extends CommonMenuItemSpec {
    type: 'submenu';
    text: string;
    icon?: string;
    getSubmenuItems: () => string | Array;
}
declare type ContextMenuContents = string | ContextMenuItem | SeparatorMenuItemSpec | ContextSubMenu;
interface ContextMenuApi {
    update: (element: Element) => string | Array;
}
interface FancyActionArgsMap {
    'inserttable': {
        numRows: number;
        numColumns: number;
    };
    'colorswatch': {
        value: string;
    };
}
interface BaseFancyMenuItemSpec {
    type: 'fancymenuitem';
    fancytype: T;
    initData?: Record;
    onAction?: (data: FancyActionArgsMap[T]) => void;
}
interface InsertTableMenuItemSpec extends BaseFancyMenuItemSpec<'inserttable'> {
    fancytype: 'inserttable';
    initData?: {};
}
interface ColorSwatchMenuItemSpec extends BaseFancyMenuItemSpec<'colorswatch'> {
    fancytype: 'colorswatch';
    initData?: {
        allowCustomColors?: boolean;
        colors: ChoiceMenuItemSpec[];
    };
}
declare type FancyMenuItemSpec = InsertTableMenuItemSpec | ColorSwatchMenuItemSpec;
interface MenuItemSpec extends CommonMenuItemSpec {
    type?: 'menuitem';
    icon?: string;
    onSetup?: (api: MenuItemInstanceApi) => (api: MenuItemInstanceApi) => void;
    onAction?: (api: MenuItemInstanceApi) => void;
}
interface MenuItemInstanceApi extends CommonMenuItemInstanceApi {
}
declare type NestedMenuItemContents = string | MenuItemSpec | NestedMenuItemSpec | ToggleMenuItemSpec | SeparatorMenuItemSpec | FancyMenuItemSpec;
interface NestedMenuItemSpec extends CommonMenuItemSpec {
    type?: 'nestedmenuitem';
    icon?: string;
    getSubmenuItems: () => string | Array;
    onSetup?: (api: NestedMenuItemInstanceApi) => (api: NestedMenuItemInstanceApi) => void;
}
interface NestedMenuItemInstanceApi extends CommonMenuItemInstanceApi {
}
interface ToggleMenuItemSpec extends CommonMenuItemSpec {
    type?: 'togglemenuitem';
    icon?: string;
    active?: boolean;
    onSetup?: (api: ToggleMenuItemInstanceApi) => void;
    onAction: (api: ToggleMenuItemInstanceApi) => void;
}
interface ToggleMenuItemInstanceApi extends CommonMenuItemInstanceApi {
    isActive: () => boolean;
    setActive: (state: boolean) => void;
}
type PublicDialog_d_AlertBannerSpec = AlertBannerSpec;
type PublicDialog_d_BarSpec = BarSpec;
type PublicDialog_d_BodyComponentSpec = BodyComponentSpec;
type PublicDialog_d_ButtonSpec = ButtonSpec;
type PublicDialog_d_CheckboxSpec = CheckboxSpec;
type PublicDialog_d_CollectionSpec = CollectionSpec;
type PublicDialog_d_ColorInputSpec = ColorInputSpec;
type PublicDialog_d_ColorPickerSpec = ColorPickerSpec;
type PublicDialog_d_CustomEditorSpec = CustomEditorSpec;
type PublicDialog_d_CustomEditorInit = CustomEditorInit;
type PublicDialog_d_CustomEditorInitFn = CustomEditorInitFn;
type PublicDialog_d_DialogData = DialogData;
type PublicDialog_d_DialogSize = DialogSize;
type PublicDialog_d_DialogSpec<_0> = DialogSpec<_0>;
type PublicDialog_d_DialogInstanceApi<_0> = DialogInstanceApi<_0>;
type PublicDialog_d_DialogFooterButtonSpec = DialogFooterButtonSpec;
type PublicDialog_d_DialogActionDetails = DialogActionDetails;
type PublicDialog_d_DialogChangeDetails<_0> = DialogChangeDetails<_0>;
type PublicDialog_d_DialogTabChangeDetails = DialogTabChangeDetails;
type PublicDialog_d_DropZoneSpec = DropZoneSpec;
type PublicDialog_d_GridSpec = GridSpec;
type PublicDialog_d_HtmlPanelSpec = HtmlPanelSpec;
type PublicDialog_d_IframeSpec = IframeSpec;
type PublicDialog_d_ImageToolsSpec = ImageToolsSpec;
type PublicDialog_d_InputSpec = InputSpec;
type PublicDialog_d_LabelSpec = LabelSpec;
type PublicDialog_d_ListBoxSpec = ListBoxSpec;
type PublicDialog_d_ListBoxItemSpec = ListBoxItemSpec;
type PublicDialog_d_ListBoxNestedItemSpec = ListBoxNestedItemSpec;
type PublicDialog_d_ListBoxSingleItemSpec = ListBoxSingleItemSpec;
type PublicDialog_d_PanelSpec = PanelSpec;
type PublicDialog_d_SelectBoxSpec = SelectBoxSpec;
type PublicDialog_d_SelectBoxItemSpec = SelectBoxItemSpec;
type PublicDialog_d_SizeInputSpec = SizeInputSpec;
type PublicDialog_d_TableSpec = TableSpec;
type PublicDialog_d_TabSpec = TabSpec;
type PublicDialog_d_TabPanelSpec = TabPanelSpec;
type PublicDialog_d_TextAreaSpec = TextAreaSpec;
type PublicDialog_d_UrlInputSpec = UrlInputSpec;
type PublicDialog_d_UrlDialogSpec = UrlDialogSpec;
type PublicDialog_d_UrlDialogFooterButtonSpec = UrlDialogFooterButtonSpec;
type PublicDialog_d_UrlDialogInstanceApi = UrlDialogInstanceApi;
type PublicDialog_d_UrlDialogActionDetails = UrlDialogActionDetails;
type PublicDialog_d_UrlDialogMessage = UrlDialogMessage;
declare namespace PublicDialog_d {
    export { PublicDialog_d_AlertBannerSpec as AlertBannerSpec, PublicDialog_d_BarSpec as BarSpec, PublicDialog_d_BodyComponentSpec as BodyComponentSpec, PublicDialog_d_ButtonSpec as ButtonSpec, PublicDialog_d_CheckboxSpec as CheckboxSpec, PublicDialog_d_CollectionSpec as CollectionSpec, PublicDialog_d_ColorInputSpec as ColorInputSpec, PublicDialog_d_ColorPickerSpec as ColorPickerSpec, PublicDialog_d_CustomEditorSpec as CustomEditorSpec, PublicDialog_d_CustomEditorInit as CustomEditorInit, PublicDialog_d_CustomEditorInitFn as CustomEditorInitFn, PublicDialog_d_DialogData as DialogData, PublicDialog_d_DialogSize as DialogSize, PublicDialog_d_DialogSpec as DialogSpec, PublicDialog_d_DialogInstanceApi as DialogInstanceApi, PublicDialog_d_DialogFooterButtonSpec as DialogFooterButtonSpec, PublicDialog_d_DialogActionDetails as DialogActionDetails, PublicDialog_d_DialogChangeDetails as DialogChangeDetails, PublicDialog_d_DialogTabChangeDetails as DialogTabChangeDetails, PublicDialog_d_DropZoneSpec as DropZoneSpec, PublicDialog_d_GridSpec as GridSpec, PublicDialog_d_HtmlPanelSpec as HtmlPanelSpec, PublicDialog_d_IframeSpec as IframeSpec, PublicDialog_d_ImageToolsSpec as ImageToolsSpec, PublicDialog_d_InputSpec as InputSpec, PublicDialog_d_LabelSpec as LabelSpec, PublicDialog_d_ListBoxSpec as ListBoxSpec, PublicDialog_d_ListBoxItemSpec as ListBoxItemSpec, PublicDialog_d_ListBoxNestedItemSpec as ListBoxNestedItemSpec, PublicDialog_d_ListBoxSingleItemSpec as ListBoxSingleItemSpec, PublicDialog_d_PanelSpec as PanelSpec, PublicDialog_d_SelectBoxSpec as SelectBoxSpec, PublicDialog_d_SelectBoxItemSpec as SelectBoxItemSpec, PublicDialog_d_SizeInputSpec as SizeInputSpec, PublicDialog_d_TableSpec as TableSpec, PublicDialog_d_TabSpec as TabSpec, PublicDialog_d_TabPanelSpec as TabPanelSpec, PublicDialog_d_TextAreaSpec as TextAreaSpec, PublicDialog_d_UrlInputSpec as UrlInputSpec, PublicDialog_d_UrlDialogSpec as UrlDialogSpec, PublicDialog_d_UrlDialogFooterButtonSpec as UrlDialogFooterButtonSpec, PublicDialog_d_UrlDialogInstanceApi as UrlDialogInstanceApi, PublicDialog_d_UrlDialogActionDetails as UrlDialogActionDetails, PublicDialog_d_UrlDialogMessage as UrlDialogMessage, };
}
type PublicInlineContent_d_AutocompleterSpec = AutocompleterSpec;
type PublicInlineContent_d_AutocompleterItemSpec = AutocompleterItemSpec;
type PublicInlineContent_d_AutocompleterContents = AutocompleterContents;
type PublicInlineContent_d_AutocompleterInstanceApi = AutocompleterInstanceApi;
type PublicInlineContent_d_ContextPosition = ContextPosition;
type PublicInlineContent_d_ContextScope = ContextScope;
type PublicInlineContent_d_ContextFormSpec = ContextFormSpec;
type PublicInlineContent_d_ContextFormInstanceApi = ContextFormInstanceApi;
type PublicInlineContent_d_ContextFormButtonSpec = ContextFormButtonSpec;
type PublicInlineContent_d_ContextFormButtonInstanceApi = ContextFormButtonInstanceApi;
type PublicInlineContent_d_ContextFormToggleButtonSpec = ContextFormToggleButtonSpec;
type PublicInlineContent_d_ContextFormToggleButtonInstanceApi = ContextFormToggleButtonInstanceApi;
type PublicInlineContent_d_ContextToolbarSpec = ContextToolbarSpec;
type PublicInlineContent_d_SeparatorItemSpec = SeparatorItemSpec;
declare namespace PublicInlineContent_d {
    export { PublicInlineContent_d_AutocompleterSpec as AutocompleterSpec, PublicInlineContent_d_AutocompleterItemSpec as AutocompleterItemSpec, PublicInlineContent_d_AutocompleterContents as AutocompleterContents, PublicInlineContent_d_AutocompleterInstanceApi as AutocompleterInstanceApi, PublicInlineContent_d_ContextPosition as ContextPosition, PublicInlineContent_d_ContextScope as ContextScope, PublicInlineContent_d_ContextFormSpec as ContextFormSpec, PublicInlineContent_d_ContextFormInstanceApi as ContextFormInstanceApi, PublicInlineContent_d_ContextFormButtonSpec as ContextFormButtonSpec, PublicInlineContent_d_ContextFormButtonInstanceApi as ContextFormButtonInstanceApi, PublicInlineContent_d_ContextFormToggleButtonSpec as ContextFormToggleButtonSpec, PublicInlineContent_d_ContextFormToggleButtonInstanceApi as ContextFormToggleButtonInstanceApi, PublicInlineContent_d_ContextToolbarSpec as ContextToolbarSpec, PublicInlineContent_d_SeparatorItemSpec as SeparatorItemSpec, };
}
type PublicMenu_d_MenuItemSpec = MenuItemSpec;
type PublicMenu_d_MenuItemInstanceApi = MenuItemInstanceApi;
type PublicMenu_d_NestedMenuItemContents = NestedMenuItemContents;
type PublicMenu_d_NestedMenuItemSpec = NestedMenuItemSpec;
type PublicMenu_d_NestedMenuItemInstanceApi = NestedMenuItemInstanceApi;
type PublicMenu_d_FancyMenuItemSpec = FancyMenuItemSpec;
type PublicMenu_d_ColorSwatchMenuItemSpec = ColorSwatchMenuItemSpec;
type PublicMenu_d_InsertTableMenuItemSpec = InsertTableMenuItemSpec;
type PublicMenu_d_ToggleMenuItemSpec = ToggleMenuItemSpec;
type PublicMenu_d_ToggleMenuItemInstanceApi = ToggleMenuItemInstanceApi;
type PublicMenu_d_ChoiceMenuItemSpec = ChoiceMenuItemSpec;
type PublicMenu_d_ChoiceMenuItemInstanceApi = ChoiceMenuItemInstanceApi;
type PublicMenu_d_SeparatorMenuItemSpec = SeparatorMenuItemSpec;
type PublicMenu_d_ContextMenuApi = ContextMenuApi;
type PublicMenu_d_ContextMenuContents = ContextMenuContents;
type PublicMenu_d_ContextMenuItem = ContextMenuItem;
type PublicMenu_d_ContextSubMenu = ContextSubMenu;
type PublicMenu_d_CardMenuItemSpec = CardMenuItemSpec;
type PublicMenu_d_CardMenuItemInstanceApi = CardMenuItemInstanceApi;
type PublicMenu_d_CardItemSpec = CardItemSpec;
type PublicMenu_d_CardContainerSpec = CardContainerSpec;
type PublicMenu_d_CardImageSpec = CardImageSpec;
type PublicMenu_d_CardTextSpec = CardTextSpec;
declare namespace PublicMenu_d {
    export { PublicMenu_d_MenuItemSpec as MenuItemSpec, PublicMenu_d_MenuItemInstanceApi as MenuItemInstanceApi, PublicMenu_d_NestedMenuItemContents as NestedMenuItemContents, PublicMenu_d_NestedMenuItemSpec as NestedMenuItemSpec, PublicMenu_d_NestedMenuItemInstanceApi as NestedMenuItemInstanceApi, PublicMenu_d_FancyMenuItemSpec as FancyMenuItemSpec, PublicMenu_d_ColorSwatchMenuItemSpec as ColorSwatchMenuItemSpec, PublicMenu_d_InsertTableMenuItemSpec as InsertTableMenuItemSpec, PublicMenu_d_ToggleMenuItemSpec as ToggleMenuItemSpec, PublicMenu_d_ToggleMenuItemInstanceApi as ToggleMenuItemInstanceApi, PublicMenu_d_ChoiceMenuItemSpec as ChoiceMenuItemSpec, PublicMenu_d_ChoiceMenuItemInstanceApi as ChoiceMenuItemInstanceApi, PublicMenu_d_SeparatorMenuItemSpec as SeparatorMenuItemSpec, PublicMenu_d_ContextMenuApi as ContextMenuApi, PublicMenu_d_ContextMenuContents as ContextMenuContents, PublicMenu_d_ContextMenuItem as ContextMenuItem, PublicMenu_d_ContextSubMenu as ContextSubMenu, PublicMenu_d_CardMenuItemSpec as CardMenuItemSpec, PublicMenu_d_CardMenuItemInstanceApi as CardMenuItemInstanceApi, PublicMenu_d_CardItemSpec as CardItemSpec, PublicMenu_d_CardContainerSpec as CardContainerSpec, PublicMenu_d_CardImageSpec as CardImageSpec, PublicMenu_d_CardTextSpec as CardTextSpec, };
}
interface SidebarInstanceApi {
    element: () => HTMLElement;
}
interface SidebarSpec {
    icon?: string;
    tooltip?: string;
    onShow?: (api: SidebarInstanceApi) => void;
    onSetup?: (api: SidebarInstanceApi) => (api: SidebarInstanceApi) => void;
    onHide?: (api: SidebarInstanceApi) => void;
}
type PublicSidebar_d_SidebarSpec = SidebarSpec;
type PublicSidebar_d_SidebarInstanceApi = SidebarInstanceApi;
declare namespace PublicSidebar_d {
    export { PublicSidebar_d_SidebarSpec as SidebarSpec, PublicSidebar_d_SidebarInstanceApi as SidebarInstanceApi, };
}
interface ToolbarGroupSetting {
    name: string;
    items: string[];
}
declare type ToolbarConfig = string | ToolbarGroupSetting[];
interface GroupToolbarButtonInstanceApi extends BaseToolbarButtonInstanceApi {
}
interface GroupToolbarButtonSpec extends BaseToolbarButtonSpec {
    type?: 'grouptoolbarbutton';
    items?: ToolbarConfig;
}
declare type MenuButtonItemTypes = NestedMenuItemContents;
declare type SuccessCallback$1 = (menu: string | MenuButtonItemTypes[]) => void;
interface BaseMenuButtonSpec {
    text?: string;
    tooltip?: string;
    icon?: string;
    fetch: (success: SuccessCallback$1) => void;
    onSetup?: (api: BaseMenuButtonInstanceApi) => (api: BaseMenuButtonInstanceApi) => void;
}
interface BaseMenuButtonInstanceApi {
    isDisabled: () => boolean;
    setDisabled: (state: boolean) => void;
    isActive: () => boolean;
    setActive: (state: boolean) => void;
}
interface ToolbarMenuButtonSpec extends BaseMenuButtonSpec {
    type?: 'menubutton';
    onSetup?: (api: ToolbarMenuButtonInstanceApi) => (api: ToolbarMenuButtonInstanceApi) => void;
}
interface ToolbarMenuButtonInstanceApi extends BaseMenuButtonInstanceApi {
}
declare type ToolbarSplitButtonItemTypes = ChoiceMenuItemSpec | SeparatorMenuItemSpec;
declare type SuccessCallback = (menu: ToolbarSplitButtonItemTypes[]) => void;
declare type SelectPredicate = (value: string) => boolean;
declare type PresetTypes = 'color' | 'normal' | 'listpreview';
declare type ColumnTypes = number | 'auto';
interface ToolbarSplitButtonSpec {
    type?: 'splitbutton';
    tooltip?: string;
    icon?: string;
    text?: string;
    select?: SelectPredicate;
    presets?: PresetTypes;
    columns?: ColumnTypes;
    fetch: (success: SuccessCallback) => void;
    onSetup?: (api: ToolbarSplitButtonInstanceApi) => (api: ToolbarSplitButtonInstanceApi) => void;
    onAction: (api: ToolbarSplitButtonInstanceApi) => void;
    onItemAction: (api: ToolbarSplitButtonInstanceApi, value: string) => void;
}
interface ToolbarSplitButtonInstanceApi {
    isDisabled: () => boolean;
    setDisabled: (state: boolean) => void;
    setIconFill: (id: string, value: string) => void;
    setIconStroke: (id: string, value: string) => void;
    isActive: () => boolean;
    setActive: (state: boolean) => void;
}
type PublicToolbar_d_ToolbarButtonSpec = ToolbarButtonSpec;
type PublicToolbar_d_ToolbarButtonInstanceApi = ToolbarButtonInstanceApi;
type PublicToolbar_d_ToolbarSplitButtonSpec = ToolbarSplitButtonSpec;
type PublicToolbar_d_ToolbarSplitButtonInstanceApi = ToolbarSplitButtonInstanceApi;
type PublicToolbar_d_ToolbarMenuButtonSpec = ToolbarMenuButtonSpec;
type PublicToolbar_d_ToolbarMenuButtonInstanceApi = ToolbarMenuButtonInstanceApi;
type PublicToolbar_d_ToolbarToggleButtonSpec = ToolbarToggleButtonSpec;
type PublicToolbar_d_ToolbarToggleButtonInstanceApi = ToolbarToggleButtonInstanceApi;
type PublicToolbar_d_GroupToolbarButtonSpec = GroupToolbarButtonSpec;
type PublicToolbar_d_GroupToolbarButtonInstanceApi = GroupToolbarButtonInstanceApi;
declare namespace PublicToolbar_d {
    export { PublicToolbar_d_ToolbarButtonSpec as ToolbarButtonSpec, PublicToolbar_d_ToolbarButtonInstanceApi as ToolbarButtonInstanceApi, PublicToolbar_d_ToolbarSplitButtonSpec as ToolbarSplitButtonSpec, PublicToolbar_d_ToolbarSplitButtonInstanceApi as ToolbarSplitButtonInstanceApi, PublicToolbar_d_ToolbarMenuButtonSpec as ToolbarMenuButtonSpec, PublicToolbar_d_ToolbarMenuButtonInstanceApi as ToolbarMenuButtonInstanceApi, PublicToolbar_d_ToolbarToggleButtonSpec as ToolbarToggleButtonSpec, PublicToolbar_d_ToolbarToggleButtonInstanceApi as ToolbarToggleButtonInstanceApi, PublicToolbar_d_GroupToolbarButtonSpec as GroupToolbarButtonSpec, PublicToolbar_d_GroupToolbarButtonInstanceApi as GroupToolbarButtonInstanceApi, };
}
interface Registry$1 {
    addButton: (name: string, spec: ToolbarButtonSpec) => void;
    addGroupToolbarButton: (name: string, spec: GroupToolbarButtonSpec) => void;
    addToggleButton: (name: string, spec: ToolbarToggleButtonSpec) => void;
    addMenuButton: (name: string, spec: ToolbarMenuButtonSpec) => void;
    addSplitButton: (name: string, spec: ToolbarSplitButtonSpec) => void;
    addMenuItem: (name: string, spec: MenuItemSpec) => void;
    addNestedMenuItem: (name: string, spec: NestedMenuItemSpec) => void;
    addToggleMenuItem: (name: string, spec: ToggleMenuItemSpec) => void;
    addContextMenu: (name: string, spec: ContextMenuApi) => void;
    addContextToolbar: (name: string, spec: ContextToolbarSpec) => void;
    addContextForm: (name: string, spec: ContextFormSpec) => void;
    addIcon: (name: string, svgData: string) => void;
    addAutocompleter: (name: string, spec: AutocompleterSpec) => void;
    addSidebar: (name: string, spec: SidebarSpec) => void;
    getAll: () => {
        buttons: Record;
        menuItems: Record;
        popups: Record;
        contextMenus: Record;
        contextToolbars: Record;
        icons: Record;
        sidebars: Record;
    };
}
interface StyleSheetLoaderSettings {
    maxLoadTime?: number;
    contentCssCors?: boolean;
    referrerPolicy?: ReferrerPolicy;
}
interface StyleSheetLoader {
    load: (url: string, success: () => void, failure?: () => void) => void;
    loadAll: (urls: string[], success: (urls: string[]) => void, failure: (urls: string[]) => void) => void;
    unload: (url: string) => void;
    unloadAll: (urls: string[]) => void;
    _setReferrerPolicy: (referrerPolicy: ReferrerPolicy) => void;
}
declare type Registry = Registry$1;
interface EditorUiApi {
    show: () => void;
    hide: () => void;
    enable: () => void;
    disable: () => void;
    isDisabled: () => boolean;
}
interface EditorUi extends EditorUiApi {
    registry: Registry;
    styleSheetLoader: StyleSheetLoader;
}
type Ui_d_Registry = Registry;
type Ui_d_EditorUiApi = EditorUiApi;
type Ui_d_EditorUi = EditorUi;
declare namespace Ui_d {
    export { Ui_d_Registry as Registry, PublicDialog_d as Dialog, PublicInlineContent_d as InlineContent, PublicMenu_d as Menu, PublicSidebar_d as Sidebar, PublicToolbar_d as Toolbar, Ui_d_EditorUiApi as EditorUiApi, Ui_d_EditorUi as EditorUi, };
}
declare type EntityEncoding = 'named' | 'numeric' | 'raw' | 'named,numeric' | 'named+numeric' | 'numeric,named' | 'numeric+named';
interface ContentLanguage {
    readonly title: string;
    readonly code: string;
    readonly customCode?: string;
}
declare type ThemeInitFunc = (editor: Editor, elm: HTMLElement) => {
    editorContainer: HTMLElement;
    iframeContainer: HTMLElement;
    height?: number;
    iframeHeight?: number;
    api?: EditorUiApi;
};
declare type SetupCallback = (editor: Editor) => void;
declare type FilePickerCallback = (callback: Function, value: any, meta: Record) => void;
declare type FilePickerValidationStatus = 'valid' | 'unknown' | 'invalid' | 'none';
declare type FilePickerValidationCallback = (info: {
    type: string;
    url: string;
}, callback: (validation: {
    status: FilePickerValidationStatus;
    message: string;
}) => void) => void;
declare type URLConverter = (url: string, name: string, elm?: HTMLElement) => string;
declare type URLConverterCallback = (url: string, node: Node, on_save: boolean, name: string) => void;
interface ToolbarGroup {
    name?: string;
    items: string[];
}
declare type ToolbarMode = 'floating' | 'sliding' | 'scrolling' | 'wrap';
interface BaseEditorSettings {
    add_form_submit_trigger?: boolean;
    add_unload_trigger?: boolean;
    allow_conditional_comments?: boolean;
    allow_html_data_urls?: boolean;
    allow_html_in_named_anchor?: boolean;
    allow_script_urls?: boolean;
    allow_svg_data_urls?: boolean;
    allow_unsafe_link_target?: boolean;
    anchor_bottom?: false | string;
    anchor_top?: false | string;
    auto_focus?: string | true;
    automatic_uploads?: boolean;
    base_url?: string;
    block_formats?: string;
    block_unsupported_drop?: boolean;
    body_id?: string;
    body_class?: string;
    br_in_pre?: boolean;
    br_newline_selector?: string;
    browser_spellcheck?: boolean;
    branding?: boolean;
    cache_suffix?: string;
    color_cols?: number;
    color_map?: string[];
    content_css?: boolean | string | string[];
    content_css_cors?: boolean;
    content_security_policy?: string;
    content_style?: string;
    deprecation_warnings?: boolean;
    font_css?: string | string[];
    content_langs?: ContentLanguage[];
    contextmenu?: string | false;
    contextmenu_never_use_native?: boolean;
    convert_fonts_to_spans?: boolean;
    convert_urls?: boolean;
    custom_colors?: boolean;
    custom_elements?: string;
    custom_ui_selector?: string;
    custom_undo_redo_levels?: number;
    directionality?: 'ltr' | 'rtl';
    doctype?: string;
    document_base_url?: string;
    element_format?: 'xhtml' | 'html';
    elementpath?: boolean;
    encoding?: string;
    end_container_on_empty_block?: boolean;
    entities?: string;
    entity_encoding?: EntityEncoding;
    extended_valid_elements?: string;
    event_root?: string;
    file_picker_callback?: FilePickerCallback;
    file_picker_types?: string;
    file_picker_validator_handler?: FilePickerValidationCallback;
    fix_list_elements?: boolean;
    fixed_toolbar_container?: string;
    fixed_toolbar_container_target?: HTMLElement;
    font_formats?: string;
    font_size_classes?: string;
    font_size_legacy_values?: string;
    font_size_style_values?: string;
    fontsize_formats?: string;
    force_hex_style_colors?: boolean;
    forced_root_block?: boolean | string;
    forced_root_block_attrs?: Record;
    formats?: Formats;
    gecko_spellcheck?: boolean;
    height?: number | string;
    hidden_input?: boolean;
    icons?: string;
    icons_url?: string;
    id?: string;
    iframe_aria_text?: string;
    images_dataimg_filter?: (imgElm: HTMLImageElement) => boolean;
    images_file_types?: string;
    images_replace_blob_uris?: boolean;
    images_reuse_filename?: boolean;
    images_upload_base_path?: string;
    images_upload_credentials?: boolean;
    images_upload_handler?: UploadHandler;
    images_upload_url?: string;
    indent?: boolean;
    indent_after?: string;
    indent_before?: string;
    indent_use_margin?: boolean;
    indentation?: string;
    init_instance_callback?: SetupCallback;
    inline?: boolean;
    inline_boundaries?: boolean;
    inline_boundaries_selector?: string;
    inline_styles?: boolean;
    invalid_elements?: string;
    invalid_styles?: string | Record;
    keep_styles?: boolean;
    language?: string;
    language_load?: boolean;
    language_url?: string;
    lineheight_formats?: string;
    max_height?: number;
    max_width?: number;
    menu?: Record;
    menubar?: boolean | string;
    min_height?: number;
    min_width?: number;
    no_newline_selector?: string;
    nowrap?: boolean;
    object_resizing?: boolean | string;
    padd_empty_with_br?: boolean;
    placeholder?: string;
    preserve_cdata?: boolean;
    preview_styles?: boolean | string;
    protect?: RegExp[];
    readonly?: boolean;
    referrer_policy?: ReferrerPolicy;
    relative_urls?: boolean;
    remove_script_host?: boolean;
    remove_trailing_brs?: boolean;
    removed_menuitems?: string;
    resize?: boolean | 'both';
    resize_img_proportional?: boolean;
    root_name?: string;
    schema?: SchemaType;
    selector?: string;
    setup?: SetupCallback;
    skin?: boolean | string;
    skin_url?: string;
    statusbar?: boolean;
    style_formats?: AllowedFormat[];
    style_formats_autohide?: boolean;
    style_formats_merge?: boolean;
    submit_patch?: boolean;
    suffix?: string;
    target?: HTMLElement;
    theme?: string | ThemeInitFunc;
    theme_url?: string;
    toolbar?: boolean | string | string[] | Array;
    toolbar1?: string;
    toolbar2?: string;
    toolbar3?: string;
    toolbar4?: string;
    toolbar5?: string;
    toolbar6?: string;
    toolbar7?: string;
    toolbar8?: string;
    toolbar9?: string;
    toolbar_mode?: ToolbarMode;
    typeahead_urls?: boolean;
    url_converter?: URLConverter;
    url_converter_scope?: any;
    urlconverter_callback?: string | URLConverterCallback;
    valid_children?: string;
    valid_classes?: string | Record;
    valid_elements?: string;
    valid_styles?: string | Record;
    verify_html?: boolean;
    visual?: boolean;
    visual_anchor_class?: string;
    visual_table_class?: string;
    width?: number | string;
    toolbar_drawer?: false | 'floating' | 'sliding' | 'scrolling';
    editor_deselector?: string;
    editor_selector?: string;
    elements?: string;
    filepicker_validator_handler?: FilePickerValidationCallback;
    mode?: 'exact' | 'textareas' | 'specific_textareas';
    types?: Record[];
    block_elements?: string;
    boolean_attributes?: string;
    move_caret_before_on_enter_elements?: string;
    non_empty_elements?: string;
    self_closing_elements?: string;
    short_ended_elements?: string;
    text_block_elements?: string;
    text_inline_elements?: string;
    whitespace_elements?: string;
    special?: string;
    disable_nodechange?: boolean;
    forced_plugins?: string | string[];
    plugin_base_urls?: Record;
    service_message?: string;
    validate?: boolean;
    [key: string]: any;
}
interface RawEditorSettings extends BaseEditorSettings {
    external_plugins?: Record;
    mobile?: RawEditorSettings;
    plugins?: string | string[];
}
interface EditorSettings extends BaseEditorSettings {
    external_plugins: Record;
    plugins: string;
}
interface ParamTypeMap {
    'hash': Record;
    'string': string;
    'number': number;
    'boolean': boolean;
    'string[]': string[];
    'array': any[];
}
interface BlobInfoImagePair {
    image: HTMLImageElement;
    blobInfo: BlobInfo;
}
declare class NodeChange {
    private readonly editor;
    private lastPath;
    constructor(editor: Editor);
    nodeChanged(args?: any): void;
    private isSameElementPath;
}
interface SelectionOverrides {
    showCaret: (direction: number, node: Element, before: boolean, scrollIntoView?: boolean) => Range | null;
    showBlockCaretContainer: (blockCaretContainer: Element) => void;
    hideFakeCaret: () => void;
    destroy: () => void;
}
interface Quirks {
    refreshContentEditable(): void;
    isHidden(): boolean;
}
declare type DecoratorData = Record;
declare type Decorator = (uid: string, data: DecoratorData) => {
    attributes?: {};
    classes?: string[];
};
declare type AnnotationListener = (state: boolean, name: string, data?: {
    uid: string;
    nodes: any[];
}) => void;
declare type AnnotationListenerApi = AnnotationListener;
interface AnnotatorSettings {
    decorate: Decorator;
    persistent?: boolean;
}
interface Annotator {
    register: (name: string, settings: AnnotatorSettings) => void;
    annotate: (name: string, data: DecoratorData) => void;
    annotationChanged: (name: string, f: AnnotationListenerApi) => void;
    remove: (name: string) => void;
    getAll: (name: string) => Record;
}
interface GeomRect {
    readonly x: number;
    readonly y: number;
    readonly w: number;
    readonly h: number;
}
interface Rect {
    inflate: (rect: GeomRect, w: number, h: number) => GeomRect;
    relativePosition: (rect: GeomRect, targetRect: GeomRect, rel: string) => GeomRect;
    findBestRelativePosition: (rect: GeomRect, targetRect: GeomRect, constrainRect: GeomRect, rels: string[]) => string | null;
    intersect: (rect: GeomRect, cropRect: GeomRect) => GeomRect | null;
    clamp: (rect: GeomRect, clampRect: GeomRect, fixedSize?: boolean) => GeomRect;
    create: (x: number, y: number, w: number, h: number) => GeomRect;
    fromClientRect: (clientRect: DOMRect) => GeomRect;
}
interface StyleMap {
    [s: string]: string | number;
}
interface StylesSettings {
    allow_script_urls?: boolean;
    allow_svg_data_urls?: boolean;
    url_converter?: URLConverter;
    url_converter_scope?: any;
}
interface Styles {
    toHex: (color: string) => string;
    parse: (css: string) => Record;
    serialize: (styles: StyleMap, elementName?: string) => string;
}
interface DOMUtilsSettings {
    schema: Schema;
    url_converter: URLConverter;
    url_converter_scope: any;
    ownEvents: boolean;
    keep_values: boolean;
    hex_colors: boolean;
    update_styles: boolean;
    root_element: HTMLElement;
    collect: Function;
    onSetAttrib: Function;
    contentCssCors: boolean;
    referrerPolicy: ReferrerPolicy;
}
declare type Target = Node | Window;
declare type RunArguments = string | T | Array;
declare type BoundEvent = [
    Target,
    string,
    EventUtilsCallback,
    any
];
declare type Callback = EventUtilsCallback>;
interface DOMUtils {
    doc: Document;
    settings: Partial;
    win: Window;
    files: Record;
    stdMode: boolean;
    boxModel: boolean;
    styleSheetLoader: StyleSheetLoader;
    boundEvents: BoundEvent[];
    styles: Styles;
    schema: Schema;
    events: EventUtils;
    root: Node;
    $: DomQueryConstructor;
    $$: {
        (elm: T | T[] | DomQuery): DomQuery;
        (elm: string): DomQuery;
    };
    isBlock: (node: string | Node) => boolean;
    clone: (node: Node, deep: boolean) => Node;
    getRoot: () => HTMLElement;
    getViewPort: (argWin?: Window) => GeomRect;
    getRect: (elm: string | HTMLElement) => GeomRect;
    getSize: (elm: string | HTMLElement) => {
        w: number;
        h: number;
    };
    getParent: {
        (node: string | Node, selector: K, root?: Node): HTMLElementTagNameMap[K] | null;
        (node: string | Node, selector: (node: HTMLElement) => node is T, root?: Node): T | null;
        (node: string | Node, selector?: string | ((node: HTMLElement) => boolean | void), root?: Node): T | null;
    };
    getParents: {
        (elm: string | Node, selector: K, root?: Node, collect?: boolean): Array;
        (node: string | Node, selector: (node: HTMLElement) => node is T, root?: Node): T[];
        (elm: string | Node, selector?: string | ((node: HTMLElement) => boolean | void), root?: Node, collect?: boolean): T[];
    };
    get: (elm: string | Node) => HTMLElement | null;
    getNext: (node: Node, selector: string | ((node: Node) => boolean)) => Node | null;
    getPrev: (node: Node, selector: string | ((node: Node) => boolean)) => Node | null;
    select: {
        (selector: K, scope?: string | Node): Array;
        (selector: string, scope?: string | Node): T[];
    };
    is: (elm: Node | Node[], selector: string) => boolean;
    add: (parentElm: RunArguments, name: string | Node, attrs?: Record, html?: string | Node, create?: boolean) => HTMLElement;
    create: {
        (name: K, attrs?: Record, html?: string | Node): HTMLElementTagNameMap[K];
        (name: string, attrs?: Record, html?: string | Node): HTMLElement;
    };
    createHTML: (name: string, attrs?: Record, html?: string) => string;
    createFragment: (html?: string) => DocumentFragment;
    remove: (node: string | T | T[] | DomQuery, keepChildren?: boolean) => T | T[];
    setStyle: {
        (elm: string | Node | Node[], name: string, value: string | number | null): void;
        (elm: string | Node | Node[], styles: StyleMap): void;
    };
    getStyle: (elm: string | Node, name: string, computed?: boolean) => string;
    setStyles: (elm: string | Node | Node[], stylesArg: StyleMap) => void;
    removeAllAttribs: (e: RunArguments) => void;
    setAttrib: (elm: string | Node | Node[], name: string, value: string | boolean | number | null) => void;
    setAttribs: (elm: string | Node | Node[], attrs: Record) => void;
    getAttrib: (elm: string | Node, name: string, defaultVal?: string) => string;
    getPos: (elm: string | Node, rootElm?: Node) => {
        x: number;
        y: number;
    };
    parseStyle: (cssText: string) => Record;
    serializeStyle: (stylesArg: StyleMap, name?: string) => string;
    addStyle: (cssText: string) => void;
    loadCSS: (url: string) => void;
    addClass: (elm: string | Node | Node[], cls: string) => void;
    removeClass: (elm: string | Node | Node[], cls: string) => void;
    hasClass: (elm: string | Node, cls: string) => boolean;
    toggleClass: (elm: string | Node | Node[], cls: string, state?: boolean) => void;
    show: (elm: string | Node | Node[]) => void;
    hide: (elm: string | Node | Node[]) => void;
    isHidden: (elm: string | Node) => boolean;
    uniqueId: (prefix?: string) => string;
    setHTML: (elm: string | Node | Node[], html: string) => void;
    getOuterHTML: (elm: string | Node) => string;
    setOuterHTML: (elm: string | Node | Node[], html: string) => void;
    decode: (text: string) => string;
    encode: (text: string) => string;
    insertAfter: {
        (node: T | T[], reference: string | Node): T;
        (node: RunArguments, reference: string | Node): false | T;
    };
    replace: {
        (newElm: Node, oldElm: T | T[], keepChildren?: boolean): T;
        (newElm: Node, oldElm: RunArguments, keepChildren?: boolean): false | T;
    };
    rename: {
        (elm: Element, name: K): HTMLElementTagNameMap[K];
        (elm: Element, name: string): Element;
    };
    findCommonAncestor: (a: Node, b: Node) => Node;
    toHex: (rgbVal: string) => string;
    run(this: DOMUtils, elm: T | T[], func: (node: T) => R, scope?: any): R;
    run(this: DOMUtils, elm: RunArguments, func: (node: T) => R, scope?: any): false | R;
    getAttribs: (elm: string | Node) => NamedNodeMap | Attr[];
    isEmpty: (node: Node, elements?: Record) => boolean;
    createRng: () => Range;
    nodeIndex: (node: Node, normalized?: boolean) => number;
    split: {
        (parentElm: Node, splitElm: Node, replacementElm: T): T;
        (parentElm: Node, splitElm: T): T;
    };
    bind: {
        (target: Target, name: K, func: Callback, scope?: any): Callback;
        (target: Target[], name: K, func: Callback, scope?: any): Callback[];
    };
    unbind: {
        (target: Target, name?: K, func?: EventUtilsCallback>): EventUtils;
        (target: Target[], name?: K, func?: EventUtilsCallback>): EventUtils[];
    };
    fire: (target: Node | Window, name: string, evt?: {}) => EventUtils;
    getContentEditable: (node: Node) => string | null;
    getContentEditableParent: (node: Node) => string | null;
    destroy: () => void;
    isChildOf: (node: Node, parent: Node) => boolean;
    dumpRng: (r: Range) => string;
}
interface ClientRect {
    left: number;
    top: number;
    bottom: number;
    right: number;
    width: number;
    height: number;
}
interface GetSelectionContentArgs extends GetContentArgs {
    selection?: boolean;
    contextual?: boolean;
}
interface SelectionSetContentArgs extends SetContentArgs {
    selection?: boolean;
}
interface BookmarkManager {
    getBookmark: (type: number, normalized?: boolean) => Bookmark;
    moveToBookmark: (bookmark: Bookmark) => void;
}
interface ControlSelection {
    isResizable: (elm: Element) => boolean;
    showResizeRect: (elm: Element) => void;
    hideResizeRect: () => void;
    updateResizeRect: (evt: EditorEvent) => void;
    destroy: () => void;
}
interface ParserArgs {
    getInner?: boolean | number;
    forced_root_block?: boolean | string;
    context?: string;
    isRootContent?: boolean;
    format?: string;
    invalid?: boolean;
    no_events?: boolean;
    [key: string]: any;
}
declare type ParserFilterCallback = (nodes: AstNode[], name: string, args: ParserArgs) => void;
interface ParserFilter {
    name: string;
    callbacks: ParserFilterCallback[];
}
interface DomParserSettings {
    allow_html_data_urls?: boolean;
    allow_svg_data_urls?: boolean;
    allow_conditional_comments?: boolean;
    allow_html_in_named_anchor?: boolean;
    allow_script_urls?: boolean;
    allow_unsafe_link_target?: boolean;
    convert_fonts_to_spans?: boolean;
    fix_list_elements?: boolean;
    font_size_legacy_values?: string;
    forced_root_block?: boolean | string;
    forced_root_block_attrs?: Record;
    padd_empty_with_br?: boolean;
    preserve_cdata?: boolean;
    remove_trailing_brs?: boolean;
    root_name?: string;
    validate?: boolean;
    inline_styles?: boolean;
    blob_cache?: BlobCache;
    document?: Document;
    images_dataimg_filter?: (img: HTMLImageElement) => boolean;
}
interface DomParser {
    schema: Schema;
    addAttributeFilter: (name: string, callback: (nodes: AstNode[], name: string, args: ParserArgs) => void) => void;
    getAttributeFilters: () => ParserFilter[];
    addNodeFilter: (name: string, callback: (nodes: AstNode[], name: string, args: ParserArgs) => void) => void;
    getNodeFilters: () => ParserFilter[];
    filterNode: (node: AstNode) => AstNode;
    parse: (html: string, args?: ParserArgs) => AstNode;
}
interface WriterSettings {
    element_format?: 'xhtml' | 'html';
    entities?: string;
    entity_encoding?: EntityEncoding;
    indent?: boolean;
    indent_after?: string;
    indent_before?: string;
}
declare type Attributes = Array<{
    name: string;
    value: string;
}>;
interface Writer {
    cdata: (text: string) => void;
    comment: (text: string) => void;
    doctype: (text: string) => void;
    end: (name: string) => void;
    getContent: () => string;
    pi: (name: string, text?: string) => void;
    reset: () => void;
    start: (name: string, attrs?: Attributes, empty?: boolean) => void;
    text: (text: string, raw?: boolean) => void;
}
interface HtmlSerializerSettings extends WriterSettings {
    inner?: boolean;
    validate?: boolean;
}
interface HtmlSerializer {
    serialize: (node: AstNode) => string;
}
interface DomSerializerSettings extends DomParserSettings, WriterSettings, SchemaSettings, HtmlSerializerSettings {
    url_converter?: URLConverter;
    url_converter_scope?: {};
}
interface DomSerializerImpl {
    schema: Schema;
    addNodeFilter: (name: string, callback: (nodes: AstNode[], name: string, args: ParserArgs) => void) => void;
    addAttributeFilter: (name: string, callback: (nodes: AstNode[], name: string, args: ParserArgs) => void) => void;
    getNodeFilters: () => ParserFilter[];
    getAttributeFilters: () => ParserFilter[];
    serialize: {
        (node: Element, parserArgs: {
            format: 'tree';
        } & ParserArgs): AstNode;
        (node: Element, parserArgs?: ParserArgs): string;
    };
    addRules: (rules: string) => void;
    setRules: (rules: string) => void;
    addTempAttr: (name: string) => void;
    getTempAttrs: () => string[];
}
interface DomSerializer extends DomSerializerImpl {
}
interface EditorSelection {
    bookmarkManager: BookmarkManager;
    controlSelection: ControlSelection;
    dom: DOMUtils;
    win: Window;
    serializer: DomSerializer;
    editor: Editor;
    collapse: (toStart?: boolean) => void;
    setCursorLocation: {
        (node: Node, offset: number): void;
        (): void;
    };
    getContent: {
        (args: {
            format: 'tree';
        } & GetSelectionContentArgs): AstNode;
        (args?: GetSelectionContentArgs): string;
    };
    setContent: (content: string, args?: SelectionSetContentArgs) => void;
    getBookmark: (type?: number, normalized?: boolean) => Bookmark;
    moveToBookmark: (bookmark: Bookmark) => void;
    select: (node: Node, content?: boolean) => Node;
    isCollapsed: () => boolean;
    isForward: () => boolean;
    setNode: (elm: Element) => Element;
    getNode: () => Element;
    getSel: () => Selection | null;
    setRng: (rng: Range, forward?: boolean) => void;
    getRng: () => Range;
    getStart: (real?: boolean) => Element;
    getEnd: (real?: boolean) => Element;
    getSelectedBlocks: (startElm?: Element, endElm?: Element) => Element[];
    normalize: () => Range;
    selectorChanged: (selector: string, callback: (active: boolean, args: {
        node: Node;
        selector: String;
        parents: Element[];
    }) => void) => EditorSelection;
    selectorChangedWithUnbind: (selector: string, callback: (active: boolean, args: {
        node: Node;
        selector: String;
        parents: Element[];
    }) => void) => {
        unbind: () => void;
    };
    getScrollContainer: () => HTMLElement;
    scrollIntoView: (elm?: HTMLElement, alignToTop?: boolean) => void;
    placeCaretAt: (clientX: number, clientY: number) => void;
    getBoundingClientRect: () => ClientRect | DOMRect;
    destroy: () => void;
}
declare type EditorCommandCallback = (ui: boolean, value: any, args: any) => void;
declare type EditorCommandsCallback = (command: string, ui: boolean, value: any, args: any) => void;
interface Commands {
    state: Record boolean>;
    exec: Record;
    value: Record string>;
}
interface EditorCommandsConstructor {
    readonly prototype: EditorCommands;
    new (editor: Editor): EditorCommands;
}
declare class EditorCommands {
    private readonly editor;
    private selectionBookmark;
    private commands;
    constructor(editor: Editor);
    execCommand(command: string, ui?: boolean, value?: any, args?: any): boolean;
    queryCommandState(command: string): boolean;
    queryCommandValue(command: string): string;
    addCommands(commandList: Commands[K], type: K): void;
    addCommands(commandList: Record): void;
    addCommand(command: string, callback: EditorCommandCallback, scope?: any): void;
    queryCommandSupported(command: string): boolean;
    addQueryStateHandler(command: string, callback: () => boolean, scope?: any): void;
    addQueryValueHandler(command: string, callback: () => string, scope?: any): void;
    hasCustomCommand(command: string): boolean;
    private execNativeCommand;
    private isFormatMatch;
    private toggleFormat;
    private storeSelection;
    private restoreSelection;
    private setupCommands;
}
interface WindowParams {
    readonly inline?: 'cursor' | 'toolbar';
    readonly ariaAttrs?: boolean;
}
declare type InstanceApi = UrlDialogInstanceApi | DialogInstanceApi;
interface WindowManagerImpl {
    open: (config: DialogSpec, params: WindowParams, closeWindow: (dialog: DialogInstanceApi) => void) => DialogInstanceApi;
    openUrl: (config: UrlDialogSpec, closeWindow: (dialog: UrlDialogInstanceApi) => void) => UrlDialogInstanceApi;
    alert: (message: string, callback: () => void) => void;
    confirm: (message: string, callback: (state: boolean) => void) => void;
    close: (dialog: InstanceApi) => void;
}
interface WindowManager {
    open: (config: DialogSpec, params?: WindowParams) => DialogInstanceApi;
    openUrl: (config: UrlDialogSpec) => UrlDialogInstanceApi;
    alert: (message: string, callback?: () => void, scope?: any) => void;
    confirm: (message: string, callback?: (state: boolean) => void, scope?: any) => void;
    close: () => void;
}
interface ExecCommandEvent {
    command: string;
    ui?: boolean;
    value?: any;
}
declare type GetContentEvent = GetContentArgs & {
    source_view?: boolean;
    selection?: boolean;
    save?: boolean;
};
declare type SetContentEvent = SetContentArgs & {
    source_view?: boolean;
    paste?: boolean;
    selection?: boolean;
};
interface NewBlockEvent {
    newBlock: Element;
}
interface NodeChangeEvent {
    element: Element;
    parents: Node[];
    selectionChange?: boolean;
    initial?: boolean;
}
interface FormatEvent {
    format: string;
    vars?: FormatVars;
    node?: Node | RangeLikeObject;
}
interface ObjectResizeEvent {
    target: HTMLElement;
    width: number;
    height: number;
    origin: string;
}
interface ObjectSelectedEvent {
    target: Node;
    targetClone?: Node;
}
interface ScrollIntoViewEvent {
    elm: HTMLElement;
    alignToTop: boolean;
}
interface SetSelectionRangeEvent {
    range: Range;
    forward: boolean;
}
interface ShowCaretEvent {
    target: Node;
    direction: number;
    before: boolean;
}
interface SwitchModeEvent {
    mode: string;
}
interface AddUndoEvent {
    level: UndoLevel;
    lastLevel: UndoLevel;
    originalEvent: Event;
}
interface UndoRedoEvent {
    level: UndoLevel;
}
interface WindowEvent {
    dialog: InstanceApi;
}
interface ProgressStateEvent {
    state: boolean;
    time?: number;
}
interface AfterProgressStateEvent {
    state: boolean;
}
interface PlaceholderToggleEvent {
    state: boolean;
}
interface LoadErrorEvent {
    message: string;
}
interface PreProcessEvent extends ParserArgs {
    node: Element;
}
interface PostProcessEvent extends ParserArgs {
    content: string;
}
interface EditorEventMap extends Omit {
    'activate': {
        relatedTarget: Editor;
    };
    'deactivate': {
        relatedTarget: Editor;
    };
    'focus': {
        blurredEditor: Editor;
    };
    'blur': {
        focusedEditor: Editor;
    };
    'resize': UIEvent;
    'scroll': UIEvent;
    'detach': {};
    'remove': {};
    'init': {};
    'ScrollIntoView': ScrollIntoViewEvent;
    'AfterScrollIntoView': ScrollIntoViewEvent;
    'ObjectResized': ObjectResizeEvent;
    'ObjectResizeStart': ObjectResizeEvent;
    'SwitchMode': SwitchModeEvent;
    'ScrollWindow': UIEvent;
    'ResizeWindow': UIEvent;
    'SkinLoaded': {};
    'SkinLoadError': LoadErrorEvent;
    'PluginLoadError': LoadErrorEvent;
    'IconsLoadError': LoadErrorEvent;
    'LanguageLoadError': LoadErrorEvent;
    'BeforeExecCommand': ExecCommandEvent;
    'ExecCommand': ExecCommandEvent;
    'NodeChange': NodeChangeEvent;
    'FormatApply': FormatEvent;
    'FormatRemove': FormatEvent;
    'ShowCaret': ShowCaretEvent;
    'SelectionChange': {};
    'ObjectSelected': ObjectSelectedEvent;
    'BeforeObjectSelected': ObjectSelectedEvent;
    'GetSelectionRange': {
        range: Range;
    };
    'SetSelectionRange': SetSelectionRangeEvent;
    'AfterSetSelectionRange': SetSelectionRangeEvent;
    'BeforeGetContent': GetContentEvent;
    'GetContent': GetContentEvent;
    'BeforeSetContent': SetContentEvent;
    'SetContent': SetContentEvent;
    'LoadContent': {};
    'PreviewFormats': {};
    'AfterPreviewFormats': {};
    'ScriptsLoaded': {};
    'PreInit': {};
    'PostRender': {};
    'NewBlock': NewBlockEvent;
    'ClearUndos': {};
    'TypingUndo': {};
    'Redo': UndoRedoEvent;
    'Undo': UndoRedoEvent;
    'BeforeAddUndo': AddUndoEvent;
    'AddUndo': AddUndoEvent;
    'CloseWindow': WindowEvent;
    'OpenWindow': WindowEvent;
    'ProgressState': ProgressStateEvent;
    'AfterProgressState': AfterProgressStateEvent;
    'PlaceholderToggle': PlaceholderToggleEvent;
    'tap': TouchEvent;
    'longpress': TouchEvent;
    'longpresscancel': {};
    'PreProcess': PreProcessEvent;
    'PostProcess': PostProcessEvent;
}
interface EditorManagerEventMap {
    'AddEditor': {
        editor: Editor;
    };
    'RemoveEditor': {
        editor: Editor;
    };
    'BeforeUnload': {
        returnValue: any;
    };
}
type EventTypes_d_ExecCommandEvent = ExecCommandEvent;
type EventTypes_d_GetContentEvent = GetContentEvent;
type EventTypes_d_SetContentEvent = SetContentEvent;
type EventTypes_d_NewBlockEvent = NewBlockEvent;
type EventTypes_d_NodeChangeEvent = NodeChangeEvent;
type EventTypes_d_FormatEvent = FormatEvent;
type EventTypes_d_ObjectResizeEvent = ObjectResizeEvent;
type EventTypes_d_ObjectSelectedEvent = ObjectSelectedEvent;
type EventTypes_d_ScrollIntoViewEvent = ScrollIntoViewEvent;
type EventTypes_d_SetSelectionRangeEvent = SetSelectionRangeEvent;
type EventTypes_d_ShowCaretEvent = ShowCaretEvent;
type EventTypes_d_SwitchModeEvent = SwitchModeEvent;
type EventTypes_d_AddUndoEvent = AddUndoEvent;
type EventTypes_d_UndoRedoEvent = UndoRedoEvent;
type EventTypes_d_WindowEvent<_0> = WindowEvent<_0>;
type EventTypes_d_ProgressStateEvent = ProgressStateEvent;
type EventTypes_d_AfterProgressStateEvent = AfterProgressStateEvent;
type EventTypes_d_PlaceholderToggleEvent = PlaceholderToggleEvent;
type EventTypes_d_LoadErrorEvent = LoadErrorEvent;
type EventTypes_d_PreProcessEvent = PreProcessEvent;
type EventTypes_d_PostProcessEvent = PostProcessEvent;
type EventTypes_d_EditorEventMap = EditorEventMap;
type EventTypes_d_EditorManagerEventMap = EditorManagerEventMap;
declare namespace EventTypes_d {
    export { EventTypes_d_ExecCommandEvent as ExecCommandEvent, EventTypes_d_GetContentEvent as GetContentEvent, EventTypes_d_SetContentEvent as SetContentEvent, EventTypes_d_NewBlockEvent as NewBlockEvent, EventTypes_d_NodeChangeEvent as NodeChangeEvent, EventTypes_d_FormatEvent as FormatEvent, EventTypes_d_ObjectResizeEvent as ObjectResizeEvent, EventTypes_d_ObjectSelectedEvent as ObjectSelectedEvent, EventTypes_d_ScrollIntoViewEvent as ScrollIntoViewEvent, EventTypes_d_SetSelectionRangeEvent as SetSelectionRangeEvent, EventTypes_d_ShowCaretEvent as ShowCaretEvent, EventTypes_d_SwitchModeEvent as SwitchModeEvent, EventTypes_d_AddUndoEvent as AddUndoEvent, EventTypes_d_UndoRedoEvent as UndoRedoEvent, EventTypes_d_WindowEvent as WindowEvent, EventTypes_d_ProgressStateEvent as ProgressStateEvent, EventTypes_d_AfterProgressStateEvent as AfterProgressStateEvent, EventTypes_d_PlaceholderToggleEvent as PlaceholderToggleEvent, EventTypes_d_LoadErrorEvent as LoadErrorEvent, EventTypes_d_PreProcessEvent as PreProcessEvent, EventTypes_d_PostProcessEvent as PostProcessEvent, EventTypes_d_EditorEventMap as EditorEventMap, EventTypes_d_EditorManagerEventMap as EditorManagerEventMap, };
}
interface RawString {
    raw: string;
}
declare type Primitive = string | number | boolean | Record | Function;
declare type TokenisedString = [
    string,
    ...Primitive[]
];
declare type Untranslated = Primitive | TokenisedString | RawString;
declare type TranslatedString = string;
interface I18n {
    getData: () => Record>;
    setCode: (newCode: string) => void;
    getCode: () => string;
    add: (code: string, items: Record) => void;
    translate: (text: Untranslated) => TranslatedString;
    isRtl: () => boolean;
    hasCode: (code: string) => boolean;
}
interface Observable {
    fire>(name: K, args?: U, bubble?: boolean): EditorEvent;
    on(name: K, callback: (event: EditorEvent>) => void, prepend?: boolean): EventDispatcher;
    off(name?: K, callback?: (event: EditorEvent>) => void): EventDispatcher;
    once(name: K, callback: (event: EditorEvent>) => void): EventDispatcher;
    hasEventListeners(name: string): boolean;
}
interface URISettings {
    base_uri?: URI;
}
interface URIConstructor {
    readonly prototype: URI;
    new (url: string, settings?: URISettings): URI;
    getDocumentBaseUrl: (loc: {
        protocol: string;
        host?: string;
        href?: string;
        pathname?: string;
    }) => string;
    parseDataUri: (uri: string) => {
        type: string;
        data: string;
    };
}
interface SafeUriOptions {
    readonly allow_html_data_urls?: boolean;
    readonly allow_script_urls?: boolean;
    readonly allow_svg_data_urls?: boolean;
}
declare class URI {
    static parseDataUri(uri: string): {
        type: string;
        data: string;
    };
    static isDomSafe(uri: string, context?: string, options?: SafeUriOptions): boolean;
    static getDocumentBaseUrl(loc: {
        protocol: string;
        host?: string;
        href?: string;
        pathname?: string;
    }): string;
    source: string;
    protocol: string;
    authority: string;
    userInfo: string;
    user: string;
    password: string;
    host: string;
    port: string;
    relative: string;
    path: string;
    directory: string;
    file: string;
    query: string;
    anchor: string;
    settings: URISettings;
    constructor(url: string, settings?: URISettings);
    setPath(path: string): void;
    toRelative(uri: string): string;
    toAbsolute(uri: string, noHost?: boolean): string;
    isSameOrigin(uri: URI): boolean;
    toRelPath(base: string, path: string): string;
    toAbsPath(base: string, path: string): string;
    getURI(noProtoHost?: boolean): string;
}
interface EditorManager extends Observable {
    $: DomQueryConstructor;
    defaultSettings: RawEditorSettings;
    majorVersion: string;
    minorVersion: string;
    releaseDate: string;
    editors: Editor[];
    activeEditor: Editor;
    focusedEditor: Editor;
    settings: RawEditorSettings;
    baseURI: URI;
    baseURL: string;
    documentBaseURL: string;
    i18n: I18n;
    suffix: string;
    add(this: EditorManager, editor: Editor): Editor;
    addI18n: (code: string, item: Record) => void;
    createEditor(this: EditorManager, id: string, settings: RawEditorSettings): Editor;
    execCommand(this: EditorManager, cmd: string, ui: boolean, value: any): boolean;
    get(this: EditorManager): Editor[];
    get(this: EditorManager, id: number | string): Editor;
    init(this: EditorManager, settings: RawEditorSettings): Promise;
    overrideDefaults(this: EditorManager, defaultSettings: Partial): void;
    remove(this: EditorManager): void;
    remove(this: EditorManager, selector: string | Editor): Editor | void;
    setActive(this: EditorManager, editor: Editor): void;
    setup(this: EditorManager): void;
    translate: (text: Untranslated) => TranslatedString;
    triggerSave: () => void;
    _setBaseUrl(this: EditorManager, baseUrl: string): void;
}
interface EditorObservable extends Observable {
    bindPendingEventDelegates(this: Editor): void;
    toggleNativeEvent(this: Editor, name: string, state: boolean): any;
    unbindAllNativeEvents(this: Editor): void;
}
interface UploadResult$1 {
    element: HTMLImageElement;
    status: boolean;
    blobInfo: BlobInfo;
    uploadUri: string;
}
declare type UploadCallback = (results: UploadResult$1[]) => void;
interface EditorUpload {
    blobCache: BlobCache;
    addFilter: (filter: (img: HTMLImageElement) => boolean) => void;
    uploadImages: (callback?: UploadCallback) => Promise;
    uploadImagesAuto: (callback?: UploadCallback) => void | Promise;
    scanForImages: () => Promise;
    destroy: () => void;
}
declare type FormatChangeCallback = (state: boolean, data: {
    node: Node;
    format: string;
    parents: any;
}) => void;
interface FormatRegistry {
    get: {
        (name: string): Format[] | undefined;
        (): Record;
    };
    has: (name: string) => boolean;
    register: (name: string | Formats, format?: Format[] | Format) => void;
    unregister: (name: string) => Formats;
}
interface Formatter extends FormatRegistry {
    apply: (name: string, vars?: FormatVars, node?: Node | RangeLikeObject) => void;
    remove: (name: string, vars?: FormatVars, node?: Node | Range, similar?: boolean) => void;
    toggle: (name: string, vars?: FormatVars, node?: Node) => void;
    match: (name: string, vars?: FormatVars, node?: Node, similar?: boolean) => boolean;
    closest: (names: string[]) => string | null;
    matchAll: (names: string[], vars?: FormatVars) => string[];
    matchNode: (node: Node, name: string, vars?: FormatVars, similar?: boolean) => Format | undefined;
    canApply: (name: string) => boolean;
    formatChanged: (names: string, callback: FormatChangeCallback, similar?: boolean, vars?: FormatVars) => {
        unbind: () => void;
    };
    getCssText: (format: string | Format) => string;
}
interface EditorMode {
    isReadOnly: () => boolean;
    set: (mode: string) => void;
    get: () => string;
    register: (mode: string, api: EditorModeApi) => void;
}
interface EditorModeApi {
    activate: () => void;
    deactivate: () => void;
    editorReadOnly: boolean;
}
interface Plugin {
    getMetadata?: () => {
        name: string;
        url: string;
    };
    [key: string]: any;
}
declare type PluginManager = AddOnManager;
interface ShortcutsConstructor {
    readonly prototype: Shortcuts;
    new (editor: Editor): Shortcuts;
}
declare type CommandFunc = string | [
    string,
    boolean,
    any
] | (() => void);
declare class Shortcuts {
    private readonly editor;
    private readonly shortcuts;
    private pendingPatterns;
    constructor(editor: Editor);
    add(pattern: string, desc: string, cmdFunc: CommandFunc, scope?: any): boolean;
    remove(pattern: string): boolean;
    private normalizeCommandFunc;
    private createShortcut;
    private hasModifier;
    private isFunctionKey;
    private matchShortcut;
    private executeShortcutAction;
}
interface Theme {
    ui?: any;
    inline?: any;
    execCommand?: (command: string, ui?: boolean, value?: any) => boolean;
    destroy?: () => void;
    init?: (editor: Editor, url: string, $: DomQueryConstructor) => void;
    renderUI?: () => {
        iframeContainer?: HTMLIFrameElement;
        editorContainer: HTMLElement;
        api?: Partial;
    };
    getNotificationManagerImpl?: () => NotificationManagerImpl;
    getWindowManagerImpl?: () => WindowManagerImpl;
}
declare type ThemeManager = AddOnManager;
interface EditorConstructor {
    readonly prototype: Editor;
    new (id: string, settings: RawEditorSettings, editorManager: EditorManager): Editor;
}
declare class Editor implements EditorObservable {
    documentBaseUrl: string;
    baseUri: URI;
    settings: EditorSettings;
    id: string;
    plugins: Record;
    documentBaseURI: URI;
    baseURI: URI;
    contentCSS: string[];
    contentStyles: string[];
    ui: EditorUi;
    mode: EditorMode;
    setMode: (mode: string) => void;
    $: DomQueryConstructor;
    shortcuts: Shortcuts;
    loadedCSS: Record;
    editorCommands: EditorCommands;
    suffix: string;
    editorManager: EditorManager;
    inline: boolean;
    isNotDirty: boolean;
    callbackLookup: any;
    _nodeChangeDispatcher: NodeChange;
    editorUpload: EditorUpload;
    annotator: Annotator;
    bodyElement: HTMLElement;
    bookmark: any;
    composing: boolean;
    container: HTMLElement;
    contentAreaContainer: HTMLElement;
    contentDocument: Document;
    contentWindow: Window;
    delegates: Record void>;
    destroyed: boolean;
    dom: DOMUtils;
    editorContainer: HTMLElement;
    eventRoot?: Element;
    formatter: Formatter;
    formElement: HTMLElement;
    formEventDelegate: (e: Event) => void;
    hasHiddenInput: boolean;
    hasVisual: boolean;
    hidden: boolean;
    iframeElement: HTMLIFrameElement | null;
    iframeHTML: string;
    initialized: boolean;
    notificationManager: NotificationManager;
    orgDisplay: string;
    orgVisibility: string;
    parser: DomParser;
    quirks: Quirks;
    readonly: boolean;
    removed: boolean;
    schema: Schema;
    selection: EditorSelection;
    serializer: DomSerializer;
    startContent: string;
    targetElm: HTMLElement;
    theme: Theme;
    undoManager: UndoManager;
    validate: boolean;
    windowManager: WindowManager;
    _beforeUnload: () => void;
    _eventDispatcher: EventDispatcher;
    _mceOldSubmit: any;
    _pendingNativeEvents: string[];
    _selectionOverrides: SelectionOverrides;
    _skinLoaded: boolean;
    bindPendingEventDelegates: EditorObservable['bindPendingEventDelegates'];
    toggleNativeEvent: EditorObservable['toggleNativeEvent'];
    unbindAllNativeEvents: EditorObservable['unbindAllNativeEvents'];
    fire: EditorObservable['fire'];
    on: EditorObservable['on'];
    off: EditorObservable['off'];
    once: EditorObservable['once'];
    hasEventListeners: EditorObservable['hasEventListeners'];
    constructor(id: string, settings: RawEditorSettings, editorManager: EditorManager);
    render(): void;
    focus(skipFocus?: boolean): void;
    hasFocus(): boolean;
    execCallback(name: string, ...x: any[]): any;
    translate(text: Untranslated): TranslatedString;
    getParam(name: string, defaultVal: ParamTypeMap[K], type: K): ParamTypeMap[K];
    getParam(name: K, defaultVal?: EditorSettings[K], type?: string): EditorSettings[K];
    getParam(name: string, defaultVal: T, type?: string): T;
    hasPlugin(name: string, loaded?: boolean): boolean;
    nodeChanged(args?: any): void;
    addCommand(name: string, callback: EditorCommandCallback, scope?: object): void;
    addQueryStateHandler(name: string, callback: () => boolean, scope?: any): void;
    addQueryValueHandler(name: string, callback: () => string, scope?: any): void;
    addShortcut(pattern: string, desc: string, cmdFunc: string | [
        string,
        boolean,
        any
    ] | (() => void), scope?: any): void;
    execCommand(cmd: string, ui?: boolean, value?: any, args?: any): boolean;
    queryCommandState(cmd: string): boolean;
    queryCommandValue(cmd: string): string;
    queryCommandSupported(cmd: string): boolean;
    show(): void;
    hide(): void;
    isHidden(): boolean;
    setProgressState(state: boolean, time?: number): void;
    load(args?: any): string;
    save(args?: any): string;
    setContent(content: string, args?: SetContentArgs): string;
    setContent(content: AstNode, args?: SetContentArgs): AstNode;
    setContent(content: Content, args?: SetContentArgs): Content;
    getContent(args: {
        format: 'tree';
    } & GetContentArgs): AstNode;
    getContent(args?: GetContentArgs): string;
    insertContent(content: string, args?: any): void;
    resetContent(initialContent?: string): void;
    isDirty(): boolean;
    setDirty(state: boolean): void;
    getContainer(): HTMLElement;
    getContentAreaContainer(): HTMLElement;
    getElement(): HTMLElement;
    getWin(): Window;
    getDoc(): Document;
    getBody(): HTMLElement;
    convertURL(url: string, name: string, elm?: any): string;
    addVisual(elm?: HTMLElement): void;
    remove(): void;
    destroy(automatic?: boolean): void;
    uploadImages(callback?: UploadCallback): Promise;
    _scanForImages(): Promise;
    addButton(): void;
    addSidebar(): void;
    addMenuItem(): void;
    addContextToolbar(): void;
}
interface UrlObject {
    prefix: string;
    resource: string;
    suffix: string;
}
declare type WaitState = 'added' | 'loaded';
declare type AddOnCallback = (editor: Editor, url: string, $?: DomQueryConstructor) => void | T;
declare type AddOnConstructor = new (editor: Editor, url: string, $?: DomQueryConstructor) => T;
interface AddOnManager {
    items: AddOnConstructor[];
    urls: Record;
    lookup: Record;
        dependencies?: string[];
    }>;
    _listeners: {
        name: string;
        state: WaitState;
        callback: () => void;
    }[];
    get: (name: string) => AddOnConstructor;
    dependencies: (name: string) => string[];
    requireLangPack: (name: string, languages: string) => void;
    add: (id: string, addOn: AddOnCallback, dependencies?: string[]) => AddOnConstructor;
    remove: (name: string) => void;
    createUrl: (baseUrl: UrlObject, dep: string | UrlObject) => UrlObject;
    addComponents: (pluginName: string, scripts: string[]) => void;
    load: (name: string, addOnUrl: string | UrlObject, success?: () => void, scope?: any, failure?: () => void) => void;
    waitFor: (name: string, callback: () => void, state?: WaitState) => void;
}
interface RangeUtils {
    walk: (rng: Range, callback: (nodes: Node[]) => void) => void;
    split: (rng: Range) => RangeLikeObject;
    normalize: (rng: Range) => boolean;
}
interface ScriptLoaderSettings {
    referrerPolicy?: ReferrerPolicy;
}
interface ScriptLoaderConstructor {
    readonly prototype: ScriptLoader;
    new (): ScriptLoader;
    ScriptLoader: ScriptLoader;
}
declare class ScriptLoader {
    static ScriptLoader: ScriptLoader;
    private settings;
    private states;
    private queue;
    private scriptLoadedCallbacks;
    private queueLoadedCallbacks;
    private loading;
    constructor(settings?: ScriptLoaderSettings);
    _setReferrerPolicy(referrerPolicy: ReferrerPolicy): void;
    loadScript(url: string, success?: () => void, failure?: () => void): void;
    isDone(url: string): boolean;
    markDone(url: string): void;
    add(url: string, success?: () => void, scope?: any, failure?: () => void): void;
    load(url: string, success?: () => void, scope?: any, failure?: () => void): void;
    remove(url: string): void;
    loadQueue(success?: () => void, scope?: any, failure?: (urls: string[]) => void): void;
    loadScripts(scripts: string[], success?: () => void, scope?: any, failure?: (urls: string[]) => void): void;
}
declare type TextProcessCallback = (node: Text, offset: number, text: string) => number;
interface Spot {
    container: Text;
    offset: number;
}
interface TextSeeker {
    backwards: (node: Node, offset: number, process: TextProcessCallback, root?: Node) => Spot | null;
    forwards: (node: Node, offset: number, process: TextProcessCallback, root?: Node) => Spot | null;
}
interface DomTreeWalkerConstructor {
    readonly prototype: DomTreeWalker;
    new (startNode: Node, rootNode: Node): DomTreeWalker;
}
declare class DomTreeWalker {
    private readonly rootNode;
    private node;
    constructor(startNode: Node, rootNode: Node);
    current(): Node;
    next(shallow?: boolean): Node;
    prev(shallow?: boolean): Node;
    prev2(shallow?: boolean): Node;
    private findSibling;
    private findPreviousNode;
}
interface Version {
    major: number;
    minor: number;
}
interface Env {
    opera: boolean;
    webkit: boolean;
    ie: false | number;
    gecko: boolean;
    mac: boolean;
    iOS: boolean;
    android: boolean;
    contentEditable: boolean;
    transparentSrc: string;
    caretAfter: boolean;
    range: boolean;
    documentMode: number;
    fileApi: boolean;
    ceFalse: boolean;
    cacheSuffix: any;
    container: any;
    experimentalShadowDom: boolean;
    canHaveCSP: boolean;
    desktop: boolean;
    windowsPhone: boolean;
    browser: {
        current: string | undefined;
        version: Version;
        isEdge: () => boolean;
        isChrome: () => boolean;
        isIE: () => boolean;
        isOpera: () => boolean;
        isFirefox: () => boolean;
        isSafari: () => boolean;
    };
    os: {
        current: string | undefined;
        version: Version;
        isWindows: () => boolean;
        isiOS: () => boolean;
        isAndroid: () => boolean;
        isOSX: () => boolean;
        isLinux: () => boolean;
        isSolaris: () => boolean;
        isFreeBSD: () => boolean;
        isChromeOS: () => boolean;
    };
    deviceType: {
        isiPad: () => boolean;
        isiPhone: () => boolean;
        isTablet: () => boolean;
        isPhone: () => boolean;
        isTouch: () => boolean;
        isWebView: () => boolean;
        isDesktop: () => boolean;
    };
}
interface FocusManager {
    isEditorUIElement: (elm: Element) => boolean;
}
interface EntitiesMap {
    [name: string]: string;
}
interface Entities {
    encodeRaw: (text: string, attr?: boolean) => string;
    encodeAllRaw: (text: string) => string;
    encodeNumeric: (text: string, attr?: boolean) => string;
    encodeNamed: (text: string, attr?: boolean, entities?: EntitiesMap) => string;
    getEncodeFunc: (name: string, entities?: EntitiesMap | string) => (text: string, attr?: boolean) => string;
    decode: (text: string) => string;
}
declare type AttrList = Array<{
    name: string;
    value: string;
}> & {
    map: Record;
};
interface SaxParserSettings {
    allow_conditional_comments?: boolean;
    allow_html_data_urls?: boolean;
    allow_script_urls?: boolean;
    allow_svg_data_urls?: boolean;
    fix_self_closing?: boolean;
    preserve_cdata?: boolean;
    remove_internals?: boolean;
    self_closing_elements?: Record;
    validate?: boolean;
    document?: Document;
    cdata?: (text: string) => void;
    comment?: (text: string) => void;
    doctype?: (text: string) => void;
    end?: (name: string) => void;
    pi?: (name: string, text: string) => void;
    start?: (name: string, attrs: AttrList, empty: boolean) => void;
    text?: (text: string, raw?: boolean) => void;
}
declare type ParserFormat = 'html' | 'xhtml' | 'xml';
interface SaxParser {
    parse: (html: string, format?: ParserFormat) => void;
}
interface IconPack {
    icons: Record;
}
interface IconManager {
    add: (id: string, iconPack: IconPack) => void;
    get: (id: string) => IconPack;
    has: (id: string) => boolean;
}
interface Resource {
    load: (id: string, url: string) => Promise;
    add: (id: string, data: any) => void;
}
declare type WithSubItems = T[K] extends Array ? (T & T[K][number]) : T;
interface Props {
    Mixins?: Array>;
    Methods?: string;
    Properties?: string;
    Statics?: Record;
    Defaults?: Record;
    init?: (...args: A) => void;
}
declare type ExtendedClass, A extends any[]> = WithSubItems;
interface ExtendedClassConstructor, A extends any[] = any[]> extends Class {
    readonly prototype: ExtendedClass;
    new (...args: A): ExtendedClass;
    [key: string]: T['Statics'];
}
interface Class {
    extend, A extends any[] = any[]>(props: T): ExtendedClassConstructor;
}
interface RGB {
    r: number;
    g: number;
    b: number;
}
interface HSV {
    h: number;
    s: number;
    v: number;
}
declare type ColorConstructor = new (value?: string | RGB | HSV) => Color;
interface Color {
    toRgb: () => RGB;
    toHsv: () => HSV;
    toHex: () => string;
    parse: (value: string | RGB | HSV) => Color;
}
interface DebounceFunc void> {
    (...args: Parameters): void;
    stop: () => void;
}
interface Delay {
    requestAnimationFrame: (callback: () => void, element?: HTMLElement) => void;
    setEditorInterval: (editor: Editor, callback: () => void, time?: number) => number;
    setEditorTimeout: (editor: Editor, callback: () => void, time?: number) => number;
    setInterval: (callback: () => void, time?: number) => number;
    setTimeout: (callback: () => void, time?: number) => number;
    clearInterval: (id?: number) => void;
    clearTimeout: (id?: number) => void;
    debounce:  any>(callback: T, time?: number) => DebounceFunc;
    throttle:  any>(callback: T, time?: number) => DebounceFunc;
}
declare type UploadResult = UploadResult$2;
interface ImageUploader {
    upload: (blobInfos: BlobInfo[], showNotification?: boolean) => Promise;
}
interface JSONUtils {
    serialize: (obj: any) => string;
    parse: (text: string) => any;
}
interface JSONPSettings {
    count?: number;
    url: string;
    callback: (json: string) => void;
}
interface JSONP {
    callbacks: {};
    count: number;
    send(this: JSONP, settings: JSONPSettings): void;
}
interface JSONRequestSettings {
    crossDomain?: boolean;
    requestheaders?: Record;
    type?: string;
    url?: string;
    error_scope?: any;
    success_scope?: any;
    success?: (data: any) => void;
    error?: (error: any, xhr: XMLHttpRequest) => void;
}
interface JSONRequestArgs extends JSONRequestSettings {
    id?: string;
    method?: string;
    params?: string;
}
interface JSONRequestConstructor {
    readonly prototype: JSONRequest;
    new (settings?: JSONRequestSettings): JSONRequest;
    sendRPC: (o: JSONRequestArgs) => void;
}
declare class JSONRequest {
    static sendRPC(o: JSONRequestArgs): void;
    settings: JSONRequestSettings;
    count: number;
    constructor(settings?: JSONRequestSettings);
    send(args: JSONRequestArgs): void;
}
interface KeyboardLikeEvent {
    shiftKey: boolean;
    ctrlKey: boolean;
    altKey: boolean;
    metaKey: boolean;
}
interface VK {
    BACKSPACE: number;
    DELETE: number;
    DOWN: number;
    ENTER: number;
    ESC: number;
    LEFT: number;
    RIGHT: number;
    SPACEBAR: number;
    TAB: number;
    UP: number;
    PAGE_UP: number;
    PAGE_DOWN: number;
    END: number;
    HOME: number;
    modifierPressed: (e: KeyboardLikeEvent) => boolean;
    metaKeyPressed: (e: KeyboardLikeEvent) => boolean;
}
interface XHRSettings {
    async?: boolean;
    content_type?: string;
    crossDomain?: boolean;
    data?: Document | BodyInit;
    requestheaders?: Record;
    scope?: any;
    type?: string;
    url: string;
    error_scope?: any;
    success_scope?: any;
    error?: (message: 'TIMED_OUT' | 'GENERAL', xhr: XMLHttpRequest, settings: XHRSettings) => void;
    success?: (text: string, xhr: XMLHttpRequest, settings: XHRSettings) => void;
}
interface XHREventMap {
    beforeInitialize: {
        settings: XHRSettings;
    };
    beforeSend: {
        xhr: XMLHttpRequest;
        settings: XHRSettings;
    };
}
interface XHR extends Observable {
    send(this: XHR, settings: XHRSettings): void;
}
interface DOMUtilsNamespace {
    new (doc: Document, settings: Partial): DOMUtils;
    DOM: DOMUtils;
    nodeIndex: (node: Node, normalized?: boolean) => number;
}
interface RangeUtilsNamespace {
    new (dom: DOMUtils): RangeUtils;
    compareRanges: (rng1: RangeLikeObject, rng2: RangeLikeObject) => boolean;
    getCaretRangeFromPoint: (clientX: number, clientY: number, doc: Document) => Range;
    getSelectedNode: (range: Range) => Node;
    getNode: (container: Node, offset: number) => Node;
}
interface AddOnManagerNamespace {
    new (): AddOnManager;
    language: string | undefined;
    languageLoad: boolean;
    baseURL: string;
    PluginManager: PluginManager;
    ThemeManager: ThemeManager;
}
interface BookmarkManagerNamespace {
    (selection: EditorSelection): BookmarkManager;
    isBookmarkNode: (node: Node) => boolean;
}
interface SaxParserNamespace {
    new (settings?: SaxParserSettings, schema?: Schema): SaxParser;
    findEndTag: (schema: Schema, html: string, startIndex: number) => number;
}
interface TinyMCE extends EditorManager {
    geom: {
        Rect: Rect;
    };
    util: {
        Promise: PromiseConstructor;
        Delay: Delay;
        Tools: Tools;
        VK: VK;
        URI: URIConstructor;
        Class: Class;
        EventDispatcher: EventDispatcherConstructor;
        Observable: Observable;
        I18n: I18n;
        XHR: XHR;
        JSON: JSONUtils;
        JSONRequest: JSONRequestConstructor;
        JSONP: JSONP;
        LocalStorage: Storage;
        Color: ColorConstructor;
        ImageUploader: ImageUploader;
    };
    dom: {
        EventUtils: EventUtilsConstructor;
        Sizzle: any;
        DomQuery: DomQueryConstructor;
        TreeWalker: DomTreeWalkerConstructor;
        TextSeeker: new (dom: DOMUtils, isBlockBoundary?: (node: Node) => boolean) => TextSeeker;
        DOMUtils: DOMUtilsNamespace;
        ScriptLoader: ScriptLoaderConstructor;
        RangeUtils: RangeUtilsNamespace;
        Serializer: new (settings: DomSerializerSettings, editor?: Editor) => DomSerializer;
        ControlSelection: (selection: EditorSelection, editor: Editor) => ControlSelection;
        BookmarkManager: BookmarkManagerNamespace;
        Selection: new (dom: DOMUtils, win: Window, serializer: DomSerializer, editor: Editor) => EditorSelection;
        StyleSheetLoader: new (documentOrShadowRoot: Document | ShadowRoot, settings: StyleSheetLoaderSettings) => StyleSheetLoader;
        Event: EventUtils;
    };
    html: {
        Styles: new (settings?: StylesSettings, schema?: Schema) => Styles;
        Entities: Entities;
        Node: AstNodeConstructor;
        Schema: new (settings?: SchemaSettings) => Schema;
        SaxParser: SaxParserNamespace;
        DomParser: new (settings?: DomParserSettings, schema?: Schema) => DomParser;
        Writer: new (settings?: WriterSettings) => Writer;
        Serializer: new (settings?: HtmlSerializerSettings, schema?: Schema) => HtmlSerializer;
    };
    AddOnManager: AddOnManagerNamespace;
    Annotator: new (editor: Editor) => Annotator;
    Editor: EditorConstructor;
    EditorCommands: EditorCommandsConstructor;
    EditorManager: EditorManager;
    EditorObservable: EditorObservable;
    Env: Env;
    FocusManager: FocusManager;
    Formatter: new (editor: Editor) => Formatter;
    NotificationManager: new (editor: Editor) => NotificationManager;
    Shortcuts: ShortcutsConstructor;
    UndoManager: new (editor: Editor) => UndoManager;
    WindowManager: new (editor: Editor) => WindowManager;
    DOM: DOMUtils;
    ScriptLoader: ScriptLoader;
    PluginManager: PluginManager;
    ThemeManager: ThemeManager;
    IconManager: IconManager;
    Resource: Resource;
    trim: Tools['trim'];
    isArray: Tools['isArray'];
    is: Tools['is'];
    toArray: Tools['toArray'];
    makeMap: Tools['makeMap'];
    each: Tools['each'];
    map: Tools['map'];
    grep: Tools['grep'];
    inArray: Tools['inArray'];
    extend: Tools['extend'];
    create: Tools['create'];
    walk: Tools['walk'];
    createNS: Tools['createNS'];
    resolve: Tools['resolve'];
    explode: Tools['explode'];
    _addCacheSuffix: Tools['_addCacheSuffix'];
    isOpera: boolean;
    isWebKit: boolean;
    isIE: false | number;
    isGecko: boolean;
    isMac: boolean;
}
declare const tinymce: TinyMCE;
export default tinymce;
export { AddOnManager, Annotator, AstNode, Bookmark, BookmarkManager, Class, Color, ControlSelection, DOMUtils, Delay, DomParser, DomParserSettings, DomQuery, DomSerializer, DomSerializerSettings, DomTreeWalker, Editor, EditorCommands, EditorEvent, EditorManager, EditorModeApi, EditorObservable, EditorSelection, EditorSettings, Entities, Env, EventDispatcher, EventUtils, EventTypes_d as Events, FocusManager, Format_d as Formats, Formatter, GeomRect, HtmlSerializer, HtmlSerializerSettings, I18n, IconManager, JSONUtils as JSON, JSONP, JSONRequest, JSONRequestArgs, JSONRequestSettings, NotificationApi, NotificationManager, NotificationSpec, Observable, Plugin, PluginManager, RangeUtils, RawEditorSettings, Rect, Resource, SaxParser, SaxParserSettings, Schema, SchemaSettings, ScriptLoader, Shortcuts, StyleSheetLoader, Styles, TextSeeker, Theme, ThemeManager, TinyMCE, Tools, URI, Ui_d as Ui, UndoManager, VK, WindowManager, Writer, WriterSettings, XHR, XHRSettings };


================================================
FILE: resources/css/app.scss
================================================
@use 'media-queries' as *;

@import '../../vendor/filament/forms/dist/module.esm.css';

@tailwind base;
@tailwind components;
@tailwind utilities;

.main-menu {
    @apply transition-all relative z-40;
    min-width: 250px;
    width: 250px;
    margin-left: 0;
    transition-duration: 500ms;

    @include lt-sm {
        @apply fixed;
    }

    &.closed {
        margin-left: -250px;
    }

    ul {
        min-height: 350px;
    }
}

#tickets,
#ticket-details-tabs {
    .menu {
        .item {
            @apply font-normal text-gray-500 pb-2 px-2 border-primary-700;
            min-width: 150px;

            &:hover {
                @apply border-b;
            }

            &.active {
                @apply border-b-2 font-bold;
            }
        }
    }
}

table {
    .min-w-table {
        min-width: 200px;
    }
}

.magnificpopup-container {
    img {
        &:hover {
            @apply cursor-pointer;
        }
    }
}

.mfp-title {
    @apply w-full;

    text-align: center !important;
}

.updating-section {
    button {
        @apply hidden;
    }

    &:hover {
        button {
            @apply flex;
        }
    }
}

#chat {
    height: 500px;

    #chat-container {
        img {
            max-width: 50%;
        }
    }
}

.modal-container {
    @apply w-full overflow-y-auto max-h-screen p-5;

    max-height: calc(100vh - 200px);
}


================================================
FILE: resources/css/media-queries.scss
================================================
// media aliases and breakpoints
$screen-sm-min: 600px;
$screen-md-min: 960px;
$screen-lg-min: 1280px;
$screen-xl-min: 1920px;

$screen-xs-max: 599px;
$screen-sm-max: 959px;
$screen-md-max: 1279px;
$screen-lg-max: 1919px;
$screen-xl-max: 5000px;

// media devices
@mixin xs {
    @media screen and (max-width: #{$screen-xs-max}) {
        @content;
    }
}

@mixin sm {
    @media screen and (min-width: #{$screen-sm-min}) and (max-width: #{$screen-sm-max}) {
        @content;
    }
}

@mixin md {
    @media screen and (min-width: #{$screen-md-min}) and (max-width: #{$screen-md-max}) {
        @content;
    }
}

@mixin lg {
    @media screen and (min-width: #{$screen-lg-min}) and (max-width: #{$screen-lg-max}) {
        @content;
    }
}

@mixin xl {
    @media screen and (min-width: #{$screen-xl-min}) and (max-width: #{$screen-xl-max}) {
        @content;
    }
}

// media lt queries
@mixin lt-sm {
    @media screen and (max-width: #{$screen-xs-max}) {
        @content;
    }
}

@mixin lt-md {
    @media screen and (max-width: #{$screen-sm-max}) {
        @content;
    }
}

@mixin lt-lg {
    @media screen and (max-width: #{$screen-md-max}) {
        @content;
    }
}

@mixin lt-xl {
    @media screen and (max-width: #{$screen-lg-max}) {
        @content;
    }
}

// media gt queries
@mixin gt-xs {
    @media screen and (min-width: #{$screen-sm-min}) {
        @content;
    }
}

@mixin gt-sm {
    @media screen and (min-width: #{$screen-md-min}) {
        @content;
    }
}

@mixin gt-md {
    @media screen and (min-width: #{$screen-lg-min}) {
        @content;
    }
}

@mixin gt-lg {
    @media screen and (min-width: #{$screen-xl-min}) {
        @content;
    }
}


================================================
FILE: resources/js/app.js
================================================
import './bootstrap';

import jQuery from '$';
import 'flowbite';

import tippy from 'tippy.js';
import 'tippy.js/dist/tippy.css';

import '@fortawesome/fontawesome-free/scss/fontawesome.scss';
import '@fortawesome/fontawesome-free/scss/brands.scss';
import '@fortawesome/fontawesome-free/scss/regular.scss';
import '@fortawesome/fontawesome-free/scss/solid.scss';
import '@fortawesome/fontawesome-free/scss/v4-shims.scss';

import 'magnific-popup/dist/magnific-popup.css';
import 'magnific-popup/dist/jquery.magnific-popup.min';

import Alpine from 'alpinejs'
import FormsAlpinePlugin from './../../vendor/filament/forms/dist/module.esm'
import NotificationsAlpinePlugin from './../../vendor/filament/notifications/dist/module.esm'

window.$ = jQuery;

Alpine.plugin(FormsAlpinePlugin)
Alpine.plugin(NotificationsAlpinePlugin)

window.Alpine = Alpine

Alpine.start()

// Open image as magnific popup (Ticket comments)
window.initMagnificPopupOnTicketComments = function () {
    if ($('.magnificpopup-container').length) {
        $('.magnificpopup-container').magnificPopup({
            type: 'image',
            delegate: 'img',
            gallery: {
                enabled: true
            },
            callbacks: {
                elementParse: function (qw) {
                    qw.src = qw.el.attr('src');
                }
            },
            image: {
                titleSrc: function (item) {
                    let title = '';
                    if (item.el.closest('figure').children('figcaption'))
                        title = item.el.closest('figure').children('figcaption').text();
                    return title;
                }
            }
        });
    }
};

(() => window.initMagnificPopupOnTicketComments())();

// Copy text to clipboard
window.unsecuredCopyToClipboard = function (text) {
    const textArea = document.createElement("textarea");
    textArea.value = text;
    document.body.appendChild(textArea);
    textArea.focus();
    textArea.select();
    try {
        document.execCommand('copy');
    } catch (err) {
        console.error('Unable to copy to clipboard', err);
    }
    document.body.removeChild(textArea);
}

// Tippy helper
window.makeTippy = function (selector, title) {
    tippy(selector, {
        content: title,
    });
}


================================================
FILE: resources/js/bootstrap.js
================================================
import _ from 'lodash';
window._ = _;

/**
 * We'll load the axios HTTP library which allows us to easily issue requests
 * to our Laravel back-end. This library automatically handles sending the
 * CSRF token as a header based on the value of the "XSRF" token cookie.
 */

import axios from 'axios';
window.axios = axios;

window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';

/**
 * Echo exposes an expressive API for subscribing to channels and listening
 * for events that are broadcast by Laravel. Echo and event broadcasting
 * allows your team to easily build robust real-time web applications.
 */


================================================
FILE: resources/views/administration/activity-logs.blade.php
================================================


    Administration - Activity logs

    @livewire('administration.activity-logs')




================================================
FILE: resources/views/administration/companies.blade.php
================================================


    Administration - Companies

    @livewire('administration.companies')




================================================
FILE: resources/views/administration/roles.blade.php
================================================


    Administration - Roles

    @livewire('administration.roles')




================================================
FILE: resources/views/administration/ticket-priorities.blade.php
================================================


    Administration - Tickets priorities

    @livewire('administration.ticket-priorities')




================================================
FILE: resources/views/administration/ticket-statuses.blade.php
================================================


    Administration - Tickets statuses

    @livewire('administration.ticket-statuses')




================================================
FILE: resources/views/administration/ticket-types.blade.php
================================================


    Administration - Tickets types

    @livewire('administration.ticket-types')




================================================
FILE: resources/views/administration/users.blade.php
================================================


    Administration - Users

    @livewire('administration.users')




================================================
FILE: resources/views/analytics.blade.php
================================================


    Analytics

    @livewire('analytics')




================================================
FILE: resources/views/auth/activate-account.blade.php
================================================


    Forgot password

    @livewire('auth.activate-account', ['user' => $user])




================================================
FILE: resources/views/auth/forgot-password.blade.php
================================================


    Forgot password

    @livewire('auth.forgot-password')




================================================
FILE: resources/views/auth/login.blade.php
================================================


    Authentication

    @livewire('auth.login')




================================================
FILE: resources/views/auth/recover-password.blade.php
================================================


    Recover password

    @livewire('auth.recover-password', ['token' => $token])




================================================
FILE: resources/views/components/base-layout.blade.php
================================================



    
    
    
    

    {{ config('app.name') }} {{ isset($title) ? (' - ' . $title) : '' }}

    @vite(['resources/css/app.scss', 'resources/js/app.js'])

    @livewireStyles
    @livewireScripts




{{$slot}}


@stack('scripts')

@livewire('notifications')




================================================
FILE: resources/views/components/guest-layout.blade.php
================================================


    @isset($title)
        {{$title}}
    @endisset

    
{{ config('app.name') }} {{$slot}}
================================================ FILE: resources/views/components/layout.blade.php ================================================ @isset($title) {{$title}} @endisset
{{$slot}}
================================================ FILE: resources/views/components/main-menu.blade.php ================================================
================================================ FILE: resources/views/components/notification-type.blade.php ================================================ @switch($notification->type) @case(\App\Notifications\CommentCreateNotification::class)
@lang(':user commented the ticket :ticket', [ 'user' => $notification->data['user']['name'], 'ticket' => $notification->data['ticket']['title'] ]) @lang('View ticket details')
@break @case(\App\Notifications\TicketCreatedNotification::class)
@lang(':user created the ticket :ticket', [ 'user' => $notification->data['user']['name'], 'ticket' => $notification->data['ticket']['title'] ]) @lang('View ticket details')
@break @case(\App\Notifications\TicketUpdatedNotification::class)
@lang(':user updated the ticket :ticket', [ 'user' => $notification->data['user']['name'], 'ticket' => $notification->data['ticket']['title'] ])
@lang('Field:') {{ $notification->data['field'] }}
|
@lang('Before:') {{ $notification->data['before'] }}
|
@lang('After:') {{ $notification->data['after'] }}
@lang('View ticket details')
@break @endswitch ================================================ FILE: resources/views/components/priority-span.blade.php ================================================ @if($priority) {{ $priority->title }} @endif ================================================ FILE: resources/views/components/role-span.blade.php ================================================ @if($role && config('system.roles.' . $role)) {{ __(config('system.roles.' . $role . '.title')) }} @endif ================================================ FILE: resources/views/components/status-span.blade.php ================================================ @if($status) {{ $status->title }} @endif ================================================ FILE: resources/views/components/type-span.blade.php ================================================ @if($type) {{ $type->title }} @endif ================================================ FILE: resources/views/components/user-avatar.blade.php ================================================ @if($user) {{ $user->name }} @endif ================================================ FILE: resources/views/kanban.blade.php ================================================ Kanban Board
@lang('Kanban Board') @lang('Below is the Kanban Board for tickets configured on :app', [ 'app' => config('app.name') ])
@livewire('kanban')
@push('scripts') @endpush
================================================ FILE: resources/views/livewire/administration/activity-logs.blade.php ================================================
@lang('Activity logs') @lang('Below is the list of activity logs of :app', [ 'app' => config('app.name') ])
{{ $this->form }}
@if($logs->count()) @foreach($logs as $log) @endforeach @else @endif
@lang('Description') @lang('Created at')
{!! $log->description !!}
{{ $log->created_at->diffForHumans() }} {{ $log->created_at->format(__('Y-m-d g:i A')) }}
@lang('No ticket priorities to show!')
{{ $logs->links('pagination::tailwind') }}
================================================ FILE: resources/views/livewire/administration/companies-dialog.blade.php ================================================
@if($company->id && auth()->user()->can('Delete companies')) @endif
================================================ FILE: resources/views/livewire/administration/companies.blade.php ================================================
@lang('Companies') @lang('Below is the list of configured companies in :app', [ 'app' => config('app.name') ])
@can('Create companies') @endcan
{{ $this->table }}
@push('scripts') @endpush
================================================ FILE: resources/views/livewire/administration/roles-dialog.blade.php ================================================
@if($role->id && auth()->user()->can('Delete user roles')) @endif
================================================ FILE: resources/views/livewire/administration/roles.blade.php ================================================
@lang('Roles') @lang('Below is the list of configured user roles giving access to user of :app', [ 'app' => config('app.name') ])
@can('Create user roles') @endcan
{{ $this->table }}
@push('scripts') @endpush
================================================ FILE: resources/views/livewire/administration/ticket-priorities-dialog.blade.php ================================================
@if($priority->id) @endif
================================================ FILE: resources/views/livewire/administration/ticket-priorities.blade.php ================================================
@lang('Ticket priorities') @lang('Below is the list of configured tickets priorities in :app', [ 'app' => config('app.name') ])
{{ $this->table }}
@push('scripts') @endpush
================================================ FILE: resources/views/livewire/administration/ticket-statuses-dialog.blade.php ================================================
@if($status->id) @endif
================================================ FILE: resources/views/livewire/administration/ticket-statuses.blade.php ================================================
@lang('Ticket statuses') @lang('Below is the list of configured tickets statuses in :app', [ 'app' => config('app.name') ])
{{ $this->table }}
@push('scripts') @endpush
================================================ FILE: resources/views/livewire/administration/ticket-types-dialog.blade.php ================================================
@if($type->id) @endif
================================================ FILE: resources/views/livewire/administration/ticket-types.blade.php ================================================
@lang('Ticket types') @lang('Below is the list of configured tickets types in :app', [ 'app' => config('app.name') ])
{{ $this->table }}
@push('scripts') @endpush
================================================ FILE: resources/views/livewire/administration/users-dialog.blade.php ================================================
@if($user->id && auth()->user()->can('Delete users')) @endif
================================================ FILE: resources/views/livewire/administration/users.blade.php ================================================
@lang('Users') @lang('Below is the list of configured users having access to :app', [ 'app' => config('app.name') ])
@can('Create users') @endcan
{{ $this->table }}
@push('scripts') @endpush
================================================ FILE: resources/views/livewire/analytics.blade.php ================================================
@lang('Analytics') @lang('Below is the dashboard containing all analytics related to projects and tickets configured in :app', [ 'app' => config('app.name') ])
@lang('My assigned tickets')
@if($assignedTickets->count()) @foreach($assignedTickets as $ticket) @endforeach @else @endif
@lang('Type') @lang('Priority') @lang('Title') @lang('Status')
{{ $ticket->title }}
@lang('No assigned tickets yet!')
@lang('Tickets by statuses')
@if(sizeof($ticketsByStatuses)) @foreach($ticketsByStatuses as $status => $count) @endforeach @else @endif
@lang('Status') @lang('Tickets')
{{ $status }} {{ $count }}
@lang('No tickets configured!')
@lang('Tickets assignments')
@if(sizeof($ticketsAssignments)) @foreach($ticketsAssignments as $responbile => $count) @endforeach @else @endif
@lang('Responsible') @lang('Assigned tickets')
{{ $responbile }} {{ $count }}
@lang('No tickets assigned!')
@lang('Not assigned tickets')
@if($notAssignedTickets->count()) @foreach($notAssignedTickets as $ticket) @endforeach @else @endif
@lang('Type') @lang('Priority') @lang('Title') @lang('Status')
{{ $ticket->title }}
@lang('All tickets are assigned!')
@push('scripts') @endpush ================================================ FILE: resources/views/livewire/auth/activate-account.blade.php ================================================
@lang('Activate account') @lang('Choose a password and confirm it then click the activate button to access your account')
{{ $this->form }}
@lang('Have you already activated your user account?')
@lang('Go to sign in page')
================================================ FILE: resources/views/livewire/auth/forgot-password.blade.php ================================================
@lang('Forgot password?') @lang('No worries! Just type your email and click submit button and you will receive a recovery link by email')
{{ $this->form }}
================================================ FILE: resources/views/livewire/auth/login.blade.php ================================================
@lang('Hello again !') @lang('Welcome again, fill the form below and click the sign in button to login into your account')
{{ $this->form }}
@lang('Did you forget your password?')
@lang('No worries') @lang('Click here to recover it')
================================================ FILE: resources/views/livewire/auth/recover-password.blade.php ================================================
@lang('Recover password') @lang('Choose a new password to your account and click submit button to confirm')
{{ $this->form }}
================================================ FILE: resources/views/livewire/chat.blade.php ================================================
@lang('Chat section') @lang('Use the section below to chat with the speakers of this ticket')
@if($messages->count())
@foreach($messages as $message)
{{ $message->user->name }}
{!! $message->message !!}
{{ $message->created_at->diffForHumans() }}
@endforeach
@else
No comments @lang('No messages yet!')
@endif
{{ $this->form }}
================================================ FILE: resources/views/livewire/my-notifications.blade.php ================================================
@lang('Notifications') @lang('Below is the list of notifications you have received on :app', [ 'app' => config('app.name') ])
@if(auth()->user()->unreadNotifications()->count())
@endif
@if($notifications->count()) @foreach($notifications as $notification) @endforeach @else @endif
@lang('Type') @lang('Received at')
@if(!$notification->read_at) @endif
{{ $notification->created_at->diffForHumans() }} {{ $notification->created_at->format(__('Y-m-d g:i A')) }}
@if(!$notification->read_at) @endif
@lang('No notifications received yet!')
{{ $notifications->links('pagination::tailwind') }}
================================================ FILE: resources/views/livewire/my-profile.blade.php ================================================
@lang('My profile') @lang('Update your :app user account by using the below form.', [ 'app' => config('app.name') ])
{{ $user->name }} {{ $user->email }} @lang('Account created:') {{ $user->created_at->diffForHumans() }} @lang('Last update:') {{ $user->updated_at->diffForHumans() }}
{{ $this->form }}
================================================ FILE: resources/views/livewire/projects-dialog.blade.php ================================================
{{ $this->form }}
@if( $project->id && ( auth()->user()->can('Delete all projects') || ( auth()->user()->can('Delete own projects') && $project->owner_id === auth()->user()->id ) ) ) @endif
================================================ FILE: resources/views/livewire/projects.blade.php ================================================
@lang('Projects') @lang('Below is the list of configured projects in :app', [ 'app' => config('app.name') ])
@can('Create projects') @endCan
@if(auth()->user()->favoriteProjects()->count())
@lang('Favorite projects')
@foreach(auth()->user()->favoriteProjects as $project)
{{ $project->name }} {{ Str::limit(htmlspecialchars(strip_tags($project->description)), 100) }} {{ $project->tickets()->count() }} @lang($project->tickets()->count() > 1 ? 'Tickets' : 'Ticket') @lang('View tickets')
@endforeach
@endif
{{ $this->table }}
@push('scripts') @endpush
================================================ FILE: resources/views/livewire/ticket-details/content.blade.php ================================================
@if($updating)
{{ $this->form }}
@else
{!! $ticket->content !!}
@if( auth()->user()->can('Update all tickets') || ( auth()->user()->can('Update own tickets') && ( $ticket->owner_id === auth()->user() || $ticket->responsible_id === auth()->user()->id ) ) ) @endif
@endif
================================================ FILE: resources/views/livewire/ticket-details/priority.blade.php ================================================
@if($updating)
{{ $this->form }}
@else
@if( auth()->user()->can('Update all tickets') || ( auth()->user()->can('Update own tickets') && ( $ticket->owner_id === auth()->user() || $ticket->responsible_id === auth()->user()->id ) ) ) @endif
@endif
================================================ FILE: resources/views/livewire/ticket-details/responsible.blade.php ================================================
@if($updating)
{{ $this->form }}
@else
@if($ticket->responsible)
{{ $ticket->responsible->name }}
@else @lang('Not assigned yet!') @endif @if( ( auth()->user()->can('Update all tickets') || ( auth()->user()->can('Update own tickets') && ( $ticket->owner_id === auth()->user() || $ticket->responsible_id === auth()->user()->id ) ) ) && auth()->user()->can('assign-tickets') ) @endif
@endif
================================================ FILE: resources/views/livewire/ticket-details/status.blade.php ================================================
@if($updating)
{{ $this->form }}
@else
@if( ( auth()->user()->can('Update all tickets') || ( auth()->user()->can('Update own tickets') && ( $ticket->owner_id === auth()->user() || $ticket->responsible_id === auth()->user()->id) ) ) && auth()->user()->can('change-status-tickets') ) @endif
@endif
================================================ FILE: resources/views/livewire/ticket-details/title.blade.php ================================================
@if($updating)
{{ $this->form }}
@else
{{ $ticket->title }} @if( auth()->user()->can('Update all tickets') || ( auth()->user()->can('Update own tickets') && ( $ticket->owner_id === auth()->user() || $ticket->responsible_id === auth()->user()->id ) ) ) @endif
@endif
================================================ FILE: resources/views/livewire/ticket-details/type.blade.php ================================================
@if($updating)
{{ $this->form }}
@else
@if( auth()->user()->can('Update all tickets') || ( auth()->user()->can('Update own tickets') && ( $ticket->owner_id === auth()->user() || $ticket->responsible_id === auth()->user()->id ) ) ) @endif
@endif
================================================ FILE: resources/views/livewire/ticket-details-comments-content.blade.php ================================================
@foreach($ticket->comments as $comment)
{{ $comment->owner->name }} @lang('Added a comment') {{ $comment->created_at->diffForHumans() }}
@if($updating && $comment->id === $selectedComment->id)
{{ $this->form }}
@else
{!! $comment->content !!}
@endif @if( $comment->owner_id === auth()->user()->id && ( !$updating || $comment->id !== $selectedComment?->id ) )
|
@endif
@endforeach
================================================ FILE: resources/views/livewire/ticket-details-comments.blade.php ================================================
{{ $this->form }}
@if($ticket->comments->count()) @livewire('ticket-details-comments-content', ['ticket' => $ticket]) @else
No comments @lang('No comments yet!')
@endif
================================================ FILE: resources/views/livewire/ticket-details.blade.php ================================================
@lang('Go back to tickets list')
{{ $ticket->project->name }} /
@livewire('ticket-details.title', ['ticket' => $ticket])
@lang('Content') @livewire('ticket-details.content', ['ticket' => $ticket])
@switch($activeMenu) @case($activeMenu === 'Comments') @livewire('ticket-details-comments', ['ticket' => $ticket]) @break @case($activeMenu === 'Chat') @livewire('chat', ['ticket' => $ticket]) @break @endswitch
@lang('Type') @livewire('ticket-details.type', ['ticket' => $ticket])
@lang('Priority') @livewire('ticket-details.priority', ['ticket' => $ticket])
@lang('Status') @livewire('ticket-details.status', ['ticket' => $ticket])
@lang('Owner')
{{ $ticket->owner->name }}
@lang('Responsible')
@livewire('ticket-details.responsible', ['ticket' => $ticket])
@lang('Created:') {{ $ticket->created_at->diffForHumans() }}
@lang('Last update:') {{ $ticket->updated_at->diffForHumans() }}
@push('scripts') @endpush
================================================ FILE: resources/views/livewire/tickets-dialog.blade.php ================================================
{{ $this->form }}
================================================ FILE: resources/views/livewire/tickets.blade.php ================================================
@lang('Tickets')
@lang('Below is the list of created tickets in :app', [ 'app' => config('app.name') ])
@can('Create tickets') @endCan

@if($tickets->count())
@foreach($tickets as $ticket)
{{ $ticket->project->name }} /
{{ $ticket->title }} {{ $ticket->created_at->diffForHumans() }}
{{ Str::limit(htmlspecialchars(strip_tags($ticket->content)), 400) }}
{{ $ticket->comments_count }}
@lang('Owner') {{ $ticket->owner->name }}
@if($ticket->responsible)
@lang('Responsible') {{ $ticket->responsible->name }}
@endif
@endforeach
{{ $tickets->links('pagination::tailwind') }}
@else
No tickets @lang('No tickets to show!')
@endif
@push('scripts') @endpush
================================================ FILE: resources/views/my-profile.blade.php ================================================ My profile - {{ auth()->user()->name }} @livewire('my-profile') ================================================ FILE: resources/views/notifications.blade.php ================================================ Notifications @livewire('my-notifications') ================================================ FILE: resources/views/tables/columns/user-column.blade.php ================================================
{{ $getState()->name }}
{{ $getState()->email }}
================================================ FILE: resources/views/ticket-details.blade.php ================================================ Tickets - {{ $ticket->title }} @livewire('ticket-details', ['ticket' => $ticket]) ================================================ FILE: resources/views/tickets.blade.php ================================================ Tickets @livewire('tickets') ================================================ FILE: resources/views/vendor/filament-kanban-board/.gitkeep ================================================ ================================================ FILE: resources/views/vendor/filament-kanban-board/kanban-header.blade.php ================================================ {{-- Injected variables $status, $styles --}}
{{ $status['title'] }}
================================================ FILE: resources/views/vendor/pagination/tailwind.blade.php ================================================ @if ($paginator->hasPages()) @endif ================================================ FILE: resources/views/welcome.blade.php ================================================ Home page @livewire('projects') ================================================ FILE: routes/api.php ================================================ get('/user', function (Request $request) { return $request->user(); }); ================================================ FILE: routes/channels.php ================================================ id === (int) $id; }); ================================================ FILE: routes/console.php ================================================ comment(Inspiring::quote()); })->purpose('Display an inspiring quote'); ================================================ FILE: routes/web.php ================================================ group(function () { // Login Route::view('/auth/login', 'auth.login')->name('auth.login'); // Forgot password Route::view('/auth/forgot-password', 'auth.forgot-password')->name('password.request'); // Recover password Route::get( '/auth/recover-password/{token}', fn(string $token) => view('auth.recover-password', compact('token')) )->name('password.reset'); // Account activation Route::get( '/auth/activate-account/{user:register_token}', fn(User $user) => view('auth.activate-account', compact('user')) )->name('auth.activate-account'); }); Route::middleware(['auth', 'set_locale']) ->group(function () { // Logout Route::get('/auth/logout', LogoutController::class)->name('auth.logout'); // Home Route::view('/', 'welcome')->name('home'); // My profile Route::view('/my-profile', 'my-profile')->name('my-profile'); // Analytics Route::view('/analytics', 'analytics')->name('analytics'); // Tickets Route::view('/tickets', 'tickets')->name('tickets'); Route::get( '/tickets/{ticket:id}/{slug}', fn(Ticket $ticket) => view('ticket-details', compact('ticket')) )->name('tickets.details')->middleware('can_access_ticket'); Route::get('/tickets/{number}', TicketNumberController::class)->name('tickets.number'); // Administration Route::view('/administration/users', 'administration.users')->name('administration.users'); Route::view('/administration/companies', 'administration.companies')->name('administration.companies'); Route::view('/administration/ticket-statuses', 'administration.ticket-statuses') ->name('administration.ticket-statuses'); Route::view('/administration/ticket-priorities', 'administration.ticket-priorities') ->name('administration.ticket-priorities'); Route::view('/administration/ticket-types', 'administration.ticket-types') ->name('administration.ticket-types'); Route::view('/administration/activity-logs', 'administration.activity-logs') ->name('administration.activity-logs'); Route::view('/administration/roles', 'administration.roles')->name('administration.roles'); // Notifications Route::view('/notifications', 'notifications')->name('notifications'); // Kanban board Route::view('/kanban', 'kanban')->name('kanban'); }); ================================================ FILE: storage/app/.gitignore ================================================ * !public/ !.gitignore ================================================ FILE: storage/framework/.gitignore ================================================ compiled.php config.php down events.scanned.php maintenance.php routes.php routes.scanned.php schedule-* services.json ================================================ FILE: storage/framework/cache/.gitignore ================================================ * !data/ !.gitignore ================================================ FILE: storage/framework/sessions/.gitignore ================================================ * !.gitignore ================================================ FILE: storage/framework/testing/.gitignore ================================================ * !.gitignore ================================================ FILE: storage/framework/views/.gitignore ================================================ * !.gitignore ================================================ FILE: storage/logs/.gitignore ================================================ * !.gitignore ================================================ FILE: tailwind.config.js ================================================ /** @type {import('tailwindcss').Config} */ const colors = require('tailwindcss/colors') module.exports = { content: [ "./resources/**/*.blade.php", "./resources/**/*.js", "./resources/**/*.vue", "./node_modules/flowbite/**/*.js", "./vendor/filament/**/*.blade.php", "./config/system.php", "./app/Http/Livewire/**/*.php", "./app/View/**/*.php", "./app/Models/**/*.php", ], theme: { extend: { colors: { danger: colors.rose, primary: colors.blue, success: colors.green, warning: colors.yellow, }, }, }, plugins: [ require('@tailwindcss/forms'), require('@tailwindcss/typography'), require('flowbite/plugin'), ], } ================================================ FILE: tests/CreatesApplication.php ================================================ make(Kernel::class)->bootstrap(); return $app; } } ================================================ FILE: tests/Feature/ExampleTest.php ================================================ get('/'); $response->assertStatus(200); } } ================================================ FILE: tests/TestCase.php ================================================ assertTrue(true); } } ================================================ FILE: vite.config.js ================================================ import { defineConfig } from 'vite'; import laravel from 'laravel-vite-plugin'; export default defineConfig({ plugins: [ laravel({ input: ['resources/css/app.scss', 'resources/js/app.js'], refresh: true, }), ], resolve: { alias: { $: 'jquery' } } });