restore composer.json, add mysqli extension
This commit is contained in:
8
public/vendor/editor/.babelrc
vendored
Executable file
8
public/vendor/editor/.babelrc
vendored
Executable file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
presets: ['@babel/preset-env'],
|
||||
plugins: [
|
||||
['module-resolver', {
|
||||
'root': ['./src', './']
|
||||
}],
|
||||
],
|
||||
}
|
||||
12
public/vendor/editor/.editorconfig
vendored
Executable file
12
public/vendor/editor/.editorconfig
vendored
Executable file
@@ -0,0 +1,12 @@
|
||||
# EditorConfig is awesome: http://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
# Unix-style newlines with a newline ending every file
|
||||
[*]
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
charset = utf-8
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
27
public/vendor/editor/.eslintrc
vendored
Executable file
27
public/vendor/editor/.eslintrc
vendored
Executable file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"extends": "eslint:recommended",
|
||||
"plugins": [
|
||||
"chai-friendly"
|
||||
],
|
||||
"rules": {
|
||||
"indent": ["warn", 2, {"ArrayExpression": "off", "SwitchCase": 1}],
|
||||
"semi": [2, "always"],
|
||||
"space-before-function-paren": ["error", "never"],
|
||||
"no-useless-escape": 0,
|
||||
"no-unused-expressions": 0,
|
||||
"chai-friendly/no-unused-expressions": 2,
|
||||
"comma-dangle": ["error", "always-multiline"]
|
||||
},
|
||||
"env": {
|
||||
"amd": true,
|
||||
"browser": true,
|
||||
"es6": true,
|
||||
"jquery": true,
|
||||
"mocha": true,
|
||||
"node": true
|
||||
},
|
||||
"parser": "babel-eslint",
|
||||
"parserOptions": {
|
||||
"sourceType": "module",
|
||||
}
|
||||
}
|
||||
46
public/vendor/editor/.github/CODE_OF_CONDUCT.md
vendored
Executable file
46
public/vendor/editor/.github/CODE_OF_CONDUCT.md
vendored
Executable file
@@ -0,0 +1,46 @@
|
||||
# Summernote's Contributor Code of Conduct
|
||||
|
||||
## Our Pledge
|
||||
|
||||
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
||||
|
||||
## Our Standards
|
||||
|
||||
Examples of behavior that contributes to creating a positive environment include:
|
||||
|
||||
* Using welcoming and inclusive language
|
||||
* Being respectful of differing viewpoints and experiences
|
||||
* Gracefully accepting constructive criticism
|
||||
* Focusing on what is best for the community
|
||||
* Showing empathy towards other community members
|
||||
|
||||
Examples of unacceptable behavior by participants include:
|
||||
|
||||
* The use of sexualized language or imagery and unwelcome sexual attention or advances
|
||||
* Trolling, insulting/derogatory comments, and personal or political attacks
|
||||
* Public or private harassment
|
||||
* Publishing others' private information, such as a physical or electronic address, without explicit permission
|
||||
* Other conduct which could reasonably be considered inappropriate in a professional setting
|
||||
|
||||
## Our Responsibilities
|
||||
|
||||
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
|
||||
|
||||
Project maintainers 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, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
|
||||
|
||||
## Scope
|
||||
|
||||
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
|
||||
|
||||
## Enforcement
|
||||
|
||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at summernoteis@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
||||
|
||||
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
|
||||
|
||||
## Attribution
|
||||
|
||||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
|
||||
|
||||
[homepage]: http://contributor-covenant.org
|
||||
[version]: http://contributor-covenant.org/version/1/4/
|
||||
85
public/vendor/editor/.github/CONTRIBUTING.md
vendored
Executable file
85
public/vendor/editor/.github/CONTRIBUTING.md
vendored
Executable file
@@ -0,0 +1,85 @@
|
||||
## Contributing
|
||||
* Pull requests are welcome
|
||||
* Please `don't include dist/* files` on your commits.
|
||||
|
||||
## Coding convention
|
||||
* eslint: https://eslint.org
|
||||
* eslint rule: https://github.com/summernote/summernote/blob/master/.eslintrc
|
||||
|
||||
## Build summernote
|
||||
```bash
|
||||
npm install
|
||||
|
||||
# build full version of summernote: dist/summernote.js
|
||||
npm run build
|
||||
|
||||
```
|
||||
At this point, you should now have a `dist/` directory populated with everything you need to use summernote.
|
||||
|
||||
## Start local server for developing summernote.
|
||||
run local server with webpack-dev-server and watch.
|
||||
```bash
|
||||
npm run dev
|
||||
# Open a browser on http://localhost:3000.
|
||||
# If you change source code, automatically reload your page.
|
||||
```
|
||||
|
||||
## Test summernote
|
||||
run tests with Karma and PhantomJS
|
||||
```bash
|
||||
npm run test
|
||||
```
|
||||
If you want run tests on other browser,
|
||||
change the values for `browsers` properties in `karma.conf.js`.
|
||||
|
||||
```
|
||||
karma: {
|
||||
all: {
|
||||
browsers: ['PhantomJS'],
|
||||
reporters: ['progress']
|
||||
}
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
Or, pass `--browsers` argument via `npm run test` command.
|
||||
```
|
||||
$ npm run test -- --browsers Safari,Firefox
|
||||
```
|
||||
|
||||
You can use `Chrome`, `ChromeCanary`, `Firefox`, `Opera`, `Safari`, `PhantomJS` and `IE` beside `PhantomJS`.
|
||||
Once you run `npm test`, it will watch all javascript file. Therefore karma run tests every time you change code.
|
||||
|
||||
## Test a part of test
|
||||
|
||||
If you would like to run some part of your test codes, use the watch mode.
|
||||
|
||||
```bash
|
||||
$ npm run test:watch
|
||||
```
|
||||
|
||||
`karma` will run test and keep waiting other test requests. And then, run `test:grep` in another terminal. Below shows how to run `LinkDialog` related tests only.
|
||||
|
||||
```bash
|
||||
$ npm run test:grep LinkDialog
|
||||
```
|
||||
|
||||
## Prepush Hooks
|
||||
As part of this repo, we use the NPM package husky to implement git hooks. We leverage the prepush hook to prevent bad commits.
|
||||
|
||||
## Document structure
|
||||
|
||||
```
|
||||
- body container: <div class="note-editable">, <td>, <blockquote>, <ul>
|
||||
- block node: <div>, <p>, <li>, <h1>, <table>
|
||||
- void block node: <hr>
|
||||
- inline node: <span>, <b>, <font>, <a>, ...
|
||||
- void inline node: <img>
|
||||
- text node: #text
|
||||
```
|
||||
|
||||
1. A body container has block node, but `<ul>` has only `<li>` nodes.
|
||||
1. A body container also has inline nodes sometimes. This inline nodes will be wrapped with `<p>` when enter key pressed.
|
||||
1. A block node only has inline nodes.
|
||||
1. A inline nodes has another inline nodes
|
||||
1. `#text` and void inline node doesn't have children.
|
||||
8
public/vendor/editor/.github/FUNDING.yml
vendored
Executable file
8
public/vendor/editor/.github/FUNDING.yml
vendored
Executable file
@@ -0,0 +1,8 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||
patreon: # Replace with a single username
|
||||
open_collective: # Replace with a single Open Collective username
|
||||
ko_fi: # Replace with a single Ko-fi username
|
||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||
custom: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=S8F8AAD3YSD6Q&source=url
|
||||
29
public/vendor/editor/.github/ISSUE_TEMPLATE.md
vendored
Executable file
29
public/vendor/editor/.github/ISSUE_TEMPLATE.md
vendored
Executable file
@@ -0,0 +1,29 @@
|
||||
Before submitting an issue, please make sure to search for already open issues, and add to that. This way we can track issues more easily. Thank you, and Thanks for using Summernote.
|
||||
|
||||
Please answer the below questions, this will help us to more easily resolve whatever issues you are having, and direct issue to the suitable people to with your issue or to give you correct answers.
|
||||
|
||||
#### Description of your Issue or Request:
|
||||
Please provide a short description of the issue or request. If you don't provide one, we can't expedite helping to fix your issue or fullfill your request.
|
||||
|
||||
#### steps to reproduce (Add more if necessary):
|
||||
1.
|
||||
|
||||
2.
|
||||
|
||||
3.
|
||||
|
||||
|
||||
#### What is your Operating System, Browser and Version and Summernote Version you are using:
|
||||
This can help find and resolve any issues.
|
||||
1. Operating System:
|
||||
|
||||
2. Browser and Version:
|
||||
|
||||
3. Summernote Version (including which BS3, BS4, Lite or All):
|
||||
|
||||
|
||||
#### screenshot of issue
|
||||
Add screenshot which shows your issue(if needed).
|
||||
You can make [gif from Recordit](http://www.recordit.co/).
|
||||
|
||||
If you can make the issue using jsfiddle(https://jsfiddle.net/), We can save time to reproduce the problem.
|
||||
31
public/vendor/editor/.github/PULL_REQUEST_TEMPLATE.md
vendored
Executable file
31
public/vendor/editor/.github/PULL_REQUEST_TEMPLATE.md
vendored
Executable file
@@ -0,0 +1,31 @@
|
||||
Thank you for taking the time to help us improve Summernote.
|
||||
Please be sure that you are not submitting changes made to the files in the `dist/` folder, and only to the files contained in the `src/` folder.
|
||||
|
||||
#### What does this PR do?
|
||||
|
||||
- awesome stuff
|
||||
- really cool feature
|
||||
- refactor X
|
||||
|
||||
#### Where should the reviewer start?
|
||||
|
||||
- start on the src/summernote.js
|
||||
|
||||
#### How should this be manually tested?
|
||||
|
||||
- click here and here
|
||||
|
||||
#### Any background context you want to provide?
|
||||
|
||||
- the gem needed to be updated...
|
||||
|
||||
#### What are the relevant tickets?
|
||||
|
||||
|
||||
#### Screenshot (if for frontend)
|
||||
|
||||
|
||||
### Checklist
|
||||
- [ ] added relevant tests
|
||||
- [ ] didn't break anything
|
||||
- [ ] ...
|
||||
53
public/vendor/editor/.gitignore
vendored
Executable file
53
public/vendor/editor/.gitignore
vendored
Executable file
@@ -0,0 +1,53 @@
|
||||
# vim editing
|
||||
*.swp
|
||||
*.swo
|
||||
.tern-port
|
||||
.DS_Store
|
||||
|
||||
# vscode editing
|
||||
.vscode
|
||||
|
||||
# node modules
|
||||
npm-debug.log
|
||||
node_modules
|
||||
bower_components
|
||||
# node lock file
|
||||
package-lock.json
|
||||
|
||||
*.sublime*
|
||||
.build*
|
||||
|
||||
# zip file
|
||||
*.zip
|
||||
|
||||
# webfont temp
|
||||
src/icons/dist/*
|
||||
|
||||
.versions
|
||||
coverage/
|
||||
|
||||
.idea/
|
||||
*.iml
|
||||
|
||||
# NuGet
|
||||
build/
|
||||
|
||||
#log files
|
||||
*.log
|
||||
|
||||
# Ignoring dist folder content
|
||||
|
||||
# Ignoring visual studio
|
||||
.vs
|
||||
|
||||
# e2e tests
|
||||
selenium-server-standalone.jar
|
||||
test/reports/
|
||||
selenium-debug.log
|
||||
|
||||
# Ignoring rpt2_cache
|
||||
.rpt2_cache
|
||||
|
||||
# direnv
|
||||
.envrc
|
||||
.env
|
||||
11
public/vendor/editor/.npmignore
vendored
Executable file
11
public/vendor/editor/.npmignore
vendored
Executable file
@@ -0,0 +1,11 @@
|
||||
# dot files
|
||||
.agignore
|
||||
.jshintignore
|
||||
.jshintrc
|
||||
.travis.yml
|
||||
|
||||
Gruntfile.js
|
||||
MAINTAIN.md
|
||||
grunts/
|
||||
test/
|
||||
coverage/
|
||||
33
public/vendor/editor/.travis.yml
vendored
Executable file
33
public/vendor/editor/.travis.yml
vendored
Executable file
@@ -0,0 +1,33 @@
|
||||
dist: xenial
|
||||
os: linux
|
||||
language: node_js
|
||||
node_js: 10
|
||||
cache:
|
||||
directories:
|
||||
- node_modules
|
||||
before_install:
|
||||
- sudo add-apt-repository ppa:fontforge/fontforge -y
|
||||
- sudo apt-get update -q
|
||||
- sudo apt-get install fontforge ttfautohint -y
|
||||
before_script:
|
||||
- node --version
|
||||
- npm --version
|
||||
script:
|
||||
- npm run test:ci
|
||||
before_deploy:
|
||||
- npm install
|
||||
- npm run build
|
||||
- npm run dist
|
||||
deploy:
|
||||
provider: npm
|
||||
email: susukang98@gmail.com
|
||||
api_token:
|
||||
secure: TYJfuTLZKbYvTskuMlmuKnQb5F35GFPN2AqSf0RtZYWGLozIaIkKcpTVbjzo859FWuxPjci53FGiJih3+0iVfIC39CDTrFZutubn8qduOfRAVTL1WzeQvdww8miJNwUY59HmoOa78OtbNCVg/N7zFSZzRXAcgje8IADQFIISwk8=
|
||||
on:
|
||||
tags: true
|
||||
branch: develop
|
||||
addons:
|
||||
sauce_connect:
|
||||
username: 'summernoteis'
|
||||
after_success:
|
||||
- npm run coveralls
|
||||
21
public/vendor/editor/LICENSE
vendored
Executable file
21
public/vendor/editor/LICENSE
vendored
Executable file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015~ Summernote Team (https://github.com/orgs/summernote/people)
|
||||
|
||||
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.
|
||||
83
public/vendor/editor/MAINTAIN.md
vendored
Executable file
83
public/vendor/editor/MAINTAIN.md
vendored
Executable file
@@ -0,0 +1,83 @@
|
||||
## Debug with VSCode
|
||||
|
||||
You can debug unit tests with VSCode following the steps:
|
||||
(Based on [article](http://blog.mlewandowski.com/Debugging-Karma-tests-with-VSCode.html))
|
||||
|
||||
1. Install [VsCode](https://code.visualstudio.com/docs/setup/setup-overview)
|
||||
2. Install [debugger-for-chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) extension.
|
||||
3. Create launch.json file on ~/.vscode folder with follow config:
|
||||
```json
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "chrome",
|
||||
"request": "attach",
|
||||
"name": "Attach Karma Chrome",
|
||||
"address": "localhost",
|
||||
"port": 9333,
|
||||
"sourceMaps": true,
|
||||
"pathMapping": {
|
||||
"/": "${workspaceRoot}",
|
||||
"/base/": "${workspaceRoot}/"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
4. On terminal, run test with command:
|
||||
```
|
||||
npm run test:debug
|
||||
```
|
||||
4. Open vscode
|
||||
5. Set breakpoint on code
|
||||
6. Press F5 to run Debug and wait to stop on breakpoint
|
||||
|
||||
## Publish new version
|
||||
|
||||
### 1. `develop` to `master`
|
||||
|
||||
Send pull request `develop` to `master` on github repository and merge it.
|
||||
https://github.com/summernote/summernote/compare/master...develop
|
||||
|
||||
|
||||
### 2. Build dist files
|
||||
|
||||
Build dist files and push to master
|
||||
```bash
|
||||
# change branch
|
||||
git checkout master
|
||||
|
||||
# fetch all changes
|
||||
git pull
|
||||
|
||||
# Bump version in package.json
|
||||
|
||||
# build dist files and binary(.zip) for release post
|
||||
npm run build
|
||||
|
||||
# Commit and add tag for new version
|
||||
git commit -a -m "Update dist files"
|
||||
git tag -a "<new-version>"
|
||||
|
||||
# Push new dist files and tags to remote repository.
|
||||
git push origin --tags
|
||||
```
|
||||
|
||||
### 3. Release new version
|
||||
Post release note with new tag version on github
|
||||
|
||||
https://github.com/summernote/summernote/releases/new
|
||||
|
||||
### 4. Publish
|
||||
|
||||
Publish on npm
|
||||
```bash
|
||||
npm publish
|
||||
```
|
||||
|
||||
### 5. Update summernote.github.io
|
||||
Update summernote version in `_config.yml`.
|
||||
|
||||
### 6. Update connectors
|
||||
Request maintainers of each connector to update package information.
|
||||
87
public/vendor/editor/README.md
vendored
Executable file
87
public/vendor/editor/README.md
vendored
Executable file
@@ -0,0 +1,87 @@
|
||||
# Summernote
|
||||
|
||||
Super simple WYSIWYG Editor.
|
||||
|
||||
[](http://travis-ci.org/summernote/summernote)
|
||||
[](http://badge.fury.io/js/summernote)
|
||||
[](https://coveralls.io/github/summernote/summernote?branch=develop)
|
||||
|
||||
### Summernote
|
||||
Summernote is a JavaScript library that helps you create WYSIWYG editors online.
|
||||
|
||||
Home page: <https://summernote.org>
|
||||
|
||||
### Why Summernote?
|
||||
|
||||
Summernote has a few special features:
|
||||
|
||||
* Paste images from clipboard
|
||||
* Saves images directly in the content of the field using base64 encoding, so you don't need to implement image handling at all
|
||||
* Simple UI
|
||||
* Interactive WYSIWYG editing
|
||||
* Handy integration with server
|
||||
* Supports Bootstrap 3 and 4 integrities
|
||||
* Lots of [plugins and connectors](https://github.com/summernote/awesome-summernote) provided together
|
||||
|
||||
### Installation and dependencies
|
||||
|
||||
Summernote is built on [jQuery](http://jquery.com/).
|
||||
|
||||
#### 1. Include JS/CSS
|
||||
|
||||
Include the following code in the `<head>` tag of your HTML:
|
||||
|
||||
```html
|
||||
<!-- include libraries(jQuery, bootstrap) -->
|
||||
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
||||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/css/bootstrap.min.css" />
|
||||
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/js/bootstrap.min.js"></script>
|
||||
|
||||
<!-- include summernote css/js-->
|
||||
<link href="summernote.css" rel="stylesheet">
|
||||
<script src="summernote.js"></script>
|
||||
```
|
||||
|
||||
#### 2. Target a element
|
||||
|
||||
Then place a `div` tag somewhere in the `body` tag. This element will be replaced with the summernote editor.
|
||||
|
||||
```html
|
||||
<div id="summernote">Hello Summernote</div>
|
||||
```
|
||||
|
||||
#### 3. Summernote it!
|
||||
|
||||
Finally, run this script after the DOM is ready:
|
||||
|
||||
```javascript
|
||||
$(document).ready(function() {
|
||||
$('#summernote').summernote();
|
||||
});
|
||||
```
|
||||
|
||||
For more examples, please visit to [homepage](http://summernote.org/examples).
|
||||
|
||||
### API
|
||||
|
||||
`code` - get the HTML source code underlying the text in the editor:
|
||||
|
||||
```javascript
|
||||
var html = $('#summernote').summernote('code');
|
||||
```
|
||||
|
||||
For more detail about API, please refer to [document](http://summernote.org/getting-started/#basic-api).
|
||||
|
||||
#### Warning - code injection
|
||||
|
||||
The code view allows the user to enter script contents. Make sure to filter/[sanitize the HTML on the server](https://github.com/search?l=JavaScript&q=sanitize+html). Otherwise, an attacker can inject arbitrary JavaScript code into clients.
|
||||
|
||||
### For contributing
|
||||
https://github.com/summernote/summernote/blob/develop/.github/CONTRIBUTING.md
|
||||
|
||||
### Contacts
|
||||
* Facebook user group: https://www.facebook.com/groups/summernote
|
||||
* Summernote Slack: [Join the Summernote Slack community](https://communityinviter.com/apps/summernote/summernote)
|
||||
|
||||
### License
|
||||
Summernote may be freely distributed under the MIT license.
|
||||
49
public/vendor/editor/config/build-fonts.js
vendored
Executable file
49
public/vendor/editor/config/build-fonts.js
vendored
Executable file
@@ -0,0 +1,49 @@
|
||||
const webfont = require('webfont').default;
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
const webfontConfig = {
|
||||
files: 'src/icons/*.svg',
|
||||
dest: 'src/styles/font/',
|
||||
formats: ['ttf', 'eot', 'woff', 'woff2'],
|
||||
fontName: 'summernote',
|
||||
template: 'src/icons/templates/summernote-icons.css',
|
||||
destTemplate: 'src/styles/summernote-icons.css',
|
||||
templateFontName: 'summernote',
|
||||
templateClassName: 'note-icon',
|
||||
templateFontPath: './font/',
|
||||
fixedWidth: false,
|
||||
normalize: true,
|
||||
};
|
||||
|
||||
// eslint-disable-next-line
|
||||
console.log('Building fonts...');
|
||||
|
||||
webfont(webfontConfig).then(result => {
|
||||
Object.keys(result).map(type => {
|
||||
if (
|
||||
type === 'config' ||
|
||||
type === 'usedBuildInTemplate' ||
|
||||
type === 'glyphsData'
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
const content = result[type];
|
||||
let file = null;
|
||||
|
||||
if (type !== 'template') {
|
||||
file = path.resolve(path.join(webfontConfig['dest'], webfontConfig['fontName'] + '.' + type));
|
||||
} else {
|
||||
file = path.resolve(webfontConfig['destTemplate']);
|
||||
}
|
||||
// eslint-disable-next-line
|
||||
console.log('Writing ', file);
|
||||
|
||||
fs.writeFileSync(file, content);
|
||||
});
|
||||
}).catch(error => {
|
||||
// eslint-disable-next-line
|
||||
console.log(error);
|
||||
throw error;
|
||||
});
|
||||
132
public/vendor/editor/config/common/dev.common.config.js
vendored
Executable file
132
public/vendor/editor/config/common/dev.common.config.js
vendored
Executable file
@@ -0,0 +1,132 @@
|
||||
const HtmlWebPackPlugin = require('html-webpack-plugin');
|
||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
||||
const CopyPlugin = require('copy-webpack-plugin');
|
||||
const scssConfig = require('./scss.config');
|
||||
const path = require('path');
|
||||
const fs = require('fs');
|
||||
const pkg = require('../../package.json');
|
||||
|
||||
const productList = [
|
||||
'summernote',
|
||||
'summernote-bs4',
|
||||
'summernote-lite',
|
||||
];
|
||||
|
||||
let entries = {};
|
||||
fs.readdirSync(path.resolve(__dirname, '../../lang')).forEach(file => {
|
||||
const filename = file.replace('.js', '');
|
||||
entries[filename] = `./lang/${filename}`;
|
||||
});
|
||||
|
||||
module.exports = {
|
||||
entries,
|
||||
output: {
|
||||
path: path.join(__dirname, 'dist'),
|
||||
filename: (chunkData) => {
|
||||
var isProduct = productList.includes(chunkData.chunk.name);
|
||||
return isProduct ? '[name].js' : 'lang/[name].js';
|
||||
},
|
||||
},
|
||||
externals: {
|
||||
jquery: 'jQuery', // dev includes jQuery by <script> tag
|
||||
},
|
||||
devServer: {
|
||||
port: 3000,
|
||||
contentBase: ['./dist'],
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
enforce: 'pre',
|
||||
test: /\.js$/,
|
||||
exclude: /node_modules/,
|
||||
loader: 'eslint-loader',
|
||||
},
|
||||
{
|
||||
test: /\.js$/,
|
||||
exclude: /node_modules/,
|
||||
use: [
|
||||
{
|
||||
loader: 'string-replace-loader',
|
||||
options: {
|
||||
search: '@@VERSION@@',
|
||||
replace: pkg.version,
|
||||
},
|
||||
},
|
||||
{
|
||||
loader: 'babel-loader',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
test: /\.html$/,
|
||||
use: [
|
||||
{
|
||||
loader: 'html-loader',
|
||||
options: {
|
||||
minimize: false,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
scssConfig,
|
||||
{
|
||||
test: /\.(png|jpe?g|gif|svg)$/,
|
||||
use: [
|
||||
{
|
||||
loader: 'file-loader',
|
||||
options: {
|
||||
name: '[name].[ext]',
|
||||
outputPath: 'images',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
test: /\.(woff|woff2|ttf|otf|eot)$/,
|
||||
use: [
|
||||
{
|
||||
loader: 'file-loader',
|
||||
options: {
|
||||
name: '[name].[ext]',
|
||||
outputPath: 'font',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
plugins: [
|
||||
new MiniCssExtractPlugin({
|
||||
filename: '[name].css',
|
||||
}),
|
||||
new CopyPlugin([
|
||||
{
|
||||
from: 'examples',
|
||||
to: 'examples',
|
||||
},
|
||||
{
|
||||
from: 'plugin',
|
||||
to: 'plugin',
|
||||
},
|
||||
]),
|
||||
new HtmlWebPackPlugin({
|
||||
inject: true,
|
||||
chunks: ['summernote'],
|
||||
template: `./src/summernote-bs3.html`,
|
||||
filename: 'index.html',
|
||||
}),
|
||||
new HtmlWebPackPlugin({
|
||||
inject: true,
|
||||
chunks: ['summernote-bs4'],
|
||||
template: `./src/summernote-bs4.html`,
|
||||
filename: 'bs4.html',
|
||||
}),
|
||||
new HtmlWebPackPlugin({
|
||||
inject: true,
|
||||
chunks: ['summernote-lite'],
|
||||
template: `./src/summernote-lite.html`,
|
||||
filename: 'lite.html',
|
||||
}),
|
||||
],
|
||||
};
|
||||
14
public/vendor/editor/config/common/lang.config.js
vendored
Executable file
14
public/vendor/editor/config/common/lang.config.js
vendored
Executable file
@@ -0,0 +1,14 @@
|
||||
const testFolder = './lang/';
|
||||
const fs = require('fs');
|
||||
|
||||
const files = fs.readdirSync(testFolder);
|
||||
|
||||
let entries = {};
|
||||
|
||||
files.forEach(file => {
|
||||
const key = file.split('.')[0];
|
||||
|
||||
entries[key] = `./lang/${file}`;
|
||||
});
|
||||
|
||||
module.exports = entries;
|
||||
179
public/vendor/editor/config/common/production.common.config.js
vendored
Executable file
179
public/vendor/editor/config/common/production.common.config.js
vendored
Executable file
@@ -0,0 +1,179 @@
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
const webpack = require('webpack');
|
||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
||||
const CopyPlugin = require('copy-webpack-plugin');
|
||||
const scssConfig = require('./scss.config');
|
||||
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
||||
const ZipPlugin = require('zip-webpack-plugin');
|
||||
|
||||
const pkg = require('../../package.json');
|
||||
const TerserPlugin = require('terser-webpack-plugin');
|
||||
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
|
||||
|
||||
const date = (new Date()).toISOString().replace(/:\d+\.\d+Z$/, 'Z');
|
||||
const banner = `
|
||||
Super simple wysiwyg editor v${pkg.version}
|
||||
https://summernote.org
|
||||
|
||||
|
||||
Copyright 2013- Alan Hong. and other contributors
|
||||
summernote may be freely distributed under the MIT license.
|
||||
|
||||
Date: ${date}
|
||||
`;
|
||||
const minBanner = `Summernote v${pkg.version} | (c) 2013- Alan Hong and other contributors | MIT license`;
|
||||
|
||||
const productList = [
|
||||
'summernote',
|
||||
'summernote-bs4',
|
||||
'summernote-lite',
|
||||
'summernote.min',
|
||||
'summernote-bs4.min',
|
||||
'summernote-lite.min',
|
||||
];
|
||||
|
||||
let entries = {};
|
||||
fs.readdirSync(path.resolve(__dirname, '../../lang')).forEach(file => {
|
||||
const filename = file.replace('.js', '');
|
||||
const entryKey = `${filename}.min`;
|
||||
entries[entryKey] = `./lang/${filename}`;
|
||||
entries[filename] = `./lang/${filename}`;
|
||||
});
|
||||
|
||||
module.exports = {
|
||||
entries,
|
||||
output: {
|
||||
path: path.join(__dirname, '../../dist'),
|
||||
libraryTarget: 'umd',
|
||||
filename: (chunkData) => {
|
||||
var isProduct = productList.includes(chunkData.chunk.name);
|
||||
return isProduct ? '[name].js' : 'lang/[name].js';
|
||||
},
|
||||
},
|
||||
externals: {
|
||||
jquery: {
|
||||
root: 'jQuery',
|
||||
commonjs2: 'jquery',
|
||||
commonjs: 'jquery',
|
||||
amd: 'jquery',
|
||||
},
|
||||
},
|
||||
devtool: false,
|
||||
optimization: {
|
||||
minimizer: [
|
||||
new TerserPlugin({
|
||||
chunkFilter: (chunk) => {
|
||||
// xxx.min file is minified
|
||||
if (chunk.name.includes('min')) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
},
|
||||
parallel: 3,
|
||||
cache: true,
|
||||
sourceMap: true,
|
||||
terserOptions: {
|
||||
sourceMap: true,
|
||||
ecma: 8,
|
||||
compress: {
|
||||
warnings: false,
|
||||
},
|
||||
},
|
||||
}),
|
||||
new OptimizeCssAssetsPlugin({
|
||||
assetNameRegExp: /\min\.css$/g,
|
||||
sourceMap: true,
|
||||
cssProcessor: require('cssnano'),
|
||||
cssProcessorPluginOptions: {
|
||||
preset: ['default', {
|
||||
discardComments: {
|
||||
removeAll: true,
|
||||
},
|
||||
}],
|
||||
},
|
||||
canPrint: true,
|
||||
}),
|
||||
],
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.js$/,
|
||||
exclude: /node_modules/,
|
||||
use: [
|
||||
{
|
||||
loader: 'string-replace-loader',
|
||||
options: {
|
||||
search: '@@VERSION@@',
|
||||
replace: pkg.version,
|
||||
},
|
||||
}, {
|
||||
loader: 'babel-loader',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
test: /\.html$/,
|
||||
use: [
|
||||
{
|
||||
loader: 'html-loader',
|
||||
options: {
|
||||
minimize: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
scssConfig,
|
||||
{
|
||||
test: /\.(png|jpe?g|gif|svg)$/,
|
||||
use: [
|
||||
{
|
||||
loader: 'file-loader',
|
||||
options: {
|
||||
name: '[name].[ext]',
|
||||
outputPath: 'images',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
test: /\.(woff|woff2|ttf|otf|eot)$/,
|
||||
use: [
|
||||
{
|
||||
loader: 'file-loader',
|
||||
options: {
|
||||
name: '[name].[ext]',
|
||||
outputPath: 'font',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
plugins: [
|
||||
new CleanWebpackPlugin(),
|
||||
new webpack.BannerPlugin({
|
||||
banner: ({ basename }) => {
|
||||
return basename.includes('min') ? minBanner : banner;
|
||||
},
|
||||
}),
|
||||
new MiniCssExtractPlugin({
|
||||
filename: `[name].css`,
|
||||
}),
|
||||
new CopyPlugin([
|
||||
{
|
||||
from: 'plugin',
|
||||
to: 'plugin',
|
||||
},
|
||||
]),
|
||||
new webpack.SourceMapDevToolPlugin({
|
||||
test: /(summernote|summernote\-bs4|summernote\-lite)(\.min)?\.js$/g,
|
||||
filename: '[name].js.map',
|
||||
}),
|
||||
new ZipPlugin({
|
||||
filename: `summernote-${pkg.version}-dist.zip`,
|
||||
}),
|
||||
],
|
||||
};
|
||||
22
public/vendor/editor/config/common/scss.config.js
vendored
Executable file
22
public/vendor/editor/config/common/scss.config.js
vendored
Executable file
@@ -0,0 +1,22 @@
|
||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
||||
|
||||
module.exports = {
|
||||
test: /\.(sa|sc|c)ss$/,
|
||||
use: [
|
||||
{
|
||||
loader: MiniCssExtractPlugin.loader,
|
||||
},
|
||||
{
|
||||
loader: 'css-loader',
|
||||
},
|
||||
{
|
||||
loader: 'postcss-loader',
|
||||
},
|
||||
{
|
||||
loader: 'sass-loader',
|
||||
options: {
|
||||
implementation: require('sass'),
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
15
public/vendor/editor/config/webpack.config.dev.js
vendored
Executable file
15
public/vendor/editor/config/webpack.config.dev.js
vendored
Executable file
@@ -0,0 +1,15 @@
|
||||
const config = require('./common/dev.common.config');
|
||||
module.exports = {
|
||||
entry: {
|
||||
'summernote': './src/js/bs3/settings',
|
||||
'summernote-bs4': './src/js/bs4/settings',
|
||||
'summernote-lite': './src/js/lite/settings',
|
||||
...config.entries,
|
||||
},
|
||||
output: config.output,
|
||||
externals: config.externals,
|
||||
devServer: config.devServer,
|
||||
module: config.module,
|
||||
plugins: config.plugins,
|
||||
devtool: 'source-map',
|
||||
};
|
||||
18
public/vendor/editor/config/webpack.config.production.js
vendored
Executable file
18
public/vendor/editor/config/webpack.config.production.js
vendored
Executable file
@@ -0,0 +1,18 @@
|
||||
const config = require('./common/production.common.config');
|
||||
module.exports = {
|
||||
entry: {
|
||||
'summernote': './src/js/bs3/settings',
|
||||
'summernote-bs4': './src/js/bs4/settings',
|
||||
'summernote-lite': './src/js/lite/settings',
|
||||
'summernote.min': './src/js/bs3/settings',
|
||||
'summernote-bs4.min': './src/js/bs4/settings',
|
||||
'summernote-lite.min': './src/js/lite/settings',
|
||||
...config.entries,
|
||||
},
|
||||
optimization: config.optimization,
|
||||
output: config.output,
|
||||
externals: config.externals,
|
||||
devtool: config.devtool,
|
||||
module: config.module,
|
||||
plugins: config.plugins,
|
||||
};
|
||||
BIN
public/vendor/editor/dist/font/summernote.eot
vendored
Executable file
BIN
public/vendor/editor/dist/font/summernote.eot
vendored
Executable file
Binary file not shown.
BIN
public/vendor/editor/dist/font/summernote.ttf
vendored
Executable file
BIN
public/vendor/editor/dist/font/summernote.ttf
vendored
Executable file
Binary file not shown.
BIN
public/vendor/editor/dist/font/summernote.woff
vendored
Executable file
BIN
public/vendor/editor/dist/font/summernote.woff
vendored
Executable file
Binary file not shown.
BIN
public/vendor/editor/dist/font/summernote.woff2
vendored
Executable file
BIN
public/vendor/editor/dist/font/summernote.woff2
vendored
Executable file
Binary file not shown.
274
public/vendor/editor/dist/lang/summernote-ar-AR.js
vendored
Executable file
274
public/vendor/editor/dist/lang/summernote-ar-AR.js
vendored
Executable file
@@ -0,0 +1,274 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 7);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 7:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ar-AR': {
|
||||
font: {
|
||||
bold: 'عريض',
|
||||
italic: 'مائل',
|
||||
underline: 'تحته خط',
|
||||
clear: 'مسح التنسيق',
|
||||
height: 'إرتفاع السطر',
|
||||
name: 'الخط',
|
||||
strikethrough: 'فى وسطه خط',
|
||||
subscript: 'مخطوطة',
|
||||
superscript: 'حرف فوقي',
|
||||
size: 'الحجم'
|
||||
},
|
||||
image: {
|
||||
image: 'صورة',
|
||||
insert: 'إضافة صورة',
|
||||
resizeFull: 'الحجم بالكامل',
|
||||
resizeHalf: 'تصغير للنصف',
|
||||
resizeQuarter: 'تصغير للربع',
|
||||
floatLeft: 'تطيير لليسار',
|
||||
floatRight: 'تطيير لليمين',
|
||||
floatNone: 'ثابته',
|
||||
shapeRounded: 'الشكل: تقريب',
|
||||
shapeCircle: 'الشكل: دائرة',
|
||||
shapeThumbnail: 'الشكل: صورة مصغرة',
|
||||
shapeNone: 'الشكل: لا شيء',
|
||||
dragImageHere: 'إدرج الصورة هنا',
|
||||
dropImage: 'إسقاط صورة أو نص',
|
||||
selectFromFiles: 'حدد ملف',
|
||||
maximumFileSize: 'الحد الأقصى لحجم الملف',
|
||||
maximumFileSizeError: 'تم تجاوز الحد الأقصى لحجم الملف',
|
||||
url: 'رابط الصورة',
|
||||
remove: 'حذف الصورة',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'فيديو',
|
||||
videoLink: 'رابط الفيديو',
|
||||
insert: 'إدراج الفيديو',
|
||||
url: 'رابط الفيديو',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ou Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'رابط',
|
||||
insert: 'إدراج',
|
||||
unlink: 'حذف الرابط',
|
||||
edit: 'تعديل',
|
||||
textToDisplay: 'النص',
|
||||
url: 'مسار الرابط',
|
||||
openInNewWindow: 'فتح في نافذة جديدة'
|
||||
},
|
||||
table: {
|
||||
table: 'جدول',
|
||||
addRowAbove: 'إضافة سطر أعلاه',
|
||||
addRowBelow: 'إضافة سطر أدناه',
|
||||
addColLeft: 'إضافة عمود قبله',
|
||||
addColRight: 'إضافة عمود بعده',
|
||||
delRow: 'حذف سطر',
|
||||
delCol: 'حذف عمود',
|
||||
delTable: 'حذف الجدول'
|
||||
},
|
||||
hr: {
|
||||
insert: 'إدراج خط أفقي'
|
||||
},
|
||||
style: {
|
||||
style: 'تنسيق',
|
||||
p: 'عادي',
|
||||
blockquote: 'إقتباس',
|
||||
pre: 'شفيرة',
|
||||
h1: 'عنوان رئيسي 1',
|
||||
h2: 'عنوان رئيسي 2',
|
||||
h3: 'عنوان رئيسي 3',
|
||||
h4: 'عنوان رئيسي 4',
|
||||
h5: 'عنوان رئيسي 5',
|
||||
h6: 'عنوان رئيسي 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'قائمة مُنقطة',
|
||||
ordered: 'قائمة مُرقمة'
|
||||
},
|
||||
options: {
|
||||
help: 'مساعدة',
|
||||
fullscreen: 'حجم الشاشة بالكامل',
|
||||
codeview: 'شفيرة المصدر'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'فقرة',
|
||||
outdent: 'محاذاة للخارج',
|
||||
indent: 'محاذاة للداخل',
|
||||
left: 'محاذاة لليسار',
|
||||
center: 'توسيط',
|
||||
right: 'محاذاة لليمين',
|
||||
justify: 'ملئ السطر'
|
||||
},
|
||||
color: {
|
||||
recent: 'تم إستخدامه',
|
||||
more: 'المزيد',
|
||||
background: 'لون الخلفية',
|
||||
foreground: 'لون النص',
|
||||
transparent: 'شفاف',
|
||||
setTransparent: 'بدون خلفية',
|
||||
reset: 'إعادة الضبط',
|
||||
resetToDefault: 'إعادة الضبط',
|
||||
cpSelect: 'اختار'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'إختصارات',
|
||||
close: 'غلق',
|
||||
textFormatting: 'تنسيق النص',
|
||||
action: 'Action',
|
||||
paragraphFormatting: 'تنسيق الفقرة',
|
||||
documentStyle: 'تنسيق المستند',
|
||||
extraKeys: 'أزرار إضافية'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'إدراج فقرة',
|
||||
'undo': 'تراجع عن آخر أمر',
|
||||
'redo': 'إعادة تنفيذ آخر أمر',
|
||||
'tab': 'إزاحة (تاب)',
|
||||
'untab': 'سحب النص باتجاه البداية',
|
||||
'bold': 'تنسيق عريض',
|
||||
'italic': 'تنسيق مائل',
|
||||
'underline': 'تنسيق خط سفلي',
|
||||
'strikethrough': 'تنسيق خط متوسط للنص',
|
||||
'removeFormat': 'إزالة التنسيقات',
|
||||
'justifyLeft': 'محاذاة لليسار',
|
||||
'justifyCenter': 'محاذاة توسيط',
|
||||
'justifyRight': 'محاذاة لليمين',
|
||||
'justifyFull': 'محاذاة كاملة',
|
||||
'insertUnorderedList': 'قائمة منقّطة',
|
||||
'insertOrderedList': 'قائمة مرقّمة',
|
||||
'outdent': 'إزاحة للأمام على الفقرة الحالية',
|
||||
'indent': 'إزاحة للخلف على الفقرة الحالية',
|
||||
'formatPara': 'تغيير التنسيق للكتلة الحالية إلى فقرة',
|
||||
'formatH1': 'تغيير التنسيق للكتلة الحالية إلى ترويسة 1',
|
||||
'formatH2': 'تغيير التنسيق للكتلة الحالية إلى ترويسة 2',
|
||||
'formatH3': 'تغيير التنسيق للكتلة الحالية إلى ترويسة 3',
|
||||
'formatH4': 'تغيير التنسيق للكتلة الحالية إلى ترويسة 4',
|
||||
'formatH5': 'تغيير التنسيق للكتلة الحالية إلى ترويسة 5',
|
||||
'formatH6': 'تغيير التنسيق للكتلة الحالية إلى ترويسة 6',
|
||||
'insertHorizontalRule': 'إدراج خط أفقي',
|
||||
'linkDialog.show': 'إظهار خصائص الرابط'
|
||||
},
|
||||
history: {
|
||||
undo: 'تراجع',
|
||||
redo: 'إعادة'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'محارف خاصة',
|
||||
select: 'اختر المحرف الخاص'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-ar-AR.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-ar-AR.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
274
public/vendor/editor/dist/lang/summernote-bg-BG.js
vendored
Executable file
274
public/vendor/editor/dist/lang/summernote-bg-BG.js
vendored
Executable file
@@ -0,0 +1,274 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 9);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 9:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'bg-BG': {
|
||||
font: {
|
||||
bold: 'Удебелен',
|
||||
italic: 'Наклонен',
|
||||
underline: 'Подчертан',
|
||||
clear: 'Изчисти стиловете',
|
||||
height: 'Височина',
|
||||
name: 'Шрифт',
|
||||
strikethrough: 'Задраскано',
|
||||
subscript: 'Долен индекс',
|
||||
superscript: 'Горен индекс',
|
||||
size: 'Размер на шрифта'
|
||||
},
|
||||
image: {
|
||||
image: 'Изображение',
|
||||
insert: 'Постави картинка',
|
||||
resizeFull: 'Цял размер',
|
||||
resizeHalf: 'Размер на 50%',
|
||||
resizeQuarter: 'Размер на 25%',
|
||||
floatLeft: 'Подравни в ляво',
|
||||
floatRight: 'Подравни в дясно',
|
||||
floatNone: 'Без подравняване',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Пуснете изображението тук',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Изберете файл',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URL адрес на изображение',
|
||||
remove: 'Премахни изображение',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video Link',
|
||||
insert: 'Insert Video',
|
||||
url: 'Video URL?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Връзка',
|
||||
insert: 'Добави връзка',
|
||||
unlink: 'Премахни връзка',
|
||||
edit: 'Промени',
|
||||
textToDisplay: 'Текст за показване',
|
||||
url: 'URL адрес',
|
||||
openInNewWindow: 'Отвори в нов прозорец'
|
||||
},
|
||||
table: {
|
||||
table: 'Таблица',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Добави хоризонтална линия'
|
||||
},
|
||||
style: {
|
||||
style: 'Стил',
|
||||
p: 'Нормален',
|
||||
blockquote: 'Цитат',
|
||||
pre: 'Код',
|
||||
h1: 'Заглавие 1',
|
||||
h2: 'Заглавие 2',
|
||||
h3: 'Заглавие 3',
|
||||
h4: 'Заглавие 4',
|
||||
h5: 'Заглавие 5',
|
||||
h6: 'Заглавие 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Символен списък',
|
||||
ordered: 'Цифров списък'
|
||||
},
|
||||
options: {
|
||||
help: 'Помощ',
|
||||
fullscreen: 'На цял екран',
|
||||
codeview: 'Преглед на код'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Параграф',
|
||||
outdent: 'Намаляване на отстъпа',
|
||||
indent: 'Абзац',
|
||||
left: 'Подравняване в ляво',
|
||||
center: 'Център',
|
||||
right: 'Подравняване в дясно',
|
||||
justify: 'Разтягане по ширина'
|
||||
},
|
||||
color: {
|
||||
recent: 'Последния избран цвят',
|
||||
more: 'Още цветове',
|
||||
background: 'Цвят на фона',
|
||||
foreground: 'Цвят на шрифта',
|
||||
transparent: 'Прозрачен',
|
||||
setTransparent: 'Направете прозрачен',
|
||||
reset: 'Възстанови',
|
||||
resetToDefault: 'Възстанови оригиналните',
|
||||
cpSelect: 'Изберете'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Клавишни комбинации',
|
||||
close: 'Затвори',
|
||||
textFormatting: 'Форматиране на текста',
|
||||
action: 'Действие',
|
||||
paragraphFormatting: 'Форматиране на параграф',
|
||||
documentStyle: 'Стил на документа',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Назад',
|
||||
redo: 'Напред'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-bg-BG.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-bg-BG.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
273
public/vendor/editor/dist/lang/summernote-ca-ES.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-ca-ES.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 10);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 10:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ca-ES': {
|
||||
font: {
|
||||
bold: 'Negreta',
|
||||
italic: 'Cursiva',
|
||||
underline: 'Subratllat',
|
||||
clear: 'Treure estil de lletra',
|
||||
height: 'Alçada de línia',
|
||||
name: 'Font',
|
||||
strikethrough: 'Ratllat',
|
||||
subscript: 'Subíndex',
|
||||
superscript: 'Superíndex',
|
||||
size: 'Mida de lletra'
|
||||
},
|
||||
image: {
|
||||
image: 'Imatge',
|
||||
insert: 'Inserir imatge',
|
||||
resizeFull: 'Redimensionar a mida completa',
|
||||
resizeHalf: 'Redimensionar a la meitat',
|
||||
resizeQuarter: 'Redimensionar a un quart',
|
||||
floatLeft: 'Alinear a l\'esquerra',
|
||||
floatRight: 'Alinear a la dreta',
|
||||
floatNone: 'No alinear',
|
||||
shapeRounded: 'Forma: Arrodonit',
|
||||
shapeCircle: 'Forma: Cercle',
|
||||
shapeThumbnail: 'Forma: Marc',
|
||||
shapeNone: 'Forma: Cap',
|
||||
dragImageHere: 'Arrossegueu una imatge o text aquí',
|
||||
dropImage: 'Deixa anar aquí una imatge o un text',
|
||||
selectFromFiles: 'Seleccioneu des dels arxius',
|
||||
maximumFileSize: 'Mida màxima de l\'arxiu',
|
||||
maximumFileSizeError: 'La mida màxima de l\'arxiu s\'ha superat.',
|
||||
url: 'URL de la imatge',
|
||||
remove: 'Eliminar imatge',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Vídeo',
|
||||
videoLink: 'Enllaç del vídeo',
|
||||
insert: 'Inserir vídeo',
|
||||
url: 'URL del vídeo?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion o Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Enllaç',
|
||||
insert: 'Inserir enllaç',
|
||||
unlink: 'Treure enllaç',
|
||||
edit: 'Editar',
|
||||
textToDisplay: 'Text per mostrar',
|
||||
url: 'Cap a quina URL porta l\'enllaç?',
|
||||
openInNewWindow: 'Obrir en una finestra nova'
|
||||
},
|
||||
table: {
|
||||
table: 'Taula',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Inserir línia horitzontal'
|
||||
},
|
||||
style: {
|
||||
style: 'Estil',
|
||||
p: 'p',
|
||||
blockquote: 'Cita',
|
||||
pre: 'Codi',
|
||||
h1: 'Títol 1',
|
||||
h2: 'Títol 2',
|
||||
h3: 'Títol 3',
|
||||
h4: 'Títol 4',
|
||||
h5: 'Títol 5',
|
||||
h6: 'Títol 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Llista desendreçada',
|
||||
ordered: 'Llista endreçada'
|
||||
},
|
||||
options: {
|
||||
help: 'Ajut',
|
||||
fullscreen: 'Pantalla sencera',
|
||||
codeview: 'Veure codi font'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paràgraf',
|
||||
outdent: 'Menys tabulació',
|
||||
indent: 'Més tabulació',
|
||||
left: 'Alinear a l\'esquerra',
|
||||
center: 'Alinear al mig',
|
||||
right: 'Alinear a la dreta',
|
||||
justify: 'Justificar'
|
||||
},
|
||||
color: {
|
||||
recent: 'Últim color',
|
||||
more: 'Més colors',
|
||||
background: 'Color de fons',
|
||||
foreground: 'Color de lletra',
|
||||
transparent: 'Transparent',
|
||||
setTransparent: 'Establir transparent',
|
||||
reset: 'Restablir',
|
||||
resetToDefault: 'Restablir per defecte'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Dreceres de teclat',
|
||||
close: 'Tancar',
|
||||
textFormatting: 'Format de text',
|
||||
action: 'Acció',
|
||||
paragraphFormatting: 'Format de paràgraf',
|
||||
documentStyle: 'Estil del document',
|
||||
extraKeys: 'Tecles adicionals'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Inserir paràgraf',
|
||||
'undo': 'Desfer l\'última acció',
|
||||
'redo': 'Refer l\'última acció',
|
||||
'tab': 'Tabular',
|
||||
'untab': 'Eliminar tabulació',
|
||||
'bold': 'Establir estil negreta',
|
||||
'italic': 'Establir estil cursiva',
|
||||
'underline': 'Establir estil subratllat',
|
||||
'strikethrough': 'Establir estil ratllat',
|
||||
'removeFormat': 'Netejar estil',
|
||||
'justifyLeft': 'Alinear a l\'esquerra',
|
||||
'justifyCenter': 'Alinear al centre',
|
||||
'justifyRight': 'Alinear a la dreta',
|
||||
'justifyFull': 'Justificar',
|
||||
'insertUnorderedList': 'Inserir llista desendreçada',
|
||||
'insertOrderedList': 'Inserir llista endreçada',
|
||||
'outdent': 'Reduïr tabulació del paràgraf',
|
||||
'indent': 'Augmentar tabulació del paràgraf',
|
||||
'formatPara': 'Canviar l\'estil del bloc com a un paràgraf (etiqueta P)',
|
||||
'formatH1': 'Canviar l\'estil del bloc com a un H1',
|
||||
'formatH2': 'Canviar l\'estil del bloc com a un H2',
|
||||
'formatH3': 'Canviar l\'estil del bloc com a un H3',
|
||||
'formatH4': 'Canviar l\'estil del bloc com a un H4',
|
||||
'formatH5': 'Canviar l\'estil del bloc com a un H5',
|
||||
'formatH6': 'Canviar l\'estil del bloc com a un H6',
|
||||
'insertHorizontalRule': 'Inserir una línia horitzontal',
|
||||
'linkDialog.show': 'Mostrar panel d\'enllaços'
|
||||
},
|
||||
history: {
|
||||
undo: 'Desfer',
|
||||
redo: 'Refer'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'CARÀCTERS ESPECIALS',
|
||||
select: 'Selecciona caràcters especials'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-ca-ES.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-ca-ES.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-ca-ES.min.js.LICENSE.txt */
|
||||
!function(e,a){if("object"==typeof exports&&"object"==typeof module)module.exports=a();else if("function"==typeof define&&define.amd)define([],a);else{var r=a();for(var t in r)("object"==typeof exports?exports:e)[t]=r[t]}}(window,(function(){return function(e){var a={};function r(t){if(a[t])return a[t].exports;var l=a[t]={i:t,l:!1,exports:{}};return e[t].call(l.exports,l,l.exports,r),l.l=!0,l.exports}return r.m=e,r.c=a,r.d=function(e,a,t){r.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:t})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,a){if(1&a&&(e=r(e)),8&a)return e;if(4&a&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(r.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&a&&"string"!=typeof e)for(var l in e)r.d(t,l,function(a){return e[a]}.bind(null,l));return t},r.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(a,"a",a),a},r.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},r.p="",r(r.s=10)}({10:function(e,a){var r;(r=jQuery).extend(r.summernote.lang,{"ca-ES":{font:{bold:"Negreta",italic:"Cursiva",underline:"Subratllat",clear:"Treure estil de lletra",height:"Alçada de línia",name:"Font",strikethrough:"Ratllat",subscript:"Subíndex",superscript:"Superíndex",size:"Mida de lletra"},image:{image:"Imatge",insert:"Inserir imatge",resizeFull:"Redimensionar a mida completa",resizeHalf:"Redimensionar a la meitat",resizeQuarter:"Redimensionar a un quart",floatLeft:"Alinear a l'esquerra",floatRight:"Alinear a la dreta",floatNone:"No alinear",shapeRounded:"Forma: Arrodonit",shapeCircle:"Forma: Cercle",shapeThumbnail:"Forma: Marc",shapeNone:"Forma: Cap",dragImageHere:"Arrossegueu una imatge o text aquí",dropImage:"Deixa anar aquí una imatge o un text",selectFromFiles:"Seleccioneu des dels arxius",maximumFileSize:"Mida màxima de l'arxiu",maximumFileSizeError:"La mida màxima de l'arxiu s'ha superat.",url:"URL de la imatge",remove:"Eliminar imatge",original:"Original"},video:{video:"Vídeo",videoLink:"Enllaç del vídeo",insert:"Inserir vídeo",url:"URL del vídeo?",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion o Youku)"},link:{link:"Enllaç",insert:"Inserir enllaç",unlink:"Treure enllaç",edit:"Editar",textToDisplay:"Text per mostrar",url:"Cap a quina URL porta l'enllaç?",openInNewWindow:"Obrir en una finestra nova"},table:{table:"Taula",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Inserir línia horitzontal"},style:{style:"Estil",p:"p",blockquote:"Cita",pre:"Codi",h1:"Títol 1",h2:"Títol 2",h3:"Títol 3",h4:"Títol 4",h5:"Títol 5",h6:"Títol 6"},lists:{unordered:"Llista desendreçada",ordered:"Llista endreçada"},options:{help:"Ajut",fullscreen:"Pantalla sencera",codeview:"Veure codi font"},paragraph:{paragraph:"Paràgraf",outdent:"Menys tabulació",indent:"Més tabulació",left:"Alinear a l'esquerra",center:"Alinear al mig",right:"Alinear a la dreta",justify:"Justificar"},color:{recent:"Últim color",more:"Més colors",background:"Color de fons",foreground:"Color de lletra",transparent:"Transparent",setTransparent:"Establir transparent",reset:"Restablir",resetToDefault:"Restablir per defecte"},shortcut:{shortcuts:"Dreceres de teclat",close:"Tancar",textFormatting:"Format de text",action:"Acció",paragraphFormatting:"Format de paràgraf",documentStyle:"Estil del document",extraKeys:"Tecles adicionals"},help:{insertParagraph:"Inserir paràgraf",undo:"Desfer l'última acció",redo:"Refer l'última acció",tab:"Tabular",untab:"Eliminar tabulació",bold:"Establir estil negreta",italic:"Establir estil cursiva",underline:"Establir estil subratllat",strikethrough:"Establir estil ratllat",removeFormat:"Netejar estil",justifyLeft:"Alinear a l'esquerra",justifyCenter:"Alinear al centre",justifyRight:"Alinear a la dreta",justifyFull:"Justificar",insertUnorderedList:"Inserir llista desendreçada",insertOrderedList:"Inserir llista endreçada",outdent:"Reduïr tabulació del paràgraf",indent:"Augmentar tabulació del paràgraf",formatPara:"Canviar l'estil del bloc com a un paràgraf (etiqueta P)",formatH1:"Canviar l'estil del bloc com a un H1",formatH2:"Canviar l'estil del bloc com a un H2",formatH3:"Canviar l'estil del bloc com a un H3",formatH4:"Canviar l'estil del bloc com a un H4",formatH5:"Canviar l'estil del bloc com a un H5",formatH6:"Canviar l'estil del bloc com a un H6",insertHorizontalRule:"Inserir una línia horitzontal","linkDialog.show":"Mostrar panel d'enllaços"},history:{undo:"Desfer",redo:"Refer"},specialChar:{specialChar:"CARÀCTERS ESPECIALS",select:"Selecciona caràcters especials"}}})}})}));
|
||||
268
public/vendor/editor/dist/lang/summernote-cs-CZ.js
vendored
Executable file
268
public/vendor/editor/dist/lang/summernote-cs-CZ.js
vendored
Executable file
@@ -0,0 +1,268 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 11);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 11:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'cs-CZ': {
|
||||
font: {
|
||||
bold: 'Tučné',
|
||||
italic: 'Kurzíva',
|
||||
underline: 'Podtržené',
|
||||
clear: 'Odstranit styl písma',
|
||||
height: 'Výška řádku',
|
||||
strikethrough: 'Přeškrtnuté',
|
||||
size: 'Velikost písma'
|
||||
},
|
||||
image: {
|
||||
image: 'Obrázek',
|
||||
insert: 'Vložit obrázek',
|
||||
resizeFull: 'Původní velikost',
|
||||
resizeHalf: 'Poloviční velikost',
|
||||
resizeQuarter: 'Čtvrteční velikost',
|
||||
floatLeft: 'Umístit doleva',
|
||||
floatRight: 'Umístit doprava',
|
||||
floatNone: 'Neobtékat textem',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Přetáhnout sem obrázek',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Vybrat soubor',
|
||||
url: 'URL obrázku',
|
||||
remove: 'Remove Image',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Odkaz videa',
|
||||
insert: 'Vložit video',
|
||||
url: 'URL videa?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion nebo Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Odkaz',
|
||||
insert: 'Vytvořit odkaz',
|
||||
unlink: 'Zrušit odkaz',
|
||||
edit: 'Upravit',
|
||||
textToDisplay: 'Zobrazovaný text',
|
||||
url: 'Na jaké URL má tento odkaz vést?',
|
||||
openInNewWindow: 'Otevřít v novém okně'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabulka',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Vložit vodorovnou čáru'
|
||||
},
|
||||
style: {
|
||||
style: 'Styl',
|
||||
p: 'Normální',
|
||||
blockquote: 'Citace',
|
||||
pre: 'Kód',
|
||||
h1: 'Nadpis 1',
|
||||
h2: 'Nadpis 2',
|
||||
h3: 'Nadpis 3',
|
||||
h4: 'Nadpis 4',
|
||||
h5: 'Nadpis 5',
|
||||
h6: 'Nadpis 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Odrážkový seznam',
|
||||
ordered: 'Číselný seznam'
|
||||
},
|
||||
options: {
|
||||
help: 'Nápověda',
|
||||
fullscreen: 'Celá obrazovka',
|
||||
codeview: 'HTML kód'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Odstavec',
|
||||
outdent: 'Zvětšit odsazení',
|
||||
indent: 'Zmenšit odsazení',
|
||||
left: 'Zarovnat doleva',
|
||||
center: 'Zarovnat na střed',
|
||||
right: 'Zarovnat doprava',
|
||||
justify: 'Zarovnat oboustranně'
|
||||
},
|
||||
color: {
|
||||
recent: 'Aktuální barva',
|
||||
more: 'Další barvy',
|
||||
background: 'Barva pozadí',
|
||||
foreground: 'Barva písma',
|
||||
transparent: 'Průhlednost',
|
||||
setTransparent: 'Nastavit průhlednost',
|
||||
reset: 'Obnovit',
|
||||
resetToDefault: 'Obnovit výchozí',
|
||||
cpSelect: 'Vybrat'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Klávesové zkratky',
|
||||
close: 'Zavřít',
|
||||
textFormatting: 'Formátování textu',
|
||||
action: 'Akce',
|
||||
paragraphFormatting: 'Formátování odstavce',
|
||||
documentStyle: 'Styl dokumentu'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Krok vzad',
|
||||
redo: 'Krok vpřed'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-cs-CZ.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-cs-CZ.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-cs-CZ.min.js.LICENSE.txt */
|
||||
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var r=t();for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(window,(function(){return function(e){var t={};function r(o){if(t[o])return t[o].exports;var a=t[o]={i:o,l:!1,exports:{}};return e[o].call(a.exports,a,a.exports,r),a.l=!0,a.exports}return r.m=e,r.c=t,r.d=function(e,t,o){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(r.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)r.d(o,a,function(t){return e[t]}.bind(null,a));return o},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=11)}({11:function(e,t){var r;(r=jQuery).extend(r.summernote.lang,{"cs-CZ":{font:{bold:"Tučné",italic:"Kurzíva",underline:"Podtržené",clear:"Odstranit styl písma",height:"Výška řádku",strikethrough:"Přeškrtnuté",size:"Velikost písma"},image:{image:"Obrázek",insert:"Vložit obrázek",resizeFull:"Původní velikost",resizeHalf:"Poloviční velikost",resizeQuarter:"Čtvrteční velikost",floatLeft:"Umístit doleva",floatRight:"Umístit doprava",floatNone:"Neobtékat textem",shapeRounded:"Shape: Rounded",shapeCircle:"Shape: Circle",shapeThumbnail:"Shape: Thumbnail",shapeNone:"Shape: None",dragImageHere:"Přetáhnout sem obrázek",dropImage:"Drop image or Text",selectFromFiles:"Vybrat soubor",url:"URL obrázku",remove:"Remove Image",original:"Original"},video:{video:"Video",videoLink:"Odkaz videa",insert:"Vložit video",url:"URL videa?",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion nebo Youku)"},link:{link:"Odkaz",insert:"Vytvořit odkaz",unlink:"Zrušit odkaz",edit:"Upravit",textToDisplay:"Zobrazovaný text",url:"Na jaké URL má tento odkaz vést?",openInNewWindow:"Otevřít v novém okně"},table:{table:"Tabulka",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Vložit vodorovnou čáru"},style:{style:"Styl",p:"Normální",blockquote:"Citace",pre:"Kód",h1:"Nadpis 1",h2:"Nadpis 2",h3:"Nadpis 3",h4:"Nadpis 4",h5:"Nadpis 5",h6:"Nadpis 6"},lists:{unordered:"Odrážkový seznam",ordered:"Číselný seznam"},options:{help:"Nápověda",fullscreen:"Celá obrazovka",codeview:"HTML kód"},paragraph:{paragraph:"Odstavec",outdent:"Zvětšit odsazení",indent:"Zmenšit odsazení",left:"Zarovnat doleva",center:"Zarovnat na střed",right:"Zarovnat doprava",justify:"Zarovnat oboustranně"},color:{recent:"Aktuální barva",more:"Další barvy",background:"Barva pozadí",foreground:"Barva písma",transparent:"Průhlednost",setTransparent:"Nastavit průhlednost",reset:"Obnovit",resetToDefault:"Obnovit výchozí",cpSelect:"Vybrat"},shortcut:{shortcuts:"Klávesové zkratky",close:"Zavřít",textFormatting:"Formátování textu",action:"Akce",paragraphFormatting:"Formátování odstavce",documentStyle:"Styl dokumentu"},help:{insertParagraph:"Insert Paragraph",undo:"Undoes the last command",redo:"Redoes the last command",tab:"Tab",untab:"Untab",bold:"Set a bold style",italic:"Set a italic style",underline:"Set a underline style",strikethrough:"Set a strikethrough style",removeFormat:"Clean a style",justifyLeft:"Set left align",justifyCenter:"Set center align",justifyRight:"Set right align",justifyFull:"Set full align",insertUnorderedList:"Toggle unordered list",insertOrderedList:"Toggle ordered list",outdent:"Outdent on current paragraph",indent:"Indent on current paragraph",formatPara:"Change current block's format as a paragraph(P tag)",formatH1:"Change current block's format as H1",formatH2:"Change current block's format as H2",formatH3:"Change current block's format as H3",formatH4:"Change current block's format as H4",formatH5:"Change current block's format as H5",formatH6:"Change current block's format as H6",insertHorizontalRule:"Insert horizontal rule","linkDialog.show":"Show Link Dialog"},history:{undo:"Krok vzad",redo:"Krok vpřed"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-da-DK.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-da-DK.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 12);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 12:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'da-DK': {
|
||||
font: {
|
||||
bold: 'Fed',
|
||||
italic: 'Kursiv',
|
||||
underline: 'Understreget',
|
||||
clear: 'Fjern formatering',
|
||||
height: 'Højde',
|
||||
name: 'Skrifttype',
|
||||
strikethrough: 'Gennemstreget',
|
||||
subscript: 'Sænket skrift',
|
||||
superscript: 'Hævet skrift',
|
||||
size: 'Skriftstørrelse'
|
||||
},
|
||||
image: {
|
||||
image: 'Billede',
|
||||
insert: 'Indsæt billede',
|
||||
resizeFull: 'Original størrelse',
|
||||
resizeHalf: 'Halv størrelse',
|
||||
resizeQuarter: 'Kvart størrelse',
|
||||
floatLeft: 'Venstrestillet',
|
||||
floatRight: 'Højrestillet',
|
||||
floatNone: 'Fjern formatering',
|
||||
shapeRounded: 'Form: Runde kanter',
|
||||
shapeCircle: 'Form: Cirkel',
|
||||
shapeThumbnail: 'Form: Miniature',
|
||||
shapeNone: 'Form: Ingen',
|
||||
dragImageHere: 'Træk billede hertil',
|
||||
dropImage: 'Slip billede',
|
||||
selectFromFiles: 'Vælg billed-fil',
|
||||
maximumFileSize: 'Maks fil størrelse',
|
||||
maximumFileSizeError: 'Filen er større end maks tilladte fil størrelse!',
|
||||
url: 'Billede URL',
|
||||
remove: 'Fjern billede',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video Link',
|
||||
insert: 'Indsæt Video',
|
||||
url: 'Video URL?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion eller Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Indsæt link',
|
||||
unlink: 'Fjern link',
|
||||
edit: 'Rediger',
|
||||
textToDisplay: 'Visningstekst',
|
||||
url: 'Hvor skal linket pege hen?',
|
||||
openInNewWindow: 'Åbn i nyt vindue'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabel',
|
||||
addRowAbove: 'Tilføj række over',
|
||||
addRowBelow: 'Tilføj række under',
|
||||
addColLeft: 'Tilføj venstre kolonne',
|
||||
addColRight: 'Tilføj højre kolonne',
|
||||
delRow: 'Slet række',
|
||||
delCol: 'Slet kolonne',
|
||||
delTable: 'Slet tabel'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Indsæt horisontal linje'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
p: 'p',
|
||||
blockquote: 'Citat',
|
||||
pre: 'Kode',
|
||||
h1: 'Overskrift 1',
|
||||
h2: 'Overskrift 2',
|
||||
h3: 'Overskrift 3',
|
||||
h4: 'Overskrift 4',
|
||||
h5: 'Overskrift 5',
|
||||
h6: 'Overskrift 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Punktopstillet liste',
|
||||
ordered: 'Nummereret liste'
|
||||
},
|
||||
options: {
|
||||
help: 'Hjælp',
|
||||
fullscreen: 'Fuld skærm',
|
||||
codeview: 'HTML-Visning'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Afsnit',
|
||||
outdent: 'Formindsk indryk',
|
||||
indent: 'Forøg indryk',
|
||||
left: 'Venstrestillet',
|
||||
center: 'Centreret',
|
||||
right: 'Højrestillet',
|
||||
justify: 'Blokjuster'
|
||||
},
|
||||
color: {
|
||||
recent: 'Nyligt valgt farve',
|
||||
more: 'Flere farver',
|
||||
background: 'Baggrund',
|
||||
foreground: 'Forgrund',
|
||||
transparent: 'Transparent',
|
||||
setTransparent: 'Sæt transparent',
|
||||
reset: 'Nulstil',
|
||||
resetToDefault: 'Gendan standardindstillinger'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Genveje',
|
||||
close: 'Luk',
|
||||
textFormatting: 'Tekstformatering',
|
||||
action: 'Handling',
|
||||
paragraphFormatting: 'Afsnitsformatering',
|
||||
documentStyle: 'Dokumentstil',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Indsæt paragraf',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Vis Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Fortryd',
|
||||
redo: 'Annuller fortryd'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Vælg special karakterer'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-da-DK.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-da-DK.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-da-DK.min.js.LICENSE.txt */
|
||||
!function(e,r){if("object"==typeof exports&&"object"==typeof module)module.exports=r();else if("function"==typeof define&&define.amd)define([],r);else{var t=r();for(var n in t)("object"==typeof exports?exports:e)[n]=t[n]}}(window,(function(){return function(e){var r={};function t(n){if(r[n])return r[n].exports;var i=r[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,t),i.l=!0,i.exports}return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:n})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,r){if(1&r&&(e=t(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(t.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var i in e)t.d(n,i,function(r){return e[r]}.bind(null,i));return n},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},t.p="",t(t.s=12)}({12:function(e,r){var t;(t=jQuery).extend(t.summernote.lang,{"da-DK":{font:{bold:"Fed",italic:"Kursiv",underline:"Understreget",clear:"Fjern formatering",height:"Højde",name:"Skrifttype",strikethrough:"Gennemstreget",subscript:"Sænket skrift",superscript:"Hævet skrift",size:"Skriftstørrelse"},image:{image:"Billede",insert:"Indsæt billede",resizeFull:"Original størrelse",resizeHalf:"Halv størrelse",resizeQuarter:"Kvart størrelse",floatLeft:"Venstrestillet",floatRight:"Højrestillet",floatNone:"Fjern formatering",shapeRounded:"Form: Runde kanter",shapeCircle:"Form: Cirkel",shapeThumbnail:"Form: Miniature",shapeNone:"Form: Ingen",dragImageHere:"Træk billede hertil",dropImage:"Slip billede",selectFromFiles:"Vælg billed-fil",maximumFileSize:"Maks fil størrelse",maximumFileSizeError:"Filen er større end maks tilladte fil størrelse!",url:"Billede URL",remove:"Fjern billede",original:"Original"},video:{video:"Video",videoLink:"Video Link",insert:"Indsæt Video",url:"Video URL?",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion eller Youku)"},link:{link:"Link",insert:"Indsæt link",unlink:"Fjern link",edit:"Rediger",textToDisplay:"Visningstekst",url:"Hvor skal linket pege hen?",openInNewWindow:"Åbn i nyt vindue"},table:{table:"Tabel",addRowAbove:"Tilføj række over",addRowBelow:"Tilføj række under",addColLeft:"Tilføj venstre kolonne",addColRight:"Tilføj højre kolonne",delRow:"Slet række",delCol:"Slet kolonne",delTable:"Slet tabel"},hr:{insert:"Indsæt horisontal linje"},style:{style:"Stil",p:"p",blockquote:"Citat",pre:"Kode",h1:"Overskrift 1",h2:"Overskrift 2",h3:"Overskrift 3",h4:"Overskrift 4",h5:"Overskrift 5",h6:"Overskrift 6"},lists:{unordered:"Punktopstillet liste",ordered:"Nummereret liste"},options:{help:"Hjælp",fullscreen:"Fuld skærm",codeview:"HTML-Visning"},paragraph:{paragraph:"Afsnit",outdent:"Formindsk indryk",indent:"Forøg indryk",left:"Venstrestillet",center:"Centreret",right:"Højrestillet",justify:"Blokjuster"},color:{recent:"Nyligt valgt farve",more:"Flere farver",background:"Baggrund",foreground:"Forgrund",transparent:"Transparent",setTransparent:"Sæt transparent",reset:"Nulstil",resetToDefault:"Gendan standardindstillinger"},shortcut:{shortcuts:"Genveje",close:"Luk",textFormatting:"Tekstformatering",action:"Handling",paragraphFormatting:"Afsnitsformatering",documentStyle:"Dokumentstil",extraKeys:"Extra keys"},help:{insertParagraph:"Indsæt paragraf",undo:"Undoes the last command",redo:"Redoes the last command",tab:"Tab",untab:"Untab",bold:"Set a bold style",italic:"Set a italic style",underline:"Set a underline style",strikethrough:"Set a strikethrough style",removeFormat:"Clean a style",justifyLeft:"Set left align",justifyCenter:"Set center align",justifyRight:"Set right align",justifyFull:"Set full align",insertUnorderedList:"Toggle unordered list",insertOrderedList:"Toggle ordered list",outdent:"Outdent on current paragraph",indent:"Indent on current paragraph",formatPara:"Change current block's format as a paragraph(P tag)",formatH1:"Change current block's format as H1",formatH2:"Change current block's format as H2",formatH3:"Change current block's format as H3",formatH4:"Change current block's format as H4",formatH5:"Change current block's format as H5",formatH6:"Change current block's format as H6",insertHorizontalRule:"Insert horizontal rule","linkDialog.show":"Vis Link Dialog"},history:{undo:"Fortryd",redo:"Annuller fortryd"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Vælg special karakterer"}}})}})}));
|
||||
274
public/vendor/editor/dist/lang/summernote-de-DE.js
vendored
Executable file
274
public/vendor/editor/dist/lang/summernote-de-DE.js
vendored
Executable file
@@ -0,0 +1,274 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 13);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 13:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'de-DE': {
|
||||
font: {
|
||||
bold: 'Fett',
|
||||
italic: 'Kursiv',
|
||||
underline: 'Unterstreichen',
|
||||
clear: 'Zurücksetzen',
|
||||
height: 'Zeilenhöhe',
|
||||
name: 'Schriftart',
|
||||
strikethrough: 'Durchgestrichen',
|
||||
subscript: 'Tiefgestellt',
|
||||
superscript: 'Hochgestellt',
|
||||
size: 'Schriftgröße'
|
||||
},
|
||||
image: {
|
||||
image: 'Bild',
|
||||
insert: 'Bild einfügen',
|
||||
resizeFull: 'Originalgröße',
|
||||
resizeHalf: '1/2 Größe',
|
||||
resizeQuarter: '1/4 Größe',
|
||||
floatLeft: 'Linksbündig',
|
||||
floatRight: 'Rechtsbündig',
|
||||
floatNone: 'Kein Textfluss',
|
||||
shapeRounded: 'Abgerundeter Rahmen',
|
||||
shapeCircle: 'Kreisförmiger Rahmen',
|
||||
shapeThumbnail: 'Rahmenvorschau',
|
||||
shapeNone: 'Kein Rahmen',
|
||||
dragImageHere: 'Bild hierher ziehen',
|
||||
dropImage: 'Bild oder Text nehmen',
|
||||
selectFromFiles: 'Datei auswählen',
|
||||
maximumFileSize: 'Maximale Dateigröße',
|
||||
maximumFileSizeError: 'Maximale Dateigröße überschritten',
|
||||
url: 'Bild URL',
|
||||
remove: 'Bild entfernen',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Videolink',
|
||||
insert: 'Video einfügen',
|
||||
url: 'Video URL',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion oder Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Link einfügen',
|
||||
unlink: 'Link entfernen',
|
||||
edit: 'Bearbeiten',
|
||||
textToDisplay: 'Anzeigetext',
|
||||
url: 'Link URL',
|
||||
openInNewWindow: 'In neuem Fenster öffnen'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabelle',
|
||||
addRowAbove: '+ Zeile oberhalb',
|
||||
addRowBelow: '+ Zeile unterhalb',
|
||||
addColLeft: '+ Spalte links',
|
||||
addColRight: '+ Spalte rechts',
|
||||
delRow: 'Reihe löschen',
|
||||
delCol: 'Spalte löschen',
|
||||
delTable: 'Tabelle löschen'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Horizontale Linie einfügen'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
normal: 'Normal',
|
||||
p: 'Normal',
|
||||
blockquote: 'Zitat',
|
||||
pre: 'Quellcode',
|
||||
h1: 'Überschrift 1',
|
||||
h2: 'Überschrift 2',
|
||||
h3: 'Überschrift 3',
|
||||
h4: 'Überschrift 4',
|
||||
h5: 'Überschrift 5',
|
||||
h6: 'Überschrift 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Unnummerierte Liste',
|
||||
ordered: 'Nummerierte Liste'
|
||||
},
|
||||
options: {
|
||||
help: 'Hilfe',
|
||||
fullscreen: 'Vollbild',
|
||||
codeview: 'Quellcode anzeigen'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Absatz',
|
||||
outdent: 'Einzug verkleinern',
|
||||
indent: 'Einzug vergrößern',
|
||||
left: 'Links ausrichten',
|
||||
center: 'Zentriert ausrichten',
|
||||
right: 'Rechts ausrichten',
|
||||
justify: 'Blocksatz'
|
||||
},
|
||||
color: {
|
||||
recent: 'Letzte Farbe',
|
||||
more: 'Weitere Farben',
|
||||
background: 'Hintergrundfarbe',
|
||||
foreground: 'Schriftfarbe',
|
||||
transparent: 'Transparenz',
|
||||
setTransparent: 'Transparenz setzen',
|
||||
reset: 'Zurücksetzen',
|
||||
resetToDefault: 'Auf Standard zurücksetzen'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Tastenkürzel',
|
||||
close: 'Schließen',
|
||||
textFormatting: 'Textformatierung',
|
||||
action: 'Aktion',
|
||||
paragraphFormatting: 'Absatzformatierung',
|
||||
documentStyle: 'Dokumentenstil',
|
||||
extraKeys: 'Weitere Tasten'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Absatz einfügen',
|
||||
'undo': 'Letzte Anweisung rückgängig',
|
||||
'redo': 'Letzte Anweisung wiederholen',
|
||||
'tab': 'Einzug hinzufügen',
|
||||
'untab': 'Einzug entfernen',
|
||||
'bold': 'Schrift Fett',
|
||||
'italic': 'Schrift Kursiv',
|
||||
'underline': 'Unterstreichen',
|
||||
'strikethrough': 'Durchstreichen',
|
||||
'removeFormat': 'Entfernt Format',
|
||||
'justifyLeft': 'Linksbündig',
|
||||
'justifyCenter': 'Mittig',
|
||||
'justifyRight': 'Rechtsbündig',
|
||||
'justifyFull': 'Blocksatz',
|
||||
'insertUnorderedList': 'Unnummerierte Liste',
|
||||
'insertOrderedList': 'Nummerierte Liste',
|
||||
'outdent': 'Aktuellen Absatz ausrücken',
|
||||
'indent': 'Aktuellen Absatz einrücken',
|
||||
'formatPara': 'Formatiert aktuellen Block als Absatz (P-Tag)',
|
||||
'formatH1': 'Formatiert aktuellen Block als H1',
|
||||
'formatH2': 'Formatiert aktuellen Block als H2',
|
||||
'formatH3': 'Formatiert aktuellen Block als H3',
|
||||
'formatH4': 'Formatiert aktuellen Block als H4',
|
||||
'formatH5': 'Formatiert aktuellen Block als H5',
|
||||
'formatH6': 'Formatiert aktuellen Block als H6',
|
||||
'insertHorizontalRule': 'Fügt eine horizontale Linie ein',
|
||||
'linkDialog.show': 'Zeigt Linkdialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Rückgängig',
|
||||
redo: 'Wiederholen'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'Sonderzeichen',
|
||||
select: 'Zeichen auswählen'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-de-DE.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-de-DE.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-de-DE.min.js.LICENSE.txt */
|
||||
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var r=t();for(var n in r)("object"==typeof exports?exports:e)[n]=r[n]}}(window,(function(){return function(e){var t={};function r(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,r),i.l=!0,i.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)r.d(n,i,function(t){return e[t]}.bind(null,i));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=13)}({13:function(e,t){var r;(r=jQuery).extend(r.summernote.lang,{"de-DE":{font:{bold:"Fett",italic:"Kursiv",underline:"Unterstreichen",clear:"Zurücksetzen",height:"Zeilenhöhe",name:"Schriftart",strikethrough:"Durchgestrichen",subscript:"Tiefgestellt",superscript:"Hochgestellt",size:"Schriftgröße"},image:{image:"Bild",insert:"Bild einfügen",resizeFull:"Originalgröße",resizeHalf:"1/2 Größe",resizeQuarter:"1/4 Größe",floatLeft:"Linksbündig",floatRight:"Rechtsbündig",floatNone:"Kein Textfluss",shapeRounded:"Abgerundeter Rahmen",shapeCircle:"Kreisförmiger Rahmen",shapeThumbnail:"Rahmenvorschau",shapeNone:"Kein Rahmen",dragImageHere:"Bild hierher ziehen",dropImage:"Bild oder Text nehmen",selectFromFiles:"Datei auswählen",maximumFileSize:"Maximale Dateigröße",maximumFileSizeError:"Maximale Dateigröße überschritten",url:"Bild URL",remove:"Bild entfernen",original:"Original"},video:{video:"Video",videoLink:"Videolink",insert:"Video einfügen",url:"Video URL",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion oder Youku)"},link:{link:"Link",insert:"Link einfügen",unlink:"Link entfernen",edit:"Bearbeiten",textToDisplay:"Anzeigetext",url:"Link URL",openInNewWindow:"In neuem Fenster öffnen"},table:{table:"Tabelle",addRowAbove:"+ Zeile oberhalb",addRowBelow:"+ Zeile unterhalb",addColLeft:"+ Spalte links",addColRight:"+ Spalte rechts",delRow:"Reihe löschen",delCol:"Spalte löschen",delTable:"Tabelle löschen"},hr:{insert:"Horizontale Linie einfügen"},style:{style:"Stil",normal:"Normal",p:"Normal",blockquote:"Zitat",pre:"Quellcode",h1:"Überschrift 1",h2:"Überschrift 2",h3:"Überschrift 3",h4:"Überschrift 4",h5:"Überschrift 5",h6:"Überschrift 6"},lists:{unordered:"Unnummerierte Liste",ordered:"Nummerierte Liste"},options:{help:"Hilfe",fullscreen:"Vollbild",codeview:"Quellcode anzeigen"},paragraph:{paragraph:"Absatz",outdent:"Einzug verkleinern",indent:"Einzug vergrößern",left:"Links ausrichten",center:"Zentriert ausrichten",right:"Rechts ausrichten",justify:"Blocksatz"},color:{recent:"Letzte Farbe",more:"Weitere Farben",background:"Hintergrundfarbe",foreground:"Schriftfarbe",transparent:"Transparenz",setTransparent:"Transparenz setzen",reset:"Zurücksetzen",resetToDefault:"Auf Standard zurücksetzen"},shortcut:{shortcuts:"Tastenkürzel",close:"Schließen",textFormatting:"Textformatierung",action:"Aktion",paragraphFormatting:"Absatzformatierung",documentStyle:"Dokumentenstil",extraKeys:"Weitere Tasten"},help:{insertParagraph:"Absatz einfügen",undo:"Letzte Anweisung rückgängig",redo:"Letzte Anweisung wiederholen",tab:"Einzug hinzufügen",untab:"Einzug entfernen",bold:"Schrift Fett",italic:"Schrift Kursiv",underline:"Unterstreichen",strikethrough:"Durchstreichen",removeFormat:"Entfernt Format",justifyLeft:"Linksbündig",justifyCenter:"Mittig",justifyRight:"Rechtsbündig",justifyFull:"Blocksatz",insertUnorderedList:"Unnummerierte Liste",insertOrderedList:"Nummerierte Liste",outdent:"Aktuellen Absatz ausrücken",indent:"Aktuellen Absatz einrücken",formatPara:"Formatiert aktuellen Block als Absatz (P-Tag)",formatH1:"Formatiert aktuellen Block als H1",formatH2:"Formatiert aktuellen Block als H2",formatH3:"Formatiert aktuellen Block als H3",formatH4:"Formatiert aktuellen Block als H4",formatH5:"Formatiert aktuellen Block als H5",formatH6:"Formatiert aktuellen Block als H6",insertHorizontalRule:"Fügt eine horizontale Linie ein","linkDialog.show":"Zeigt Linkdialog"},history:{undo:"Rückgängig",redo:"Wiederholen"},specialChar:{specialChar:"Sonderzeichen",select:"Zeichen auswählen"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-el-GR.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-el-GR.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 14);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 14:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'el-GR': {
|
||||
font: {
|
||||
bold: 'Έντονα',
|
||||
italic: 'Πλάγια',
|
||||
underline: 'Υπογραμμισμένα',
|
||||
clear: 'Καθαρισμός',
|
||||
height: 'Ύψος',
|
||||
name: 'Γραμματοσειρά',
|
||||
strikethrough: 'Διεγραμμένα',
|
||||
subscript: 'Δείκτης',
|
||||
superscript: 'Εκθέτης',
|
||||
size: 'Μέγεθος'
|
||||
},
|
||||
image: {
|
||||
image: 'εικόνα',
|
||||
insert: 'Εισαγωγή',
|
||||
resizeFull: 'Πλήρες μέγεθος',
|
||||
resizeHalf: 'Μισό μέγεθος',
|
||||
resizeQuarter: '1/4 μέγεθος',
|
||||
floatLeft: 'Μετατόπιση αριστερά',
|
||||
floatRight: 'Μετατόπιση δεξιά',
|
||||
floatNone: 'Χωρίς μετατόπιση',
|
||||
shapeRounded: 'Σχήμα: Στρογγυλεμένο',
|
||||
shapeCircle: 'Σχήμα: Κύκλος',
|
||||
shapeThumbnail: 'Σχήμα: Thumbnail',
|
||||
shapeNone: 'Σχήμα: Κανένα',
|
||||
dragImageHere: 'Σύρτε την εικόνα εδώ',
|
||||
dropImage: 'Αφήστε την εικόνα',
|
||||
selectFromFiles: 'Επιλογή από αρχεία',
|
||||
maximumFileSize: 'Μέγιστο μέγεθος αρχείου',
|
||||
maximumFileSizeError: 'Το μέγεθος είναι μεγαλύτερο από το μέγιστο επιτρεπτό.',
|
||||
url: 'URL',
|
||||
remove: 'Αφαίρεση',
|
||||
original: 'Original'
|
||||
},
|
||||
link: {
|
||||
link: 'Σύνδεσμος',
|
||||
insert: 'Εισαγωγή συνδέσμου',
|
||||
unlink: 'Αφαίρεση συνδέσμου',
|
||||
edit: 'Επεξεργασία συνδέσμου',
|
||||
textToDisplay: 'Κείμενο συνδέσμου',
|
||||
url: 'URL',
|
||||
openInNewWindow: 'Άνοιγμα σε νέο παράθυρο'
|
||||
},
|
||||
video: {
|
||||
video: 'Βίντεο',
|
||||
videoLink: 'Σύνδεσμος Βίντεο',
|
||||
insert: 'Εισαγωγή',
|
||||
url: 'URL',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)'
|
||||
},
|
||||
table: {
|
||||
table: 'Πίνακας',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Εισαγωγή οριζόντιας γραμμής'
|
||||
},
|
||||
style: {
|
||||
style: 'Στυλ',
|
||||
normal: 'Κανονικό',
|
||||
blockquote: 'Παράθεση',
|
||||
pre: 'Ως έχει',
|
||||
h1: 'Κεφαλίδα 1',
|
||||
h2: 'συνδέσμου 2',
|
||||
h3: 'συνδέσμου 3',
|
||||
h4: 'συνδέσμου 4',
|
||||
h5: 'συνδέσμου 5',
|
||||
h6: 'συνδέσμου 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Αταξινόμητη λίστα',
|
||||
ordered: 'Ταξινομημένη λίστα'
|
||||
},
|
||||
options: {
|
||||
help: 'Βοήθεια',
|
||||
fullscreen: 'Πλήρης οθόνη',
|
||||
codeview: 'Προβολή HTML'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Παράγραφος',
|
||||
outdent: 'Μείωση εσοχής',
|
||||
indent: 'Άυξηση εσοχής',
|
||||
left: 'Αριστερή στοίχιση',
|
||||
center: 'Στοίχιση στο κέντρο',
|
||||
right: 'Δεξιά στοίχιση',
|
||||
justify: 'Πλήρης στοίχιση'
|
||||
},
|
||||
color: {
|
||||
recent: 'Πρόσφατη επιλογή',
|
||||
more: 'Περισσότερα',
|
||||
background: 'Υπόβαθρο',
|
||||
foreground: 'Μπροστά',
|
||||
transparent: 'Διαφανές',
|
||||
setTransparent: 'Επιλογή διαφάνειας',
|
||||
reset: 'Επαναφορά',
|
||||
resetToDefault: 'Επαναφορά στις προκαθορισμένες τιμές'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Συντομεύσεις',
|
||||
close: 'Κλείσιμο',
|
||||
textFormatting: 'Διαμόρφωση κειμένου',
|
||||
action: 'Ενέργεια',
|
||||
paragraphFormatting: 'Διαμόρφωση παραγράφου',
|
||||
documentStyle: 'Στυλ κειμένου',
|
||||
extraKeys: 'Επιπλέον συντομεύσεις'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Εισαγωγή παραγράφου',
|
||||
'undo': 'Αναιρεί την προηγούμενη εντολή',
|
||||
'redo': 'Επαναλαμβάνει την προηγούμενη εντολή',
|
||||
'tab': 'Εσοχή',
|
||||
'untab': 'Αναίρεση εσοχής',
|
||||
'bold': 'Ορισμός έντονου στυλ',
|
||||
'italic': 'Ορισμός πλάγιου στυλ',
|
||||
'underline': 'Ορισμός υπογεγραμμένου στυλ',
|
||||
'strikethrough': 'Ορισμός διεγραμμένου στυλ',
|
||||
'removeFormat': 'Αφαίρεση στυλ',
|
||||
'justifyLeft': 'Ορισμός αριστερής στοίχισης',
|
||||
'justifyCenter': 'Ορισμός κεντρικής στοίχισης',
|
||||
'justifyRight': 'Ορισμός δεξιάς στοίχισης',
|
||||
'justifyFull': 'Ορισμός πλήρους στοίχισης',
|
||||
'insertUnorderedList': 'Ορισμός μη-ταξινομημένης λίστας',
|
||||
'insertOrderedList': 'Ορισμός ταξινομημένης λίστας',
|
||||
'outdent': 'Προεξοχή παραγράφου',
|
||||
'indent': 'Εσοχή παραγράφου',
|
||||
'formatPara': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε παράγραφο (P tag)',
|
||||
'formatH1': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε H1',
|
||||
'formatH2': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε H2',
|
||||
'formatH3': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε H3',
|
||||
'formatH4': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε H4',
|
||||
'formatH5': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε H5',
|
||||
'formatH6': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε H6',
|
||||
'insertHorizontalRule': 'Εισαγωγή οριζόντιας γραμμής',
|
||||
'linkDialog.show': 'Εμφάνιση διαλόγου συνδέσμου'
|
||||
},
|
||||
history: {
|
||||
undo: 'Αναίρεση',
|
||||
redo: 'Επαναληψη'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Επιλέξτε ειδικούς χαρακτήρες'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-el-GR.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-el-GR.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
280
public/vendor/editor/dist/lang/summernote-es-ES.js
vendored
Executable file
280
public/vendor/editor/dist/lang/summernote-es-ES.js
vendored
Executable file
@@ -0,0 +1,280 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 15);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 15:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'es-ES': {
|
||||
font: {
|
||||
bold: 'Negrita',
|
||||
italic: 'Cursiva',
|
||||
underline: 'Subrayado',
|
||||
clear: 'Eliminar estilo de letra',
|
||||
height: 'Altura de línea',
|
||||
name: 'Tipo de letra',
|
||||
strikethrough: 'Tachado',
|
||||
subscript: 'Subíndice',
|
||||
superscript: 'Superíndice',
|
||||
size: 'Tamaño de la fuente',
|
||||
sizeunit: 'Unidad del tamaño de letra'
|
||||
},
|
||||
image: {
|
||||
image: 'Imagen',
|
||||
insert: 'Insertar imagen',
|
||||
resizeFull: 'Redimensionar a tamaño completo',
|
||||
resizeHalf: 'Redimensionar a la mitad',
|
||||
resizeQuarter: 'Redimensionar a un cuarto',
|
||||
resizeNone: 'Tamaño original',
|
||||
floatLeft: 'Flotar a la izquierda',
|
||||
floatRight: 'Flotar a la derecha',
|
||||
floatNone: 'No flotar',
|
||||
shapeRounded: 'Forma: Redondeado',
|
||||
shapeCircle: 'Forma: Círculo',
|
||||
shapeThumbnail: 'Forma: Miniatura',
|
||||
shapeNone: 'Forma: Ninguna',
|
||||
dragImageHere: 'Arrastre una imagen o texto aquí',
|
||||
dropImage: 'Suelte una imagen o texto',
|
||||
selectFromFiles: 'Seleccione un fichero',
|
||||
maximumFileSize: 'Tamaño máximo del fichero',
|
||||
maximumFileSizeError: 'Superado el tamaño máximo de fichero.',
|
||||
url: 'URL de la imagen',
|
||||
remove: 'Eliminar la imagen',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Vídeo',
|
||||
videoLink: 'Enlace del vídeo',
|
||||
insert: 'Insertar un vídeo',
|
||||
url: 'URL del vídeo',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion o Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Enlace',
|
||||
insert: 'Insertar un enlace',
|
||||
unlink: 'Quitar el enlace',
|
||||
edit: 'Editar',
|
||||
textToDisplay: 'Texto a mostrar',
|
||||
url: '¿A qué URL lleva este enlace?',
|
||||
openInNewWindow: 'Abrir en una nueva ventana',
|
||||
useProtocol: 'Usar el protocolo predefinido'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabla',
|
||||
addRowAbove: 'Añadir una fila encima',
|
||||
addRowBelow: 'Añadir una fila debajo',
|
||||
addColLeft: 'Añadir una columna a la izquierda',
|
||||
addColRight: 'Añadir una columna a la derecha',
|
||||
delRow: 'Borrar la fila',
|
||||
delCol: 'Borrar la columna',
|
||||
delTable: 'Borrar la tabla'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Insertar una línea horizontal'
|
||||
},
|
||||
style: {
|
||||
style: 'Estilo',
|
||||
p: 'Normal',
|
||||
blockquote: 'Cita',
|
||||
pre: 'Código',
|
||||
h1: 'Título 1',
|
||||
h2: 'Título 2',
|
||||
h3: 'Título 3',
|
||||
h4: 'Título 4',
|
||||
h5: 'Título 5',
|
||||
h6: 'Título 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Lista',
|
||||
ordered: 'Lista numerada'
|
||||
},
|
||||
options: {
|
||||
help: 'Ayuda',
|
||||
fullscreen: 'Pantalla completa',
|
||||
codeview: 'Ver el código fuente'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Párrafo',
|
||||
outdent: 'Reducir la sangría',
|
||||
indent: 'Aumentar la sangría',
|
||||
left: 'Alinear a la izquierda',
|
||||
center: 'Centrar',
|
||||
right: 'Alinear a la derecha',
|
||||
justify: 'Justificar'
|
||||
},
|
||||
color: {
|
||||
recent: 'Último color',
|
||||
more: 'Más colores',
|
||||
background: 'Color de fondo',
|
||||
foreground: 'Color del texto',
|
||||
transparent: 'Transparente',
|
||||
setTransparent: 'Establecer transparente',
|
||||
reset: 'Restablecer',
|
||||
resetToDefault: 'Restablecer a los valores predefinidos',
|
||||
cpSelect: 'Seleccionar'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Atajos de teclado',
|
||||
close: 'Cerrar',
|
||||
textFormatting: 'Formato de texto',
|
||||
action: 'Acción',
|
||||
paragraphFormatting: 'Formato de párrafo',
|
||||
documentStyle: 'Estilo de documento',
|
||||
extraKeys: 'Teclas adicionales'
|
||||
},
|
||||
help: {
|
||||
insertParagraph: 'Insertar un párrafo',
|
||||
undo: 'Deshacer la última acción',
|
||||
redo: 'Rehacer la última acción',
|
||||
tab: 'Tabular',
|
||||
untab: 'Eliminar tabulación',
|
||||
bold: 'Establecer estilo negrita',
|
||||
italic: 'Establecer estilo cursiva',
|
||||
underline: 'Establecer estilo subrayado',
|
||||
strikethrough: 'Establecer estilo tachado',
|
||||
removeFormat: 'Limpiar estilo',
|
||||
justifyLeft: 'Alinear a la izquierda',
|
||||
justifyCenter: 'Alinear al centro',
|
||||
justifyRight: 'Alinear a la derecha',
|
||||
justifyFull: 'Justificar',
|
||||
insertUnorderedList: 'Insertar lista',
|
||||
insertOrderedList: 'Insertar lista numerada',
|
||||
outdent: 'Reducir sangría del párrafo',
|
||||
indent: 'Aumentar sangría del párrafo',
|
||||
formatPara: 'Cambiar el formato del bloque actual a párrafo (etiqueta P)',
|
||||
formatH1: 'Cambiar el formato del bloque actual a H1',
|
||||
formatH2: 'Cambiar el formato del bloque actual a H2',
|
||||
formatH3: 'Cambiar el formato del bloque actual a H3',
|
||||
formatH4: 'Cambiar el formato del bloque actual a H4',
|
||||
formatH5: 'Cambiar el formato del bloque actual a H5',
|
||||
formatH6: 'Cambiar el formato del bloque actual a H6',
|
||||
insertHorizontalRule: 'Insertar una línea horizontal',
|
||||
'linkDialog.show': 'Mostrar el panel de enlaces'
|
||||
},
|
||||
history: {
|
||||
undo: 'Deshacer',
|
||||
redo: 'Rehacer'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'CARACTERES ESPECIALES',
|
||||
select: 'Seleccionar caracteres especiales'
|
||||
},
|
||||
output: {
|
||||
noSelection: '¡No ha seleccionado nada!'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-es-ES.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-es-ES.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
272
public/vendor/editor/dist/lang/summernote-es-EU.js
vendored
Executable file
272
public/vendor/editor/dist/lang/summernote-es-EU.js
vendored
Executable file
@@ -0,0 +1,272 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 16);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 16:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'es-EU': {
|
||||
font: {
|
||||
bold: 'Lodia',
|
||||
italic: 'Etzana',
|
||||
underline: 'Azpimarratua',
|
||||
clear: 'Estiloa kendu',
|
||||
height: 'Lerro altuera',
|
||||
name: 'Tipografia',
|
||||
strikethrough: 'Marratua',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Letren neurria'
|
||||
},
|
||||
image: {
|
||||
image: 'Irudia',
|
||||
insert: 'Irudi bat txertatu',
|
||||
resizeFull: 'Jatorrizko neurrira aldatu',
|
||||
resizeHalf: 'Neurria erdira aldatu',
|
||||
resizeQuarter: 'Neurria laurdenera aldatu',
|
||||
floatLeft: 'Ezkerrean kokatu',
|
||||
floatRight: 'Eskuinean kokatu',
|
||||
floatNone: 'Kokapenik ez ezarri',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Irudi bat ezarri hemen',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Zure fitxategi bat aukeratu',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Irudiaren URL helbidea',
|
||||
remove: 'Remove Image',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Bideoa',
|
||||
videoLink: 'Bideorako esteka',
|
||||
insert: 'Bideo berri bat txertatu',
|
||||
url: 'Bideoaren URL helbidea',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram edo DailyMotion)'
|
||||
},
|
||||
link: {
|
||||
link: 'Esteka',
|
||||
insert: 'Esteka bat txertatu',
|
||||
unlink: 'Esteka ezabatu',
|
||||
edit: 'Editatu',
|
||||
textToDisplay: 'Estekaren testua',
|
||||
url: 'Estekaren URL helbidea',
|
||||
openInNewWindow: 'Leiho berri batean ireki'
|
||||
},
|
||||
table: {
|
||||
table: 'Taula',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Marra horizontala txertatu'
|
||||
},
|
||||
style: {
|
||||
style: 'Estiloa',
|
||||
p: 'p',
|
||||
blockquote: 'Aipamena',
|
||||
pre: 'Kodea',
|
||||
h1: '1. izenburua',
|
||||
h2: '2. izenburua',
|
||||
h3: '3. izenburua',
|
||||
h4: '4. izenburua',
|
||||
h5: '5. izenburua',
|
||||
h6: '6. izenburua'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Ordenatu gabeko zerrenda',
|
||||
ordered: 'Zerrenda ordenatua'
|
||||
},
|
||||
options: {
|
||||
help: 'Laguntza',
|
||||
fullscreen: 'Pantaila osoa',
|
||||
codeview: 'Kodea ikusi'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragrafoa',
|
||||
outdent: 'Koska txikiagoa',
|
||||
indent: 'Koska handiagoa',
|
||||
left: 'Ezkerrean kokatu',
|
||||
center: 'Erdian kokatu',
|
||||
right: 'Eskuinean kokatu',
|
||||
justify: 'Justifikatu'
|
||||
},
|
||||
color: {
|
||||
recent: 'Azken kolorea',
|
||||
more: 'Kolore gehiago',
|
||||
background: 'Atzeko planoa',
|
||||
foreground: 'Aurreko planoa',
|
||||
transparent: 'Gardena',
|
||||
setTransparent: 'Gardendu',
|
||||
reset: 'Lehengoratu',
|
||||
resetToDefault: 'Berrezarri lehenetsia'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Lasterbideak',
|
||||
close: 'Itxi',
|
||||
textFormatting: 'Testuaren formatua',
|
||||
action: 'Ekintza',
|
||||
paragraphFormatting: 'Paragrafoaren formatua',
|
||||
documentStyle: 'Dokumentuaren estiloa'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Desegin',
|
||||
redo: 'Berregin'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-es-EU.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-es-EU.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-es-EU.min.js.LICENSE.txt */
|
||||
!function(e,r){if("object"==typeof exports&&"object"==typeof module)module.exports=r();else if("function"==typeof define&&define.amd)define([],r);else{var a=r();for(var t in a)("object"==typeof exports?exports:e)[t]=a[t]}}(window,(function(){return function(e){var r={};function a(t){if(r[t])return r[t].exports;var o=r[t]={i:t,l:!1,exports:{}};return e[t].call(o.exports,o,o.exports,a),o.l=!0,o.exports}return a.m=e,a.c=r,a.d=function(e,r,t){a.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,r){if(1&r&&(e=a(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(a.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var o in e)a.d(t,o,function(r){return e[r]}.bind(null,o));return t},a.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(r,"a",r),r},a.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},a.p="",a(a.s=16)}({16:function(e,r){var a;(a=jQuery).extend(a.summernote.lang,{"es-EU":{font:{bold:"Lodia",italic:"Etzana",underline:"Azpimarratua",clear:"Estiloa kendu",height:"Lerro altuera",name:"Tipografia",strikethrough:"Marratua",subscript:"Subscript",superscript:"Superscript",size:"Letren neurria"},image:{image:"Irudia",insert:"Irudi bat txertatu",resizeFull:"Jatorrizko neurrira aldatu",resizeHalf:"Neurria erdira aldatu",resizeQuarter:"Neurria laurdenera aldatu",floatLeft:"Ezkerrean kokatu",floatRight:"Eskuinean kokatu",floatNone:"Kokapenik ez ezarri",shapeRounded:"Shape: Rounded",shapeCircle:"Shape: Circle",shapeThumbnail:"Shape: Thumbnail",shapeNone:"Shape: None",dragImageHere:"Irudi bat ezarri hemen",dropImage:"Drop image or Text",selectFromFiles:"Zure fitxategi bat aukeratu",maximumFileSize:"Maximum file size",maximumFileSizeError:"Maximum file size exceeded.",url:"Irudiaren URL helbidea",remove:"Remove Image",original:"Original"},video:{video:"Bideoa",videoLink:"Bideorako esteka",insert:"Bideo berri bat txertatu",url:"Bideoaren URL helbidea",providers:"(YouTube, Vimeo, Vine, Instagram edo DailyMotion)"},link:{link:"Esteka",insert:"Esteka bat txertatu",unlink:"Esteka ezabatu",edit:"Editatu",textToDisplay:"Estekaren testua",url:"Estekaren URL helbidea",openInNewWindow:"Leiho berri batean ireki"},table:{table:"Taula",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Marra horizontala txertatu"},style:{style:"Estiloa",p:"p",blockquote:"Aipamena",pre:"Kodea",h1:"1. izenburua",h2:"2. izenburua",h3:"3. izenburua",h4:"4. izenburua",h5:"5. izenburua",h6:"6. izenburua"},lists:{unordered:"Ordenatu gabeko zerrenda",ordered:"Zerrenda ordenatua"},options:{help:"Laguntza",fullscreen:"Pantaila osoa",codeview:"Kodea ikusi"},paragraph:{paragraph:"Paragrafoa",outdent:"Koska txikiagoa",indent:"Koska handiagoa",left:"Ezkerrean kokatu",center:"Erdian kokatu",right:"Eskuinean kokatu",justify:"Justifikatu"},color:{recent:"Azken kolorea",more:"Kolore gehiago",background:"Atzeko planoa",foreground:"Aurreko planoa",transparent:"Gardena",setTransparent:"Gardendu",reset:"Lehengoratu",resetToDefault:"Berrezarri lehenetsia"},shortcut:{shortcuts:"Lasterbideak",close:"Itxi",textFormatting:"Testuaren formatua",action:"Ekintza",paragraphFormatting:"Paragrafoaren formatua",documentStyle:"Dokumentuaren estiloa"},help:{insertParagraph:"Insert Paragraph",undo:"Undoes the last command",redo:"Redoes the last command",tab:"Tab",untab:"Untab",bold:"Set a bold style",italic:"Set a italic style",underline:"Set a underline style",strikethrough:"Set a strikethrough style",removeFormat:"Clean a style",justifyLeft:"Set left align",justifyCenter:"Set center align",justifyRight:"Set right align",justifyFull:"Set full align",insertUnorderedList:"Toggle unordered list",insertOrderedList:"Toggle ordered list",outdent:"Outdent on current paragraph",indent:"Indent on current paragraph",formatPara:"Change current block's format as a paragraph(P tag)",formatH1:"Change current block's format as H1",formatH2:"Change current block's format as H2",formatH3:"Change current block's format as H3",formatH4:"Change current block's format as H4",formatH5:"Change current block's format as H5",formatH6:"Change current block's format as H6",insertHorizontalRule:"Insert horizontal rule","linkDialog.show":"Show Link Dialog"},history:{undo:"Desegin",redo:"Berregin"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-fa-IR.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-fa-IR.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 17);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 17:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'fa-IR': {
|
||||
font: {
|
||||
bold: 'درشت',
|
||||
italic: 'خمیده',
|
||||
underline: 'میان خط',
|
||||
clear: 'پاک کردن فرمت فونت',
|
||||
height: 'فاصله ی خطی',
|
||||
name: 'اسم فونت',
|
||||
strikethrough: 'Strike',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'اندازه ی فونت'
|
||||
},
|
||||
image: {
|
||||
image: 'تصویر',
|
||||
insert: 'وارد کردن تصویر',
|
||||
resizeFull: 'تغییر به اندازه ی کامل',
|
||||
resizeHalf: 'تغییر به اندازه نصف',
|
||||
resizeQuarter: 'تغییر به اندازه یک چهارم',
|
||||
floatLeft: 'چسباندن به چپ',
|
||||
floatRight: 'چسباندن به راست',
|
||||
floatNone: 'بدون چسبندگی',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'یک تصویر را اینجا بکشید',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'فایل ها را انتخاب کنید',
|
||||
maximumFileSize: 'حداکثر اندازه پرونده',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'آدرس تصویر',
|
||||
remove: 'حذف تصویر',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'ویدیو',
|
||||
videoLink: 'لینک ویدیو',
|
||||
insert: 'افزودن ویدیو',
|
||||
url: 'آدرس ویدیو ؟',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion یا Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'لینک',
|
||||
insert: 'اضافه کردن لینک',
|
||||
unlink: 'حذف لینک',
|
||||
edit: 'ویرایش',
|
||||
textToDisplay: 'متن جهت نمایش',
|
||||
url: 'این لینک به چه آدرسی باید برود ؟',
|
||||
openInNewWindow: 'در یک پنجره ی جدید باز شود'
|
||||
},
|
||||
table: {
|
||||
table: 'جدول',
|
||||
addRowAbove: 'افزودن ردیف بالا',
|
||||
addRowBelow: 'افزودن ردیف پایین',
|
||||
addColLeft: 'افزودن ستون چپ',
|
||||
addColRight: 'افزودن ستون راست',
|
||||
delRow: 'حذف ردیف',
|
||||
delCol: 'حذف ستون',
|
||||
delTable: 'حذف جدول'
|
||||
},
|
||||
hr: {
|
||||
insert: 'افزودن خط افقی'
|
||||
},
|
||||
style: {
|
||||
style: 'استیل',
|
||||
p: 'نرمال',
|
||||
blockquote: 'نقل قول',
|
||||
pre: 'کد',
|
||||
h1: 'سرتیتر 1',
|
||||
h2: 'سرتیتر 2',
|
||||
h3: 'سرتیتر 3',
|
||||
h4: 'سرتیتر 4',
|
||||
h5: 'سرتیتر 5',
|
||||
h6: 'سرتیتر 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'لیست غیر ترتیبی',
|
||||
ordered: 'لیست ترتیبی'
|
||||
},
|
||||
options: {
|
||||
help: 'راهنما',
|
||||
fullscreen: 'نمایش تمام صفحه',
|
||||
codeview: 'مشاهده ی کد'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'پاراگراف',
|
||||
outdent: 'کاهش تو رفتگی',
|
||||
indent: 'افزایش تو رفتگی',
|
||||
left: 'چپ چین',
|
||||
center: 'میان چین',
|
||||
right: 'راست چین',
|
||||
justify: 'بلوک چین'
|
||||
},
|
||||
color: {
|
||||
recent: 'رنگ اخیرا استفاده شده',
|
||||
more: 'رنگ بیشتر',
|
||||
background: 'رنگ پس زمینه',
|
||||
foreground: 'رنگ متن',
|
||||
transparent: 'بی رنگ',
|
||||
setTransparent: 'تنظیم حالت بی رنگ',
|
||||
reset: 'بازنشاندن',
|
||||
resetToDefault: 'حالت پیش فرض'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'دکمه های میان بر',
|
||||
close: 'بستن',
|
||||
textFormatting: 'فرمت متن',
|
||||
action: 'عملیات',
|
||||
paragraphFormatting: 'فرمت پاراگراف',
|
||||
documentStyle: 'استیل سند',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'افزودن پاراگراف',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'چپ چین',
|
||||
'justifyCenter': 'وسط چین',
|
||||
'justifyRight': 'راست چین',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'واچیدن',
|
||||
redo: 'بازچیدن'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'کاراکتر خاص',
|
||||
select: 'انتخاب کاراکتر خاص'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-fa-IR.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-fa-IR.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
271
public/vendor/editor/dist/lang/summernote-fi-FI.js
vendored
Executable file
271
public/vendor/editor/dist/lang/summernote-fi-FI.js
vendored
Executable file
@@ -0,0 +1,271 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 18);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 18:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'fi-FI': {
|
||||
font: {
|
||||
bold: 'Lihavointi',
|
||||
italic: 'Kursivointi',
|
||||
underline: 'Alleviivaus',
|
||||
clear: 'Tyhjennä muotoilu',
|
||||
height: 'Riviväli',
|
||||
name: 'Kirjasintyyppi',
|
||||
strikethrough: 'Yliviivaus',
|
||||
subscript: 'Alaindeksi',
|
||||
superscript: 'Yläindeksi',
|
||||
size: 'Kirjasinkoko'
|
||||
},
|
||||
image: {
|
||||
image: 'Kuva',
|
||||
insert: 'Lisää kuva',
|
||||
resizeFull: 'Koko leveys',
|
||||
resizeHalf: 'Puolikas leveys',
|
||||
resizeQuarter: 'Neljäsosa leveys',
|
||||
floatLeft: 'Sijoita vasemmalle',
|
||||
floatRight: 'Sijoita oikealle',
|
||||
floatNone: 'Ei sijoitusta',
|
||||
shapeRounded: 'Muoto: Pyöristetty',
|
||||
shapeCircle: 'Muoto: Ympyrä',
|
||||
shapeThumbnail: 'Muoto: Esikatselukuva',
|
||||
shapeNone: 'Muoto: Ei muotoilua',
|
||||
dragImageHere: 'Vedä kuva tähän',
|
||||
selectFromFiles: 'Valitse tiedostoista',
|
||||
maximumFileSize: 'Maksimi tiedosto koko',
|
||||
maximumFileSizeError: 'Maksimi tiedosto koko ylitetty.',
|
||||
url: 'URL-osoitteen mukaan',
|
||||
remove: 'Poista kuva',
|
||||
original: 'Alkuperäinen'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Linkki videoon',
|
||||
insert: 'Lisää video',
|
||||
url: 'Videon URL-osoite',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion tai Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Linkki',
|
||||
insert: 'Lisää linkki',
|
||||
unlink: 'Poista linkki',
|
||||
edit: 'Muokkaa',
|
||||
textToDisplay: 'Näytettävä teksti',
|
||||
url: 'Linkin URL-osoite',
|
||||
openInNewWindow: 'Avaa uudessa ikkunassa'
|
||||
},
|
||||
table: {
|
||||
table: 'Taulukko',
|
||||
addRowAbove: 'Lisää rivi yläpuolelle',
|
||||
addRowBelow: 'Lisää rivi alapuolelle',
|
||||
addColLeft: 'Lisää sarake vasemmalle puolelle',
|
||||
addColRight: 'Lisää sarake oikealle puolelle',
|
||||
delRow: 'Poista rivi',
|
||||
delCol: 'Poista sarake',
|
||||
delTable: 'Poista taulukko'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Lisää vaakaviiva'
|
||||
},
|
||||
style: {
|
||||
style: 'Tyyli',
|
||||
p: 'Normaali',
|
||||
blockquote: 'Lainaus',
|
||||
pre: 'Koodi',
|
||||
h1: 'Otsikko 1',
|
||||
h2: 'Otsikko 2',
|
||||
h3: 'Otsikko 3',
|
||||
h4: 'Otsikko 4',
|
||||
h5: 'Otsikko 5',
|
||||
h6: 'Otsikko 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Luettelomerkitty luettelo',
|
||||
ordered: 'Numeroitu luettelo'
|
||||
},
|
||||
options: {
|
||||
help: 'Ohje',
|
||||
fullscreen: 'Koko näyttö',
|
||||
codeview: 'HTML-näkymä'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Kappale',
|
||||
outdent: 'Pienennä sisennystä',
|
||||
indent: 'Suurenna sisennystä',
|
||||
left: 'Tasaa vasemmalle',
|
||||
center: 'Keskitä',
|
||||
right: 'Tasaa oikealle',
|
||||
justify: 'Tasaa'
|
||||
},
|
||||
color: {
|
||||
recent: 'Viimeisin väri',
|
||||
more: 'Lisää värejä',
|
||||
background: 'Korostusväri',
|
||||
foreground: 'Tekstin väri',
|
||||
transparent: 'Läpinäkyvä',
|
||||
setTransparent: 'Aseta läpinäkyväksi',
|
||||
reset: 'Palauta',
|
||||
resetToDefault: 'Palauta oletusarvoksi'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Pikanäppäimet',
|
||||
close: 'Sulje',
|
||||
textFormatting: 'Tekstin muotoilu',
|
||||
action: 'Toiminto',
|
||||
paragraphFormatting: 'Kappaleen muotoilu',
|
||||
documentStyle: 'Asiakirjan tyyli'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Lisää kappale',
|
||||
'undo': 'Kumoa viimeisin komento',
|
||||
'redo': 'Tee uudelleen kumottu komento',
|
||||
'tab': 'Sarkain',
|
||||
'untab': 'Sarkainmerkin poisto',
|
||||
'bold': 'Lihavointi',
|
||||
'italic': 'Kursiivi',
|
||||
'underline': 'Alleviivaus',
|
||||
'strikethrough': 'Yliviivaus',
|
||||
'removeFormat': 'Poista asetetut tyylit',
|
||||
'justifyLeft': 'Tasaa vasemmalle',
|
||||
'justifyCenter': 'Keskitä',
|
||||
'justifyRight': 'Tasaa oikealle',
|
||||
'justifyFull': 'Tasaa',
|
||||
'insertUnorderedList': 'Luettelomerkillä varustettu lista',
|
||||
'insertOrderedList': 'Numeroitu lista',
|
||||
'outdent': 'Pienennä sisennystä',
|
||||
'indent': 'Suurenna sisennystä',
|
||||
'formatPara': 'Muuta kappaleen formaatti p',
|
||||
'formatH1': 'Muuta kappaleen formaatti H1',
|
||||
'formatH2': 'Muuta kappaleen formaatti H2',
|
||||
'formatH3': 'Muuta kappaleen formaatti H3',
|
||||
'formatH4': 'Muuta kappaleen formaatti H4',
|
||||
'formatH5': 'Muuta kappaleen formaatti H5',
|
||||
'formatH6': 'Muuta kappaleen formaatti H6',
|
||||
'insertHorizontalRule': 'Lisää vaakaviiva',
|
||||
'linkDialog.show': 'Lisää linkki'
|
||||
},
|
||||
history: {
|
||||
undo: 'Kumoa',
|
||||
redo: 'Toista'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'ERIKOISMERKIT',
|
||||
select: 'Valitse erikoismerkit'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-fi-FI.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-fi-FI.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-fi-FI.min.js.LICENSE.txt */
|
||||
!function(e,i){if("object"==typeof exports&&"object"==typeof module)module.exports=i();else if("function"==typeof define&&define.amd)define([],i);else{var t=i();for(var a in t)("object"==typeof exports?exports:e)[a]=t[a]}}(window,(function(){return function(e){var i={};function t(a){if(i[a])return i[a].exports;var o=i[a]={i:a,l:!1,exports:{}};return e[a].call(o.exports,o,o.exports,t),o.l=!0,o.exports}return t.m=e,t.c=i,t.d=function(e,i,a){t.o(e,i)||Object.defineProperty(e,i,{enumerable:!0,get:a})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,i){if(1&i&&(e=t(e)),8&i)return e;if(4&i&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(t.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&i&&"string"!=typeof e)for(var o in e)t.d(a,o,function(i){return e[i]}.bind(null,o));return a},t.n=function(e){var i=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(i,"a",i),i},t.o=function(e,i){return Object.prototype.hasOwnProperty.call(e,i)},t.p="",t(t.s=18)}({18:function(e,i){var t;(t=jQuery).extend(t.summernote.lang,{"fi-FI":{font:{bold:"Lihavointi",italic:"Kursivointi",underline:"Alleviivaus",clear:"Tyhjennä muotoilu",height:"Riviväli",name:"Kirjasintyyppi",strikethrough:"Yliviivaus",subscript:"Alaindeksi",superscript:"Yläindeksi",size:"Kirjasinkoko"},image:{image:"Kuva",insert:"Lisää kuva",resizeFull:"Koko leveys",resizeHalf:"Puolikas leveys",resizeQuarter:"Neljäsosa leveys",floatLeft:"Sijoita vasemmalle",floatRight:"Sijoita oikealle",floatNone:"Ei sijoitusta",shapeRounded:"Muoto: Pyöristetty",shapeCircle:"Muoto: Ympyrä",shapeThumbnail:"Muoto: Esikatselukuva",shapeNone:"Muoto: Ei muotoilua",dragImageHere:"Vedä kuva tähän",selectFromFiles:"Valitse tiedostoista",maximumFileSize:"Maksimi tiedosto koko",maximumFileSizeError:"Maksimi tiedosto koko ylitetty.",url:"URL-osoitteen mukaan",remove:"Poista kuva",original:"Alkuperäinen"},video:{video:"Video",videoLink:"Linkki videoon",insert:"Lisää video",url:"Videon URL-osoite",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion tai Youku)"},link:{link:"Linkki",insert:"Lisää linkki",unlink:"Poista linkki",edit:"Muokkaa",textToDisplay:"Näytettävä teksti",url:"Linkin URL-osoite",openInNewWindow:"Avaa uudessa ikkunassa"},table:{table:"Taulukko",addRowAbove:"Lisää rivi yläpuolelle",addRowBelow:"Lisää rivi alapuolelle",addColLeft:"Lisää sarake vasemmalle puolelle",addColRight:"Lisää sarake oikealle puolelle",delRow:"Poista rivi",delCol:"Poista sarake",delTable:"Poista taulukko"},hr:{insert:"Lisää vaakaviiva"},style:{style:"Tyyli",p:"Normaali",blockquote:"Lainaus",pre:"Koodi",h1:"Otsikko 1",h2:"Otsikko 2",h3:"Otsikko 3",h4:"Otsikko 4",h5:"Otsikko 5",h6:"Otsikko 6"},lists:{unordered:"Luettelomerkitty luettelo",ordered:"Numeroitu luettelo"},options:{help:"Ohje",fullscreen:"Koko näyttö",codeview:"HTML-näkymä"},paragraph:{paragraph:"Kappale",outdent:"Pienennä sisennystä",indent:"Suurenna sisennystä",left:"Tasaa vasemmalle",center:"Keskitä",right:"Tasaa oikealle",justify:"Tasaa"},color:{recent:"Viimeisin väri",more:"Lisää värejä",background:"Korostusväri",foreground:"Tekstin väri",transparent:"Läpinäkyvä",setTransparent:"Aseta läpinäkyväksi",reset:"Palauta",resetToDefault:"Palauta oletusarvoksi"},shortcut:{shortcuts:"Pikanäppäimet",close:"Sulje",textFormatting:"Tekstin muotoilu",action:"Toiminto",paragraphFormatting:"Kappaleen muotoilu",documentStyle:"Asiakirjan tyyli"},help:{insertParagraph:"Lisää kappale",undo:"Kumoa viimeisin komento",redo:"Tee uudelleen kumottu komento",tab:"Sarkain",untab:"Sarkainmerkin poisto",bold:"Lihavointi",italic:"Kursiivi",underline:"Alleviivaus",strikethrough:"Yliviivaus",removeFormat:"Poista asetetut tyylit",justifyLeft:"Tasaa vasemmalle",justifyCenter:"Keskitä",justifyRight:"Tasaa oikealle",justifyFull:"Tasaa",insertUnorderedList:"Luettelomerkillä varustettu lista",insertOrderedList:"Numeroitu lista",outdent:"Pienennä sisennystä",indent:"Suurenna sisennystä",formatPara:"Muuta kappaleen formaatti p",formatH1:"Muuta kappaleen formaatti H1",formatH2:"Muuta kappaleen formaatti H2",formatH3:"Muuta kappaleen formaatti H3",formatH4:"Muuta kappaleen formaatti H4",formatH5:"Muuta kappaleen formaatti H5",formatH6:"Muuta kappaleen formaatti H6",insertHorizontalRule:"Lisää vaakaviiva","linkDialog.show":"Lisää linkki"},history:{undo:"Kumoa",redo:"Toista"},specialChar:{specialChar:"ERIKOISMERKIT",select:"Valitse erikoismerkit"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-fr-FR.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-fr-FR.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 19);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 19:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'fr-FR': {
|
||||
font: {
|
||||
bold: 'Gras',
|
||||
italic: 'Italique',
|
||||
underline: 'Souligné',
|
||||
clear: 'Effacer la mise en forme',
|
||||
height: 'Interligne',
|
||||
name: 'Famille de police',
|
||||
strikethrough: 'Barré',
|
||||
superscript: 'Exposant',
|
||||
subscript: 'Indice',
|
||||
size: 'Taille de police'
|
||||
},
|
||||
image: {
|
||||
image: 'Image',
|
||||
insert: 'Insérer une image',
|
||||
resizeFull: 'Taille originale',
|
||||
resizeHalf: 'Redimensionner à 50 %',
|
||||
resizeQuarter: 'Redimensionner à 25 %',
|
||||
floatLeft: 'Aligné à gauche',
|
||||
floatRight: 'Aligné à droite',
|
||||
floatNone: 'Pas d\'alignement',
|
||||
shapeRounded: 'Forme: Rectangle arrondi',
|
||||
shapeCircle: 'Forme: Cercle',
|
||||
shapeThumbnail: 'Forme: Vignette',
|
||||
shapeNone: 'Forme: Aucune',
|
||||
dragImageHere: 'Faites glisser une image ou un texte dans ce cadre',
|
||||
dropImage: 'Lachez l\'image ou le texte',
|
||||
selectFromFiles: 'Choisir un fichier',
|
||||
maximumFileSize: 'Taille de fichier maximale',
|
||||
maximumFileSizeError: 'Taille maximale du fichier dépassée',
|
||||
url: 'URL de l\'image',
|
||||
remove: 'Supprimer l\'image',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Vidéo',
|
||||
videoLink: 'Lien vidéo',
|
||||
insert: 'Insérer une vidéo',
|
||||
url: 'URL de la vidéo',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ou Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Lien',
|
||||
insert: 'Insérer un lien',
|
||||
unlink: 'Supprimer un lien',
|
||||
edit: 'Modifier',
|
||||
textToDisplay: 'Texte à afficher',
|
||||
url: 'URL du lien',
|
||||
openInNewWindow: 'Ouvrir dans une nouvelle fenêtre'
|
||||
},
|
||||
table: {
|
||||
table: 'Tableau',
|
||||
addRowAbove: 'Ajouter une ligne au-dessus',
|
||||
addRowBelow: 'Ajouter une ligne en dessous',
|
||||
addColLeft: 'Ajouter une colonne à gauche',
|
||||
addColRight: 'Ajouter une colonne à droite',
|
||||
delRow: 'Supprimer la ligne',
|
||||
delCol: 'Supprimer la colonne',
|
||||
delTable: 'Supprimer le tableau'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Insérer une ligne horizontale'
|
||||
},
|
||||
style: {
|
||||
style: 'Style',
|
||||
p: 'Normal',
|
||||
blockquote: 'Citation',
|
||||
pre: 'Code source',
|
||||
h1: 'Titre 1',
|
||||
h2: 'Titre 2',
|
||||
h3: 'Titre 3',
|
||||
h4: 'Titre 4',
|
||||
h5: 'Titre 5',
|
||||
h6: 'Titre 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Liste à puces',
|
||||
ordered: 'Liste numérotée'
|
||||
},
|
||||
options: {
|
||||
help: 'Aide',
|
||||
fullscreen: 'Plein écran',
|
||||
codeview: 'Afficher le code HTML'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraphe',
|
||||
outdent: 'Diminuer le retrait',
|
||||
indent: 'Augmenter le retrait',
|
||||
left: 'Aligner à gauche',
|
||||
center: 'Centrer',
|
||||
right: 'Aligner à droite',
|
||||
justify: 'Justifier'
|
||||
},
|
||||
color: {
|
||||
recent: 'Dernière couleur sélectionnée',
|
||||
more: 'Plus de couleurs',
|
||||
background: 'Couleur de fond',
|
||||
foreground: 'Couleur de police',
|
||||
transparent: 'Transparent',
|
||||
setTransparent: 'Définir la transparence',
|
||||
reset: 'Restaurer',
|
||||
resetToDefault: 'Restaurer la couleur par défaut'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Raccourcis',
|
||||
close: 'Fermer',
|
||||
textFormatting: 'Mise en forme du texte',
|
||||
action: 'Action',
|
||||
paragraphFormatting: 'Mise en forme des paragraphes',
|
||||
documentStyle: 'Style du document',
|
||||
extraKeys: 'Touches supplémentaires'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insérer paragraphe',
|
||||
'undo': 'Défaire la dernière commande',
|
||||
'redo': 'Refaire la dernière commande',
|
||||
'tab': 'Tabulation',
|
||||
'untab': 'Tabulation arrière',
|
||||
'bold': 'Mettre en caractère gras',
|
||||
'italic': 'Mettre en italique',
|
||||
'underline': 'Mettre en souligné',
|
||||
'strikethrough': 'Mettre en texte barré',
|
||||
'removeFormat': 'Nettoyer les styles',
|
||||
'justifyLeft': 'Aligner à gauche',
|
||||
'justifyCenter': 'Centrer',
|
||||
'justifyRight': 'Aligner à droite',
|
||||
'justifyFull': 'Justifier à gauche et à droite',
|
||||
'insertUnorderedList': 'Basculer liste à puces',
|
||||
'insertOrderedList': 'Basculer liste ordonnée',
|
||||
'outdent': 'Diminuer le retrait du paragraphe',
|
||||
'indent': 'Augmenter le retrait du paragraphe',
|
||||
'formatPara': 'Changer le paragraphe en cours en normal (P)',
|
||||
'formatH1': 'Changer le paragraphe en cours en entête H1',
|
||||
'formatH2': 'Changer le paragraphe en cours en entête H2',
|
||||
'formatH3': 'Changer le paragraphe en cours en entête H3',
|
||||
'formatH4': 'Changer le paragraphe en cours en entête H4',
|
||||
'formatH5': 'Changer le paragraphe en cours en entête H5',
|
||||
'formatH6': 'Changer le paragraphe en cours en entête H6',
|
||||
'insertHorizontalRule': 'Insérer séparation horizontale',
|
||||
'linkDialog.show': 'Afficher fenêtre d\'hyperlien'
|
||||
},
|
||||
history: {
|
||||
undo: 'Annuler la dernière action',
|
||||
redo: 'Restaurer la dernière action annulée'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'Caractères spéciaux',
|
||||
select: 'Choisir des caractères spéciaux'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-fr-FR.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-fr-FR.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
273
public/vendor/editor/dist/lang/summernote-gl-ES.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-gl-ES.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 20);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 20:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'gl-ES': {
|
||||
font: {
|
||||
bold: 'Negrita',
|
||||
italic: 'Cursiva',
|
||||
underline: 'Subliñado',
|
||||
clear: 'Quitar estilo de fonte',
|
||||
height: 'Altura de liña',
|
||||
name: 'Fonte',
|
||||
strikethrough: 'Riscado',
|
||||
superscript: 'Superíndice',
|
||||
subscript: 'Subíndice',
|
||||
size: 'Tamaño da fonte'
|
||||
},
|
||||
image: {
|
||||
image: 'Imaxe',
|
||||
insert: 'Inserir imaxe',
|
||||
resizeFull: 'Redimensionar a tamaño completo',
|
||||
resizeHalf: 'Redimensionar á metade',
|
||||
resizeQuarter: 'Redimensionar a un cuarto',
|
||||
floatLeft: 'Flotar á esquerda',
|
||||
floatRight: 'Flotar á dereita',
|
||||
floatNone: 'Non flotar',
|
||||
shapeRounded: 'Forma: Redondeado',
|
||||
shapeCircle: 'Forma: Círculo',
|
||||
shapeThumbnail: 'Forma: Marco',
|
||||
shapeNone: 'Forma: Ningunha',
|
||||
dragImageHere: 'Arrastrar unha imaxe ou texto aquí',
|
||||
dropImage: 'Solta a imaxe ou texto',
|
||||
selectFromFiles: 'Seleccionar desde os arquivos',
|
||||
maximumFileSize: 'Tamaño máximo do arquivo',
|
||||
maximumFileSizeError: 'Superaches o tamaño máximo do arquivo.',
|
||||
url: 'URL da imaxe',
|
||||
remove: 'Eliminar imaxe',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Vídeo',
|
||||
videoLink: 'Ligazón do vídeo',
|
||||
insert: 'Insertar vídeo',
|
||||
url: 'URL do vídeo?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion, o Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Ligazón',
|
||||
insert: 'Inserir Ligazón',
|
||||
unlink: 'Quitar Ligazón',
|
||||
edit: 'Editar',
|
||||
textToDisplay: 'Texto para amosar',
|
||||
url: 'Cara a que URL leva a ligazón?',
|
||||
openInNewWindow: 'Abrir nunha nova xanela'
|
||||
},
|
||||
table: {
|
||||
table: 'Táboa',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Inserir liña horizontal'
|
||||
},
|
||||
style: {
|
||||
style: 'Estilo',
|
||||
p: 'Normal',
|
||||
blockquote: 'Cita',
|
||||
pre: 'Código',
|
||||
h1: 'Título 1',
|
||||
h2: 'Título 2',
|
||||
h3: 'Título 3',
|
||||
h4: 'Título 4',
|
||||
h5: 'Título 5',
|
||||
h6: 'Título 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Lista desordenada',
|
||||
ordered: 'Lista ordenada'
|
||||
},
|
||||
options: {
|
||||
help: 'Axuda',
|
||||
fullscreen: 'Pantalla completa',
|
||||
codeview: 'Ver código fonte'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Parágrafo',
|
||||
outdent: 'Menos tabulación',
|
||||
indent: 'Máis tabulación',
|
||||
left: 'Aliñar á esquerda',
|
||||
center: 'Aliñar ao centro',
|
||||
right: 'Aliñar á dereita',
|
||||
justify: 'Xustificar'
|
||||
},
|
||||
color: {
|
||||
recent: 'Última cor',
|
||||
more: 'Máis cores',
|
||||
background: 'Cor de fondo',
|
||||
foreground: 'Cor de fuente',
|
||||
transparent: 'Transparente',
|
||||
setTransparent: 'Establecer transparente',
|
||||
reset: 'Restaurar',
|
||||
resetToDefault: 'Restaurar por defecto'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Atallos de teclado',
|
||||
close: 'Pechar',
|
||||
textFormatting: 'Formato de texto',
|
||||
action: 'Acción',
|
||||
paragraphFormatting: 'Formato de parágrafo',
|
||||
documentStyle: 'Estilo de documento',
|
||||
extraKeys: 'Teclas adicionais'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Inserir parágrafo',
|
||||
'undo': 'Desfacer última acción',
|
||||
'redo': 'Refacer última acción',
|
||||
'tab': 'Tabular',
|
||||
'untab': 'Eliminar tabulación',
|
||||
'bold': 'Establecer estilo negrita',
|
||||
'italic': 'Establecer estilo cursiva',
|
||||
'underline': 'Establecer estilo subliñado',
|
||||
'strikethrough': 'Establecer estilo riscado',
|
||||
'removeFormat': 'Limpar estilo',
|
||||
'justifyLeft': 'Aliñar á esquerda',
|
||||
'justifyCenter': 'Aliñar ao centro',
|
||||
'justifyRight': 'Aliñar á dereita',
|
||||
'justifyFull': 'Xustificar',
|
||||
'insertUnorderedList': 'Inserir lista desordenada',
|
||||
'insertOrderedList': 'Inserir lista ordenada',
|
||||
'outdent': 'Reducir tabulación do parágrafo',
|
||||
'indent': 'Aumentar tabulación do parágrafo',
|
||||
'formatPara': 'Mudar estilo do bloque a parágrafo (etiqueta P)',
|
||||
'formatH1': 'Mudar estilo do bloque a H1',
|
||||
'formatH2': 'Mudar estilo do bloque a H2',
|
||||
'formatH3': 'Mudar estilo do bloque a H3',
|
||||
'formatH4': 'Mudar estilo do bloque a H4',
|
||||
'formatH5': 'Mudar estilo do bloque a H5',
|
||||
'formatH6': 'Mudar estilo do bloque a H6',
|
||||
'insertHorizontalRule': 'Inserir liña horizontal',
|
||||
'linkDialog.show': 'Amosar panel ligazóns'
|
||||
},
|
||||
history: {
|
||||
undo: 'Desfacer',
|
||||
redo: 'Refacer'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'CARACTERES ESPECIAIS',
|
||||
select: 'Selecciona Caracteres especiais'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-gl-ES.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-gl-ES.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-gl-ES.min.js.LICENSE.txt */
|
||||
!function(e,a){if("object"==typeof exports&&"object"==typeof module)module.exports=a();else if("function"==typeof define&&define.amd)define([],a);else{var r=a();for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(window,(function(){return function(e){var a={};function r(o){if(a[o])return a[o].exports;var t=a[o]={i:o,l:!1,exports:{}};return e[o].call(t.exports,t,t.exports,r),t.l=!0,t.exports}return r.m=e,r.c=a,r.d=function(e,a,o){r.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:o})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,a){if(1&a&&(e=r(e)),8&a)return e;if(4&a&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(r.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&a&&"string"!=typeof e)for(var t in e)r.d(o,t,function(a){return e[a]}.bind(null,t));return o},r.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(a,"a",a),a},r.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},r.p="",r(r.s=20)}({20:function(e,a){var r;(r=jQuery).extend(r.summernote.lang,{"gl-ES":{font:{bold:"Negrita",italic:"Cursiva",underline:"Subliñado",clear:"Quitar estilo de fonte",height:"Altura de liña",name:"Fonte",strikethrough:"Riscado",superscript:"Superíndice",subscript:"Subíndice",size:"Tamaño da fonte"},image:{image:"Imaxe",insert:"Inserir imaxe",resizeFull:"Redimensionar a tamaño completo",resizeHalf:"Redimensionar á metade",resizeQuarter:"Redimensionar a un cuarto",floatLeft:"Flotar á esquerda",floatRight:"Flotar á dereita",floatNone:"Non flotar",shapeRounded:"Forma: Redondeado",shapeCircle:"Forma: Círculo",shapeThumbnail:"Forma: Marco",shapeNone:"Forma: Ningunha",dragImageHere:"Arrastrar unha imaxe ou texto aquí",dropImage:"Solta a imaxe ou texto",selectFromFiles:"Seleccionar desde os arquivos",maximumFileSize:"Tamaño máximo do arquivo",maximumFileSizeError:"Superaches o tamaño máximo do arquivo.",url:"URL da imaxe",remove:"Eliminar imaxe",original:"Original"},video:{video:"Vídeo",videoLink:"Ligazón do vídeo",insert:"Insertar vídeo",url:"URL do vídeo?",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion, o Youku)"},link:{link:"Ligazón",insert:"Inserir Ligazón",unlink:"Quitar Ligazón",edit:"Editar",textToDisplay:"Texto para amosar",url:"Cara a que URL leva a ligazón?",openInNewWindow:"Abrir nunha nova xanela"},table:{table:"Táboa",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Inserir liña horizontal"},style:{style:"Estilo",p:"Normal",blockquote:"Cita",pre:"Código",h1:"Título 1",h2:"Título 2",h3:"Título 3",h4:"Título 4",h5:"Título 5",h6:"Título 6"},lists:{unordered:"Lista desordenada",ordered:"Lista ordenada"},options:{help:"Axuda",fullscreen:"Pantalla completa",codeview:"Ver código fonte"},paragraph:{paragraph:"Parágrafo",outdent:"Menos tabulación",indent:"Máis tabulación",left:"Aliñar á esquerda",center:"Aliñar ao centro",right:"Aliñar á dereita",justify:"Xustificar"},color:{recent:"Última cor",more:"Máis cores",background:"Cor de fondo",foreground:"Cor de fuente",transparent:"Transparente",setTransparent:"Establecer transparente",reset:"Restaurar",resetToDefault:"Restaurar por defecto"},shortcut:{shortcuts:"Atallos de teclado",close:"Pechar",textFormatting:"Formato de texto",action:"Acción",paragraphFormatting:"Formato de parágrafo",documentStyle:"Estilo de documento",extraKeys:"Teclas adicionais"},help:{insertParagraph:"Inserir parágrafo",undo:"Desfacer última acción",redo:"Refacer última acción",tab:"Tabular",untab:"Eliminar tabulación",bold:"Establecer estilo negrita",italic:"Establecer estilo cursiva",underline:"Establecer estilo subliñado",strikethrough:"Establecer estilo riscado",removeFormat:"Limpar estilo",justifyLeft:"Aliñar á esquerda",justifyCenter:"Aliñar ao centro",justifyRight:"Aliñar á dereita",justifyFull:"Xustificar",insertUnorderedList:"Inserir lista desordenada",insertOrderedList:"Inserir lista ordenada",outdent:"Reducir tabulación do parágrafo",indent:"Aumentar tabulación do parágrafo",formatPara:"Mudar estilo do bloque a parágrafo (etiqueta P)",formatH1:"Mudar estilo do bloque a H1",formatH2:"Mudar estilo do bloque a H2",formatH3:"Mudar estilo do bloque a H3",formatH4:"Mudar estilo do bloque a H4",formatH5:"Mudar estilo do bloque a H5",formatH6:"Mudar estilo do bloque a H6",insertHorizontalRule:"Inserir liña horizontal","linkDialog.show":"Amosar panel ligazóns"},history:{undo:"Desfacer",redo:"Refacer"},specialChar:{specialChar:"CARACTERES ESPECIAIS",select:"Selecciona Caracteres especiais"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-he-IL.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-he-IL.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 21);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 21:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'he-IL': {
|
||||
font: {
|
||||
bold: 'מודגש',
|
||||
italic: 'נטוי',
|
||||
underline: 'קו תחתון',
|
||||
clear: 'נקה עיצוב',
|
||||
height: 'גובה',
|
||||
name: 'גופן',
|
||||
strikethrough: 'קו חוצה',
|
||||
subscript: 'כתב תחתי',
|
||||
superscript: 'כתב עילי',
|
||||
size: 'גודל גופן'
|
||||
},
|
||||
image: {
|
||||
image: 'תמונה',
|
||||
insert: 'הוסף תמונה',
|
||||
resizeFull: 'גודל מלא',
|
||||
resizeHalf: 'להקטין לחצי',
|
||||
resizeQuarter: 'להקטין לרבע',
|
||||
floatLeft: 'יישור לשמאל',
|
||||
floatRight: 'יישור לימין',
|
||||
floatNone: 'ישר',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'גרור תמונה לכאן',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'בחר מתוך קבצים',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'נתיב לתמונה',
|
||||
remove: 'הסר תמונה',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'סרטון',
|
||||
videoLink: 'קישור לסרטון',
|
||||
insert: 'הוסף סרטון',
|
||||
url: 'קישור לסרטון',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion או Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'קישור',
|
||||
insert: 'הוסף קישור',
|
||||
unlink: 'הסר קישור',
|
||||
edit: 'ערוך',
|
||||
textToDisplay: 'טקסט להציג',
|
||||
url: 'קישור',
|
||||
openInNewWindow: 'פתח בחלון חדש'
|
||||
},
|
||||
table: {
|
||||
table: 'טבלה',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'הוסף קו'
|
||||
},
|
||||
style: {
|
||||
style: 'עיצוב',
|
||||
p: 'טקסט רגיל',
|
||||
blockquote: 'ציטוט',
|
||||
pre: 'קוד',
|
||||
h1: 'כותרת 1',
|
||||
h2: 'כותרת 2',
|
||||
h3: 'כותרת 3',
|
||||
h4: 'כותרת 4',
|
||||
h5: 'כותרת 5',
|
||||
h6: 'כותרת 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'רשימת תבליטים',
|
||||
ordered: 'רשימה ממוספרת'
|
||||
},
|
||||
options: {
|
||||
help: 'עזרה',
|
||||
fullscreen: 'מסך מלא',
|
||||
codeview: 'תצוגת קוד'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'פסקה',
|
||||
outdent: 'הקטן כניסה',
|
||||
indent: 'הגדל כניסה',
|
||||
left: 'יישור לשמאל',
|
||||
center: 'יישור למרכז',
|
||||
right: 'יישור לימין',
|
||||
justify: 'מיושר'
|
||||
},
|
||||
color: {
|
||||
recent: 'צבע טקסט אחרון',
|
||||
more: 'עוד צבעים',
|
||||
background: 'צבע רקע',
|
||||
foreground: 'צבע טקסט',
|
||||
transparent: 'שקוף',
|
||||
setTransparent: 'קבע כשקוף',
|
||||
reset: 'איפוס',
|
||||
resetToDefault: 'אפס לברירת מחדל'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'קיצורי מקלדת',
|
||||
close: 'סגור',
|
||||
textFormatting: 'עיצוב הטקסט',
|
||||
action: 'פעולה',
|
||||
paragraphFormatting: 'סגנונות פסקה',
|
||||
documentStyle: 'עיצוב המסמך',
|
||||
extraKeys: 'קיצורים נוספים'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'בטל פעולה',
|
||||
redo: 'בצע שוב'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-he-IL.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-he-IL.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-he-IL.min.js.LICENSE.txt */
|
||||
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var r=t();for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(window,(function(){return function(e){var t={};function r(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,r),n.l=!0,n.exports}return r.m=e,r.c=t,r.d=function(e,t,o){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(r.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)r.d(o,n,function(t){return e[t]}.bind(null,n));return o},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=21)}({21:function(e,t){var r;(r=jQuery).extend(r.summernote.lang,{"he-IL":{font:{bold:"מודגש",italic:"נטוי",underline:"קו תחתון",clear:"נקה עיצוב",height:"גובה",name:"גופן",strikethrough:"קו חוצה",subscript:"כתב תחתי",superscript:"כתב עילי",size:"גודל גופן"},image:{image:"תמונה",insert:"הוסף תמונה",resizeFull:"גודל מלא",resizeHalf:"להקטין לחצי",resizeQuarter:"להקטין לרבע",floatLeft:"יישור לשמאל",floatRight:"יישור לימין",floatNone:"ישר",shapeRounded:"Shape: Rounded",shapeCircle:"Shape: Circle",shapeThumbnail:"Shape: Thumbnail",shapeNone:"Shape: None",dragImageHere:"גרור תמונה לכאן",dropImage:"Drop image or Text",selectFromFiles:"בחר מתוך קבצים",maximumFileSize:"Maximum file size",maximumFileSizeError:"Maximum file size exceeded.",url:"נתיב לתמונה",remove:"הסר תמונה",original:"Original"},video:{video:"סרטון",videoLink:"קישור לסרטון",insert:"הוסף סרטון",url:"קישור לסרטון",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion או Youku)"},link:{link:"קישור",insert:"הוסף קישור",unlink:"הסר קישור",edit:"ערוך",textToDisplay:"טקסט להציג",url:"קישור",openInNewWindow:"פתח בחלון חדש"},table:{table:"טבלה",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"הוסף קו"},style:{style:"עיצוב",p:"טקסט רגיל",blockquote:"ציטוט",pre:"קוד",h1:"כותרת 1",h2:"כותרת 2",h3:"כותרת 3",h4:"כותרת 4",h5:"כותרת 5",h6:"כותרת 6"},lists:{unordered:"רשימת תבליטים",ordered:"רשימה ממוספרת"},options:{help:"עזרה",fullscreen:"מסך מלא",codeview:"תצוגת קוד"},paragraph:{paragraph:"פסקה",outdent:"הקטן כניסה",indent:"הגדל כניסה",left:"יישור לשמאל",center:"יישור למרכז",right:"יישור לימין",justify:"מיושר"},color:{recent:"צבע טקסט אחרון",more:"עוד צבעים",background:"צבע רקע",foreground:"צבע טקסט",transparent:"שקוף",setTransparent:"קבע כשקוף",reset:"איפוס",resetToDefault:"אפס לברירת מחדל"},shortcut:{shortcuts:"קיצורי מקלדת",close:"סגור",textFormatting:"עיצוב הטקסט",action:"פעולה",paragraphFormatting:"סגנונות פסקה",documentStyle:"עיצוב המסמך",extraKeys:"קיצורים נוספים"},help:{insertParagraph:"Insert Paragraph",undo:"Undoes the last command",redo:"Redoes the last command",tab:"Tab",untab:"Untab",bold:"Set a bold style",italic:"Set a italic style",underline:"Set a underline style",strikethrough:"Set a strikethrough style",removeFormat:"Clean a style",justifyLeft:"Set left align",justifyCenter:"Set center align",justifyRight:"Set right align",justifyFull:"Set full align",insertUnorderedList:"Toggle unordered list",insertOrderedList:"Toggle ordered list",outdent:"Outdent on current paragraph",indent:"Indent on current paragraph",formatPara:"Change current block's format as a paragraph(P tag)",formatH1:"Change current block's format as H1",formatH2:"Change current block's format as H2",formatH3:"Change current block's format as H3",formatH4:"Change current block's format as H4",formatH5:"Change current block's format as H5",formatH6:"Change current block's format as H6",insertHorizontalRule:"Insert horizontal rule","linkDialog.show":"Show Link Dialog"},history:{undo:"בטל פעולה",redo:"בצע שוב"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-hr-HR.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-hr-HR.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 22);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 22:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'hr-HR': {
|
||||
font: {
|
||||
bold: 'Podebljano',
|
||||
italic: 'Kurziv',
|
||||
underline: 'Podvučeno',
|
||||
clear: 'Ukloni stilove fonta',
|
||||
height: 'Visina linije',
|
||||
name: 'Font Family',
|
||||
strikethrough: 'Precrtano',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Veličina fonta'
|
||||
},
|
||||
image: {
|
||||
image: 'Slika',
|
||||
insert: 'Ubaci sliku',
|
||||
resizeFull: 'Puna veličina',
|
||||
resizeHalf: 'Umanji na 50%',
|
||||
resizeQuarter: 'Umanji na 25%',
|
||||
floatLeft: 'Poravnaj lijevo',
|
||||
floatRight: 'Poravnaj desno',
|
||||
floatNone: 'Bez poravnanja',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Povuci sliku ovdje',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Izaberi iz datoteke',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Adresa slike',
|
||||
remove: 'Ukloni sliku',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Veza na video',
|
||||
insert: 'Ubaci video',
|
||||
url: 'URL video',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ili Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Veza',
|
||||
insert: 'Ubaci vezu',
|
||||
unlink: 'Ukloni vezu',
|
||||
edit: 'Uredi',
|
||||
textToDisplay: 'Tekst za prikaz',
|
||||
url: 'Internet adresa',
|
||||
openInNewWindow: 'Otvori u novom prozoru'
|
||||
},
|
||||
table: {
|
||||
table: 'Tablica',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Ubaci horizontalnu liniju'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
p: 'pni',
|
||||
blockquote: 'Citat',
|
||||
pre: 'Kôd',
|
||||
h1: 'Naslov 1',
|
||||
h2: 'Naslov 2',
|
||||
h3: 'Naslov 3',
|
||||
h4: 'Naslov 4',
|
||||
h5: 'Naslov 5',
|
||||
h6: 'Naslov 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Obična lista',
|
||||
ordered: 'Numerirana lista'
|
||||
},
|
||||
options: {
|
||||
help: 'Pomoć',
|
||||
fullscreen: 'Preko cijelog ekrana',
|
||||
codeview: 'Izvorni kôd'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraf',
|
||||
outdent: 'Smanji uvlačenje',
|
||||
indent: 'Povećaj uvlačenje',
|
||||
left: 'Poravnaj lijevo',
|
||||
center: 'Centrirano',
|
||||
right: 'Poravnaj desno',
|
||||
justify: 'Poravnaj obostrano'
|
||||
},
|
||||
color: {
|
||||
recent: 'Posljednja boja',
|
||||
more: 'Više boja',
|
||||
background: 'Boja pozadine',
|
||||
foreground: 'Boja teksta',
|
||||
transparent: 'Prozirna',
|
||||
setTransparent: 'Prozirna',
|
||||
reset: 'Poništi',
|
||||
resetToDefault: 'Podrazumijevana'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Prečice s tipkovnice',
|
||||
close: 'Zatvori',
|
||||
textFormatting: 'Formatiranje teksta',
|
||||
action: 'Akcija',
|
||||
paragraphFormatting: 'Formatiranje paragrafa',
|
||||
documentStyle: 'Stil dokumenta',
|
||||
extraKeys: 'Dodatne kombinacije'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Poništi',
|
||||
redo: 'Ponovi'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-hr-HR.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-hr-HR.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-hr-HR.min.js.LICENSE.txt */
|
||||
!function(e,r){if("object"==typeof exports&&"object"==typeof module)module.exports=r();else if("function"==typeof define&&define.amd)define([],r);else{var a=r();for(var t in a)("object"==typeof exports?exports:e)[t]=a[t]}}(window,(function(){return function(e){var r={};function a(t){if(r[t])return r[t].exports;var o=r[t]={i:t,l:!1,exports:{}};return e[t].call(o.exports,o,o.exports,a),o.l=!0,o.exports}return a.m=e,a.c=r,a.d=function(e,r,t){a.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,r){if(1&r&&(e=a(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(a.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var o in e)a.d(t,o,function(r){return e[r]}.bind(null,o));return t},a.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(r,"a",r),r},a.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},a.p="",a(a.s=22)}({22:function(e,r){var a;(a=jQuery).extend(a.summernote.lang,{"hr-HR":{font:{bold:"Podebljano",italic:"Kurziv",underline:"Podvučeno",clear:"Ukloni stilove fonta",height:"Visina linije",name:"Font Family",strikethrough:"Precrtano",subscript:"Subscript",superscript:"Superscript",size:"Veličina fonta"},image:{image:"Slika",insert:"Ubaci sliku",resizeFull:"Puna veličina",resizeHalf:"Umanji na 50%",resizeQuarter:"Umanji na 25%",floatLeft:"Poravnaj lijevo",floatRight:"Poravnaj desno",floatNone:"Bez poravnanja",shapeRounded:"Shape: Rounded",shapeCircle:"Shape: Circle",shapeThumbnail:"Shape: Thumbnail",shapeNone:"Shape: None",dragImageHere:"Povuci sliku ovdje",dropImage:"Drop image or Text",selectFromFiles:"Izaberi iz datoteke",maximumFileSize:"Maximum file size",maximumFileSizeError:"Maximum file size exceeded.",url:"Adresa slike",remove:"Ukloni sliku",original:"Original"},video:{video:"Video",videoLink:"Veza na video",insert:"Ubaci video",url:"URL video",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion ili Youku)"},link:{link:"Veza",insert:"Ubaci vezu",unlink:"Ukloni vezu",edit:"Uredi",textToDisplay:"Tekst za prikaz",url:"Internet adresa",openInNewWindow:"Otvori u novom prozoru"},table:{table:"Tablica",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Ubaci horizontalnu liniju"},style:{style:"Stil",p:"pni",blockquote:"Citat",pre:"Kôd",h1:"Naslov 1",h2:"Naslov 2",h3:"Naslov 3",h4:"Naslov 4",h5:"Naslov 5",h6:"Naslov 6"},lists:{unordered:"Obična lista",ordered:"Numerirana lista"},options:{help:"Pomoć",fullscreen:"Preko cijelog ekrana",codeview:"Izvorni kôd"},paragraph:{paragraph:"Paragraf",outdent:"Smanji uvlačenje",indent:"Povećaj uvlačenje",left:"Poravnaj lijevo",center:"Centrirano",right:"Poravnaj desno",justify:"Poravnaj obostrano"},color:{recent:"Posljednja boja",more:"Više boja",background:"Boja pozadine",foreground:"Boja teksta",transparent:"Prozirna",setTransparent:"Prozirna",reset:"Poništi",resetToDefault:"Podrazumijevana"},shortcut:{shortcuts:"Prečice s tipkovnice",close:"Zatvori",textFormatting:"Formatiranje teksta",action:"Akcija",paragraphFormatting:"Formatiranje paragrafa",documentStyle:"Stil dokumenta",extraKeys:"Dodatne kombinacije"},help:{insertParagraph:"Insert Paragraph",undo:"Undoes the last command",redo:"Redoes the last command",tab:"Tab",untab:"Untab",bold:"Set a bold style",italic:"Set a italic style",underline:"Set a underline style",strikethrough:"Set a strikethrough style",removeFormat:"Clean a style",justifyLeft:"Set left align",justifyCenter:"Set center align",justifyRight:"Set right align",justifyFull:"Set full align",insertUnorderedList:"Toggle unordered list",insertOrderedList:"Toggle ordered list",outdent:"Outdent on current paragraph",indent:"Indent on current paragraph",formatPara:"Change current block's format as a paragraph(P tag)",formatH1:"Change current block's format as H1",formatH2:"Change current block's format as H2",formatH3:"Change current block's format as H3",formatH4:"Change current block's format as H4",formatH5:"Change current block's format as H5",formatH6:"Change current block's format as H6",insertHorizontalRule:"Insert horizontal rule","linkDialog.show":"Show Link Dialog"},history:{undo:"Poništi",redo:"Ponovi"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-hu-HU.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-hu-HU.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 23);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 23:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'hu-HU': {
|
||||
font: {
|
||||
bold: 'Félkövér',
|
||||
italic: 'Dőlt',
|
||||
underline: 'Aláhúzott',
|
||||
clear: 'Formázás törlése',
|
||||
height: 'Sorköz',
|
||||
name: 'Betűtípus',
|
||||
strikethrough: 'Áthúzott',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Betűméret'
|
||||
},
|
||||
image: {
|
||||
image: 'Kép',
|
||||
insert: 'Kép beszúrása',
|
||||
resizeFull: 'Átméretezés teljes méretre',
|
||||
resizeHalf: 'Átméretezés felére',
|
||||
resizeQuarter: 'Átméretezés negyedére',
|
||||
floatLeft: 'Igazítás balra',
|
||||
floatRight: 'Igazítás jobbra',
|
||||
floatNone: 'Igazítás törlése',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Ide húzhat képet vagy szöveget',
|
||||
dropImage: 'Engedje el a képet vagy szöveget',
|
||||
selectFromFiles: 'Fájlok kiválasztása',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Kép URL címe',
|
||||
remove: 'Kép törlése',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Videó',
|
||||
videoLink: 'Videó hivatkozás',
|
||||
insert: 'Videó beszúrása',
|
||||
url: 'Videó URL címe',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion vagy Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Hivatkozás',
|
||||
insert: 'Hivatkozás beszúrása',
|
||||
unlink: 'Hivatkozás megszüntetése',
|
||||
edit: 'Szerkesztés',
|
||||
textToDisplay: 'Megjelenítendő szöveg',
|
||||
url: 'Milyen URL címre hivatkozzon?',
|
||||
openInNewWindow: 'Megnyitás új ablakban'
|
||||
},
|
||||
table: {
|
||||
table: 'Táblázat',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Elválasztó vonal beszúrása'
|
||||
},
|
||||
style: {
|
||||
style: 'Stílus',
|
||||
p: 'Normál',
|
||||
blockquote: 'Idézet',
|
||||
pre: 'Kód',
|
||||
h1: 'Fejléc 1',
|
||||
h2: 'Fejléc 2',
|
||||
h3: 'Fejléc 3',
|
||||
h4: 'Fejléc 4',
|
||||
h5: 'Fejléc 5',
|
||||
h6: 'Fejléc 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Listajeles lista',
|
||||
ordered: 'Számozott lista'
|
||||
},
|
||||
options: {
|
||||
help: 'Súgó',
|
||||
fullscreen: 'Teljes képernyő',
|
||||
codeview: 'Kód nézet'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Bekezdés',
|
||||
outdent: 'Behúzás csökkentése',
|
||||
indent: 'Behúzás növelése',
|
||||
left: 'Igazítás balra',
|
||||
center: 'Igazítás középre',
|
||||
right: 'Igazítás jobbra',
|
||||
justify: 'Sorkizárt'
|
||||
},
|
||||
color: {
|
||||
recent: 'Jelenlegi szín',
|
||||
more: 'További színek',
|
||||
background: 'Háttérszín',
|
||||
foreground: 'Betűszín',
|
||||
transparent: 'Átlátszó',
|
||||
setTransparent: 'Átlászóság beállítása',
|
||||
reset: 'Visszaállítás',
|
||||
resetToDefault: 'Alaphelyzetbe állítás'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Gyorsbillentyű',
|
||||
close: 'Bezárás',
|
||||
textFormatting: 'Szöveg formázása',
|
||||
action: 'Művelet',
|
||||
paragraphFormatting: 'Bekezdés formázása',
|
||||
documentStyle: 'Dokumentumstílus',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Új bekezdés',
|
||||
'undo': 'Visszavonás',
|
||||
'redo': 'Újra',
|
||||
'tab': 'Behúzás növelése',
|
||||
'untab': 'Behúzás csökkentése',
|
||||
'bold': 'Félkövérre állítás',
|
||||
'italic': 'Dőltre állítás',
|
||||
'underline': 'Aláhúzás',
|
||||
'strikethrough': 'Áthúzás',
|
||||
'removeFormat': 'Formázás törlése',
|
||||
'justifyLeft': 'Balra igazítás',
|
||||
'justifyCenter': 'Középre igazítás',
|
||||
'justifyRight': 'Jobbra igazítás',
|
||||
'justifyFull': 'Sorkizárt',
|
||||
'insertUnorderedList': 'Számozatlan lista be/ki',
|
||||
'insertOrderedList': 'Számozott lista be/ki',
|
||||
'outdent': 'Jelenlegi bekezdés behúzásának megszüntetése',
|
||||
'indent': 'Jelenlegi bekezdés behúzása',
|
||||
'formatPara': 'Blokk formázása bekezdésként (P tag)',
|
||||
'formatH1': 'Blokk formázása, mint Fejléc 1',
|
||||
'formatH2': 'Blokk formázása, mint Fejléc 2',
|
||||
'formatH3': 'Blokk formázása, mint Fejléc 3',
|
||||
'formatH4': 'Blokk formázása, mint Fejléc 4',
|
||||
'formatH5': 'Blokk formázása, mint Fejléc 5',
|
||||
'formatH6': 'Blokk formázása, mint Fejléc 6',
|
||||
'insertHorizontalRule': 'Vízszintes vonal beszúrása',
|
||||
'linkDialog.show': 'Link párbeszédablak megjelenítése'
|
||||
},
|
||||
history: {
|
||||
undo: 'Visszavonás',
|
||||
redo: 'Újra'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-hu-HU.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-hu-HU.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-hu-HU.min.js.LICENSE.txt */
|
||||
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var r=t();for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(window,(function(){return function(e){var t={};function r(o){if(t[o])return t[o].exports;var s=t[o]={i:o,l:!1,exports:{}};return e[o].call(s.exports,s,s.exports,r),s.l=!0,s.exports}return r.m=e,r.c=t,r.d=function(e,t,o){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(r.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)r.d(o,s,function(t){return e[t]}.bind(null,s));return o},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=23)}({23:function(e,t){var r;(r=jQuery).extend(r.summernote.lang,{"hu-HU":{font:{bold:"Félkövér",italic:"Dőlt",underline:"Aláhúzott",clear:"Formázás törlése",height:"Sorköz",name:"Betűtípus",strikethrough:"Áthúzott",subscript:"Subscript",superscript:"Superscript",size:"Betűméret"},image:{image:"Kép",insert:"Kép beszúrása",resizeFull:"Átméretezés teljes méretre",resizeHalf:"Átméretezés felére",resizeQuarter:"Átméretezés negyedére",floatLeft:"Igazítás balra",floatRight:"Igazítás jobbra",floatNone:"Igazítás törlése",shapeRounded:"Shape: Rounded",shapeCircle:"Shape: Circle",shapeThumbnail:"Shape: Thumbnail",shapeNone:"Shape: None",dragImageHere:"Ide húzhat képet vagy szöveget",dropImage:"Engedje el a képet vagy szöveget",selectFromFiles:"Fájlok kiválasztása",maximumFileSize:"Maximum file size",maximumFileSizeError:"Maximum file size exceeded.",url:"Kép URL címe",remove:"Kép törlése",original:"Original"},video:{video:"Videó",videoLink:"Videó hivatkozás",insert:"Videó beszúrása",url:"Videó URL címe",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion vagy Youku)"},link:{link:"Hivatkozás",insert:"Hivatkozás beszúrása",unlink:"Hivatkozás megszüntetése",edit:"Szerkesztés",textToDisplay:"Megjelenítendő szöveg",url:"Milyen URL címre hivatkozzon?",openInNewWindow:"Megnyitás új ablakban"},table:{table:"Táblázat",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Elválasztó vonal beszúrása"},style:{style:"Stílus",p:"Normál",blockquote:"Idézet",pre:"Kód",h1:"Fejléc 1",h2:"Fejléc 2",h3:"Fejléc 3",h4:"Fejléc 4",h5:"Fejléc 5",h6:"Fejléc 6"},lists:{unordered:"Listajeles lista",ordered:"Számozott lista"},options:{help:"Súgó",fullscreen:"Teljes képernyő",codeview:"Kód nézet"},paragraph:{paragraph:"Bekezdés",outdent:"Behúzás csökkentése",indent:"Behúzás növelése",left:"Igazítás balra",center:"Igazítás középre",right:"Igazítás jobbra",justify:"Sorkizárt"},color:{recent:"Jelenlegi szín",more:"További színek",background:"Háttérszín",foreground:"Betűszín",transparent:"Átlátszó",setTransparent:"Átlászóság beállítása",reset:"Visszaállítás",resetToDefault:"Alaphelyzetbe állítás"},shortcut:{shortcuts:"Gyorsbillentyű",close:"Bezárás",textFormatting:"Szöveg formázása",action:"Művelet",paragraphFormatting:"Bekezdés formázása",documentStyle:"Dokumentumstílus",extraKeys:"Extra keys"},help:{insertParagraph:"Új bekezdés",undo:"Visszavonás",redo:"Újra",tab:"Behúzás növelése",untab:"Behúzás csökkentése",bold:"Félkövérre állítás",italic:"Dőltre állítás",underline:"Aláhúzás",strikethrough:"Áthúzás",removeFormat:"Formázás törlése",justifyLeft:"Balra igazítás",justifyCenter:"Középre igazítás",justifyRight:"Jobbra igazítás",justifyFull:"Sorkizárt",insertUnorderedList:"Számozatlan lista be/ki",insertOrderedList:"Számozott lista be/ki",outdent:"Jelenlegi bekezdés behúzásának megszüntetése",indent:"Jelenlegi bekezdés behúzása",formatPara:"Blokk formázása bekezdésként (P tag)",formatH1:"Blokk formázása, mint Fejléc 1",formatH2:"Blokk formázása, mint Fejléc 2",formatH3:"Blokk formázása, mint Fejléc 3",formatH4:"Blokk formázása, mint Fejléc 4",formatH5:"Blokk formázása, mint Fejléc 5",formatH6:"Blokk formázása, mint Fejléc 6",insertHorizontalRule:"Vízszintes vonal beszúrása","linkDialog.show":"Link párbeszédablak megjelenítése"},history:{undo:"Visszavonás",redo:"Újra"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-id-ID.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-id-ID.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 24);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 24:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'id-ID': {
|
||||
font: {
|
||||
bold: 'Tebal',
|
||||
italic: 'Miring',
|
||||
underline: 'Garis bawah',
|
||||
clear: 'Bersihkan gaya',
|
||||
height: 'Jarak baris',
|
||||
name: 'Jenis Tulisan',
|
||||
strikethrough: 'Coret',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Ukuran font'
|
||||
},
|
||||
image: {
|
||||
image: 'Gambar',
|
||||
insert: 'Sisipkan gambar',
|
||||
resizeFull: 'Ukuran penuh',
|
||||
resizeHalf: 'Ukuran 50%',
|
||||
resizeQuarter: 'Ukuran 25%',
|
||||
floatLeft: 'Rata kiri',
|
||||
floatRight: 'Rata kanan',
|
||||
floatNone: 'Tanpa perataan',
|
||||
shapeRounded: 'Bentuk: Membundar',
|
||||
shapeCircle: 'Bentuk: Bundar',
|
||||
shapeThumbnail: 'Bentuk: Thumbnail',
|
||||
shapeNone: 'Bentuk: Tidak ada',
|
||||
dragImageHere: 'Tarik gambar ke area ini',
|
||||
dropImage: 'Letakkan gambar atau teks',
|
||||
selectFromFiles: 'Pilih gambar dari berkas',
|
||||
maximumFileSize: 'Ukuran maksimal berkas',
|
||||
maximumFileSizeError: 'Ukuran maksimal berkas terlampaui.',
|
||||
url: 'URL gambar',
|
||||
remove: 'Hapus Gambar',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Link video',
|
||||
insert: 'Sisipkan video',
|
||||
url: 'Tautan video',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion atau Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Tautan',
|
||||
insert: 'Tambah tautan',
|
||||
unlink: 'Hapus tautan',
|
||||
edit: 'Edit',
|
||||
textToDisplay: 'Tampilan teks',
|
||||
url: 'Tautan tujuan',
|
||||
openInNewWindow: 'Buka di jendela baru'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabel',
|
||||
addRowAbove: 'Tambahkan baris ke atas',
|
||||
addRowBelow: 'Tambahkan baris ke bawah',
|
||||
addColLeft: 'Tambahkan kolom ke kiri',
|
||||
addColRight: 'Tambahkan kolom ke kanan',
|
||||
delRow: 'Hapus baris',
|
||||
delCol: 'Hapus kolom',
|
||||
delTable: 'Hapus tabel'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Masukkan garis horizontal'
|
||||
},
|
||||
style: {
|
||||
style: 'Gaya',
|
||||
p: 'p',
|
||||
blockquote: 'Kutipan',
|
||||
pre: 'Kode',
|
||||
h1: 'Heading 1',
|
||||
h2: 'Heading 2',
|
||||
h3: 'Heading 3',
|
||||
h4: 'Heading 4',
|
||||
h5: 'Heading 5',
|
||||
h6: 'Heading 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Pencacahan',
|
||||
ordered: 'Penomoran'
|
||||
},
|
||||
options: {
|
||||
help: 'Bantuan',
|
||||
fullscreen: 'Layar penuh',
|
||||
codeview: 'Kode HTML'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraf',
|
||||
outdent: 'Outdent',
|
||||
indent: 'Indent',
|
||||
left: 'Rata kiri',
|
||||
center: 'Rata tengah',
|
||||
right: 'Rata kanan',
|
||||
justify: 'Rata kanan kiri'
|
||||
},
|
||||
color: {
|
||||
recent: 'Warna sekarang',
|
||||
more: 'Selengkapnya',
|
||||
background: 'Warna latar',
|
||||
foreground: 'Warna font',
|
||||
transparent: 'Transparan',
|
||||
setTransparent: 'Atur transparansi',
|
||||
reset: 'Atur ulang',
|
||||
resetToDefault: 'Kembalikan kesemula'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Jalan pintas',
|
||||
close: 'Tutup',
|
||||
textFormatting: 'Format teks',
|
||||
action: 'Aksi',
|
||||
paragraphFormatting: 'Format paragraf',
|
||||
documentStyle: 'Gaya dokumen',
|
||||
extraKeys: 'Shortcut tambahan'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Tambahkan paragraf',
|
||||
'undo': 'Urungkan perintah terakhir',
|
||||
'redo': 'Kembalikan perintah terakhir',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Mengaktifkan gaya tebal',
|
||||
'italic': 'Mengaktifkan gaya italic',
|
||||
'underline': 'Mengaktifkan gaya underline',
|
||||
'strikethrough': 'Mengaktifkan gaya strikethrough',
|
||||
'removeFormat': 'Hapus semua gaya',
|
||||
'justifyLeft': 'Atur rata kiri',
|
||||
'justifyCenter': 'Atur rata tengah',
|
||||
'justifyRight': 'Atur rata kanan',
|
||||
'justifyFull': 'Atur rata kiri-kanan',
|
||||
'insertUnorderedList': 'Nyalakan urutan tanpa nomor',
|
||||
'insertOrderedList': 'Nyalakan urutan bernomor',
|
||||
'outdent': 'Outdent di paragraf terpilih',
|
||||
'indent': 'Indent di paragraf terpilih',
|
||||
'formatPara': 'Ubah format gaya tulisan terpilih menjadi paragraf',
|
||||
'formatH1': 'Ubah format gaya tulisan terpilih menjadi Heading 1',
|
||||
'formatH2': 'Ubah format gaya tulisan terpilih menjadi Heading 2',
|
||||
'formatH3': 'Ubah format gaya tulisan terpilih menjadi Heading 3',
|
||||
'formatH4': 'Ubah format gaya tulisan terpilih menjadi Heading 4',
|
||||
'formatH5': 'Ubah format gaya tulisan terpilih menjadi Heading 5',
|
||||
'formatH6': 'Ubah format gaya tulisan terpilih menjadi Heading 6',
|
||||
'insertHorizontalRule': 'Masukkan garis horizontal',
|
||||
'linkDialog.show': 'Tampilkan Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Kembali',
|
||||
redo: 'Ulang'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'KARAKTER KHUSUS',
|
||||
select: 'Pilih karakter khusus'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-id-ID.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-id-ID.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-id-ID.min.js.LICENSE.txt */
|
||||
!function(a,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var r=e();for(var t in r)("object"==typeof exports?exports:a)[t]=r[t]}}(window,(function(){return function(a){var e={};function r(t){if(e[t])return e[t].exports;var n=e[t]={i:t,l:!1,exports:{}};return a[t].call(n.exports,n,n.exports,r),n.l=!0,n.exports}return r.m=a,r.c=e,r.d=function(a,e,t){r.o(a,e)||Object.defineProperty(a,e,{enumerable:!0,get:t})},r.r=function(a){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(a,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(a,"__esModule",{value:!0})},r.t=function(a,e){if(1&e&&(a=r(a)),8&e)return a;if(4&e&&"object"==typeof a&&a&&a.__esModule)return a;var t=Object.create(null);if(r.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:a}),2&e&&"string"!=typeof a)for(var n in a)r.d(t,n,function(e){return a[e]}.bind(null,n));return t},r.n=function(a){var e=a&&a.__esModule?function(){return a.default}:function(){return a};return r.d(e,"a",e),e},r.o=function(a,e){return Object.prototype.hasOwnProperty.call(a,e)},r.p="",r(r.s=24)}({24:function(a,e){var r;(r=jQuery).extend(r.summernote.lang,{"id-ID":{font:{bold:"Tebal",italic:"Miring",underline:"Garis bawah",clear:"Bersihkan gaya",height:"Jarak baris",name:"Jenis Tulisan",strikethrough:"Coret",subscript:"Subscript",superscript:"Superscript",size:"Ukuran font"},image:{image:"Gambar",insert:"Sisipkan gambar",resizeFull:"Ukuran penuh",resizeHalf:"Ukuran 50%",resizeQuarter:"Ukuran 25%",floatLeft:"Rata kiri",floatRight:"Rata kanan",floatNone:"Tanpa perataan",shapeRounded:"Bentuk: Membundar",shapeCircle:"Bentuk: Bundar",shapeThumbnail:"Bentuk: Thumbnail",shapeNone:"Bentuk: Tidak ada",dragImageHere:"Tarik gambar ke area ini",dropImage:"Letakkan gambar atau teks",selectFromFiles:"Pilih gambar dari berkas",maximumFileSize:"Ukuran maksimal berkas",maximumFileSizeError:"Ukuran maksimal berkas terlampaui.",url:"URL gambar",remove:"Hapus Gambar",original:"Original"},video:{video:"Video",videoLink:"Link video",insert:"Sisipkan video",url:"Tautan video",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion atau Youku)"},link:{link:"Tautan",insert:"Tambah tautan",unlink:"Hapus tautan",edit:"Edit",textToDisplay:"Tampilan teks",url:"Tautan tujuan",openInNewWindow:"Buka di jendela baru"},table:{table:"Tabel",addRowAbove:"Tambahkan baris ke atas",addRowBelow:"Tambahkan baris ke bawah",addColLeft:"Tambahkan kolom ke kiri",addColRight:"Tambahkan kolom ke kanan",delRow:"Hapus baris",delCol:"Hapus kolom",delTable:"Hapus tabel"},hr:{insert:"Masukkan garis horizontal"},style:{style:"Gaya",p:"p",blockquote:"Kutipan",pre:"Kode",h1:"Heading 1",h2:"Heading 2",h3:"Heading 3",h4:"Heading 4",h5:"Heading 5",h6:"Heading 6"},lists:{unordered:"Pencacahan",ordered:"Penomoran"},options:{help:"Bantuan",fullscreen:"Layar penuh",codeview:"Kode HTML"},paragraph:{paragraph:"Paragraf",outdent:"Outdent",indent:"Indent",left:"Rata kiri",center:"Rata tengah",right:"Rata kanan",justify:"Rata kanan kiri"},color:{recent:"Warna sekarang",more:"Selengkapnya",background:"Warna latar",foreground:"Warna font",transparent:"Transparan",setTransparent:"Atur transparansi",reset:"Atur ulang",resetToDefault:"Kembalikan kesemula"},shortcut:{shortcuts:"Jalan pintas",close:"Tutup",textFormatting:"Format teks",action:"Aksi",paragraphFormatting:"Format paragraf",documentStyle:"Gaya dokumen",extraKeys:"Shortcut tambahan"},help:{insertParagraph:"Tambahkan paragraf",undo:"Urungkan perintah terakhir",redo:"Kembalikan perintah terakhir",tab:"Tab",untab:"Untab",bold:"Mengaktifkan gaya tebal",italic:"Mengaktifkan gaya italic",underline:"Mengaktifkan gaya underline",strikethrough:"Mengaktifkan gaya strikethrough",removeFormat:"Hapus semua gaya",justifyLeft:"Atur rata kiri",justifyCenter:"Atur rata tengah",justifyRight:"Atur rata kanan",justifyFull:"Atur rata kiri-kanan",insertUnorderedList:"Nyalakan urutan tanpa nomor",insertOrderedList:"Nyalakan urutan bernomor",outdent:"Outdent di paragraf terpilih",indent:"Indent di paragraf terpilih",formatPara:"Ubah format gaya tulisan terpilih menjadi paragraf",formatH1:"Ubah format gaya tulisan terpilih menjadi Heading 1",formatH2:"Ubah format gaya tulisan terpilih menjadi Heading 2",formatH3:"Ubah format gaya tulisan terpilih menjadi Heading 3",formatH4:"Ubah format gaya tulisan terpilih menjadi Heading 4",formatH5:"Ubah format gaya tulisan terpilih menjadi Heading 5",formatH6:"Ubah format gaya tulisan terpilih menjadi Heading 6",insertHorizontalRule:"Masukkan garis horizontal","linkDialog.show":"Tampilkan Link Dialog"},history:{undo:"Kembali",redo:"Ulang"},specialChar:{specialChar:"KARAKTER KHUSUS",select:"Pilih karakter khusus"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-it-IT.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-it-IT.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 25);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 25:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'it-IT': {
|
||||
font: {
|
||||
bold: 'Testo in grassetto',
|
||||
italic: 'Testo in corsivo',
|
||||
underline: 'Testo sottolineato',
|
||||
clear: 'Elimina la formattazione del testo',
|
||||
height: 'Altezza della linea di testo',
|
||||
name: 'Famiglia Font',
|
||||
strikethrough: 'Testo barrato',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Dimensione del carattere'
|
||||
},
|
||||
image: {
|
||||
image: 'Immagine',
|
||||
insert: 'Inserisci Immagine',
|
||||
resizeFull: 'Dimensioni originali',
|
||||
resizeHalf: 'Ridimensiona al 50%',
|
||||
resizeQuarter: 'Ridimensiona al 25%',
|
||||
floatLeft: 'Posiziona a sinistra',
|
||||
floatRight: 'Posiziona a destra',
|
||||
floatNone: 'Nessun posizionamento',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Trascina qui un\'immagine',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Scegli dai Documenti',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URL dell\'immagine',
|
||||
remove: 'Rimuovi immagine',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Collegamento ad un Video',
|
||||
insert: 'Inserisci Video',
|
||||
url: 'URL del Video',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion o Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Collegamento',
|
||||
insert: 'Inserisci Collegamento',
|
||||
unlink: 'Elimina collegamento',
|
||||
edit: 'Modifica collegamento',
|
||||
textToDisplay: 'Testo del collegamento',
|
||||
url: 'URL del collegamento',
|
||||
openInNewWindow: 'Apri in una nuova finestra'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabella',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Inserisce una linea di separazione'
|
||||
},
|
||||
style: {
|
||||
style: 'Stili',
|
||||
p: 'pe',
|
||||
blockquote: 'Citazione',
|
||||
pre: 'Codice',
|
||||
h1: 'Titolo 1',
|
||||
h2: 'Titolo 2',
|
||||
h3: 'Titolo 3',
|
||||
h4: 'Titolo 4',
|
||||
h5: 'Titolo 5',
|
||||
h6: 'Titolo 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Elenco non ordinato',
|
||||
ordered: 'Elenco ordinato'
|
||||
},
|
||||
options: {
|
||||
help: 'Aiuto',
|
||||
fullscreen: 'Modalità a tutto schermo',
|
||||
codeview: 'Visualizza codice'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragrafo',
|
||||
outdent: 'Diminuisce il livello di rientro',
|
||||
indent: 'Aumenta il livello di rientro',
|
||||
left: 'Allinea a sinistra',
|
||||
center: 'Centra',
|
||||
right: 'Allinea a destra',
|
||||
justify: 'Giustifica (allinea a destra e sinistra)'
|
||||
},
|
||||
color: {
|
||||
recent: 'Ultimo colore utilizzato',
|
||||
more: 'Altri colori',
|
||||
background: 'Colore di sfondo',
|
||||
foreground: 'Colore',
|
||||
transparent: 'Trasparente',
|
||||
setTransparent: 'Trasparente',
|
||||
reset: 'Reimposta',
|
||||
resetToDefault: 'Reimposta i colori'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Scorciatoie da tastiera',
|
||||
close: 'Chiudi',
|
||||
textFormatting: 'Formattazione testo',
|
||||
action: 'Azioni',
|
||||
paragraphFormatting: 'Formattazione paragrafo',
|
||||
documentStyle: 'Stili',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Annulla',
|
||||
redo: 'Ripristina'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-it-IT.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-it-IT.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-it-IT.min.js.LICENSE.txt */
|
||||
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var o=t();for(var i in o)("object"==typeof exports?exports:e)[i]=o[i]}}(window,(function(){return function(e){var t={};function o(i){if(t[i])return t[i].exports;var r=t[i]={i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,o),r.l=!0,r.exports}return o.m=e,o.c=t,o.d=function(e,t,i){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(o.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)o.d(i,r,function(t){return e[t]}.bind(null,r));return i},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=25)}({25:function(e,t){var o;(o=jQuery).extend(o.summernote.lang,{"it-IT":{font:{bold:"Testo in grassetto",italic:"Testo in corsivo",underline:"Testo sottolineato",clear:"Elimina la formattazione del testo",height:"Altezza della linea di testo",name:"Famiglia Font",strikethrough:"Testo barrato",subscript:"Subscript",superscript:"Superscript",size:"Dimensione del carattere"},image:{image:"Immagine",insert:"Inserisci Immagine",resizeFull:"Dimensioni originali",resizeHalf:"Ridimensiona al 50%",resizeQuarter:"Ridimensiona al 25%",floatLeft:"Posiziona a sinistra",floatRight:"Posiziona a destra",floatNone:"Nessun posizionamento",shapeRounded:"Shape: Rounded",shapeCircle:"Shape: Circle",shapeThumbnail:"Shape: Thumbnail",shapeNone:"Shape: None",dragImageHere:"Trascina qui un'immagine",dropImage:"Drop image or Text",selectFromFiles:"Scegli dai Documenti",maximumFileSize:"Maximum file size",maximumFileSizeError:"Maximum file size exceeded.",url:"URL dell'immagine",remove:"Rimuovi immagine",original:"Original"},video:{video:"Video",videoLink:"Collegamento ad un Video",insert:"Inserisci Video",url:"URL del Video",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion o Youku)"},link:{link:"Collegamento",insert:"Inserisci Collegamento",unlink:"Elimina collegamento",edit:"Modifica collegamento",textToDisplay:"Testo del collegamento",url:"URL del collegamento",openInNewWindow:"Apri in una nuova finestra"},table:{table:"Tabella",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Inserisce una linea di separazione"},style:{style:"Stili",p:"pe",blockquote:"Citazione",pre:"Codice",h1:"Titolo 1",h2:"Titolo 2",h3:"Titolo 3",h4:"Titolo 4",h5:"Titolo 5",h6:"Titolo 6"},lists:{unordered:"Elenco non ordinato",ordered:"Elenco ordinato"},options:{help:"Aiuto",fullscreen:"Modalità a tutto schermo",codeview:"Visualizza codice"},paragraph:{paragraph:"Paragrafo",outdent:"Diminuisce il livello di rientro",indent:"Aumenta il livello di rientro",left:"Allinea a sinistra",center:"Centra",right:"Allinea a destra",justify:"Giustifica (allinea a destra e sinistra)"},color:{recent:"Ultimo colore utilizzato",more:"Altri colori",background:"Colore di sfondo",foreground:"Colore",transparent:"Trasparente",setTransparent:"Trasparente",reset:"Reimposta",resetToDefault:"Reimposta i colori"},shortcut:{shortcuts:"Scorciatoie da tastiera",close:"Chiudi",textFormatting:"Formattazione testo",action:"Azioni",paragraphFormatting:"Formattazione paragrafo",documentStyle:"Stili",extraKeys:"Extra keys"},help:{insertParagraph:"Insert Paragraph",undo:"Undoes the last command",redo:"Redoes the last command",tab:"Tab",untab:"Untab",bold:"Set a bold style",italic:"Set a italic style",underline:"Set a underline style",strikethrough:"Set a strikethrough style",removeFormat:"Clean a style",justifyLeft:"Set left align",justifyCenter:"Set center align",justifyRight:"Set right align",justifyFull:"Set full align",insertUnorderedList:"Toggle unordered list",insertOrderedList:"Toggle ordered list",outdent:"Outdent on current paragraph",indent:"Indent on current paragraph",formatPara:"Change current block's format as a paragraph(P tag)",formatH1:"Change current block's format as H1",formatH2:"Change current block's format as H2",formatH3:"Change current block's format as H3",formatH4:"Change current block's format as H4",formatH5:"Change current block's format as H5",formatH6:"Change current block's format as H6",insertHorizontalRule:"Insert horizontal rule","linkDialog.show":"Show Link Dialog"},history:{undo:"Annulla",redo:"Ripristina"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-ja-JP.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-ja-JP.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 26);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 26:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ja-JP': {
|
||||
font: {
|
||||
bold: '太字',
|
||||
italic: '斜体',
|
||||
underline: '下線',
|
||||
clear: 'クリア',
|
||||
height: '文字高',
|
||||
name: 'フォント',
|
||||
strikethrough: '取り消し線',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: '大きさ'
|
||||
},
|
||||
image: {
|
||||
image: '画像',
|
||||
insert: '画像挿入',
|
||||
resizeFull: '最大化',
|
||||
resizeHalf: '1/2',
|
||||
resizeQuarter: '1/4',
|
||||
floatLeft: '左寄せ',
|
||||
floatRight: '右寄せ',
|
||||
floatNone: '寄せ解除',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'ここに画像をドラッグしてください',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: '画像ファイルを選ぶ',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URLから画像を挿入する',
|
||||
remove: '画像を削除する',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: '動画',
|
||||
videoLink: '動画リンク',
|
||||
insert: '動画挿入',
|
||||
url: '動画のURL',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion, Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'リンク',
|
||||
insert: 'リンク挿入',
|
||||
unlink: 'リンク解除',
|
||||
edit: '編集',
|
||||
textToDisplay: 'リンク文字列',
|
||||
url: 'URLを入力してください',
|
||||
openInNewWindow: '新しいウィンドウで開く'
|
||||
},
|
||||
table: {
|
||||
table: 'テーブル',
|
||||
addRowAbove: '行を上に追加',
|
||||
addRowBelow: '行を下に追加',
|
||||
addColLeft: '列を左に追加',
|
||||
addColRight: '列を右に追加',
|
||||
delRow: '行を削除',
|
||||
delCol: '列を削除',
|
||||
delTable: 'テーブルを削除'
|
||||
},
|
||||
hr: {
|
||||
insert: '水平線の挿入'
|
||||
},
|
||||
style: {
|
||||
style: 'スタイル',
|
||||
p: '標準',
|
||||
blockquote: '引用',
|
||||
pre: 'コード',
|
||||
h1: '見出し1',
|
||||
h2: '見出し2',
|
||||
h3: '見出し3',
|
||||
h4: '見出し4',
|
||||
h5: '見出し5',
|
||||
h6: '見出し6'
|
||||
},
|
||||
lists: {
|
||||
unordered: '通常リスト',
|
||||
ordered: '番号リスト'
|
||||
},
|
||||
options: {
|
||||
help: 'ヘルプ',
|
||||
fullscreen: 'フルスクリーン',
|
||||
codeview: 'コード表示'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: '文章',
|
||||
outdent: '字上げ',
|
||||
indent: '字下げ',
|
||||
left: '左寄せ',
|
||||
center: '中央寄せ',
|
||||
right: '右寄せ',
|
||||
justify: '均等割付'
|
||||
},
|
||||
color: {
|
||||
recent: '現在の色',
|
||||
more: 'もっと見る',
|
||||
background: '背景色',
|
||||
foreground: '文字色',
|
||||
transparent: '透明',
|
||||
setTransparent: '透明にする',
|
||||
reset: '標準',
|
||||
resetToDefault: '標準に戻す'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'ショートカット',
|
||||
close: '閉じる',
|
||||
textFormatting: '文字フォーマット',
|
||||
action: 'アクション',
|
||||
paragraphFormatting: '文章フォーマット',
|
||||
documentStyle: 'ドキュメント形式',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': '改行挿入',
|
||||
'undo': '一旦、行った操作を戻す',
|
||||
'redo': '最後のコマンドをやり直す',
|
||||
'tab': 'Tab',
|
||||
'untab': 'タブ戻し',
|
||||
'bold': '太文字',
|
||||
'italic': '斜体',
|
||||
'underline': '下線',
|
||||
'strikethrough': '取り消し線',
|
||||
'removeFormat': '装飾を戻す',
|
||||
'justifyLeft': '左寄せ',
|
||||
'justifyCenter': '真ん中寄せ',
|
||||
'justifyRight': '右寄せ',
|
||||
'justifyFull': 'すべてを整列',
|
||||
'insertUnorderedList': '行頭に●を挿入',
|
||||
'insertOrderedList': '行頭に番号を挿入',
|
||||
'outdent': '字下げを戻す(アウトデント)',
|
||||
'indent': '字下げする(インデント)',
|
||||
'formatPara': '段落(P tag)指定',
|
||||
'formatH1': 'H1指定',
|
||||
'formatH2': 'H2指定',
|
||||
'formatH3': 'H3指定',
|
||||
'formatH4': 'H4指定',
|
||||
'formatH5': 'H5指定',
|
||||
'formatH6': 'H6指定',
|
||||
'insertHorizontalRule': '<hr />を挿入',
|
||||
'linkDialog.show': 'リンク挿入'
|
||||
},
|
||||
history: {
|
||||
undo: '元に戻す',
|
||||
redo: 'やり直す'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-ja-JP.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-ja-JP.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-ja-JP.min.js.LICENSE.txt */
|
||||
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var r=t();for(var o in r)("object"==typeof exports?exports:e)[o]=r[o]}}(window,(function(){return function(e){var t={};function r(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,r),n.l=!0,n.exports}return r.m=e,r.c=t,r.d=function(e,t,o){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(r.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)r.d(o,n,function(t){return e[t]}.bind(null,n));return o},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=26)}({26:function(e,t){var r;(r=jQuery).extend(r.summernote.lang,{"ja-JP":{font:{bold:"太字",italic:"斜体",underline:"下線",clear:"クリア",height:"文字高",name:"フォント",strikethrough:"取り消し線",subscript:"Subscript",superscript:"Superscript",size:"大きさ"},image:{image:"画像",insert:"画像挿入",resizeFull:"最大化",resizeHalf:"1/2",resizeQuarter:"1/4",floatLeft:"左寄せ",floatRight:"右寄せ",floatNone:"寄せ解除",shapeRounded:"Shape: Rounded",shapeCircle:"Shape: Circle",shapeThumbnail:"Shape: Thumbnail",shapeNone:"Shape: None",dragImageHere:"ここに画像をドラッグしてください",dropImage:"Drop image or Text",selectFromFiles:"画像ファイルを選ぶ",maximumFileSize:"Maximum file size",maximumFileSizeError:"Maximum file size exceeded.",url:"URLから画像を挿入する",remove:"画像を削除する",original:"Original"},video:{video:"動画",videoLink:"動画リンク",insert:"動画挿入",url:"動画のURL",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion, Youku)"},link:{link:"リンク",insert:"リンク挿入",unlink:"リンク解除",edit:"編集",textToDisplay:"リンク文字列",url:"URLを入力してください",openInNewWindow:"新しいウィンドウで開く"},table:{table:"テーブル",addRowAbove:"行を上に追加",addRowBelow:"行を下に追加",addColLeft:"列を左に追加",addColRight:"列を右に追加",delRow:"行を削除",delCol:"列を削除",delTable:"テーブルを削除"},hr:{insert:"水平線の挿入"},style:{style:"スタイル",p:"標準",blockquote:"引用",pre:"コード",h1:"見出し1",h2:"見出し2",h3:"見出し3",h4:"見出し4",h5:"見出し5",h6:"見出し6"},lists:{unordered:"通常リスト",ordered:"番号リスト"},options:{help:"ヘルプ",fullscreen:"フルスクリーン",codeview:"コード表示"},paragraph:{paragraph:"文章",outdent:"字上げ",indent:"字下げ",left:"左寄せ",center:"中央寄せ",right:"右寄せ",justify:"均等割付"},color:{recent:"現在の色",more:"もっと見る",background:"背景色",foreground:"文字色",transparent:"透明",setTransparent:"透明にする",reset:"標準",resetToDefault:"標準に戻す"},shortcut:{shortcuts:"ショートカット",close:"閉じる",textFormatting:"文字フォーマット",action:"アクション",paragraphFormatting:"文章フォーマット",documentStyle:"ドキュメント形式",extraKeys:"Extra keys"},help:{insertParagraph:"改行挿入",undo:"一旦、行った操作を戻す",redo:"最後のコマンドをやり直す",tab:"Tab",untab:"タブ戻し",bold:"太文字",italic:"斜体",underline:"下線",strikethrough:"取り消し線",removeFormat:"装飾を戻す",justifyLeft:"左寄せ",justifyCenter:"真ん中寄せ",justifyRight:"右寄せ",justifyFull:"すべてを整列",insertUnorderedList:"行頭に●を挿入",insertOrderedList:"行頭に番号を挿入",outdent:"字下げを戻す(アウトデント)",indent:"字下げする(インデント)",formatPara:"段落(P tag)指定",formatH1:"H1指定",formatH2:"H2指定",formatH3:"H3指定",formatH4:"H4指定",formatH5:"H5指定",formatH6:"H6指定",insertHorizontalRule:"<hr />を挿入","linkDialog.show":"リンク挿入"},history:{undo:"元に戻す",redo:"やり直す"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
275
public/vendor/editor/dist/lang/summernote-ko-KR.js
vendored
Executable file
275
public/vendor/editor/dist/lang/summernote-ko-KR.js
vendored
Executable file
@@ -0,0 +1,275 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 27);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 27:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ko-KR': {
|
||||
font: {
|
||||
bold: '굵게',
|
||||
italic: '기울임꼴',
|
||||
underline: '밑줄',
|
||||
clear: '서식 지우기',
|
||||
height: '줄 간격',
|
||||
name: '글꼴',
|
||||
superscript: '위 첨자',
|
||||
subscript: '아래 첨자',
|
||||
strikethrough: '취소선',
|
||||
size: '글자 크기'
|
||||
},
|
||||
image: {
|
||||
image: '그림',
|
||||
insert: '그림 삽입',
|
||||
resizeFull: '100% 크기로 변경',
|
||||
resizeHalf: '50% 크기로 변경',
|
||||
resizeQuarter: '25% 크기로 변경',
|
||||
resizeNone: '원본 크기',
|
||||
floatLeft: '왼쪽 정렬',
|
||||
floatRight: '오른쪽 정렬',
|
||||
floatNone: '정렬하지 않음',
|
||||
shapeRounded: '스타일: 둥근 모서리',
|
||||
shapeCircle: '스타일: 원형',
|
||||
shapeThumbnail: '스타일: 액자',
|
||||
shapeNone: '스타일: 없음',
|
||||
dragImageHere: '텍스트 혹은 사진을 이곳으로 끌어오세요',
|
||||
dropImage: '텍스트 혹은 사진을 내려놓으세요',
|
||||
selectFromFiles: '파일 선택',
|
||||
maximumFileSize: '최대 파일 크기',
|
||||
maximumFileSizeError: '최대 파일 크기를 초과했습니다.',
|
||||
url: '사진 URL',
|
||||
remove: '사진 삭제',
|
||||
original: '원본'
|
||||
},
|
||||
video: {
|
||||
video: '동영상',
|
||||
videoLink: '동영상 링크',
|
||||
insert: '동영상 삽입',
|
||||
url: '동영상 URL',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion, Youku 사용 가능)'
|
||||
},
|
||||
link: {
|
||||
link: '링크',
|
||||
insert: '링크 삽입',
|
||||
unlink: '링크 삭제',
|
||||
edit: '수정',
|
||||
textToDisplay: '링크에 표시할 내용',
|
||||
url: '이동할 URL',
|
||||
openInNewWindow: '새창으로 열기'
|
||||
},
|
||||
table: {
|
||||
table: '표',
|
||||
addRowAbove: '위에 행 삽입',
|
||||
addRowBelow: '아래에 행 삽입',
|
||||
addColLeft: '왼쪽에 열 삽입',
|
||||
addColRight: '오른쪽에 열 삽입',
|
||||
delRow: '행 지우기',
|
||||
delCol: '열 지우기',
|
||||
delTable: '표 삭제'
|
||||
},
|
||||
hr: {
|
||||
insert: '구분선 삽입'
|
||||
},
|
||||
style: {
|
||||
style: '스타일',
|
||||
p: '본문',
|
||||
blockquote: '인용구',
|
||||
pre: '코드',
|
||||
h1: '제목 1',
|
||||
h2: '제목 2',
|
||||
h3: '제목 3',
|
||||
h4: '제목 4',
|
||||
h5: '제목 5',
|
||||
h6: '제목 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: '글머리 기호',
|
||||
ordered: '번호 매기기'
|
||||
},
|
||||
options: {
|
||||
help: '도움말',
|
||||
fullscreen: '전체 화면',
|
||||
codeview: '코드 보기'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: '문단 정렬',
|
||||
outdent: '내어쓰기',
|
||||
indent: '들여쓰기',
|
||||
left: '왼쪽 정렬',
|
||||
center: '가운데 정렬',
|
||||
right: '오른쪽 정렬',
|
||||
justify: '양쪽 정렬'
|
||||
},
|
||||
color: {
|
||||
recent: '마지막으로 사용한 색',
|
||||
more: '다른 색 선택',
|
||||
background: '배경색',
|
||||
foreground: '글자색',
|
||||
transparent: '투명',
|
||||
setTransparent: '투명으로 설정',
|
||||
reset: '취소',
|
||||
resetToDefault: '기본값으로 설정',
|
||||
cpSelect: '고르다'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: '키보드 단축키',
|
||||
close: '닫기',
|
||||
textFormatting: '글자 스타일 적용',
|
||||
action: '기능',
|
||||
paragraphFormatting: '문단 스타일 적용',
|
||||
documentStyle: '문서 스타일 적용',
|
||||
extraKeys: '추가 키'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': '문단 삽입',
|
||||
'undo': '마지막 명령 취소',
|
||||
'redo': '마지막 명령 재실행',
|
||||
'tab': '탭',
|
||||
'untab': '탭 제거',
|
||||
'bold': '굵은 글자로 설정',
|
||||
'italic': '기울임꼴 글자로 설정',
|
||||
'underline': '밑줄 글자로 설정',
|
||||
'strikethrough': '취소선 글자로 설정',
|
||||
'removeFormat': '서식 삭제',
|
||||
'justifyLeft': '왼쪽 정렬하기',
|
||||
'justifyCenter': '가운데 정렬하기',
|
||||
'justifyRight': '오른쪽 정렬하기',
|
||||
'justifyFull': '좌우채움 정렬하기',
|
||||
'insertUnorderedList': '글머리 기호 켜고 끄기',
|
||||
'insertOrderedList': '번호 매기기 켜고 끄기',
|
||||
'outdent': '현재 문단 내어쓰기',
|
||||
'indent': '현재 문단 들여쓰기',
|
||||
'formatPara': '현재 블록의 포맷을 문단(P)으로 변경',
|
||||
'formatH1': '현재 블록의 포맷을 제목1(H1)로 변경',
|
||||
'formatH2': '현재 블록의 포맷을 제목2(H2)로 변경',
|
||||
'formatH3': '현재 블록의 포맷을 제목3(H3)로 변경',
|
||||
'formatH4': '현재 블록의 포맷을 제목4(H4)로 변경',
|
||||
'formatH5': '현재 블록의 포맷을 제목5(H5)로 변경',
|
||||
'formatH6': '현재 블록의 포맷을 제목6(H6)로 변경',
|
||||
'insertHorizontalRule': '구분선 삽입',
|
||||
'linkDialog.show': '링크 대화상자 열기'
|
||||
},
|
||||
history: {
|
||||
undo: '실행 취소',
|
||||
redo: '재실행'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: '특수문자',
|
||||
select: '특수문자를 선택하세요'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-ko-KR.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-ko-KR.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
273
public/vendor/editor/dist/lang/summernote-lt-LT.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-lt-LT.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 28);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 28:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'lt-LT': {
|
||||
font: {
|
||||
bold: 'Paryškintas',
|
||||
italic: 'Kursyvas',
|
||||
underline: 'Pabrėžtas',
|
||||
clear: 'Be formatavimo',
|
||||
height: 'Eilutės aukštis',
|
||||
name: 'Šrifto pavadinimas',
|
||||
strikethrough: 'Perbrauktas',
|
||||
superscript: 'Viršutinis',
|
||||
subscript: 'Indeksas',
|
||||
size: 'Šrifto dydis'
|
||||
},
|
||||
image: {
|
||||
image: 'Paveikslėlis',
|
||||
insert: 'Įterpti paveikslėlį',
|
||||
resizeFull: 'Pilnas dydis',
|
||||
resizeHalf: 'Sumažinti dydį 50%',
|
||||
resizeQuarter: 'Sumažinti dydį 25%',
|
||||
floatLeft: 'Kairinis lygiavimas',
|
||||
floatRight: 'Dešininis lygiavimas',
|
||||
floatNone: 'Jokio lygiavimo',
|
||||
shapeRounded: 'Forma: apvalūs kraštai',
|
||||
shapeCircle: 'Forma: apskritimas',
|
||||
shapeThumbnail: 'Forma: miniatiūra',
|
||||
shapeNone: 'Forma: jokia',
|
||||
dragImageHere: 'Vilkite paveikslėlį čia',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Pasirinkite failą',
|
||||
maximumFileSize: 'Maskimalus failo dydis',
|
||||
maximumFileSizeError: 'Maskimalus failo dydis viršytas!',
|
||||
url: 'Paveikslėlio URL adresas',
|
||||
remove: 'Ištrinti paveikslėlį',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video Link',
|
||||
insert: 'Insert Video',
|
||||
url: 'Video URL?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Nuoroda',
|
||||
insert: 'Įterpti nuorodą',
|
||||
unlink: 'Pašalinti nuorodą',
|
||||
edit: 'Redaguoti',
|
||||
textToDisplay: 'Rodomas tekstas',
|
||||
url: 'Koks URL adresas yra susietas?',
|
||||
openInNewWindow: 'Atidaryti naujame lange'
|
||||
},
|
||||
table: {
|
||||
table: 'Lentelė',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Įterpti horizontalią liniją'
|
||||
},
|
||||
style: {
|
||||
style: 'Stilius',
|
||||
p: 'pus',
|
||||
blockquote: 'Citata',
|
||||
pre: 'Kodas',
|
||||
h1: 'Antraštė 1',
|
||||
h2: 'Antraštė 2',
|
||||
h3: 'Antraštė 3',
|
||||
h4: 'Antraštė 4',
|
||||
h5: 'Antraštė 5',
|
||||
h6: 'Antraštė 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Suženklintasis sąrašas',
|
||||
ordered: 'Sunumeruotas sąrašas'
|
||||
},
|
||||
options: {
|
||||
help: 'Pagalba',
|
||||
fullscreen: 'Viso ekrano režimas',
|
||||
codeview: 'HTML kodo peržiūra'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Pastraipa',
|
||||
outdent: 'Sumažinti įtrauką',
|
||||
indent: 'Padidinti įtrauką',
|
||||
left: 'Kairinė lygiuotė',
|
||||
center: 'Centrinė lygiuotė',
|
||||
right: 'Dešininė lygiuotė',
|
||||
justify: 'Abipusis išlyginimas'
|
||||
},
|
||||
color: {
|
||||
recent: 'Paskutinė naudota spalva',
|
||||
more: 'Daugiau spalvų',
|
||||
background: 'Fono spalva',
|
||||
foreground: 'Šrifto spalva',
|
||||
transparent: 'Permatoma',
|
||||
setTransparent: 'Nustatyti skaidrumo intensyvumą',
|
||||
reset: 'Atkurti',
|
||||
resetToDefault: 'Atstatyti numatytąją spalvą'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Spartieji klavišai',
|
||||
close: 'Uždaryti',
|
||||
textFormatting: 'Teksto formatavimas',
|
||||
action: 'Veiksmas',
|
||||
paragraphFormatting: 'Pastraipos formatavimas',
|
||||
documentStyle: 'Dokumento stilius',
|
||||
extraKeys: 'Papildomi klavišų deriniai'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Anuliuoti veiksmą',
|
||||
redo: 'Perdaryti veiksmą'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-lt-LT.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-lt-LT.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-lt-LT.min.js.LICENSE.txt */
|
||||
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var a=t();for(var r in a)("object"==typeof exports?exports:e)[r]=a[r]}}(window,(function(){return function(e){var t={};function a(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,a),i.l=!0,i.exports}return a.m=e,a.c=t,a.d=function(e,t,r){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(a.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)a.d(r,i,function(t){return e[t]}.bind(null,i));return r},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=28)}({28:function(e,t){var a;(a=jQuery).extend(a.summernote.lang,{"lt-LT":{font:{bold:"Paryškintas",italic:"Kursyvas",underline:"Pabrėžtas",clear:"Be formatavimo",height:"Eilutės aukštis",name:"Šrifto pavadinimas",strikethrough:"Perbrauktas",superscript:"Viršutinis",subscript:"Indeksas",size:"Šrifto dydis"},image:{image:"Paveikslėlis",insert:"Įterpti paveikslėlį",resizeFull:"Pilnas dydis",resizeHalf:"Sumažinti dydį 50%",resizeQuarter:"Sumažinti dydį 25%",floatLeft:"Kairinis lygiavimas",floatRight:"Dešininis lygiavimas",floatNone:"Jokio lygiavimo",shapeRounded:"Forma: apvalūs kraštai",shapeCircle:"Forma: apskritimas",shapeThumbnail:"Forma: miniatiūra",shapeNone:"Forma: jokia",dragImageHere:"Vilkite paveikslėlį čia",dropImage:"Drop image or Text",selectFromFiles:"Pasirinkite failą",maximumFileSize:"Maskimalus failo dydis",maximumFileSizeError:"Maskimalus failo dydis viršytas!",url:"Paveikslėlio URL adresas",remove:"Ištrinti paveikslėlį",original:"Original"},video:{video:"Video",videoLink:"Video Link",insert:"Insert Video",url:"Video URL?",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)"},link:{link:"Nuoroda",insert:"Įterpti nuorodą",unlink:"Pašalinti nuorodą",edit:"Redaguoti",textToDisplay:"Rodomas tekstas",url:"Koks URL adresas yra susietas?",openInNewWindow:"Atidaryti naujame lange"},table:{table:"Lentelė",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Įterpti horizontalią liniją"},style:{style:"Stilius",p:"pus",blockquote:"Citata",pre:"Kodas",h1:"Antraštė 1",h2:"Antraštė 2",h3:"Antraštė 3",h4:"Antraštė 4",h5:"Antraštė 5",h6:"Antraštė 6"},lists:{unordered:"Suženklintasis sąrašas",ordered:"Sunumeruotas sąrašas"},options:{help:"Pagalba",fullscreen:"Viso ekrano režimas",codeview:"HTML kodo peržiūra"},paragraph:{paragraph:"Pastraipa",outdent:"Sumažinti įtrauką",indent:"Padidinti įtrauką",left:"Kairinė lygiuotė",center:"Centrinė lygiuotė",right:"Dešininė lygiuotė",justify:"Abipusis išlyginimas"},color:{recent:"Paskutinė naudota spalva",more:"Daugiau spalvų",background:"Fono spalva",foreground:"Šrifto spalva",transparent:"Permatoma",setTransparent:"Nustatyti skaidrumo intensyvumą",reset:"Atkurti",resetToDefault:"Atstatyti numatytąją spalvą"},shortcut:{shortcuts:"Spartieji klavišai",close:"Uždaryti",textFormatting:"Teksto formatavimas",action:"Veiksmas",paragraphFormatting:"Pastraipos formatavimas",documentStyle:"Dokumento stilius",extraKeys:"Papildomi klavišų deriniai"},help:{insertParagraph:"Insert Paragraph",undo:"Undoes the last command",redo:"Redoes the last command",tab:"Tab",untab:"Untab",bold:"Set a bold style",italic:"Set a italic style",underline:"Set a underline style",strikethrough:"Set a strikethrough style",removeFormat:"Clean a style",justifyLeft:"Set left align",justifyCenter:"Set center align",justifyRight:"Set right align",justifyFull:"Set full align",insertUnorderedList:"Toggle unordered list",insertOrderedList:"Toggle ordered list",outdent:"Outdent on current paragraph",indent:"Indent on current paragraph",formatPara:"Change current block's format as a paragraph(P tag)",formatH1:"Change current block's format as H1",formatH2:"Change current block's format as H2",formatH3:"Change current block's format as H3",formatH4:"Change current block's format as H4",formatH5:"Change current block's format as H5",formatH6:"Change current block's format as H6",insertHorizontalRule:"Insert horizontal rule","linkDialog.show":"Show Link Dialog"},history:{undo:"Anuliuoti veiksmą",redo:"Perdaryti veiksmą"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-lt-LV.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-lt-LV.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 29);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 29:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'lv-LV': {
|
||||
font: {
|
||||
bold: 'Treknraksts',
|
||||
italic: 'Kursīvs',
|
||||
underline: 'Pasvītrots',
|
||||
clear: 'Noņemt formatējumu',
|
||||
height: 'Līnijas augstums',
|
||||
name: 'Fonts',
|
||||
strikethrough: 'Nosvītrots',
|
||||
superscript: 'Augšraksts',
|
||||
subscript: 'Apakšraksts',
|
||||
size: 'Fonta lielums'
|
||||
},
|
||||
image: {
|
||||
image: 'Attēls',
|
||||
insert: 'Ievietot attēlu',
|
||||
resizeFull: 'Pilns izmērts',
|
||||
resizeHalf: 'Samazināt 50%',
|
||||
resizeQuarter: 'Samazināt 25%',
|
||||
floatLeft: 'Līdzināt pa kreisi',
|
||||
floatRight: 'Līdzināt pa labi',
|
||||
floatNone: 'Nelīdzināt',
|
||||
shapeRounded: 'Forma: apaļām malām',
|
||||
shapeCircle: 'Forma: aplis',
|
||||
shapeThumbnail: 'Forma: rāmītis',
|
||||
shapeNone: 'Forma: orģināla',
|
||||
dragImageHere: 'Ievēlciet attēlu šeit',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Izvēlēties failu',
|
||||
maximumFileSize: 'Maksimālais faila izmērs',
|
||||
maximumFileSizeError: 'Faila izmērs pārāk liels!',
|
||||
url: 'Attēla URL',
|
||||
remove: 'Dzēst attēlu',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video Link',
|
||||
insert: 'Insert Video',
|
||||
url: 'Video URL?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Saite',
|
||||
insert: 'Ievietot saiti',
|
||||
unlink: 'Noņemt saiti',
|
||||
edit: 'Rediģēt',
|
||||
textToDisplay: 'Saites saturs',
|
||||
url: 'Koks URL adresas yra susietas?',
|
||||
openInNewWindow: 'Atvērt jaunā logā'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabula',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Ievietot līniju'
|
||||
},
|
||||
style: {
|
||||
style: 'Stils',
|
||||
p: 'Parasts',
|
||||
blockquote: 'Citāts',
|
||||
pre: 'Kods',
|
||||
h1: 'Virsraksts h1',
|
||||
h2: 'Virsraksts h2',
|
||||
h3: 'Virsraksts h3',
|
||||
h4: 'Virsraksts h4',
|
||||
h5: 'Virsraksts h5',
|
||||
h6: 'Virsraksts h6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Nenumurēts saraksts',
|
||||
ordered: 'Numurēts saraksts'
|
||||
},
|
||||
options: {
|
||||
help: 'Palīdzība',
|
||||
fullscreen: 'Pa visu ekrānu',
|
||||
codeview: 'HTML kods'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragrāfs',
|
||||
outdent: 'Samazināt atkāpi',
|
||||
indent: 'Palielināt atkāpi',
|
||||
left: 'Līdzināt pa kreisi',
|
||||
center: 'Centrēt',
|
||||
right: 'Līdzināt pa labi',
|
||||
justify: 'Līdzināt gar abām malām'
|
||||
},
|
||||
color: {
|
||||
recent: 'Nesen izmantotās',
|
||||
more: 'Citas krāsas',
|
||||
background: 'Fona krāsa',
|
||||
foreground: 'Fonta krāsa',
|
||||
transparent: 'Caurspīdīgs',
|
||||
setTransparent: 'Iestatīt caurspīdīgumu',
|
||||
reset: 'Atjaunot',
|
||||
resetToDefault: 'Atjaunot noklusējumu'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Saīsnes',
|
||||
close: 'Aizvērt',
|
||||
textFormatting: 'Teksta formatēšana',
|
||||
action: 'Darbība',
|
||||
paragraphFormatting: 'Paragrāfa formatēšana',
|
||||
documentStyle: 'Dokumenta stils',
|
||||
extraKeys: 'Citas taustiņu kombinācijas'
|
||||
},
|
||||
help: {
|
||||
insertParagraph: 'Ievietot Paragrāfu',
|
||||
undo: 'Atcelt iepriekšējo darbību',
|
||||
redo: 'Atkārtot atcelto darbību',
|
||||
tab: 'Atkāpe',
|
||||
untab: 'Samazināt atkāpi',
|
||||
bold: 'Pārvērst tekstu treknrakstā',
|
||||
italic: 'Pārvērst tekstu slīprakstā (kursīvā)',
|
||||
underline: 'Pasvītrot tekstu',
|
||||
strikethrough: 'Nosvītrot tekstu',
|
||||
removeFormat: 'Notīrīt stilu no teksta',
|
||||
justifyLeft: 'Līdzīnāt saturu pa kreisi',
|
||||
justifyCenter: 'Centrēt saturu',
|
||||
justifyRight: 'Līdzīnāt saturu pa labi',
|
||||
justifyFull: 'Izlīdzināt saturu gar abām malām',
|
||||
insertUnorderedList: 'Ievietot nenumurētu sarakstu',
|
||||
insertOrderedList: 'Ievietot numurētu sarakstu',
|
||||
outdent: 'Samazināt/noņemt atkāpi paragrāfam',
|
||||
indent: 'Uzlikt atkāpi paragrāfam',
|
||||
formatPara: 'Mainīt bloka tipu uz (p) Paragrāfu',
|
||||
formatH1: 'Mainīt bloka tipu uz virsrakstu H1',
|
||||
formatH2: 'Mainīt bloka tipu uz virsrakstu H2',
|
||||
formatH3: 'Mainīt bloka tipu uz virsrakstu H3',
|
||||
formatH4: 'Mainīt bloka tipu uz virsrakstu H4',
|
||||
formatH5: 'Mainīt bloka tipu uz virsrakstu H5',
|
||||
formatH6: 'Mainīt bloka tipu uz virsrakstu H6',
|
||||
insertHorizontalRule: 'Ievietot horizontālu līniju',
|
||||
'linkDialog.show': 'Parādīt saites logu'
|
||||
},
|
||||
history: {
|
||||
undo: 'Atsauks (undo)',
|
||||
redo: 'Atkārtot (redo)'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-lt-LV.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-lt-LV.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-lt-LV.min.js.LICENSE.txt */
|
||||
!function(t,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var r=e();for(var a in r)("object"==typeof exports?exports:t)[a]=r[a]}}(window,(function(){return function(t){var e={};function r(a){if(e[a])return e[a].exports;var i=e[a]={i:a,l:!1,exports:{}};return t[a].call(i.exports,i,i.exports,r),i.l=!0,i.exports}return r.m=t,r.c=e,r.d=function(t,e,a){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:a})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var a=Object.create(null);if(r.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)r.d(a,i,function(e){return t[e]}.bind(null,i));return a},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=29)}({29:function(t,e){var r;(r=jQuery).extend(r.summernote.lang,{"lv-LV":{font:{bold:"Treknraksts",italic:"Kursīvs",underline:"Pasvītrots",clear:"Noņemt formatējumu",height:"Līnijas augstums",name:"Fonts",strikethrough:"Nosvītrots",superscript:"Augšraksts",subscript:"Apakšraksts",size:"Fonta lielums"},image:{image:"Attēls",insert:"Ievietot attēlu",resizeFull:"Pilns izmērts",resizeHalf:"Samazināt 50%",resizeQuarter:"Samazināt 25%",floatLeft:"Līdzināt pa kreisi",floatRight:"Līdzināt pa labi",floatNone:"Nelīdzināt",shapeRounded:"Forma: apaļām malām",shapeCircle:"Forma: aplis",shapeThumbnail:"Forma: rāmītis",shapeNone:"Forma: orģināla",dragImageHere:"Ievēlciet attēlu šeit",dropImage:"Drop image or Text",selectFromFiles:"Izvēlēties failu",maximumFileSize:"Maksimālais faila izmērs",maximumFileSizeError:"Faila izmērs pārāk liels!",url:"Attēla URL",remove:"Dzēst attēlu",original:"Original"},video:{video:"Video",videoLink:"Video Link",insert:"Insert Video",url:"Video URL?",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)"},link:{link:"Saite",insert:"Ievietot saiti",unlink:"Noņemt saiti",edit:"Rediģēt",textToDisplay:"Saites saturs",url:"Koks URL adresas yra susietas?",openInNewWindow:"Atvērt jaunā logā"},table:{table:"Tabula",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Ievietot līniju"},style:{style:"Stils",p:"Parasts",blockquote:"Citāts",pre:"Kods",h1:"Virsraksts h1",h2:"Virsraksts h2",h3:"Virsraksts h3",h4:"Virsraksts h4",h5:"Virsraksts h5",h6:"Virsraksts h6"},lists:{unordered:"Nenumurēts saraksts",ordered:"Numurēts saraksts"},options:{help:"Palīdzība",fullscreen:"Pa visu ekrānu",codeview:"HTML kods"},paragraph:{paragraph:"Paragrāfs",outdent:"Samazināt atkāpi",indent:"Palielināt atkāpi",left:"Līdzināt pa kreisi",center:"Centrēt",right:"Līdzināt pa labi",justify:"Līdzināt gar abām malām"},color:{recent:"Nesen izmantotās",more:"Citas krāsas",background:"Fona krāsa",foreground:"Fonta krāsa",transparent:"Caurspīdīgs",setTransparent:"Iestatīt caurspīdīgumu",reset:"Atjaunot",resetToDefault:"Atjaunot noklusējumu"},shortcut:{shortcuts:"Saīsnes",close:"Aizvērt",textFormatting:"Teksta formatēšana",action:"Darbība",paragraphFormatting:"Paragrāfa formatēšana",documentStyle:"Dokumenta stils",extraKeys:"Citas taustiņu kombinācijas"},help:{insertParagraph:"Ievietot Paragrāfu",undo:"Atcelt iepriekšējo darbību",redo:"Atkārtot atcelto darbību",tab:"Atkāpe",untab:"Samazināt atkāpi",bold:"Pārvērst tekstu treknrakstā",italic:"Pārvērst tekstu slīprakstā (kursīvā)",underline:"Pasvītrot tekstu",strikethrough:"Nosvītrot tekstu",removeFormat:"Notīrīt stilu no teksta",justifyLeft:"Līdzīnāt saturu pa kreisi",justifyCenter:"Centrēt saturu",justifyRight:"Līdzīnāt saturu pa labi",justifyFull:"Izlīdzināt saturu gar abām malām",insertUnorderedList:"Ievietot nenumurētu sarakstu",insertOrderedList:"Ievietot numurētu sarakstu",outdent:"Samazināt/noņemt atkāpi paragrāfam",indent:"Uzlikt atkāpi paragrāfam",formatPara:"Mainīt bloka tipu uz (p) Paragrāfu",formatH1:"Mainīt bloka tipu uz virsrakstu H1",formatH2:"Mainīt bloka tipu uz virsrakstu H2",formatH3:"Mainīt bloka tipu uz virsrakstu H3",formatH4:"Mainīt bloka tipu uz virsrakstu H4",formatH5:"Mainīt bloka tipu uz virsrakstu H5",formatH6:"Mainīt bloka tipu uz virsrakstu H6",insertHorizontalRule:"Ievietot horizontālu līniju","linkDialog.show":"Parādīt saites logu"},history:{undo:"Atsauks (undo)",redo:"Atkārtot (redo)"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
274
public/vendor/editor/dist/lang/summernote-mn-MN.js
vendored
Executable file
274
public/vendor/editor/dist/lang/summernote-mn-MN.js
vendored
Executable file
@@ -0,0 +1,274 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 30);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 30:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// Starsoft Mongolia LLC Temuujin Ariunbold
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'mn-MN': {
|
||||
font: {
|
||||
bold: 'Тод',
|
||||
italic: 'Налуу',
|
||||
underline: 'Доогуур зураас',
|
||||
clear: 'Цэвэрлэх',
|
||||
height: 'Өндөр',
|
||||
name: 'Фонт',
|
||||
superscript: 'Дээд илтгэгч',
|
||||
subscript: 'Доод илтгэгч',
|
||||
strikethrough: 'Дарах',
|
||||
size: 'Хэмжээ'
|
||||
},
|
||||
image: {
|
||||
image: 'Зураг',
|
||||
insert: 'Оруулах',
|
||||
resizeFull: 'Хэмжээ бүтэн',
|
||||
resizeHalf: 'Хэмжээ 1/2',
|
||||
resizeQuarter: 'Хэмжээ 1/4',
|
||||
floatLeft: 'Зүүн талд байрлуулах',
|
||||
floatRight: 'Баруун талд байрлуулах',
|
||||
floatNone: 'Анхдагч байрлалд аваачих',
|
||||
shapeRounded: 'Хүрээ: Дугуй',
|
||||
shapeCircle: 'Хүрээ: Тойрог',
|
||||
shapeThumbnail: 'Хүрээ: Хураангуй',
|
||||
shapeNone: 'Хүрээгүй',
|
||||
dragImageHere: 'Зургийг энд чирч авчирна уу',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Файлуудаас сонгоно уу',
|
||||
maximumFileSize: 'Файлын дээд хэмжээ',
|
||||
maximumFileSizeError: 'Файлын дээд хэмжээ хэтэрсэн',
|
||||
url: 'Зургийн URL',
|
||||
remove: 'Зургийг устгах',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Видео',
|
||||
videoLink: 'Видео холбоос',
|
||||
insert: 'Видео оруулах',
|
||||
url: 'Видео URL?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion болон Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Холбоос',
|
||||
insert: 'Холбоос оруулах',
|
||||
unlink: 'Холбоос арилгах',
|
||||
edit: 'Засварлах',
|
||||
textToDisplay: 'Харуулах бичвэр',
|
||||
url: 'Энэ холбоос хаашаа очих вэ?',
|
||||
openInNewWindow: 'Шинэ цонхонд нээх'
|
||||
},
|
||||
table: {
|
||||
table: 'Хүснэгт',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Хэвтээ шугам оруулах'
|
||||
},
|
||||
style: {
|
||||
style: 'Хэв маяг',
|
||||
p: 'p',
|
||||
blockquote: 'Иш татах',
|
||||
pre: 'Эх сурвалж',
|
||||
h1: 'Гарчиг 1',
|
||||
h2: 'Гарчиг 2',
|
||||
h3: 'Гарчиг 3',
|
||||
h4: 'Гарчиг 4',
|
||||
h5: 'Гарчиг 5',
|
||||
h6: 'Гарчиг 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Эрэмбэлэгдээгүй',
|
||||
ordered: 'Эрэмбэлэгдсэн'
|
||||
},
|
||||
options: {
|
||||
help: 'Тусламж',
|
||||
fullscreen: 'Дэлгэцийг дүүргэх',
|
||||
codeview: 'HTML-Code харуулах'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Хэсэг',
|
||||
outdent: 'Догол мөр хасах',
|
||||
indent: 'Догол мөр нэмэх',
|
||||
left: 'Зүүн тийш эгнүүлэх',
|
||||
center: 'Төвд эгнүүлэх',
|
||||
right: 'Баруун тийш эгнүүлэх',
|
||||
justify: 'Мөрийг тэгшлэх'
|
||||
},
|
||||
color: {
|
||||
recent: 'Сүүлд хэрэглэсэн өнгө',
|
||||
more: 'Өөр өнгөнүүд',
|
||||
background: 'Дэвсгэр өнгө',
|
||||
foreground: 'Үсгийн өнгө',
|
||||
transparent: 'Тунгалаг',
|
||||
setTransparent: 'Тунгалаг болгох',
|
||||
reset: 'Анхдагч өнгөөр тохируулах',
|
||||
resetToDefault: 'Хэвд нь оруулах'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Богино холбоос',
|
||||
close: 'Хаалт',
|
||||
textFormatting: 'Бичвэрийг хэлбэржүүлэх',
|
||||
action: 'Үйлдэл',
|
||||
paragraphFormatting: 'Догол мөрийг хэлбэржүүлэх',
|
||||
documentStyle: 'Бичиг баримтын хэв загвар',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Буцаах',
|
||||
redo: 'Дахин хийх'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'Тусгай тэмдэгт',
|
||||
select: 'Тусгай тэмдэгт сонгох'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-mn-MN.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-mn-MN.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
272
public/vendor/editor/dist/lang/summernote-nb-NO.js
vendored
Executable file
272
public/vendor/editor/dist/lang/summernote-nb-NO.js
vendored
Executable file
@@ -0,0 +1,272 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 31);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 31:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'nb-NO': {
|
||||
font: {
|
||||
bold: 'Fet',
|
||||
italic: 'Kursiv',
|
||||
underline: 'Understrek',
|
||||
clear: 'Fjern formatering',
|
||||
height: 'Linjehøyde',
|
||||
name: 'Skrifttype',
|
||||
strikethrough: 'Gjennomstrek',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Skriftstørrelse'
|
||||
},
|
||||
image: {
|
||||
image: 'Bilde',
|
||||
insert: 'Sett inn bilde',
|
||||
resizeFull: 'Sett full størrelse',
|
||||
resizeHalf: 'Sett halv størrelse',
|
||||
resizeQuarter: 'Sett kvart størrelse',
|
||||
floatLeft: 'Flyt til venstre',
|
||||
floatRight: 'Flyt til høyre',
|
||||
floatNone: 'Fjern flyt',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Dra et bilde hit',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Velg fra filer',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Bilde-URL',
|
||||
remove: 'Fjern bilde',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Videolenke',
|
||||
insert: 'Sett inn video',
|
||||
url: 'Video-URL',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion eller Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Lenke',
|
||||
insert: 'Sett inn lenke',
|
||||
unlink: 'Fjern lenke',
|
||||
edit: 'Rediger',
|
||||
textToDisplay: 'Visningstekst',
|
||||
url: 'Til hvilken URL skal denne lenken peke?',
|
||||
openInNewWindow: 'Åpne i nytt vindu'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabell',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Sett inn horisontal linje'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
p: 'p',
|
||||
blockquote: 'Sitat',
|
||||
pre: 'Kode',
|
||||
h1: 'Overskrift 1',
|
||||
h2: 'Overskrift 2',
|
||||
h3: 'Overskrift 3',
|
||||
h4: 'Overskrift 4',
|
||||
h5: 'Overskrift 5',
|
||||
h6: 'Overskrift 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Punktliste',
|
||||
ordered: 'Nummerert liste'
|
||||
},
|
||||
options: {
|
||||
help: 'Hjelp',
|
||||
fullscreen: 'Fullskjerm',
|
||||
codeview: 'HTML-visning'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Avsnitt',
|
||||
outdent: 'Tilbakerykk',
|
||||
indent: 'Innrykk',
|
||||
left: 'Venstrejustert',
|
||||
center: 'Midtstilt',
|
||||
right: 'Høyrejustert',
|
||||
justify: 'Blokkjustert'
|
||||
},
|
||||
color: {
|
||||
recent: 'Nylig valgt farge',
|
||||
more: 'Flere farger',
|
||||
background: 'Bakgrunnsfarge',
|
||||
foreground: 'Skriftfarge',
|
||||
transparent: 'Gjennomsiktig',
|
||||
setTransparent: 'Sett gjennomsiktig',
|
||||
reset: 'Nullstill',
|
||||
resetToDefault: 'Nullstill til standard'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Hurtigtaster',
|
||||
close: 'Lukk',
|
||||
textFormatting: 'Tekstformatering',
|
||||
action: 'Handling',
|
||||
paragraphFormatting: 'Avsnittsformatering',
|
||||
documentStyle: 'Dokumentstil'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Angre',
|
||||
redo: 'Gjør om'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-nb-NO.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-nb-NO.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-nb-NO.min.js.LICENSE.txt */
|
||||
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var r=t();for(var n in r)("object"==typeof exports?exports:e)[n]=r[n]}}(window,(function(){return function(e){var t={};function r(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,r),i.l=!0,i.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)r.d(n,i,function(t){return e[t]}.bind(null,i));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=31)}({31:function(e,t){var r;(r=jQuery).extend(r.summernote.lang,{"nb-NO":{font:{bold:"Fet",italic:"Kursiv",underline:"Understrek",clear:"Fjern formatering",height:"Linjehøyde",name:"Skrifttype",strikethrough:"Gjennomstrek",subscript:"Subscript",superscript:"Superscript",size:"Skriftstørrelse"},image:{image:"Bilde",insert:"Sett inn bilde",resizeFull:"Sett full størrelse",resizeHalf:"Sett halv størrelse",resizeQuarter:"Sett kvart størrelse",floatLeft:"Flyt til venstre",floatRight:"Flyt til høyre",floatNone:"Fjern flyt",shapeRounded:"Shape: Rounded",shapeCircle:"Shape: Circle",shapeThumbnail:"Shape: Thumbnail",shapeNone:"Shape: None",dragImageHere:"Dra et bilde hit",dropImage:"Drop image or Text",selectFromFiles:"Velg fra filer",maximumFileSize:"Maximum file size",maximumFileSizeError:"Maximum file size exceeded.",url:"Bilde-URL",remove:"Fjern bilde",original:"Original"},video:{video:"Video",videoLink:"Videolenke",insert:"Sett inn video",url:"Video-URL",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion eller Youku)"},link:{link:"Lenke",insert:"Sett inn lenke",unlink:"Fjern lenke",edit:"Rediger",textToDisplay:"Visningstekst",url:"Til hvilken URL skal denne lenken peke?",openInNewWindow:"Åpne i nytt vindu"},table:{table:"Tabell",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Sett inn horisontal linje"},style:{style:"Stil",p:"p",blockquote:"Sitat",pre:"Kode",h1:"Overskrift 1",h2:"Overskrift 2",h3:"Overskrift 3",h4:"Overskrift 4",h5:"Overskrift 5",h6:"Overskrift 6"},lists:{unordered:"Punktliste",ordered:"Nummerert liste"},options:{help:"Hjelp",fullscreen:"Fullskjerm",codeview:"HTML-visning"},paragraph:{paragraph:"Avsnitt",outdent:"Tilbakerykk",indent:"Innrykk",left:"Venstrejustert",center:"Midtstilt",right:"Høyrejustert",justify:"Blokkjustert"},color:{recent:"Nylig valgt farge",more:"Flere farger",background:"Bakgrunnsfarge",foreground:"Skriftfarge",transparent:"Gjennomsiktig",setTransparent:"Sett gjennomsiktig",reset:"Nullstill",resetToDefault:"Nullstill til standard"},shortcut:{shortcuts:"Hurtigtaster",close:"Lukk",textFormatting:"Tekstformatering",action:"Handling",paragraphFormatting:"Avsnittsformatering",documentStyle:"Dokumentstil"},help:{insertParagraph:"Insert Paragraph",undo:"Undoes the last command",redo:"Redoes the last command",tab:"Tab",untab:"Untab",bold:"Set a bold style",italic:"Set a italic style",underline:"Set a underline style",strikethrough:"Set a strikethrough style",removeFormat:"Clean a style",justifyLeft:"Set left align",justifyCenter:"Set center align",justifyRight:"Set right align",justifyFull:"Set full align",insertUnorderedList:"Toggle unordered list",insertOrderedList:"Toggle ordered list",outdent:"Outdent on current paragraph",indent:"Indent on current paragraph",formatPara:"Change current block's format as a paragraph(P tag)",formatH1:"Change current block's format as H1",formatH2:"Change current block's format as H2",formatH3:"Change current block's format as H3",formatH4:"Change current block's format as H4",formatH5:"Change current block's format as H5",formatH6:"Change current block's format as H6",insertHorizontalRule:"Insert horizontal rule","linkDialog.show":"Show Link Dialog"},history:{undo:"Angre",redo:"Gjør om"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-nl-NL.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-nl-NL.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 32);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 32:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'nl-NL': {
|
||||
font: {
|
||||
bold: 'Vet',
|
||||
italic: 'Cursief',
|
||||
underline: 'Onderstrepen',
|
||||
clear: 'Stijl verwijderen',
|
||||
height: 'Regelhoogte',
|
||||
name: 'Lettertype',
|
||||
strikethrough: 'Doorhalen',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Tekstgrootte'
|
||||
},
|
||||
image: {
|
||||
image: 'Afbeelding',
|
||||
insert: 'Afbeelding invoegen',
|
||||
resizeFull: 'Volledige breedte',
|
||||
resizeHalf: 'Halve breedte',
|
||||
resizeQuarter: 'Kwart breedte',
|
||||
floatLeft: 'Links uitlijnen',
|
||||
floatRight: 'Rechts uitlijnen',
|
||||
floatNone: 'Geen uitlijning',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Sleep hier een afbeelding naar toe',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Selecteer een bestand',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URL van de afbeelding',
|
||||
remove: 'Verwijder afbeelding',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video link',
|
||||
insert: 'Video invoegen',
|
||||
url: 'URL van de video',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion of Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Link invoegen',
|
||||
unlink: 'Link verwijderen',
|
||||
edit: 'Wijzigen',
|
||||
textToDisplay: 'Tekst van link',
|
||||
url: 'Naar welke URL moet deze link verwijzen?',
|
||||
openInNewWindow: 'Open in nieuw venster'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabel',
|
||||
addRowAbove: 'Rij hierboven invoegen',
|
||||
addRowBelow: 'Rij hieronder invoegen',
|
||||
addColLeft: 'Kolom links toevoegen',
|
||||
addColRight: 'Kolom rechts toevoegen',
|
||||
delRow: 'Verwijder rij',
|
||||
delCol: 'Verwijder kolom',
|
||||
delTable: 'Verwijder tabel'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Horizontale lijn invoegen'
|
||||
},
|
||||
style: {
|
||||
style: 'Stijl',
|
||||
p: 'Normaal',
|
||||
blockquote: 'Quote',
|
||||
pre: 'Code',
|
||||
h1: 'Kop 1',
|
||||
h2: 'Kop 2',
|
||||
h3: 'Kop 3',
|
||||
h4: 'Kop 4',
|
||||
h5: 'Kop 5',
|
||||
h6: 'Kop 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Ongeordende lijst',
|
||||
ordered: 'Geordende lijst'
|
||||
},
|
||||
options: {
|
||||
help: 'Help',
|
||||
fullscreen: 'Volledig scherm',
|
||||
codeview: 'Bekijk Code'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraaf',
|
||||
outdent: 'Inspringen verkleinen',
|
||||
indent: 'Inspringen vergroten',
|
||||
left: 'Links uitlijnen',
|
||||
center: 'Centreren',
|
||||
right: 'Rechts uitlijnen',
|
||||
justify: 'Uitvullen'
|
||||
},
|
||||
color: {
|
||||
recent: 'Recente kleur',
|
||||
more: 'Meer kleuren',
|
||||
background: 'Achtergrond kleur',
|
||||
foreground: 'Tekst kleur',
|
||||
transparent: 'Transparant',
|
||||
setTransparent: 'Transparant',
|
||||
reset: 'Standaard',
|
||||
resetToDefault: 'Standaard kleur'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Toetsencombinaties',
|
||||
close: 'sluiten',
|
||||
textFormatting: 'Tekststijlen',
|
||||
action: 'Acties',
|
||||
paragraphFormatting: 'Paragraafstijlen',
|
||||
documentStyle: 'Documentstijlen',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Alinea invoegen',
|
||||
'undo': 'Laatste handeling ongedaan maken',
|
||||
'redo': 'Laatste handeling opnieuw uitvoeren',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Herstel tab',
|
||||
'bold': 'Stel stijl in als vet',
|
||||
'italic': 'Stel stijl in als cursief',
|
||||
'underline': 'Stel stijl in als onderstreept',
|
||||
'strikethrough': 'Stel stijl in als doorgestreept',
|
||||
'removeFormat': 'Verwijder stijl',
|
||||
'justifyLeft': 'Lijn links uit',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Lijn rechts uit',
|
||||
'justifyFull': 'Lijn uit op volledige breedte',
|
||||
'insertUnorderedList': 'Zet ongeordende lijstweergave aan',
|
||||
'insertOrderedList': 'Zet geordende lijstweergave aan',
|
||||
'outdent': 'Verwijder inspringing huidige alinea',
|
||||
'indent': 'Inspringen op huidige alinea',
|
||||
'formatPara': 'Wijzig formattering huidig blok in alinea(P tag)',
|
||||
'formatH1': 'Formatteer huidig blok als H1',
|
||||
'formatH2': 'Formatteer huidig blok als H2',
|
||||
'formatH3': 'Formatteer huidig blok als H3',
|
||||
'formatH4': 'Formatteer huidig blok als H4',
|
||||
'formatH5': 'Formatteer huidig blok als H5',
|
||||
'formatH6': 'Formatteer huidig blok als H6',
|
||||
'insertHorizontalRule': 'Invoegen horizontale lijn',
|
||||
'linkDialog.show': 'Toon Link Dialoogvenster'
|
||||
},
|
||||
history: {
|
||||
undo: 'Ongedaan maken',
|
||||
redo: 'Opnieuw doorvoeren'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIALE TEKENS',
|
||||
select: 'Selecteer Speciale Tekens'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-nl-NL.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-nl-NL.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-nl-NL.min.js.LICENSE.txt */
|
||||
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var n=t();for(var r in n)("object"==typeof exports?exports:e)[r]=n[r]}}(window,(function(){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=32)}({32:function(e,t){var n;(n=jQuery).extend(n.summernote.lang,{"nl-NL":{font:{bold:"Vet",italic:"Cursief",underline:"Onderstrepen",clear:"Stijl verwijderen",height:"Regelhoogte",name:"Lettertype",strikethrough:"Doorhalen",subscript:"Subscript",superscript:"Superscript",size:"Tekstgrootte"},image:{image:"Afbeelding",insert:"Afbeelding invoegen",resizeFull:"Volledige breedte",resizeHalf:"Halve breedte",resizeQuarter:"Kwart breedte",floatLeft:"Links uitlijnen",floatRight:"Rechts uitlijnen",floatNone:"Geen uitlijning",shapeRounded:"Shape: Rounded",shapeCircle:"Shape: Circle",shapeThumbnail:"Shape: Thumbnail",shapeNone:"Shape: None",dragImageHere:"Sleep hier een afbeelding naar toe",dropImage:"Drop image or Text",selectFromFiles:"Selecteer een bestand",maximumFileSize:"Maximum file size",maximumFileSizeError:"Maximum file size exceeded.",url:"URL van de afbeelding",remove:"Verwijder afbeelding",original:"Original"},video:{video:"Video",videoLink:"Video link",insert:"Video invoegen",url:"URL van de video",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion of Youku)"},link:{link:"Link",insert:"Link invoegen",unlink:"Link verwijderen",edit:"Wijzigen",textToDisplay:"Tekst van link",url:"Naar welke URL moet deze link verwijzen?",openInNewWindow:"Open in nieuw venster"},table:{table:"Tabel",addRowAbove:"Rij hierboven invoegen",addRowBelow:"Rij hieronder invoegen",addColLeft:"Kolom links toevoegen",addColRight:"Kolom rechts toevoegen",delRow:"Verwijder rij",delCol:"Verwijder kolom",delTable:"Verwijder tabel"},hr:{insert:"Horizontale lijn invoegen"},style:{style:"Stijl",p:"Normaal",blockquote:"Quote",pre:"Code",h1:"Kop 1",h2:"Kop 2",h3:"Kop 3",h4:"Kop 4",h5:"Kop 5",h6:"Kop 6"},lists:{unordered:"Ongeordende lijst",ordered:"Geordende lijst"},options:{help:"Help",fullscreen:"Volledig scherm",codeview:"Bekijk Code"},paragraph:{paragraph:"Paragraaf",outdent:"Inspringen verkleinen",indent:"Inspringen vergroten",left:"Links uitlijnen",center:"Centreren",right:"Rechts uitlijnen",justify:"Uitvullen"},color:{recent:"Recente kleur",more:"Meer kleuren",background:"Achtergrond kleur",foreground:"Tekst kleur",transparent:"Transparant",setTransparent:"Transparant",reset:"Standaard",resetToDefault:"Standaard kleur"},shortcut:{shortcuts:"Toetsencombinaties",close:"sluiten",textFormatting:"Tekststijlen",action:"Acties",paragraphFormatting:"Paragraafstijlen",documentStyle:"Documentstijlen",extraKeys:"Extra keys"},help:{insertParagraph:"Alinea invoegen",undo:"Laatste handeling ongedaan maken",redo:"Laatste handeling opnieuw uitvoeren",tab:"Tab",untab:"Herstel tab",bold:"Stel stijl in als vet",italic:"Stel stijl in als cursief",underline:"Stel stijl in als onderstreept",strikethrough:"Stel stijl in als doorgestreept",removeFormat:"Verwijder stijl",justifyLeft:"Lijn links uit",justifyCenter:"Set center align",justifyRight:"Lijn rechts uit",justifyFull:"Lijn uit op volledige breedte",insertUnorderedList:"Zet ongeordende lijstweergave aan",insertOrderedList:"Zet geordende lijstweergave aan",outdent:"Verwijder inspringing huidige alinea",indent:"Inspringen op huidige alinea",formatPara:"Wijzig formattering huidig blok in alinea(P tag)",formatH1:"Formatteer huidig blok als H1",formatH2:"Formatteer huidig blok als H2",formatH3:"Formatteer huidig blok als H3",formatH4:"Formatteer huidig blok als H4",formatH5:"Formatteer huidig blok als H5",formatH6:"Formatteer huidig blok als H6",insertHorizontalRule:"Invoegen horizontale lijn","linkDialog.show":"Toon Link Dialoogvenster"},history:{undo:"Ongedaan maken",redo:"Opnieuw doorvoeren"},specialChar:{specialChar:"SPECIALE TEKENS",select:"Selecteer Speciale Tekens"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-pl-PL.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-pl-PL.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 33);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 33:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'pl-PL': {
|
||||
font: {
|
||||
bold: 'Pogrubienie',
|
||||
italic: 'Pochylenie',
|
||||
underline: 'Podkreślenie',
|
||||
clear: 'Usuń formatowanie',
|
||||
height: 'Interlinia',
|
||||
name: 'Czcionka',
|
||||
strikethrough: 'Przekreślenie',
|
||||
subscript: 'Indeks dolny',
|
||||
superscript: 'Indeks górny',
|
||||
size: 'Rozmiar'
|
||||
},
|
||||
image: {
|
||||
image: 'Grafika',
|
||||
insert: 'Wstaw grafikę',
|
||||
resizeFull: 'Zmień rozmiar na 100%',
|
||||
resizeHalf: 'Zmień rozmiar na 50%',
|
||||
resizeQuarter: 'Zmień rozmiar na 25%',
|
||||
floatLeft: 'Po lewej',
|
||||
floatRight: 'Po prawej',
|
||||
floatNone: 'Równo z tekstem',
|
||||
shapeRounded: 'Kształt: zaokrąglone',
|
||||
shapeCircle: 'Kształt: okrąg',
|
||||
shapeThumbnail: 'Kształt: miniatura',
|
||||
shapeNone: 'Kształt: brak',
|
||||
dragImageHere: 'Przeciągnij grafikę lub tekst tutaj',
|
||||
dropImage: 'Przeciągnij grafikę lub tekst',
|
||||
selectFromFiles: 'Wybierz z dysku',
|
||||
maximumFileSize: 'Limit wielkości pliku',
|
||||
maximumFileSizeError: 'Przekroczono limit wielkości pliku.',
|
||||
url: 'Adres URL grafiki',
|
||||
remove: 'Usuń grafikę',
|
||||
original: 'Oryginał'
|
||||
},
|
||||
video: {
|
||||
video: 'Wideo',
|
||||
videoLink: 'Adres wideo',
|
||||
insert: 'Wstaw wideo',
|
||||
url: 'Adres wideo',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion lub Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Odnośnik',
|
||||
insert: 'Wstaw odnośnik',
|
||||
unlink: 'Usuń odnośnik',
|
||||
edit: 'Edytuj',
|
||||
textToDisplay: 'Tekst do wyświetlenia',
|
||||
url: 'Na jaki adres URL powinien przenosić ten odnośnik?',
|
||||
openInNewWindow: 'Otwórz w nowym oknie'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabela',
|
||||
addRowAbove: 'Dodaj wiersz powyżej',
|
||||
addRowBelow: 'Dodaj wiersz poniżej',
|
||||
addColLeft: 'Dodaj kolumnę po lewej',
|
||||
addColRight: 'Dodaj kolumnę po prawej',
|
||||
delRow: 'Usuń wiersz',
|
||||
delCol: 'Usuń kolumnę',
|
||||
delTable: 'Usuń tabelę'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Wstaw poziomą linię'
|
||||
},
|
||||
style: {
|
||||
style: 'Styl',
|
||||
p: 'pny',
|
||||
blockquote: 'Cytat',
|
||||
pre: 'Kod',
|
||||
h1: 'Nagłówek 1',
|
||||
h2: 'Nagłówek 2',
|
||||
h3: 'Nagłówek 3',
|
||||
h4: 'Nagłówek 4',
|
||||
h5: 'Nagłówek 5',
|
||||
h6: 'Nagłówek 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Lista wypunktowana',
|
||||
ordered: 'Lista numerowana'
|
||||
},
|
||||
options: {
|
||||
help: 'Pomoc',
|
||||
fullscreen: 'Pełny ekran',
|
||||
codeview: 'Źródło'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Akapit',
|
||||
outdent: 'Zmniejsz wcięcie',
|
||||
indent: 'Zwiększ wcięcie',
|
||||
left: 'Wyrównaj do lewej',
|
||||
center: 'Wyrównaj do środka',
|
||||
right: 'Wyrównaj do prawej',
|
||||
justify: 'Wyrównaj do lewej i prawej'
|
||||
},
|
||||
color: {
|
||||
recent: 'Ostani kolor',
|
||||
more: 'Więcej kolorów',
|
||||
background: 'Tło',
|
||||
foreground: 'Czcionka',
|
||||
transparent: 'Przeźroczysty',
|
||||
setTransparent: 'Przeźroczyste',
|
||||
reset: 'Zresetuj',
|
||||
resetToDefault: 'Domyślne'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Skróty klawiaturowe',
|
||||
close: 'Zamknij',
|
||||
textFormatting: 'Formatowanie tekstu',
|
||||
action: 'Akcja',
|
||||
paragraphFormatting: 'Formatowanie akapitu',
|
||||
documentStyle: 'Styl dokumentu',
|
||||
extraKeys: 'Dodatkowe klawisze'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Wstaw paragraf',
|
||||
'undo': 'Cofnij poprzednią operację',
|
||||
'redo': 'Przywróć poprzednią operację',
|
||||
'tab': 'Tabulacja',
|
||||
'untab': 'Usuń tabulację',
|
||||
'bold': 'Pogrubienie',
|
||||
'italic': 'Kursywa',
|
||||
'underline': 'Podkreślenie',
|
||||
'strikethrough': 'Przekreślenie',
|
||||
'removeFormat': 'Usuń formatowanie',
|
||||
'justifyLeft': 'Wyrównaj do lewej',
|
||||
'justifyCenter': 'Wyrównaj do środka',
|
||||
'justifyRight': 'Wyrównaj do prawej',
|
||||
'justifyFull': 'Justyfikacja',
|
||||
'insertUnorderedList': 'Nienumerowana lista',
|
||||
'insertOrderedList': 'Wypunktowana lista',
|
||||
'outdent': 'Zmniejsz wcięcie paragrafu',
|
||||
'indent': 'Zwiększ wcięcie paragrafu',
|
||||
'formatPara': 'Zamień format bloku na paragraf (tag P)',
|
||||
'formatH1': 'Zamień format bloku na H1',
|
||||
'formatH2': 'Zamień format bloku na H2',
|
||||
'formatH3': 'Zamień format bloku na H3',
|
||||
'formatH4': 'Zamień format bloku na H4',
|
||||
'formatH5': 'Zamień format bloku na H5',
|
||||
'formatH6': 'Zamień format bloku na H6',
|
||||
'insertHorizontalRule': 'Wstaw poziomą linię',
|
||||
'linkDialog.show': 'Pokaż dialog linkowania'
|
||||
},
|
||||
history: {
|
||||
undo: 'Cofnij',
|
||||
redo: 'Ponów'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'ZNAKI SPECJALNE',
|
||||
select: 'Wybierz Znak specjalny'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-pl-PL.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-pl-PL.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-pl-PL.min.js.LICENSE.txt */
|
||||
!function(e,r){if("object"==typeof exports&&"object"==typeof module)module.exports=r();else if("function"==typeof define&&define.amd)define([],r);else{var o=r();for(var a in o)("object"==typeof exports?exports:e)[a]=o[a]}}(window,(function(){return function(e){var r={};function o(a){if(r[a])return r[a].exports;var t=r[a]={i:a,l:!1,exports:{}};return e[a].call(t.exports,t,t.exports,o),t.l=!0,t.exports}return o.m=e,o.c=r,o.d=function(e,r,a){o.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:a})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,r){if(1&r&&(e=o(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(o.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var t in e)o.d(a,t,function(r){return e[r]}.bind(null,t));return a},o.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(r,"a",r),r},o.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},o.p="",o(o.s=33)}({33:function(e,r){var o;(o=jQuery).extend(o.summernote.lang,{"pl-PL":{font:{bold:"Pogrubienie",italic:"Pochylenie",underline:"Podkreślenie",clear:"Usuń formatowanie",height:"Interlinia",name:"Czcionka",strikethrough:"Przekreślenie",subscript:"Indeks dolny",superscript:"Indeks górny",size:"Rozmiar"},image:{image:"Grafika",insert:"Wstaw grafikę",resizeFull:"Zmień rozmiar na 100%",resizeHalf:"Zmień rozmiar na 50%",resizeQuarter:"Zmień rozmiar na 25%",floatLeft:"Po lewej",floatRight:"Po prawej",floatNone:"Równo z tekstem",shapeRounded:"Kształt: zaokrąglone",shapeCircle:"Kształt: okrąg",shapeThumbnail:"Kształt: miniatura",shapeNone:"Kształt: brak",dragImageHere:"Przeciągnij grafikę lub tekst tutaj",dropImage:"Przeciągnij grafikę lub tekst",selectFromFiles:"Wybierz z dysku",maximumFileSize:"Limit wielkości pliku",maximumFileSizeError:"Przekroczono limit wielkości pliku.",url:"Adres URL grafiki",remove:"Usuń grafikę",original:"Oryginał"},video:{video:"Wideo",videoLink:"Adres wideo",insert:"Wstaw wideo",url:"Adres wideo",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion lub Youku)"},link:{link:"Odnośnik",insert:"Wstaw odnośnik",unlink:"Usuń odnośnik",edit:"Edytuj",textToDisplay:"Tekst do wyświetlenia",url:"Na jaki adres URL powinien przenosić ten odnośnik?",openInNewWindow:"Otwórz w nowym oknie"},table:{table:"Tabela",addRowAbove:"Dodaj wiersz powyżej",addRowBelow:"Dodaj wiersz poniżej",addColLeft:"Dodaj kolumnę po lewej",addColRight:"Dodaj kolumnę po prawej",delRow:"Usuń wiersz",delCol:"Usuń kolumnę",delTable:"Usuń tabelę"},hr:{insert:"Wstaw poziomą linię"},style:{style:"Styl",p:"pny",blockquote:"Cytat",pre:"Kod",h1:"Nagłówek 1",h2:"Nagłówek 2",h3:"Nagłówek 3",h4:"Nagłówek 4",h5:"Nagłówek 5",h6:"Nagłówek 6"},lists:{unordered:"Lista wypunktowana",ordered:"Lista numerowana"},options:{help:"Pomoc",fullscreen:"Pełny ekran",codeview:"Źródło"},paragraph:{paragraph:"Akapit",outdent:"Zmniejsz wcięcie",indent:"Zwiększ wcięcie",left:"Wyrównaj do lewej",center:"Wyrównaj do środka",right:"Wyrównaj do prawej",justify:"Wyrównaj do lewej i prawej"},color:{recent:"Ostani kolor",more:"Więcej kolorów",background:"Tło",foreground:"Czcionka",transparent:"Przeźroczysty",setTransparent:"Przeźroczyste",reset:"Zresetuj",resetToDefault:"Domyślne"},shortcut:{shortcuts:"Skróty klawiaturowe",close:"Zamknij",textFormatting:"Formatowanie tekstu",action:"Akcja",paragraphFormatting:"Formatowanie akapitu",documentStyle:"Styl dokumentu",extraKeys:"Dodatkowe klawisze"},help:{insertParagraph:"Wstaw paragraf",undo:"Cofnij poprzednią operację",redo:"Przywróć poprzednią operację",tab:"Tabulacja",untab:"Usuń tabulację",bold:"Pogrubienie",italic:"Kursywa",underline:"Podkreślenie",strikethrough:"Przekreślenie",removeFormat:"Usuń formatowanie",justifyLeft:"Wyrównaj do lewej",justifyCenter:"Wyrównaj do środka",justifyRight:"Wyrównaj do prawej",justifyFull:"Justyfikacja",insertUnorderedList:"Nienumerowana lista",insertOrderedList:"Wypunktowana lista",outdent:"Zmniejsz wcięcie paragrafu",indent:"Zwiększ wcięcie paragrafu",formatPara:"Zamień format bloku na paragraf (tag P)",formatH1:"Zamień format bloku na H1",formatH2:"Zamień format bloku na H2",formatH3:"Zamień format bloku na H3",formatH4:"Zamień format bloku na H4",formatH5:"Zamień format bloku na H5",formatH6:"Zamień format bloku na H6",insertHorizontalRule:"Wstaw poziomą linię","linkDialog.show":"Pokaż dialog linkowania"},history:{undo:"Cofnij",redo:"Ponów"},specialChar:{specialChar:"ZNAKI SPECJALNE",select:"Wybierz Znak specjalny"}}})}})}));
|
||||
274
public/vendor/editor/dist/lang/summernote-pt-BR.js
vendored
Executable file
274
public/vendor/editor/dist/lang/summernote-pt-BR.js
vendored
Executable file
@@ -0,0 +1,274 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 34);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 34:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'pt-BR': {
|
||||
font: {
|
||||
bold: 'Negrito',
|
||||
italic: 'Itálico',
|
||||
underline: 'Sublinhado',
|
||||
clear: 'Remover estilo da fonte',
|
||||
height: 'Altura da linha',
|
||||
name: 'Fonte',
|
||||
strikethrough: 'Riscado',
|
||||
subscript: 'Subscrito',
|
||||
superscript: 'Sobrescrito',
|
||||
size: 'Tamanho da fonte'
|
||||
},
|
||||
image: {
|
||||
image: 'Imagem',
|
||||
insert: 'Inserir imagem',
|
||||
resizeFull: 'Redimensionar Completamente',
|
||||
resizeHalf: 'Redimensionar pela Metade',
|
||||
resizeQuarter: 'Redimensionar a um Quarto',
|
||||
floatLeft: 'Flutuar para Esquerda',
|
||||
floatRight: 'Flutuar para Direita',
|
||||
floatNone: 'Não Flutuar',
|
||||
shapeRounded: 'Forma: Arredondado',
|
||||
shapeCircle: 'Forma: Círculo',
|
||||
shapeThumbnail: 'Forma: Miniatura',
|
||||
shapeNone: 'Forma: Nenhum',
|
||||
dragImageHere: 'Arraste Imagem ou Texto para cá',
|
||||
dropImage: 'Solte Imagem ou Texto',
|
||||
selectFromFiles: 'Selecione a partir dos arquivos',
|
||||
maximumFileSize: 'Tamanho máximo do arquivo',
|
||||
maximumFileSizeError: 'Tamanho máximo do arquivo excedido.',
|
||||
url: 'URL da imagem',
|
||||
remove: 'Remover Imagem',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Vídeo',
|
||||
videoLink: 'Link para vídeo',
|
||||
insert: 'Inserir vídeo',
|
||||
url: 'URL do vídeo?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ou Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Inserir link',
|
||||
unlink: 'Remover link',
|
||||
edit: 'Editar',
|
||||
textToDisplay: 'Texto para exibir',
|
||||
url: 'Para qual URL este link leva?',
|
||||
openInNewWindow: 'Abrir em uma nova janela'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabela',
|
||||
addRowAbove: 'Adicionar linha acima',
|
||||
addRowBelow: 'Adicionar linha abaixo',
|
||||
addColLeft: 'Adicionar coluna à esquerda',
|
||||
addColRight: 'Adicionar coluna à direita',
|
||||
delRow: 'Excluir linha',
|
||||
delCol: 'Excluir coluna',
|
||||
delTable: 'Excluir tabela'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Linha horizontal'
|
||||
},
|
||||
style: {
|
||||
style: 'Estilo',
|
||||
p: 'Normal',
|
||||
blockquote: 'Citação',
|
||||
pre: 'Código',
|
||||
h1: 'Título 1',
|
||||
h2: 'Título 2',
|
||||
h3: 'Título 3',
|
||||
h4: 'Título 4',
|
||||
h5: 'Título 5',
|
||||
h6: 'Título 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Lista com marcadores',
|
||||
ordered: 'Lista numerada'
|
||||
},
|
||||
options: {
|
||||
help: 'Ajuda',
|
||||
fullscreen: 'Tela cheia',
|
||||
codeview: 'Ver código-fonte'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Parágrafo',
|
||||
outdent: 'Menor tabulação',
|
||||
indent: 'Maior tabulação',
|
||||
left: 'Alinhar à esquerda',
|
||||
center: 'Alinhar ao centro',
|
||||
right: 'Alinha à direita',
|
||||
justify: 'Justificado'
|
||||
},
|
||||
color: {
|
||||
recent: 'Cor recente',
|
||||
more: 'Mais cores',
|
||||
background: 'Fundo',
|
||||
foreground: 'Fonte',
|
||||
transparent: 'Transparente',
|
||||
setTransparent: 'Fundo transparente',
|
||||
reset: 'Restaurar',
|
||||
resetToDefault: 'Restaurar padrão',
|
||||
cpSelect: 'Selecionar'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Atalhos do teclado',
|
||||
close: 'Fechar',
|
||||
textFormatting: 'Formatação de texto',
|
||||
action: 'Ação',
|
||||
paragraphFormatting: 'Formatação de parágrafo',
|
||||
documentStyle: 'Estilo de documento',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Inserir Parágrafo',
|
||||
'undo': 'Desfazer o último comando',
|
||||
'redo': 'Refazer o último comando',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Desfazer tab',
|
||||
'bold': 'Colocar em negrito',
|
||||
'italic': 'Colocar em itálico',
|
||||
'underline': 'Sublinhado',
|
||||
'strikethrough': 'Tachado',
|
||||
'removeFormat': 'Remover estilo',
|
||||
'justifyLeft': 'Alinhar à esquerda',
|
||||
'justifyCenter': 'Centralizar',
|
||||
'justifyRight': 'Alinhar à esquerda',
|
||||
'justifyFull': 'Justificar',
|
||||
'insertUnorderedList': 'Lista não ordenada',
|
||||
'insertOrderedList': 'Lista ordenada',
|
||||
'outdent': 'Recuar parágrafo atual',
|
||||
'indent': 'Avançar parágrafo atual',
|
||||
'formatPara': 'Alterar formato do bloco para parágrafo(tag P)',
|
||||
'formatH1': 'Alterar formato do bloco para H1',
|
||||
'formatH2': 'Alterar formato do bloco para H2',
|
||||
'formatH3': 'Alterar formato do bloco para H3',
|
||||
'formatH4': 'Alterar formato do bloco para H4',
|
||||
'formatH5': 'Alterar formato do bloco para H5',
|
||||
'formatH6': 'Alterar formato do bloco para H6',
|
||||
'insertHorizontalRule': 'Inserir Régua horizontal',
|
||||
'linkDialog.show': 'Inserir um Hiperlink'
|
||||
},
|
||||
history: {
|
||||
undo: 'Desfazer',
|
||||
redo: 'Refazer'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'CARACTERES ESPECIAIS',
|
||||
select: 'Selecionar Caracteres Especiais'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-pt-BR.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-pt-BR.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-pt-BR.min.js.LICENSE.txt */
|
||||
!function(e,r){if("object"==typeof exports&&"object"==typeof module)module.exports=r();else if("function"==typeof define&&define.amd)define([],r);else{var a=r();for(var o in a)("object"==typeof exports?exports:e)[o]=a[o]}}(window,(function(){return function(e){var r={};function a(o){if(r[o])return r[o].exports;var t=r[o]={i:o,l:!1,exports:{}};return e[o].call(t.exports,t,t.exports,a),t.l=!0,t.exports}return a.m=e,a.c=r,a.d=function(e,r,o){a.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:o})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,r){if(1&r&&(e=a(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(a.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var t in e)a.d(o,t,function(r){return e[r]}.bind(null,t));return o},a.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(r,"a",r),r},a.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},a.p="",a(a.s=34)}({34:function(e,r){var a;(a=jQuery).extend(a.summernote.lang,{"pt-BR":{font:{bold:"Negrito",italic:"Itálico",underline:"Sublinhado",clear:"Remover estilo da fonte",height:"Altura da linha",name:"Fonte",strikethrough:"Riscado",subscript:"Subscrito",superscript:"Sobrescrito",size:"Tamanho da fonte"},image:{image:"Imagem",insert:"Inserir imagem",resizeFull:"Redimensionar Completamente",resizeHalf:"Redimensionar pela Metade",resizeQuarter:"Redimensionar a um Quarto",floatLeft:"Flutuar para Esquerda",floatRight:"Flutuar para Direita",floatNone:"Não Flutuar",shapeRounded:"Forma: Arredondado",shapeCircle:"Forma: Círculo",shapeThumbnail:"Forma: Miniatura",shapeNone:"Forma: Nenhum",dragImageHere:"Arraste Imagem ou Texto para cá",dropImage:"Solte Imagem ou Texto",selectFromFiles:"Selecione a partir dos arquivos",maximumFileSize:"Tamanho máximo do arquivo",maximumFileSizeError:"Tamanho máximo do arquivo excedido.",url:"URL da imagem",remove:"Remover Imagem",original:"Original"},video:{video:"Vídeo",videoLink:"Link para vídeo",insert:"Inserir vídeo",url:"URL do vídeo?",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion ou Youku)"},link:{link:"Link",insert:"Inserir link",unlink:"Remover link",edit:"Editar",textToDisplay:"Texto para exibir",url:"Para qual URL este link leva?",openInNewWindow:"Abrir em uma nova janela"},table:{table:"Tabela",addRowAbove:"Adicionar linha acima",addRowBelow:"Adicionar linha abaixo",addColLeft:"Adicionar coluna à esquerda",addColRight:"Adicionar coluna à direita",delRow:"Excluir linha",delCol:"Excluir coluna",delTable:"Excluir tabela"},hr:{insert:"Linha horizontal"},style:{style:"Estilo",p:"Normal",blockquote:"Citação",pre:"Código",h1:"Título 1",h2:"Título 2",h3:"Título 3",h4:"Título 4",h5:"Título 5",h6:"Título 6"},lists:{unordered:"Lista com marcadores",ordered:"Lista numerada"},options:{help:"Ajuda",fullscreen:"Tela cheia",codeview:"Ver código-fonte"},paragraph:{paragraph:"Parágrafo",outdent:"Menor tabulação",indent:"Maior tabulação",left:"Alinhar à esquerda",center:"Alinhar ao centro",right:"Alinha à direita",justify:"Justificado"},color:{recent:"Cor recente",more:"Mais cores",background:"Fundo",foreground:"Fonte",transparent:"Transparente",setTransparent:"Fundo transparente",reset:"Restaurar",resetToDefault:"Restaurar padrão",cpSelect:"Selecionar"},shortcut:{shortcuts:"Atalhos do teclado",close:"Fechar",textFormatting:"Formatação de texto",action:"Ação",paragraphFormatting:"Formatação de parágrafo",documentStyle:"Estilo de documento",extraKeys:"Extra keys"},help:{insertParagraph:"Inserir Parágrafo",undo:"Desfazer o último comando",redo:"Refazer o último comando",tab:"Tab",untab:"Desfazer tab",bold:"Colocar em negrito",italic:"Colocar em itálico",underline:"Sublinhado",strikethrough:"Tachado",removeFormat:"Remover estilo",justifyLeft:"Alinhar à esquerda",justifyCenter:"Centralizar",justifyRight:"Alinhar à esquerda",justifyFull:"Justificar",insertUnorderedList:"Lista não ordenada",insertOrderedList:"Lista ordenada",outdent:"Recuar parágrafo atual",indent:"Avançar parágrafo atual",formatPara:"Alterar formato do bloco para parágrafo(tag P)",formatH1:"Alterar formato do bloco para H1",formatH2:"Alterar formato do bloco para H2",formatH3:"Alterar formato do bloco para H3",formatH4:"Alterar formato do bloco para H4",formatH5:"Alterar formato do bloco para H5",formatH6:"Alterar formato do bloco para H6",insertHorizontalRule:"Inserir Régua horizontal","linkDialog.show":"Inserir um Hiperlink"},history:{undo:"Desfazer",redo:"Refazer"},specialChar:{specialChar:"CARACTERES ESPECIAIS",select:"Selecionar Caracteres Especiais"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-pt-PT.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-pt-PT.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 35);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 35:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'pt-PT': {
|
||||
font: {
|
||||
bold: 'Negrito',
|
||||
italic: 'Itálico',
|
||||
underline: 'Sublinhado',
|
||||
clear: 'Remover estilo da fonte',
|
||||
height: 'Altura da linha',
|
||||
name: 'Fonte',
|
||||
strikethrough: 'Riscado',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Tamanho da fonte'
|
||||
},
|
||||
image: {
|
||||
image: 'Imagem',
|
||||
insert: 'Inserir imagem',
|
||||
resizeFull: 'Redimensionar Completo',
|
||||
resizeHalf: 'Redimensionar Metade',
|
||||
resizeQuarter: 'Redimensionar Um Quarto',
|
||||
floatLeft: 'Float Esquerda',
|
||||
floatRight: 'Float Direita',
|
||||
floatNone: 'Sem Float',
|
||||
shapeRounded: 'Forma: Arredondado',
|
||||
shapeCircle: 'Forma: Círculo',
|
||||
shapeThumbnail: 'Forma: Minhatura',
|
||||
shapeNone: 'Forma: Nenhum',
|
||||
dragImageHere: 'Arraste uma imagem para aqui',
|
||||
dropImage: 'Arraste uma imagem ou texto',
|
||||
selectFromFiles: 'Selecione a partir dos arquivos',
|
||||
maximumFileSize: 'Tamanho máximo do fixeiro',
|
||||
maximumFileSizeError: 'Tamanho máximo do fixeiro é maior que o permitido.',
|
||||
url: 'Endereço da imagem',
|
||||
remove: 'Remover Imagem',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Vídeo',
|
||||
videoLink: 'Link para vídeo',
|
||||
insert: 'Inserir vídeo',
|
||||
url: 'URL do vídeo?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ou Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Inserir ligação',
|
||||
unlink: 'Remover ligação',
|
||||
edit: 'Editar',
|
||||
textToDisplay: 'Texto para exibir',
|
||||
url: 'Que endereço esta licação leva?',
|
||||
openInNewWindow: 'Abrir numa nova janela'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabela',
|
||||
addRowAbove: 'Adicionar linha acima',
|
||||
addRowBelow: 'Adicionar linha abaixo',
|
||||
addColLeft: 'Adicionar coluna à Esquerda',
|
||||
addColRight: 'Adicionar coluna à Esquerda',
|
||||
delRow: 'Excluir linha',
|
||||
delCol: 'Excluir coluna',
|
||||
delTable: 'Excluir tabela'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Inserir linha horizontal'
|
||||
},
|
||||
style: {
|
||||
style: 'Estilo',
|
||||
p: 'Parágrafo',
|
||||
blockquote: 'Citação',
|
||||
pre: 'Código',
|
||||
h1: 'Título 1',
|
||||
h2: 'Título 2',
|
||||
h3: 'Título 3',
|
||||
h4: 'Título 4',
|
||||
h5: 'Título 5',
|
||||
h6: 'Título 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Lista com marcadores',
|
||||
ordered: 'Lista numerada'
|
||||
},
|
||||
options: {
|
||||
help: 'Ajuda',
|
||||
fullscreen: 'Janela Completa',
|
||||
codeview: 'Ver código-fonte'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Parágrafo',
|
||||
outdent: 'Menor tabulação',
|
||||
indent: 'Maior tabulação',
|
||||
left: 'Alinhar à esquerda',
|
||||
center: 'Alinhar ao centro',
|
||||
right: 'Alinha à direita',
|
||||
justify: 'Justificado'
|
||||
},
|
||||
color: {
|
||||
recent: 'Cor recente',
|
||||
more: 'Mais cores',
|
||||
background: 'Fundo',
|
||||
foreground: 'Fonte',
|
||||
transparent: 'Transparente',
|
||||
setTransparent: 'Fundo transparente',
|
||||
reset: 'Restaurar',
|
||||
resetToDefault: 'Restaurar padrão',
|
||||
cpSelect: 'Selecionar'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Atalhos do teclado',
|
||||
close: 'Fechar',
|
||||
textFormatting: 'Formatação de texto',
|
||||
action: 'Ação',
|
||||
paragraphFormatting: 'Formatação de parágrafo',
|
||||
documentStyle: 'Estilo de documento'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Inserir Parágrafo',
|
||||
'undo': 'Desfazer o último comando',
|
||||
'redo': 'Refazer o último comando',
|
||||
'tab': 'Maior tabulação',
|
||||
'untab': 'Menor tabulação',
|
||||
'bold': 'Colocar em negrito',
|
||||
'italic': 'Colocar em itálico',
|
||||
'underline': 'Colocar em sublinhado',
|
||||
'strikethrough': 'Colocar em riscado',
|
||||
'removeFormat': 'Limpar o estilo',
|
||||
'justifyLeft': 'Definir alinhado à esquerda',
|
||||
'justifyCenter': 'Definir alinhado ao centro',
|
||||
'justifyRight': 'Definir alinhado à direita',
|
||||
'justifyFull': 'Definir justificado',
|
||||
'insertUnorderedList': 'Alternar lista não ordenada',
|
||||
'insertOrderedList': 'Alternar lista ordenada',
|
||||
'outdent': 'Recuar parágrafo atual',
|
||||
'indent': 'Avançar parágrafo atual',
|
||||
'formatPara': 'Alterar formato do bloco para parágrafo',
|
||||
'formatH1': 'Alterar formato do bloco para Título 1',
|
||||
'formatH2': 'Alterar formato do bloco para Título 2',
|
||||
'formatH3': 'Alterar formato do bloco para Título 3',
|
||||
'formatH4': 'Alterar formato do bloco para Título 4',
|
||||
'formatH5': 'Alterar formato do bloco para Título 5',
|
||||
'formatH6': 'Alterar formato do bloco para Título 6',
|
||||
'insertHorizontalRule': 'Inserir linha horizontal',
|
||||
'linkDialog.show': 'Inserir uma ligração'
|
||||
},
|
||||
history: {
|
||||
undo: 'Desfazer',
|
||||
redo: 'Refazer'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-pt-PT.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-pt-PT.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-pt-PT.min.js.LICENSE.txt */
|
||||
!function(e,o){if("object"==typeof exports&&"object"==typeof module)module.exports=o();else if("function"==typeof define&&define.amd)define([],o);else{var r=o();for(var a in r)("object"==typeof exports?exports:e)[a]=r[a]}}(window,(function(){return function(e){var o={};function r(a){if(o[a])return o[a].exports;var t=o[a]={i:a,l:!1,exports:{}};return e[a].call(t.exports,t,t.exports,r),t.l=!0,t.exports}return r.m=e,r.c=o,r.d=function(e,o,a){r.o(e,o)||Object.defineProperty(e,o,{enumerable:!0,get:a})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,o){if(1&o&&(e=r(e)),8&o)return e;if(4&o&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(r.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&o&&"string"!=typeof e)for(var t in e)r.d(a,t,function(o){return e[o]}.bind(null,t));return a},r.n=function(e){var o=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(o,"a",o),o},r.o=function(e,o){return Object.prototype.hasOwnProperty.call(e,o)},r.p="",r(r.s=35)}({35:function(e,o){var r;(r=jQuery).extend(r.summernote.lang,{"pt-PT":{font:{bold:"Negrito",italic:"Itálico",underline:"Sublinhado",clear:"Remover estilo da fonte",height:"Altura da linha",name:"Fonte",strikethrough:"Riscado",subscript:"Subscript",superscript:"Superscript",size:"Tamanho da fonte"},image:{image:"Imagem",insert:"Inserir imagem",resizeFull:"Redimensionar Completo",resizeHalf:"Redimensionar Metade",resizeQuarter:"Redimensionar Um Quarto",floatLeft:"Float Esquerda",floatRight:"Float Direita",floatNone:"Sem Float",shapeRounded:"Forma: Arredondado",shapeCircle:"Forma: Círculo",shapeThumbnail:"Forma: Minhatura",shapeNone:"Forma: Nenhum",dragImageHere:"Arraste uma imagem para aqui",dropImage:"Arraste uma imagem ou texto",selectFromFiles:"Selecione a partir dos arquivos",maximumFileSize:"Tamanho máximo do fixeiro",maximumFileSizeError:"Tamanho máximo do fixeiro é maior que o permitido.",url:"Endereço da imagem",remove:"Remover Imagem",original:"Original"},video:{video:"Vídeo",videoLink:"Link para vídeo",insert:"Inserir vídeo",url:"URL do vídeo?",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion ou Youku)"},link:{link:"Link",insert:"Inserir ligação",unlink:"Remover ligação",edit:"Editar",textToDisplay:"Texto para exibir",url:"Que endereço esta licação leva?",openInNewWindow:"Abrir numa nova janela"},table:{table:"Tabela",addRowAbove:"Adicionar linha acima",addRowBelow:"Adicionar linha abaixo",addColLeft:"Adicionar coluna à Esquerda",addColRight:"Adicionar coluna à Esquerda",delRow:"Excluir linha",delCol:"Excluir coluna",delTable:"Excluir tabela"},hr:{insert:"Inserir linha horizontal"},style:{style:"Estilo",p:"Parágrafo",blockquote:"Citação",pre:"Código",h1:"Título 1",h2:"Título 2",h3:"Título 3",h4:"Título 4",h5:"Título 5",h6:"Título 6"},lists:{unordered:"Lista com marcadores",ordered:"Lista numerada"},options:{help:"Ajuda",fullscreen:"Janela Completa",codeview:"Ver código-fonte"},paragraph:{paragraph:"Parágrafo",outdent:"Menor tabulação",indent:"Maior tabulação",left:"Alinhar à esquerda",center:"Alinhar ao centro",right:"Alinha à direita",justify:"Justificado"},color:{recent:"Cor recente",more:"Mais cores",background:"Fundo",foreground:"Fonte",transparent:"Transparente",setTransparent:"Fundo transparente",reset:"Restaurar",resetToDefault:"Restaurar padrão",cpSelect:"Selecionar"},shortcut:{shortcuts:"Atalhos do teclado",close:"Fechar",textFormatting:"Formatação de texto",action:"Ação",paragraphFormatting:"Formatação de parágrafo",documentStyle:"Estilo de documento"},help:{insertParagraph:"Inserir Parágrafo",undo:"Desfazer o último comando",redo:"Refazer o último comando",tab:"Maior tabulação",untab:"Menor tabulação",bold:"Colocar em negrito",italic:"Colocar em itálico",underline:"Colocar em sublinhado",strikethrough:"Colocar em riscado",removeFormat:"Limpar o estilo",justifyLeft:"Definir alinhado à esquerda",justifyCenter:"Definir alinhado ao centro",justifyRight:"Definir alinhado à direita",justifyFull:"Definir justificado",insertUnorderedList:"Alternar lista não ordenada",insertOrderedList:"Alternar lista ordenada",outdent:"Recuar parágrafo atual",indent:"Avançar parágrafo atual",formatPara:"Alterar formato do bloco para parágrafo",formatH1:"Alterar formato do bloco para Título 1",formatH2:"Alterar formato do bloco para Título 2",formatH3:"Alterar formato do bloco para Título 3",formatH4:"Alterar formato do bloco para Título 4",formatH5:"Alterar formato do bloco para Título 5",formatH6:"Alterar formato do bloco para Título 6",insertHorizontalRule:"Inserir linha horizontal","linkDialog.show":"Inserir uma ligração"},history:{undo:"Desfazer",redo:"Refazer"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-ro-RO.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-ro-RO.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 36);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 36:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ro-RO': {
|
||||
font: {
|
||||
bold: 'Îngroșat',
|
||||
italic: 'Înclinat',
|
||||
underline: 'Subliniat',
|
||||
clear: 'Înlătură formatare font',
|
||||
height: 'Înălțime rând',
|
||||
name: 'Familie de fonturi',
|
||||
strikethrough: 'Tăiat',
|
||||
subscript: 'Indice',
|
||||
superscript: 'Exponent',
|
||||
size: 'Dimensiune font'
|
||||
},
|
||||
image: {
|
||||
image: 'Imagine',
|
||||
insert: 'Inserează imagine',
|
||||
resizeFull: 'Redimensionează complet',
|
||||
resizeHalf: 'Redimensionează 1/2',
|
||||
resizeQuarter: 'Redimensionează 1/4',
|
||||
floatLeft: 'Aliniere la stânga',
|
||||
floatRight: 'Aliniere la dreapta',
|
||||
floatNone: 'Fară aliniere',
|
||||
shapeRounded: 'Formă: Rotund',
|
||||
shapeCircle: 'Formă: Cerc',
|
||||
shapeThumbnail: 'Formă: Pictogramă',
|
||||
shapeNone: 'Formă: Nici una',
|
||||
dragImageHere: 'Trage o imagine sau un text aici',
|
||||
dropImage: 'Eliberează imaginea sau textul',
|
||||
selectFromFiles: 'Alege din fişiere',
|
||||
maximumFileSize: 'Dimensiune maximă fișier',
|
||||
maximumFileSizeError: 'Dimensiune maximă fișier depășită.',
|
||||
url: 'URL imagine',
|
||||
remove: 'Șterge imagine',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Link video',
|
||||
insert: 'Inserează video',
|
||||
url: 'URL video?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion sau Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Inserează link',
|
||||
unlink: 'Înlătură link',
|
||||
edit: 'Editează',
|
||||
textToDisplay: 'Text ce va fi afişat',
|
||||
url: 'La ce adresă URL trebuie să conducă acest link?',
|
||||
openInNewWindow: 'Deschidere în fereastră nouă'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabel',
|
||||
addRowAbove: 'Adaugă rând deasupra',
|
||||
addRowBelow: 'Adaugă rând dedesubt',
|
||||
addColLeft: 'Adaugă coloană stânga',
|
||||
addColRight: 'Adaugă coloană dreapta',
|
||||
delRow: 'Șterge rând',
|
||||
delCol: 'Șterge coloană',
|
||||
delTable: 'Șterge tabel'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Inserează o linie orizontală'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
p: 'p',
|
||||
blockquote: 'Citat',
|
||||
pre: 'Preformatat',
|
||||
h1: 'Titlu 1',
|
||||
h2: 'Titlu 2',
|
||||
h3: 'Titlu 3',
|
||||
h4: 'Titlu 4',
|
||||
h5: 'Titlu 5',
|
||||
h6: 'Titlu 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Listă neordonată',
|
||||
ordered: 'Listă ordonată'
|
||||
},
|
||||
options: {
|
||||
help: 'Ajutor',
|
||||
fullscreen: 'Măreşte',
|
||||
codeview: 'Sursă'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraf',
|
||||
outdent: 'Creşte identarea',
|
||||
indent: 'Scade identarea',
|
||||
left: 'Aliniere la stânga',
|
||||
center: 'Aliniere centrală',
|
||||
right: 'Aliniere la dreapta',
|
||||
justify: 'Aliniere în bloc'
|
||||
},
|
||||
color: {
|
||||
recent: 'Culoare recentă',
|
||||
more: 'Mai multe culori',
|
||||
background: 'Culoarea fundalului',
|
||||
foreground: 'Culoarea textului',
|
||||
transparent: 'Transparent',
|
||||
setTransparent: 'Setează transparent',
|
||||
reset: 'Resetează',
|
||||
resetToDefault: 'Revino la iniţial'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Scurtături tastatură',
|
||||
close: 'Închide',
|
||||
textFormatting: 'Formatare text',
|
||||
action: 'Acţiuni',
|
||||
paragraphFormatting: 'Formatare paragraf',
|
||||
documentStyle: 'Stil paragraf',
|
||||
extraKeys: 'Taste extra'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Inserează paragraf',
|
||||
'undo': 'Revine la starea anterioară',
|
||||
'redo': 'Revine la starea ulterioară',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Setează stil îngroșat',
|
||||
'italic': 'Setează stil înclinat',
|
||||
'underline': 'Setează stil subliniat',
|
||||
'strikethrough': 'Setează stil tăiat',
|
||||
'removeFormat': 'Înlătură formatare',
|
||||
'justifyLeft': 'Setează aliniere stânga',
|
||||
'justifyCenter': 'Setează aliniere centru',
|
||||
'justifyRight': 'Setează aliniere dreapta',
|
||||
'justifyFull': 'Setează aliniere bloc',
|
||||
'insertUnorderedList': 'Comutare listă neordinată',
|
||||
'insertOrderedList': 'Comutare listă ordonată',
|
||||
'outdent': 'Înlătură indentare paragraf curent',
|
||||
'indent': 'Adaugă indentare paragraf curent',
|
||||
'formatPara': 'Schimbă formatarea selecției în paragraf',
|
||||
'formatH1': 'Schimbă formatarea selecției în H1',
|
||||
'formatH2': 'Schimbă formatarea selecției în H2',
|
||||
'formatH3': 'Schimbă formatarea selecției în H3',
|
||||
'formatH4': 'Schimbă formatarea selecției în H4',
|
||||
'formatH5': 'Schimbă formatarea selecției în H5',
|
||||
'formatH6': 'Schimbă formatarea selecției în H6',
|
||||
'insertHorizontalRule': 'Adaugă linie orizontală',
|
||||
'linkDialog.show': 'Inserează link'
|
||||
},
|
||||
history: {
|
||||
undo: 'Starea anterioară',
|
||||
redo: 'Starea ulterioară'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'CARACTERE SPECIALE',
|
||||
select: 'Alege caractere speciale'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-ro-RO.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-ro-RO.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
273
public/vendor/editor/dist/lang/summernote-ru-RU.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-ru-RU.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 37);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 37:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ru-RU': {
|
||||
font: {
|
||||
bold: 'Полужирный',
|
||||
italic: 'Курсив',
|
||||
underline: 'Подчёркнутый',
|
||||
clear: 'Убрать стили шрифта',
|
||||
height: 'Высота линии',
|
||||
name: 'Шрифт',
|
||||
strikethrough: 'Зачёркнутый',
|
||||
subscript: 'Нижний индекс',
|
||||
superscript: 'Верхний индекс',
|
||||
size: 'Размер шрифта'
|
||||
},
|
||||
image: {
|
||||
image: 'Картинка',
|
||||
insert: 'Вставить картинку',
|
||||
resizeFull: 'Восстановить размер',
|
||||
resizeHalf: 'Уменьшить до 50%',
|
||||
resizeQuarter: 'Уменьшить до 25%',
|
||||
floatLeft: 'Расположить слева',
|
||||
floatRight: 'Расположить справа',
|
||||
floatNone: 'Расположение по-умолчанию',
|
||||
shapeRounded: 'Форма: Закругленная',
|
||||
shapeCircle: 'Форма: Круг',
|
||||
shapeThumbnail: 'Форма: Миниатюра',
|
||||
shapeNone: 'Форма: Нет',
|
||||
dragImageHere: 'Перетащите сюда картинку',
|
||||
dropImage: 'Перетащите картинку',
|
||||
selectFromFiles: 'Выбрать из файлов',
|
||||
maximumFileSize: 'Максимальный размер файла',
|
||||
maximumFileSizeError: 'Превышен максимальный размер файла',
|
||||
url: 'URL картинки',
|
||||
remove: 'Удалить картинку',
|
||||
original: 'Оригинал'
|
||||
},
|
||||
video: {
|
||||
video: 'Видео',
|
||||
videoLink: 'Ссылка на видео',
|
||||
insert: 'Вставить видео',
|
||||
url: 'URL видео',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion или Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Ссылка',
|
||||
insert: 'Вставить ссылку',
|
||||
unlink: 'Убрать ссылку',
|
||||
edit: 'Редактировать',
|
||||
textToDisplay: 'Отображаемый текст',
|
||||
url: 'URL для перехода',
|
||||
openInNewWindow: 'Открывать в новом окне'
|
||||
},
|
||||
table: {
|
||||
table: 'Таблица',
|
||||
addRowAbove: 'Добавить строку выше',
|
||||
addRowBelow: 'Добавить строку ниже',
|
||||
addColLeft: 'Добавить столбец слева',
|
||||
addColRight: 'Добавить столбец справа',
|
||||
delRow: 'Удалить строку',
|
||||
delCol: 'Удалить столбец',
|
||||
delTable: 'Удалить таблицу'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Вставить горизонтальную линию'
|
||||
},
|
||||
style: {
|
||||
style: 'Стиль',
|
||||
p: 'Нормальный',
|
||||
blockquote: 'Цитата',
|
||||
pre: 'Код',
|
||||
h1: 'Заголовок 1',
|
||||
h2: 'Заголовок 2',
|
||||
h3: 'Заголовок 3',
|
||||
h4: 'Заголовок 4',
|
||||
h5: 'Заголовок 5',
|
||||
h6: 'Заголовок 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Маркированный список',
|
||||
ordered: 'Нумерованный список'
|
||||
},
|
||||
options: {
|
||||
help: 'Помощь',
|
||||
fullscreen: 'На весь экран',
|
||||
codeview: 'Исходный код'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Параграф',
|
||||
outdent: 'Уменьшить отступ',
|
||||
indent: 'Увеличить отступ',
|
||||
left: 'Выровнять по левому краю',
|
||||
center: 'Выровнять по центру',
|
||||
right: 'Выровнять по правому краю',
|
||||
justify: 'Растянуть по ширине'
|
||||
},
|
||||
color: {
|
||||
recent: 'Последний цвет',
|
||||
more: 'Еще цвета',
|
||||
background: 'Цвет фона',
|
||||
foreground: 'Цвет шрифта',
|
||||
transparent: 'Прозрачный',
|
||||
setTransparent: 'Сделать прозрачным',
|
||||
reset: 'Сброс',
|
||||
resetToDefault: 'Восстановить умолчания'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Сочетания клавиш',
|
||||
close: 'Закрыть',
|
||||
textFormatting: 'Форматирование текста',
|
||||
action: 'Действие',
|
||||
paragraphFormatting: 'Форматирование параграфа',
|
||||
documentStyle: 'Стиль документа',
|
||||
extraKeys: 'Дополнительные комбинации'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Новый параграф',
|
||||
'undo': 'Отменить последнюю команду',
|
||||
'redo': 'Повторить последнюю команду',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Установить стиль "Жирный"',
|
||||
'italic': 'Установить стиль "Наклонный"',
|
||||
'underline': 'Установить стиль "Подчеркнутый"',
|
||||
'strikethrough': 'Установить стиль "Зачеркнутый"',
|
||||
'removeFormat': 'Сборсить стили',
|
||||
'justifyLeft': 'Выровнять по левому краю',
|
||||
'justifyCenter': 'Выровнять по центру',
|
||||
'justifyRight': 'Выровнять по правому краю',
|
||||
'justifyFull': 'Растянуть на всю ширину',
|
||||
'insertUnorderedList': 'Включить/отключить маркированный список',
|
||||
'insertOrderedList': 'Включить/отключить нумерованный список',
|
||||
'outdent': 'Убрать отступ в текущем параграфе',
|
||||
'indent': 'Вставить отступ в текущем параграфе',
|
||||
'formatPara': 'Форматировать текущий блок как параграф (тег P)',
|
||||
'formatH1': 'Форматировать текущий блок как H1',
|
||||
'formatH2': 'Форматировать текущий блок как H2',
|
||||
'formatH3': 'Форматировать текущий блок как H3',
|
||||
'formatH4': 'Форматировать текущий блок как H4',
|
||||
'formatH5': 'Форматировать текущий блок как H5',
|
||||
'formatH6': 'Форматировать текущий блок как H6',
|
||||
'insertHorizontalRule': 'Вставить горизонтальную черту',
|
||||
'linkDialog.show': 'Показать диалог "Ссылка"'
|
||||
},
|
||||
history: {
|
||||
undo: 'Отменить',
|
||||
redo: 'Повтор'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-ru-RU.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-ru-RU.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
271
public/vendor/editor/dist/lang/summernote-sk-SK.js
vendored
Executable file
271
public/vendor/editor/dist/lang/summernote-sk-SK.js
vendored
Executable file
@@ -0,0 +1,271 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 38);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 38:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'sk-SK': {
|
||||
font: {
|
||||
bold: 'Tučné',
|
||||
italic: 'Kurzíva',
|
||||
underline: 'Podčiarknutie',
|
||||
clear: 'Odstrániť štýl písma',
|
||||
height: 'Výška riadku',
|
||||
strikethrough: 'Prečiarknuté',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Veľkosť písma'
|
||||
},
|
||||
image: {
|
||||
image: 'Obrázok',
|
||||
insert: 'Vložiť obrázok',
|
||||
resizeFull: 'Pôvodná veľkosť',
|
||||
resizeHalf: 'Polovičná veľkosť',
|
||||
resizeQuarter: 'Štvrtinová veľkosť',
|
||||
floatLeft: 'Umiestniť doľava',
|
||||
floatRight: 'Umiestniť doprava',
|
||||
floatNone: 'Bez zarovnania',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Pretiahnuť sem obrázok',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Vybrať súbor',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URL obrázku',
|
||||
remove: 'Remove Image',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Odkaz videa',
|
||||
insert: 'Vložiť video',
|
||||
url: 'URL videa?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion alebo Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Odkaz',
|
||||
insert: 'Vytvoriť odkaz',
|
||||
unlink: 'Zrušiť odkaz',
|
||||
edit: 'Upraviť',
|
||||
textToDisplay: 'Zobrazovaný text',
|
||||
url: 'Na akú URL adresu má tento odkaz viesť?',
|
||||
openInNewWindow: 'Otvoriť v novom okne'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabuľka',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Vložit vodorovnú čiaru'
|
||||
},
|
||||
style: {
|
||||
style: 'Štýl',
|
||||
p: 'Normálny',
|
||||
blockquote: 'Citácia',
|
||||
pre: 'Kód',
|
||||
h1: 'Nadpis 1',
|
||||
h2: 'Nadpis 2',
|
||||
h3: 'Nadpis 3',
|
||||
h4: 'Nadpis 4',
|
||||
h5: 'Nadpis 5',
|
||||
h6: 'Nadpis 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Odrážkový zoznam',
|
||||
ordered: 'Číselný zoznam'
|
||||
},
|
||||
options: {
|
||||
help: 'Pomoc',
|
||||
fullscreen: 'Celá obrazovka',
|
||||
codeview: 'HTML kód'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Odsek',
|
||||
outdent: 'Zväčšiť odsadenie',
|
||||
indent: 'Zmenšiť odsadenie',
|
||||
left: 'Zarovnať doľava',
|
||||
center: 'Zarovnať na stred',
|
||||
right: 'Zarovnať doprava',
|
||||
justify: 'Zarovnať obojstranne'
|
||||
},
|
||||
color: {
|
||||
recent: 'Aktuálna farba',
|
||||
more: 'Dalšie farby',
|
||||
background: 'Farba pozadia',
|
||||
foreground: 'Farba písma',
|
||||
transparent: 'Priehľadnosť',
|
||||
setTransparent: 'Nastaviť priehľadnosť',
|
||||
reset: 'Obnoviť',
|
||||
resetToDefault: 'Obnoviť prednastavené'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Klávesové skratky',
|
||||
close: 'Zavrieť',
|
||||
textFormatting: 'Formátovanie textu',
|
||||
action: 'Akcia',
|
||||
paragraphFormatting: 'Formátovanie odseku',
|
||||
documentStyle: 'Štýl dokumentu'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Krok vzad',
|
||||
redo: 'Krok dopredu'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-sk-SK.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-sk-SK.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-sk-SK.min.js.LICENSE.txt */
|
||||
!function(e,r){if("object"==typeof exports&&"object"==typeof module)module.exports=r();else if("function"==typeof define&&define.amd)define([],r);else{var t=r();for(var o in t)("object"==typeof exports?exports:e)[o]=t[o]}}(window,(function(){return function(e){var r={};function t(o){if(r[o])return r[o].exports;var a=r[o]={i:o,l:!1,exports:{}};return e[o].call(a.exports,a,a.exports,t),a.l=!0,a.exports}return t.m=e,t.c=r,t.d=function(e,r,o){t.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:o})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,r){if(1&r&&(e=t(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(t.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var a in e)t.d(o,a,function(r){return e[r]}.bind(null,a));return o},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},t.p="",t(t.s=38)}({38:function(e,r){var t;(t=jQuery).extend(t.summernote.lang,{"sk-SK":{font:{bold:"Tučné",italic:"Kurzíva",underline:"Podčiarknutie",clear:"Odstrániť štýl písma",height:"Výška riadku",strikethrough:"Prečiarknuté",subscript:"Subscript",superscript:"Superscript",size:"Veľkosť písma"},image:{image:"Obrázok",insert:"Vložiť obrázok",resizeFull:"Pôvodná veľkosť",resizeHalf:"Polovičná veľkosť",resizeQuarter:"Štvrtinová veľkosť",floatLeft:"Umiestniť doľava",floatRight:"Umiestniť doprava",floatNone:"Bez zarovnania",shapeRounded:"Shape: Rounded",shapeCircle:"Shape: Circle",shapeThumbnail:"Shape: Thumbnail",shapeNone:"Shape: None",dragImageHere:"Pretiahnuť sem obrázok",dropImage:"Drop image or Text",selectFromFiles:"Vybrať súbor",maximumFileSize:"Maximum file size",maximumFileSizeError:"Maximum file size exceeded.",url:"URL obrázku",remove:"Remove Image",original:"Original"},video:{video:"Video",videoLink:"Odkaz videa",insert:"Vložiť video",url:"URL videa?",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion alebo Youku)"},link:{link:"Odkaz",insert:"Vytvoriť odkaz",unlink:"Zrušiť odkaz",edit:"Upraviť",textToDisplay:"Zobrazovaný text",url:"Na akú URL adresu má tento odkaz viesť?",openInNewWindow:"Otvoriť v novom okne"},table:{table:"Tabuľka",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Vložit vodorovnú čiaru"},style:{style:"Štýl",p:"Normálny",blockquote:"Citácia",pre:"Kód",h1:"Nadpis 1",h2:"Nadpis 2",h3:"Nadpis 3",h4:"Nadpis 4",h5:"Nadpis 5",h6:"Nadpis 6"},lists:{unordered:"Odrážkový zoznam",ordered:"Číselný zoznam"},options:{help:"Pomoc",fullscreen:"Celá obrazovka",codeview:"HTML kód"},paragraph:{paragraph:"Odsek",outdent:"Zväčšiť odsadenie",indent:"Zmenšiť odsadenie",left:"Zarovnať doľava",center:"Zarovnať na stred",right:"Zarovnať doprava",justify:"Zarovnať obojstranne"},color:{recent:"Aktuálna farba",more:"Dalšie farby",background:"Farba pozadia",foreground:"Farba písma",transparent:"Priehľadnosť",setTransparent:"Nastaviť priehľadnosť",reset:"Obnoviť",resetToDefault:"Obnoviť prednastavené"},shortcut:{shortcuts:"Klávesové skratky",close:"Zavrieť",textFormatting:"Formátovanie textu",action:"Akcia",paragraphFormatting:"Formátovanie odseku",documentStyle:"Štýl dokumentu"},help:{insertParagraph:"Insert Paragraph",undo:"Undoes the last command",redo:"Redoes the last command",tab:"Tab",untab:"Untab",bold:"Set a bold style",italic:"Set a italic style",underline:"Set a underline style",strikethrough:"Set a strikethrough style",removeFormat:"Clean a style",justifyLeft:"Set left align",justifyCenter:"Set center align",justifyRight:"Set right align",justifyFull:"Set full align",insertUnorderedList:"Toggle unordered list",insertOrderedList:"Toggle ordered list",outdent:"Outdent on current paragraph",indent:"Indent on current paragraph",formatPara:"Change current block's format as a paragraph(P tag)",formatH1:"Change current block's format as H1",formatH2:"Change current block's format as H2",formatH3:"Change current block's format as H3",formatH4:"Change current block's format as H4",formatH5:"Change current block's format as H5",formatH6:"Change current block's format as H6",insertHorizontalRule:"Insert horizontal rule","linkDialog.show":"Show Link Dialog"},history:{undo:"Krok vzad",redo:"Krok dopredu"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-sl-SI.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-sl-SI.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 39);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 39:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'sl-SI': {
|
||||
font: {
|
||||
bold: 'Krepko',
|
||||
italic: 'Ležeče',
|
||||
underline: 'Podčrtano',
|
||||
clear: 'Počisti oblikovanje izbire',
|
||||
height: 'Razmik med vrsticami',
|
||||
name: 'Pisava',
|
||||
strikethrough: 'Prečrtano',
|
||||
subscript: 'Podpisano',
|
||||
superscript: 'Nadpisano',
|
||||
size: 'Velikost pisave'
|
||||
},
|
||||
image: {
|
||||
image: 'Slika',
|
||||
insert: 'Vstavi sliko',
|
||||
resizeFull: 'Razširi na polno velikost',
|
||||
resizeHalf: 'Razširi na polovico velikosti',
|
||||
resizeQuarter: 'Razširi na četrtino velikosti',
|
||||
floatLeft: 'Leva poravnava',
|
||||
floatRight: 'Desna poravnava',
|
||||
floatNone: 'Brez poravnave',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Sem povlecite sliko',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Izberi sliko za nalaganje',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URL naslov slike',
|
||||
remove: 'Odstrani sliko',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video povezava',
|
||||
insert: 'Vstavi video',
|
||||
url: 'Povezava do videa',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ali Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Povezava',
|
||||
insert: 'Vstavi povezavo',
|
||||
unlink: 'Odstrani povezavo',
|
||||
edit: 'Uredi',
|
||||
textToDisplay: 'Prikazano besedilo',
|
||||
url: 'Povezava',
|
||||
openInNewWindow: 'Odpri v novem oknu'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabela',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Vstavi horizontalno črto'
|
||||
},
|
||||
style: {
|
||||
style: 'Slogi',
|
||||
p: 'Navadno besedilo',
|
||||
blockquote: 'Citat',
|
||||
pre: 'Koda',
|
||||
h1: 'Naslov 1',
|
||||
h2: 'Naslov 2',
|
||||
h3: 'Naslov 3',
|
||||
h4: 'Naslov 4',
|
||||
h5: 'Naslov 5',
|
||||
h6: 'Naslov 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Označen seznam',
|
||||
ordered: 'Oštevilčen seznam'
|
||||
},
|
||||
options: {
|
||||
help: 'Pomoč',
|
||||
fullscreen: 'Celozaslonski način',
|
||||
codeview: 'Pregled HTML kode'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Slogi odstavka',
|
||||
outdent: 'Zmanjšaj odmik',
|
||||
indent: 'Povečaj odmik',
|
||||
left: 'Leva poravnava',
|
||||
center: 'Desna poravnava',
|
||||
right: 'Sredinska poravnava',
|
||||
justify: 'Obojestranska poravnava'
|
||||
},
|
||||
color: {
|
||||
recent: 'Uporabi zadnjo barvo',
|
||||
more: 'Več barv',
|
||||
background: 'Barva ozadja',
|
||||
foreground: 'Barva besedila',
|
||||
transparent: 'Brez barve',
|
||||
setTransparent: 'Brez barve',
|
||||
reset: 'Ponastavi',
|
||||
resetToDefault: 'Ponastavi na privzeto'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Bljižnice',
|
||||
close: 'Zapri',
|
||||
textFormatting: 'Oblikovanje besedila',
|
||||
action: 'Dejanja',
|
||||
paragraphFormatting: 'Oblikovanje odstavka',
|
||||
documentStyle: 'Oblikovanje naslova',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Razveljavi',
|
||||
redo: 'Uveljavi'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-sl-SI.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-sl-SI.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-sl-SI.min.js.LICENSE.txt */
|
||||
!function(e,a){if("object"==typeof exports&&"object"==typeof module)module.exports=a();else if("function"==typeof define&&define.amd)define([],a);else{var o=a();for(var r in o)("object"==typeof exports?exports:e)[r]=o[r]}}(window,(function(){return function(e){var a={};function o(r){if(a[r])return a[r].exports;var t=a[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,o),t.l=!0,t.exports}return o.m=e,o.c=a,o.d=function(e,a,r){o.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:r})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,a){if(1&a&&(e=o(e)),8&a)return e;if(4&a&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&a&&"string"!=typeof e)for(var t in e)o.d(r,t,function(a){return e[a]}.bind(null,t));return r},o.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(a,"a",a),a},o.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},o.p="",o(o.s=39)}({39:function(e,a){var o;(o=jQuery).extend(o.summernote.lang,{"sl-SI":{font:{bold:"Krepko",italic:"Ležeče",underline:"Podčrtano",clear:"Počisti oblikovanje izbire",height:"Razmik med vrsticami",name:"Pisava",strikethrough:"Prečrtano",subscript:"Podpisano",superscript:"Nadpisano",size:"Velikost pisave"},image:{image:"Slika",insert:"Vstavi sliko",resizeFull:"Razširi na polno velikost",resizeHalf:"Razširi na polovico velikosti",resizeQuarter:"Razširi na četrtino velikosti",floatLeft:"Leva poravnava",floatRight:"Desna poravnava",floatNone:"Brez poravnave",shapeRounded:"Shape: Rounded",shapeCircle:"Shape: Circle",shapeThumbnail:"Shape: Thumbnail",shapeNone:"Shape: None",dragImageHere:"Sem povlecite sliko",dropImage:"Drop image or Text",selectFromFiles:"Izberi sliko za nalaganje",maximumFileSize:"Maximum file size",maximumFileSizeError:"Maximum file size exceeded.",url:"URL naslov slike",remove:"Odstrani sliko",original:"Original"},video:{video:"Video",videoLink:"Video povezava",insert:"Vstavi video",url:"Povezava do videa",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion ali Youku)"},link:{link:"Povezava",insert:"Vstavi povezavo",unlink:"Odstrani povezavo",edit:"Uredi",textToDisplay:"Prikazano besedilo",url:"Povezava",openInNewWindow:"Odpri v novem oknu"},table:{table:"Tabela",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Vstavi horizontalno črto"},style:{style:"Slogi",p:"Navadno besedilo",blockquote:"Citat",pre:"Koda",h1:"Naslov 1",h2:"Naslov 2",h3:"Naslov 3",h4:"Naslov 4",h5:"Naslov 5",h6:"Naslov 6"},lists:{unordered:"Označen seznam",ordered:"Oštevilčen seznam"},options:{help:"Pomoč",fullscreen:"Celozaslonski način",codeview:"Pregled HTML kode"},paragraph:{paragraph:"Slogi odstavka",outdent:"Zmanjšaj odmik",indent:"Povečaj odmik",left:"Leva poravnava",center:"Desna poravnava",right:"Sredinska poravnava",justify:"Obojestranska poravnava"},color:{recent:"Uporabi zadnjo barvo",more:"Več barv",background:"Barva ozadja",foreground:"Barva besedila",transparent:"Brez barve",setTransparent:"Brez barve",reset:"Ponastavi",resetToDefault:"Ponastavi na privzeto"},shortcut:{shortcuts:"Bljižnice",close:"Zapri",textFormatting:"Oblikovanje besedila",action:"Dejanja",paragraphFormatting:"Oblikovanje odstavka",documentStyle:"Oblikovanje naslova",extraKeys:"Extra keys"},help:{insertParagraph:"Insert Paragraph",undo:"Undoes the last command",redo:"Redoes the last command",tab:"Tab",untab:"Untab",bold:"Set a bold style",italic:"Set a italic style",underline:"Set a underline style",strikethrough:"Set a strikethrough style",removeFormat:"Clean a style",justifyLeft:"Set left align",justifyCenter:"Set center align",justifyRight:"Set right align",justifyFull:"Set full align",insertUnorderedList:"Toggle unordered list",insertOrderedList:"Toggle ordered list",outdent:"Outdent on current paragraph",indent:"Indent on current paragraph",formatPara:"Change current block's format as a paragraph(P tag)",formatH1:"Change current block's format as H1",formatH2:"Change current block's format as H2",formatH3:"Change current block's format as H3",formatH4:"Change current block's format as H4",formatH5:"Change current block's format as H5",formatH6:"Change current block's format as H6",insertHorizontalRule:"Insert horizontal rule","linkDialog.show":"Show Link Dialog"},history:{undo:"Razveljavi",redo:"Uveljavi"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-sr-RS-Latin.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-sr-RS-Latin.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 40);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 40:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'sr-RS': {
|
||||
font: {
|
||||
bold: 'Podebljano',
|
||||
italic: 'Kurziv',
|
||||
underline: 'Podvučeno',
|
||||
clear: 'Ukloni stilove fonta',
|
||||
height: 'Visina linije',
|
||||
name: 'Font Family',
|
||||
strikethrough: 'Precrtano',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Veličina fonta'
|
||||
},
|
||||
image: {
|
||||
image: 'Slika',
|
||||
insert: 'Umetni sliku',
|
||||
resizeFull: 'Puna veličina',
|
||||
resizeHalf: 'Umanji na 50%',
|
||||
resizeQuarter: 'Umanji na 25%',
|
||||
floatLeft: 'Uz levu ivicu',
|
||||
floatRight: 'Uz desnu ivicu',
|
||||
floatNone: 'Bez ravnanja',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Prevuci sliku ovde',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Izaberi iz datoteke',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Adresa slike',
|
||||
remove: 'Ukloni sliku',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Veza ka videu',
|
||||
insert: 'Umetni video',
|
||||
url: 'URL video',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ili Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Veza',
|
||||
insert: 'Umetni vezu',
|
||||
unlink: 'Ukloni vezu',
|
||||
edit: 'Uredi',
|
||||
textToDisplay: 'Tekst za prikaz',
|
||||
url: 'Internet adresa',
|
||||
openInNewWindow: 'Otvori u novom prozoru'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabela',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Umetni horizontalnu liniju'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
p: 'pni',
|
||||
blockquote: 'Citat',
|
||||
pre: 'Kod',
|
||||
h1: 'Zaglavlje 1',
|
||||
h2: 'Zaglavlje 2',
|
||||
h3: 'Zaglavlje 3',
|
||||
h4: 'Zaglavlje 4',
|
||||
h5: 'Zaglavlje 5',
|
||||
h6: 'Zaglavlje 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Obična lista',
|
||||
ordered: 'Numerisana lista'
|
||||
},
|
||||
options: {
|
||||
help: 'Pomoć',
|
||||
fullscreen: 'Preko celog ekrana',
|
||||
codeview: 'Izvorni kod'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraf',
|
||||
outdent: 'Smanji uvlačenje',
|
||||
indent: 'Povečaj uvlačenje',
|
||||
left: 'Poravnaj u levo',
|
||||
center: 'Centrirano',
|
||||
right: 'Poravnaj u desno',
|
||||
justify: 'Poravnaj obostrano'
|
||||
},
|
||||
color: {
|
||||
recent: 'Poslednja boja',
|
||||
more: 'Više boja',
|
||||
background: 'Boja pozadine',
|
||||
foreground: 'Boja teksta',
|
||||
transparent: 'Providna',
|
||||
setTransparent: 'Providna',
|
||||
reset: 'Opoziv',
|
||||
resetToDefault: 'Podrazumevana'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Prečice sa tastature',
|
||||
close: 'Zatvori',
|
||||
textFormatting: 'Formatiranje teksta',
|
||||
action: 'Akcija',
|
||||
paragraphFormatting: 'Formatiranje paragrafa',
|
||||
documentStyle: 'Stil dokumenta',
|
||||
extraKeys: 'Dodatne kombinacije'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Poništi',
|
||||
redo: 'Ponovi'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-sr-RS-Latin.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-sr-RS-Latin.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-sr-RS-Latin.min.js.LICENSE.txt */
|
||||
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var a=t();for(var r in a)("object"==typeof exports?exports:e)[r]=a[r]}}(window,(function(){return function(e){var t={};function a(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,a),o.l=!0,o.exports}return a.m=e,a.c=t,a.d=function(e,t,r){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(a.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)a.d(r,o,function(t){return e[t]}.bind(null,o));return r},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=40)}({40:function(e,t){var a;(a=jQuery).extend(a.summernote.lang,{"sr-RS":{font:{bold:"Podebljano",italic:"Kurziv",underline:"Podvučeno",clear:"Ukloni stilove fonta",height:"Visina linije",name:"Font Family",strikethrough:"Precrtano",subscript:"Subscript",superscript:"Superscript",size:"Veličina fonta"},image:{image:"Slika",insert:"Umetni sliku",resizeFull:"Puna veličina",resizeHalf:"Umanji na 50%",resizeQuarter:"Umanji na 25%",floatLeft:"Uz levu ivicu",floatRight:"Uz desnu ivicu",floatNone:"Bez ravnanja",shapeRounded:"Shape: Rounded",shapeCircle:"Shape: Circle",shapeThumbnail:"Shape: Thumbnail",shapeNone:"Shape: None",dragImageHere:"Prevuci sliku ovde",dropImage:"Drop image or Text",selectFromFiles:"Izaberi iz datoteke",maximumFileSize:"Maximum file size",maximumFileSizeError:"Maximum file size exceeded.",url:"Adresa slike",remove:"Ukloni sliku",original:"Original"},video:{video:"Video",videoLink:"Veza ka videu",insert:"Umetni video",url:"URL video",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion ili Youku)"},link:{link:"Veza",insert:"Umetni vezu",unlink:"Ukloni vezu",edit:"Uredi",textToDisplay:"Tekst za prikaz",url:"Internet adresa",openInNewWindow:"Otvori u novom prozoru"},table:{table:"Tabela",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Umetni horizontalnu liniju"},style:{style:"Stil",p:"pni",blockquote:"Citat",pre:"Kod",h1:"Zaglavlje 1",h2:"Zaglavlje 2",h3:"Zaglavlje 3",h4:"Zaglavlje 4",h5:"Zaglavlje 5",h6:"Zaglavlje 6"},lists:{unordered:"Obična lista",ordered:"Numerisana lista"},options:{help:"Pomoć",fullscreen:"Preko celog ekrana",codeview:"Izvorni kod"},paragraph:{paragraph:"Paragraf",outdent:"Smanji uvlačenje",indent:"Povečaj uvlačenje",left:"Poravnaj u levo",center:"Centrirano",right:"Poravnaj u desno",justify:"Poravnaj obostrano"},color:{recent:"Poslednja boja",more:"Više boja",background:"Boja pozadine",foreground:"Boja teksta",transparent:"Providna",setTransparent:"Providna",reset:"Opoziv",resetToDefault:"Podrazumevana"},shortcut:{shortcuts:"Prečice sa tastature",close:"Zatvori",textFormatting:"Formatiranje teksta",action:"Akcija",paragraphFormatting:"Formatiranje paragrafa",documentStyle:"Stil dokumenta",extraKeys:"Dodatne kombinacije"},help:{insertParagraph:"Insert Paragraph",undo:"Undoes the last command",redo:"Redoes the last command",tab:"Tab",untab:"Untab",bold:"Set a bold style",italic:"Set a italic style",underline:"Set a underline style",strikethrough:"Set a strikethrough style",removeFormat:"Clean a style",justifyLeft:"Set left align",justifyCenter:"Set center align",justifyRight:"Set right align",justifyFull:"Set full align",insertUnorderedList:"Toggle unordered list",insertOrderedList:"Toggle ordered list",outdent:"Outdent on current paragraph",indent:"Indent on current paragraph",formatPara:"Change current block's format as a paragraph(P tag)",formatH1:"Change current block's format as H1",formatH2:"Change current block's format as H2",formatH3:"Change current block's format as H3",formatH4:"Change current block's format as H4",formatH5:"Change current block's format as H5",formatH6:"Change current block's format as H6",insertHorizontalRule:"Insert horizontal rule","linkDialog.show":"Show Link Dialog"},history:{undo:"Poništi",redo:"Ponovi"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-sr-RS.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-sr-RS.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 41);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 41:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'sr-RS': {
|
||||
font: {
|
||||
bold: 'Подебљано',
|
||||
italic: 'Курзив',
|
||||
underline: 'Подвучено',
|
||||
clear: 'Уклони стилове фонта',
|
||||
height: 'Висина линије',
|
||||
name: 'Font Family',
|
||||
strikethrough: 'Прецртано',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Величина фонта'
|
||||
},
|
||||
image: {
|
||||
image: 'Слика',
|
||||
insert: 'Уметни слику',
|
||||
resizeFull: 'Пуна величина',
|
||||
resizeHalf: 'Умањи на 50%',
|
||||
resizeQuarter: 'Умањи на 25%',
|
||||
floatLeft: 'Уз леву ивицу',
|
||||
floatRight: 'Уз десну ивицу',
|
||||
floatNone: 'Без равнања',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Превуци слику овде',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Изабери из датотеке',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Адреса слике',
|
||||
remove: 'Уклони слику',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Видео',
|
||||
videoLink: 'Веза ка видеу',
|
||||
insert: 'Уметни видео',
|
||||
url: 'URL видео',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion или Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Веза',
|
||||
insert: 'Уметни везу',
|
||||
unlink: 'Уклони везу',
|
||||
edit: 'Уреди',
|
||||
textToDisplay: 'Текст за приказ',
|
||||
url: 'Интернет адреса',
|
||||
openInNewWindow: 'Отвори у новом прозору'
|
||||
},
|
||||
table: {
|
||||
table: 'Табела',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Уметни хоризонталну линију'
|
||||
},
|
||||
style: {
|
||||
style: 'Стил',
|
||||
p: 'Нормални',
|
||||
blockquote: 'Цитат',
|
||||
pre: 'Код',
|
||||
h1: 'Заглавље 1',
|
||||
h2: 'Заглавље 2',
|
||||
h3: 'Заглавље 3',
|
||||
h4: 'Заглавље 4',
|
||||
h5: 'Заглавље 5',
|
||||
h6: 'Заглавље 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Обична листа',
|
||||
ordered: 'Нумерисана листа'
|
||||
},
|
||||
options: {
|
||||
help: 'Помоћ',
|
||||
fullscreen: 'Преко целог екрана',
|
||||
codeview: 'Изворни код'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Параграф',
|
||||
outdent: 'Смањи увлачење',
|
||||
indent: 'Повечај увлачење',
|
||||
left: 'Поравнај у лево',
|
||||
center: 'Центрирано',
|
||||
right: 'Поравнај у десно',
|
||||
justify: 'Поравнај обострано'
|
||||
},
|
||||
color: {
|
||||
recent: 'Последња боја',
|
||||
more: 'Више боја',
|
||||
background: 'Боја позадине',
|
||||
foreground: 'Боја текста',
|
||||
transparent: 'Провидна',
|
||||
setTransparent: 'Провидна',
|
||||
reset: 'Опозив',
|
||||
resetToDefault: 'Подразумевана'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Пречице са тастатуре',
|
||||
close: 'Затвори',
|
||||
textFormatting: 'Форматирање текста',
|
||||
action: 'Акција',
|
||||
paragraphFormatting: 'Форматирање параграфа',
|
||||
documentStyle: 'Стил документа',
|
||||
extraKeys: 'Додатне комбинације'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Поништи',
|
||||
redo: 'Понови'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-sr-RS.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-sr-RS.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
273
public/vendor/editor/dist/lang/summernote-sv-SE.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-sv-SE.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 42);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 42:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'sv-SE': {
|
||||
font: {
|
||||
bold: 'Fet',
|
||||
italic: 'Kursiv',
|
||||
underline: 'Understruken',
|
||||
clear: 'Radera formatering',
|
||||
height: 'Radavstånd',
|
||||
name: 'Teckensnitt',
|
||||
strikethrough: 'Genomstruken',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Teckenstorlek'
|
||||
},
|
||||
image: {
|
||||
image: 'Bild',
|
||||
insert: 'Infoga bild',
|
||||
resizeFull: 'Full storlek',
|
||||
resizeHalf: 'Halv storlek',
|
||||
resizeQuarter: 'En fjärdedel i storlek',
|
||||
floatLeft: 'Vänsterjusterad',
|
||||
floatRight: 'Högerjusterad',
|
||||
floatNone: 'Ingen justering',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Dra en bild hit',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Välj från filer',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Länk till bild',
|
||||
remove: 'Ta bort bild',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Filmklipp',
|
||||
videoLink: 'Länk till filmklipp',
|
||||
insert: 'Infoga filmklipp',
|
||||
url: 'Länk till filmklipp',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion eller Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Länk',
|
||||
insert: 'Infoga länk',
|
||||
unlink: 'Ta bort länk',
|
||||
edit: 'Redigera',
|
||||
textToDisplay: 'Visningstext',
|
||||
url: 'Till vilken URL ska denna länk peka?',
|
||||
openInNewWindow: 'Öppna i ett nytt fönster'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabell',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Infoga horisontell linje'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
p: 'p',
|
||||
blockquote: 'Citat',
|
||||
pre: 'Kod',
|
||||
h1: 'Rubrik 1',
|
||||
h2: 'Rubrik 2',
|
||||
h3: 'Rubrik 3',
|
||||
h4: 'Rubrik 4',
|
||||
h5: 'Rubrik 5',
|
||||
h6: 'Rubrik 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Punktlista',
|
||||
ordered: 'Numrerad lista'
|
||||
},
|
||||
options: {
|
||||
help: 'Hjälp',
|
||||
fullscreen: 'Fullskärm',
|
||||
codeview: 'HTML-visning'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Justera text',
|
||||
outdent: 'Minska indrag',
|
||||
indent: 'Öka indrag',
|
||||
left: 'Vänsterjusterad',
|
||||
center: 'Centrerad',
|
||||
right: 'Högerjusterad',
|
||||
justify: 'Justera text'
|
||||
},
|
||||
color: {
|
||||
recent: 'Senast använda färg',
|
||||
more: 'Fler färger',
|
||||
background: 'Bakgrundsfärg',
|
||||
foreground: 'Teckenfärg',
|
||||
transparent: 'Genomskinlig',
|
||||
setTransparent: 'Gör genomskinlig',
|
||||
reset: 'Nollställ',
|
||||
resetToDefault: 'Återställ till standard'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Kortkommandon',
|
||||
close: 'Stäng',
|
||||
textFormatting: 'Textformatering',
|
||||
action: 'Funktion',
|
||||
paragraphFormatting: 'Avsnittsformatering',
|
||||
documentStyle: 'Dokumentstil',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Ångra',
|
||||
redo: 'Gör om'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-sv-SE.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-sv-SE.min.js
vendored
Executable file
@@ -0,0 +1,2 @@
|
||||
/*! For license information please see summernote-sv-SE.min.js.LICENSE.txt */
|
||||
!function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var r=t();for(var n in r)("object"==typeof exports?exports:e)[n]=r[n]}}(window,(function(){return function(e){var t={};function r(n){if(t[n])return t[n].exports;var a=t[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,r),a.l=!0,a.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)r.d(n,a,function(t){return e[t]}.bind(null,a));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=42)}({42:function(e,t){var r;(r=jQuery).extend(r.summernote.lang,{"sv-SE":{font:{bold:"Fet",italic:"Kursiv",underline:"Understruken",clear:"Radera formatering",height:"Radavstånd",name:"Teckensnitt",strikethrough:"Genomstruken",subscript:"Subscript",superscript:"Superscript",size:"Teckenstorlek"},image:{image:"Bild",insert:"Infoga bild",resizeFull:"Full storlek",resizeHalf:"Halv storlek",resizeQuarter:"En fjärdedel i storlek",floatLeft:"Vänsterjusterad",floatRight:"Högerjusterad",floatNone:"Ingen justering",shapeRounded:"Shape: Rounded",shapeCircle:"Shape: Circle",shapeThumbnail:"Shape: Thumbnail",shapeNone:"Shape: None",dragImageHere:"Dra en bild hit",dropImage:"Drop image or Text",selectFromFiles:"Välj från filer",maximumFileSize:"Maximum file size",maximumFileSizeError:"Maximum file size exceeded.",url:"Länk till bild",remove:"Ta bort bild",original:"Original"},video:{video:"Filmklipp",videoLink:"Länk till filmklipp",insert:"Infoga filmklipp",url:"Länk till filmklipp",providers:"(YouTube, Vimeo, Vine, Instagram, DailyMotion eller Youku)"},link:{link:"Länk",insert:"Infoga länk",unlink:"Ta bort länk",edit:"Redigera",textToDisplay:"Visningstext",url:"Till vilken URL ska denna länk peka?",openInNewWindow:"Öppna i ett nytt fönster"},table:{table:"Tabell",addRowAbove:"Add row above",addRowBelow:"Add row below",addColLeft:"Add column left",addColRight:"Add column right",delRow:"Delete row",delCol:"Delete column",delTable:"Delete table"},hr:{insert:"Infoga horisontell linje"},style:{style:"Stil",p:"p",blockquote:"Citat",pre:"Kod",h1:"Rubrik 1",h2:"Rubrik 2",h3:"Rubrik 3",h4:"Rubrik 4",h5:"Rubrik 5",h6:"Rubrik 6"},lists:{unordered:"Punktlista",ordered:"Numrerad lista"},options:{help:"Hjälp",fullscreen:"Fullskärm",codeview:"HTML-visning"},paragraph:{paragraph:"Justera text",outdent:"Minska indrag",indent:"Öka indrag",left:"Vänsterjusterad",center:"Centrerad",right:"Högerjusterad",justify:"Justera text"},color:{recent:"Senast använda färg",more:"Fler färger",background:"Bakgrundsfärg",foreground:"Teckenfärg",transparent:"Genomskinlig",setTransparent:"Gör genomskinlig",reset:"Nollställ",resetToDefault:"Återställ till standard"},shortcut:{shortcuts:"Kortkommandon",close:"Stäng",textFormatting:"Textformatering",action:"Funktion",paragraphFormatting:"Avsnittsformatering",documentStyle:"Dokumentstil",extraKeys:"Extra keys"},help:{insertParagraph:"Insert Paragraph",undo:"Undoes the last command",redo:"Redoes the last command",tab:"Tab",untab:"Untab",bold:"Set a bold style",italic:"Set a italic style",underline:"Set a underline style",strikethrough:"Set a strikethrough style",removeFormat:"Clean a style",justifyLeft:"Set left align",justifyCenter:"Set center align",justifyRight:"Set right align",justifyFull:"Set full align",insertUnorderedList:"Toggle unordered list",insertOrderedList:"Toggle ordered list",outdent:"Outdent on current paragraph",indent:"Indent on current paragraph",formatPara:"Change current block's format as a paragraph(P tag)",formatH1:"Change current block's format as H1",formatH2:"Change current block's format as H2",formatH3:"Change current block's format as H3",formatH4:"Change current block's format as H4",formatH5:"Change current block's format as H5",formatH6:"Change current block's format as H6",insertHorizontalRule:"Insert horizontal rule","linkDialog.show":"Show Link Dialog"},history:{undo:"Ångra",redo:"Gör om"},specialChar:{specialChar:"SPECIAL CHARACTERS",select:"Select Special characters"}}})}})}));
|
||||
273
public/vendor/editor/dist/lang/summernote-ta-IN.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-ta-IN.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 43);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 43:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ta-IN': {
|
||||
font: {
|
||||
bold: 'தடித்த',
|
||||
italic: 'சாய்வு',
|
||||
underline: 'அடிக்கோடு',
|
||||
clear: 'நீக்கு',
|
||||
height: 'வரி உயரம்',
|
||||
name: 'எழுத்துரு பெயர்',
|
||||
strikethrough: 'குறுக்குக் கோடு',
|
||||
size: 'எழுத்துரு அளவு',
|
||||
superscript: 'மேல் ஒட்டு',
|
||||
subscript: 'கீழ் ஒட்டு'
|
||||
},
|
||||
image: {
|
||||
image: 'படம்',
|
||||
insert: 'படத்தை செருகு',
|
||||
resizeFull: 'முழு அளவை',
|
||||
resizeHalf: 'அரை அளவை',
|
||||
resizeQuarter: 'கால் அளவை',
|
||||
floatLeft: 'இடப்பக்கமாக வை',
|
||||
floatRight: 'வலப்பக்கமாக வை',
|
||||
floatNone: 'இயல்புநிலையில் வை',
|
||||
shapeRounded: 'வட்டமான வடிவம்',
|
||||
shapeCircle: 'வட்ட வடிவம்',
|
||||
shapeThumbnail: 'சிறு வடிவம்',
|
||||
shapeNone: 'வடிவத்தை நீக்கு',
|
||||
dragImageHere: 'படத்தை இங்கே இழுத்துவை',
|
||||
dropImage: 'படத்தை விடு',
|
||||
selectFromFiles: 'கோப்புகளை தேர்வு செய்',
|
||||
maximumFileSize: 'அதிகபட்ச கோப்பு அளவு',
|
||||
maximumFileSizeError: 'கோப்பு அதிகபட்ச அளவை மீறிவிட்டது',
|
||||
url: 'இணையதள முகவரி',
|
||||
remove: 'படத்தை நீக்கு',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'காணொளி',
|
||||
videoLink: 'காணொளி இணைப்பு',
|
||||
insert: 'காணொளியை செருகு',
|
||||
url: 'இணையதள முகவரி',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'இணைப்பு',
|
||||
insert: 'இணைப்பை செருகு',
|
||||
unlink: 'இணைப்பை நீக்கு',
|
||||
edit: 'இணைப்பை தொகு',
|
||||
textToDisplay: 'காட்சி வாசகம்',
|
||||
url: 'இணையதள முகவரி',
|
||||
openInNewWindow: 'புதிய சாளரத்தில் திறக்க'
|
||||
},
|
||||
table: {
|
||||
table: 'அட்டவணை',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'கிடைமட்ட கோடு'
|
||||
},
|
||||
style: {
|
||||
style: 'தொகுப்பு',
|
||||
p: 'பத்தி',
|
||||
blockquote: 'மேற்கோள்',
|
||||
pre: 'குறியீடு',
|
||||
h1: 'தலைப்பு 1',
|
||||
h2: 'தலைப்பு 2',
|
||||
h3: 'தலைப்பு 3',
|
||||
h4: 'தலைப்பு 4',
|
||||
h5: 'தலைப்பு 5',
|
||||
h6: 'தலைப்பு 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'வரிசையிடாத',
|
||||
ordered: 'வரிசையிட்ட'
|
||||
},
|
||||
options: {
|
||||
help: 'உதவி',
|
||||
fullscreen: 'முழுத்திரை',
|
||||
codeview: 'நிரலாக்க காட்சி'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'பத்தி',
|
||||
outdent: 'வெளித்தள்ளு',
|
||||
indent: 'உள்ளே தள்ளு',
|
||||
left: 'இடது சீரமைப்பு',
|
||||
center: 'நடு சீரமைப்பு',
|
||||
right: 'வலது சீரமைப்பு',
|
||||
justify: 'இருபுற சீரமைப்பு'
|
||||
},
|
||||
color: {
|
||||
recent: 'அண்மை நிறம்',
|
||||
more: 'மேலும்',
|
||||
background: 'பின்புல நிறம்',
|
||||
foreground: 'முன்புற நிறம்',
|
||||
transparent: 'தெளிமையான',
|
||||
setTransparent: 'தெளிமையாக்கு',
|
||||
reset: 'மீட்டமைக்க',
|
||||
resetToDefault: 'இயல்புநிலைக்கு மீட்டமை'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'குறுக்குவழி',
|
||||
close: 'மூடு',
|
||||
textFormatting: 'எழுத்து வடிவமைப்பு',
|
||||
action: 'செயல்படுத்து',
|
||||
paragraphFormatting: 'பத்தி வடிவமைப்பு',
|
||||
documentStyle: 'ஆவண பாணி',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'மீளமை',
|
||||
redo: 'மீண்டும்'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-ta-IN.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-ta-IN.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
273
public/vendor/editor/dist/lang/summernote-th-TH.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-th-TH.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 44);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 44:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'th-TH': {
|
||||
font: {
|
||||
bold: 'ตัวหนา',
|
||||
italic: 'ตัวเอียง',
|
||||
underline: 'ขีดเส้นใต้',
|
||||
clear: 'ล้างรูปแบบตัวอักษร',
|
||||
height: 'ความสูงบรรทัด',
|
||||
name: 'แบบตัวอักษร',
|
||||
strikethrough: 'ขีดฆ่า',
|
||||
subscript: 'ตัวห้อย',
|
||||
superscript: 'ตัวยก',
|
||||
size: 'ขนาดตัวอักษร'
|
||||
},
|
||||
image: {
|
||||
image: 'รูปภาพ',
|
||||
insert: 'แทรกรูปภาพ',
|
||||
resizeFull: 'ปรับขนาดเท่าจริง',
|
||||
resizeHalf: 'ปรับขนาดลง 50%',
|
||||
resizeQuarter: 'ปรับขนาดลง 25%',
|
||||
floatLeft: 'ชิดซ้าย',
|
||||
floatRight: 'ชิดขวา',
|
||||
floatNone: 'ไม่จัดตำแหน่ง',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'ลากรูปภาพที่ต้องการไว้ที่นี่',
|
||||
dropImage: 'วางรูปภาพหรือข้อความ',
|
||||
selectFromFiles: 'เลือกไฟล์รูปภาพ',
|
||||
maximumFileSize: 'ขนาดไฟล์ใหญ่สุด',
|
||||
maximumFileSizeError: 'ไฟล์เกินขนาดที่กำหนด',
|
||||
url: 'ที่อยู่ URL ของรูปภาพ',
|
||||
remove: 'ลบรูปภาพ',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'วีดีโอ',
|
||||
videoLink: 'ลิงก์ของวีดีโอ',
|
||||
insert: 'แทรกวีดีโอ',
|
||||
url: 'ที่อยู่ URL ของวีดีโอ',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion หรือ Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'ตัวเชื่อมโยง',
|
||||
insert: 'แทรกตัวเชื่อมโยง',
|
||||
unlink: 'ยกเลิกตัวเชื่อมโยง',
|
||||
edit: 'แก้ไข',
|
||||
textToDisplay: 'ข้อความที่ให้แสดง',
|
||||
url: 'ที่อยู่เว็บไซต์ที่ต้องการให้เชื่อมโยงไปถึง?',
|
||||
openInNewWindow: 'เปิดในหน้าต่างใหม่'
|
||||
},
|
||||
table: {
|
||||
table: 'ตาราง',
|
||||
addRowAbove: 'เพิ่มแถวด้านบน',
|
||||
addRowBelow: 'เพิ่มแถวด้านล่าง',
|
||||
addColLeft: 'เพิ่มคอลัมน์ด้านซ้าย',
|
||||
addColRight: 'เพิ่มคอลัมน์ด้านขวา',
|
||||
delRow: 'ลบแถว',
|
||||
delCol: 'ลบคอลัมน์',
|
||||
delTable: 'ลบตาราง'
|
||||
},
|
||||
hr: {
|
||||
insert: 'แทรกเส้นคั่น'
|
||||
},
|
||||
style: {
|
||||
style: 'รูปแบบ',
|
||||
p: 'ปกติ',
|
||||
blockquote: 'ข้อความ',
|
||||
pre: 'โค้ด',
|
||||
h1: 'หัวข้อ 1',
|
||||
h2: 'หัวข้อ 2',
|
||||
h3: 'หัวข้อ 3',
|
||||
h4: 'หัวข้อ 4',
|
||||
h5: 'หัวข้อ 5',
|
||||
h6: 'หัวข้อ 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'รายการแบบไม่มีลำดับ',
|
||||
ordered: 'รายการแบบมีลำดับ'
|
||||
},
|
||||
options: {
|
||||
help: 'ช่วยเหลือ',
|
||||
fullscreen: 'ขยายเต็มหน้าจอ',
|
||||
codeview: 'ซอร์สโค้ด'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'ย่อหน้า',
|
||||
outdent: 'เยื้องซ้าย',
|
||||
indent: 'เยื้องขวา',
|
||||
left: 'จัดหน้าชิดซ้าย',
|
||||
center: 'จัดหน้ากึ่งกลาง',
|
||||
right: 'จัดหน้าชิดขวา',
|
||||
justify: 'จัดบรรทัดเสมอกัน'
|
||||
},
|
||||
color: {
|
||||
recent: 'สีที่ใช้ล่าสุด',
|
||||
more: 'สีอื่นๆ',
|
||||
background: 'สีพื้นหลัง',
|
||||
foreground: 'สีพื้นหน้า',
|
||||
transparent: 'โปร่งแสง',
|
||||
setTransparent: 'ตั้งค่าความโปร่งแสง',
|
||||
reset: 'คืนค่า',
|
||||
resetToDefault: 'คืนค่ามาตรฐาน'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'แป้นลัด',
|
||||
close: 'ปิด',
|
||||
textFormatting: 'การจัดรูปแบบข้อความ',
|
||||
action: 'การกระทำ',
|
||||
paragraphFormatting: 'การจัดรูปแบบย่อหน้า',
|
||||
documentStyle: 'รูปแบบของเอกสาร',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'ทำตัวหนา',
|
||||
'italic': 'ทำตัวเอียง',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'เปลี่ยนรูปแบบบล็อคปัจจุบันเป็น H1',
|
||||
'formatH2': 'เปลี่ยนรูปแบบบล็อคปัจจุบันเป็น H2',
|
||||
'formatH3': 'เปลี่ยนรูปแบบบล็อคปัจจุบันเป็น H3',
|
||||
'formatH4': 'เปลี่ยนรูปแบบบล็อคปัจจุบันเป็น H4',
|
||||
'formatH5': 'เปลี่ยนรูปแบบบล็อคปัจจุบันเป็น H5',
|
||||
'formatH6': 'เปลี่ยนรูปแบบบล็อคปัจจุบันเป็น H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'เปิดหน้าแก้ไข Link'
|
||||
},
|
||||
history: {
|
||||
undo: 'ยกเลิกการกระทำ',
|
||||
redo: 'ทำซ้ำการกระทำ'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
2
public/vendor/editor/dist/lang/summernote-th-TH.min.js
vendored
Executable file
2
public/vendor/editor/dist/lang/summernote-th-TH.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
273
public/vendor/editor/dist/lang/summernote-tr-TR.js
vendored
Executable file
273
public/vendor/editor/dist/lang/summernote-tr-TR.js
vendored
Executable file
@@ -0,0 +1,273 @@
|
||||
/*!
|
||||
*
|
||||
* Super simple wysiwyg editor v0.8.16
|
||||
* https://summernote.org
|
||||
*
|
||||
*
|
||||
* Copyright 2013- Alan Hong. and other contributors
|
||||
* summernote may be freely distributed under the MIT license.
|
||||
*
|
||||
* Date: 2020-02-19T09:12Z
|
||||
*
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else {
|
||||
var a = factory();
|
||||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
||||
}
|
||||
})(window, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 45);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 45:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
(function ($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'tr-TR': {
|
||||
font: {
|
||||
bold: 'Kalın',
|
||||
italic: 'İtalik',
|
||||
underline: 'Altı çizili',
|
||||
clear: 'Temizle',
|
||||
height: 'Satır yüksekliği',
|
||||
name: 'Yazı Tipi',
|
||||
strikethrough: 'Üstü çizili',
|
||||
subscript: 'Alt Simge',
|
||||
superscript: 'Üst Simge',
|
||||
size: 'Yazı tipi boyutu'
|
||||
},
|
||||
image: {
|
||||
image: 'Resim',
|
||||
insert: 'Resim ekle',
|
||||
resizeFull: 'Orjinal boyut',
|
||||
resizeHalf: '1/2 boyut',
|
||||
resizeQuarter: '1/4 boyut',
|
||||
floatLeft: 'Sola hizala',
|
||||
floatRight: 'Sağa hizala',
|
||||
floatNone: 'Hizalamayı kaldır',
|
||||
shapeRounded: 'Şekil: Yuvarlatılmış Köşe',
|
||||
shapeCircle: 'Şekil: Daire',
|
||||
shapeThumbnail: 'Şekil: K.Resim',
|
||||
shapeNone: 'Şekil: Yok',
|
||||
dragImageHere: 'Buraya sürükleyin',
|
||||
dropImage: 'Resim veya metni bırakın',
|
||||
selectFromFiles: 'Dosya seçin',
|
||||
maximumFileSize: 'Maksimum dosya boyutu',
|
||||
maximumFileSizeError: 'Maksimum dosya boyutu aşıldı.',
|
||||
url: 'Resim bağlantısı',
|
||||
remove: 'Resimi Kaldır',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video bağlantısı',
|
||||
insert: 'Video ekle',
|
||||
url: 'Video bağlantısı?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion veya Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Bağlantı',
|
||||
insert: 'Bağlantı ekle',
|
||||
unlink: 'Bağlantıyı kaldır',
|
||||
edit: 'Bağlantıyı düzenle',
|
||||
textToDisplay: 'Görüntülemek için',
|
||||
url: 'Bağlantı adresi?',
|
||||
openInNewWindow: 'Yeni pencerede aç'
|
||||
},
|
||||
table: {
|
||||
table: 'Tablo',
|
||||
addRowAbove: 'Yukarı satır ekle',
|
||||
addRowBelow: 'Aşağı satır ekle',
|
||||
addColLeft: 'Sola sütun ekle',
|
||||
addColRight: 'Sağa sütun ekle',
|
||||
delRow: 'Satırı sil',
|
||||
delCol: 'Sütunu sil',
|
||||
delTable: 'Tabloyu sil'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Yatay çizgi ekle'
|
||||
},
|
||||
style: {
|
||||
style: 'Biçim',
|
||||
p: 'p',
|
||||
blockquote: 'Alıntı',
|
||||
pre: 'Önbiçimli',
|
||||
h1: 'Başlık 1',
|
||||
h2: 'Başlık 2',
|
||||
h3: 'Başlık 3',
|
||||
h4: 'Başlık 4',
|
||||
h5: 'Başlık 5',
|
||||
h6: 'Başlık 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Madde işaretli liste',
|
||||
ordered: 'Numaralı liste'
|
||||
},
|
||||
options: {
|
||||
help: 'Yardım',
|
||||
fullscreen: 'Tam ekran',
|
||||
codeview: 'HTML Kodu'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraf',
|
||||
outdent: 'Girintiyi artır',
|
||||
indent: 'Girintiyi azalt',
|
||||
left: 'Sola hizala',
|
||||
center: 'Ortaya hizala',
|
||||
right: 'Sağa hizala',
|
||||
justify: 'Yasla'
|
||||
},
|
||||
color: {
|
||||
recent: 'Son renk',
|
||||
more: 'Daha fazla renk',
|
||||
background: 'Arka plan rengi',
|
||||
foreground: 'Yazı rengi',
|
||||
transparent: 'Seffaflık',
|
||||
setTransparent: 'Şeffaflığı ayarla',
|
||||
reset: 'Sıfırla',
|
||||
resetToDefault: 'Varsayılanlara sıfırla'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Kısayollar',
|
||||
close: 'Kapat',
|
||||
textFormatting: 'Yazı biçimlendirme',
|
||||
action: 'Eylem',
|
||||
paragraphFormatting: 'Paragraf biçimlendirme',
|
||||
documentStyle: 'Biçim',
|
||||
extraKeys: 'İlave anahtarlar'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Paragraf ekler',
|
||||
'undo': 'Son komudu geri alır',
|
||||
'redo': 'Son komudu yineler',
|
||||
'tab': 'Girintiyi artırır',
|
||||
'untab': 'Girintiyi azaltır',
|
||||
'bold': 'Kalın yazma stilini ayarlar',
|
||||
'italic': 'İtalik yazma stilini ayarlar',
|
||||
'underline': 'Altı çizgili yazma stilini ayarlar',
|
||||
'strikethrough': 'Üstü çizgili yazma stilini ayarlar',
|
||||
'removeFormat': 'Biçimlendirmeyi temizler',
|
||||
'justifyLeft': 'Yazıyı sola hizalar',
|
||||
'justifyCenter': 'Yazıyı ortalar',
|
||||
'justifyRight': 'Yazıyı sağa hizalar',
|
||||
'justifyFull': 'Yazıyı her iki tarafa yazlar',
|
||||
'insertUnorderedList': 'Madde işaretli liste ekler',
|
||||
'insertOrderedList': 'Numaralı liste ekler',
|
||||
'outdent': 'Aktif paragrafın girintisini azaltır',
|
||||
'indent': 'Aktif paragrafın girintisini artırır',
|
||||
'formatPara': 'Aktif bloğun biçimini paragraf (p) olarak değiştirir',
|
||||
'formatH1': 'Aktif bloğun biçimini başlık 1 (h1) olarak değiştirir',
|
||||
'formatH2': 'Aktif bloğun biçimini başlık 2 (h2) olarak değiştirir',
|
||||
'formatH3': 'Aktif bloğun biçimini başlık 3 (h3) olarak değiştirir',
|
||||
'formatH4': 'Aktif bloğun biçimini başlık 4 (h4) olarak değiştirir',
|
||||
'formatH5': 'Aktif bloğun biçimini başlık 5 (h5) olarak değiştirir',
|
||||
'formatH6': 'Aktif bloğun biçimini başlık 6 (h6) olarak değiştirir',
|
||||
'insertHorizontalRule': 'Yatay çizgi ekler',
|
||||
'linkDialog.show': 'Bağlantı ayar kutusunu gösterir'
|
||||
},
|
||||
history: {
|
||||
undo: 'Geri al',
|
||||
redo: 'Yinele'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'ÖZEL KARAKTERLER',
|
||||
select: 'Özel Karakterleri seçin'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
});
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user