You've already forked joplin
							
							
				mirror of
				https://github.com/laurent22/joplin.git
				synced 2025-10-31 00:07:48 +02:00 
			
		
		
		
	Desktop: TinyMCE: Added localisation support
This commit is contained in:
		| @@ -57,6 +57,7 @@ Server/node_modules/ | ||||
| Tools/node_modules | ||||
| Tools/PortableAppsLauncher | ||||
| Modules/TinyMCE/IconPack/postinstall.js | ||||
| Modules/TinyMCE/langs/ | ||||
|  | ||||
| # AUTO-GENERATED - EXCLUDED TYPESCRIPT BUILD | ||||
| ElectronClient/gui/MultiNoteActions.js | ||||
|   | ||||
| @@ -437,14 +437,16 @@ const TinyMCE = (props:NoteBodyEditorProps, ref:any) => { | ||||
| 				branding: false, | ||||
| 				target_list: false, | ||||
| 				table_resize_bars: false, | ||||
| 				toolbar: 'bold italic | link joplinInlineCode joplinCodeBlock joplinAttach | numlist bullist joplinChecklist | h1 h2 h3 hr blockquote table', | ||||
| 				language: props.locale, | ||||
| 				toolbar: 'bold italic | link joplinInlineCode joplinCodeBlock joplinAttach | numlist bullist joplinChecklist | h1 h2 h3 hr blockquote table joplinInsertDateTime', | ||||
| 				localization_function: _, | ||||
| 				setup: (editor:any) => { | ||||
|  | ||||
| 					function openEditDialog(editable:any) { | ||||
| 						const source = editable ? findBlockSource(editable) : newBlockSource(); | ||||
|  | ||||
| 						editor.windowManager.open({ | ||||
| 							title: 'Edit', | ||||
| 							title: _('Edit'), | ||||
| 							size: 'large', | ||||
| 							initialData: { | ||||
| 								codeTextArea: source.content, | ||||
| @@ -504,7 +506,7 @@ const TinyMCE = (props:NoteBodyEditorProps, ref:any) => { | ||||
| 					} | ||||
|  | ||||
| 					editor.ui.registry.addButton('joplinAttach', { | ||||
| 						tooltip: 'Attach...', | ||||
| 						tooltip: _('Attach file'), | ||||
| 						icon: 'paperclip', | ||||
| 						onAction: async function() { | ||||
| 							const resources = await attachResources.current(); | ||||
| @@ -523,7 +525,7 @@ const TinyMCE = (props:NoteBodyEditorProps, ref:any) => { | ||||
| 					}); | ||||
|  | ||||
| 					editor.ui.registry.addButton('joplinCodeBlock', { | ||||
| 						tooltip: 'Code Block', | ||||
| 						tooltip: _('Code Block'), | ||||
| 						icon: 'code-sample', | ||||
| 						onAction: async function() { | ||||
| 							openEditDialog(null); | ||||
| @@ -531,7 +533,7 @@ const TinyMCE = (props:NoteBodyEditorProps, ref:any) => { | ||||
| 					}); | ||||
|  | ||||
| 					editor.ui.registry.addToggleButton('joplinInlineCode', { | ||||
| 						tooltip: 'Inline Code', | ||||
| 						tooltip: _('Inline Code'), | ||||
| 						icon: 'sourcecode', | ||||
| 						onAction: function() { | ||||
| 							editor.execCommand('mceToggleFormat', false, 'code', { class: 'inline-code' }); | ||||
| @@ -546,6 +548,17 @@ const TinyMCE = (props:NoteBodyEditorProps, ref:any) => { | ||||
| 						}, | ||||
| 					}); | ||||
|  | ||||
| 					editor.ui.registry.addButton('joplinInsertDateTime', { | ||||
| 						tooltip: _('Insert Date Time'), | ||||
| 						icon: 'insert-time', | ||||
| 						onAction: function() { | ||||
| 							props.dispatch({ | ||||
| 								type: 'WINDOW_COMMAND', | ||||
| 								name: 'insertDateTime', | ||||
| 							}); | ||||
| 						}, | ||||
| 					}); | ||||
|  | ||||
| 					// TODO: remove event on unmount? | ||||
| 					editor.on('DblClick', (event:any) => { | ||||
| 						const editable = findEditableContainer(event.target); | ||||
|   | ||||
| @@ -938,6 +938,11 @@ | ||||
|     var getForcedRootBlockAttrs = function (editor) { | ||||
|       return editor.getParam('forced_root_block_attrs', {}); | ||||
|     }; | ||||
|     var getLocalizationFunction = function (editor) { | ||||
|       return editor.getParam('localization_function', function (s) { | ||||
|         return s; | ||||
|       }); | ||||
|     }; | ||||
|  | ||||
|     var createTextBlock = function (editor, contentNode) { | ||||
|       var dom = editor.dom; | ||||
| @@ -2117,6 +2122,7 @@ | ||||
|         var plugins = editor.settings.plugins ? editor.settings.plugins : ''; | ||||
|         return Tools.inArray(plugins.split(/[ ,]/), plugin) !== -1; | ||||
|       }; | ||||
|       var _ = getLocalizationFunction(editor); | ||||
|       var exec = function (command) { | ||||
|         return function () { | ||||
|           return editor.execCommand(command); | ||||
| @@ -2140,7 +2146,7 @@ | ||||
|         editor.ui.registry.addToggleButton('joplinChecklist', { | ||||
|           icon: 'checklist', | ||||
|           active: false, | ||||
|           tooltip: 'Checkbox list', | ||||
|           tooltip: _('Checkbox list'), | ||||
|           onAction: exec('InsertJoplinChecklist'), | ||||
|           onSetup: listState(editor, 'UL', { listType: 'joplinChecklist' }) | ||||
|         }); | ||||
|   | ||||
| @@ -417,6 +417,7 @@ function NoteEditor(props: NoteTextProps) { | ||||
| 		searchMarkers: searchMarkers, | ||||
| 		visiblePanes: props.noteVisiblePanes || ['editor', 'viewer'], | ||||
| 		keyboardMode: Setting.value('editor.keyboardMode'), | ||||
| 		locale: Setting.value('locale'), | ||||
| 	}; | ||||
|  | ||||
| 	let editor = null; | ||||
|   | ||||
| @@ -49,6 +49,7 @@ export interface NoteBodyEditorProps { | ||||
| 	visiblePanes: string[], | ||||
| 	keyboardMode: string, | ||||
| 	resourceInfos: ResourceInfos, | ||||
| 	locale: string, | ||||
| } | ||||
|  | ||||
| export interface FormNote { | ||||
|   | ||||
| @@ -11,6 +11,9 @@ const tasks = { | ||||
| 	copyPluginAssets: { | ||||
| 		fn: require('./tools/copyPluginAssets.js'), | ||||
| 	}, | ||||
| 	copyTinyMceLangs: { | ||||
| 		fn: require('./tools/copyTinyMceLangs.js'), | ||||
| 	}, | ||||
| 	electronRebuild: { | ||||
| 		fn: require('./tools/electronRebuild.js'), | ||||
| 	}, | ||||
| @@ -36,6 +39,7 @@ const buildParallel = [ | ||||
| 	'compileScripts', | ||||
| 	'compilePackageInfo', | ||||
| 	'copyPluginAssets', | ||||
| 	'copyTinyMceLangs', | ||||
| ]; | ||||
|  | ||||
| gulp.task('build', gulp.parallel(...buildParallel)); | ||||
|   | ||||
							
								
								
									
										12
									
								
								ElectronClient/tools/copyTinyMceLangs.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								ElectronClient/tools/copyTinyMceLangs.js
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,12 @@ | ||||
| const fs = require('fs-extra'); | ||||
|  | ||||
| async function main() { | ||||
| 	const sourceDir = `${__dirname}/../../Modules/TinyMCE/langs`; | ||||
| 	const destDir = `${__dirname}/../node_modules/tinymce/langs`; | ||||
| 	console.info(`Copying ${sourceDir} => ${destDir}`); | ||||
| 	await fs.remove(destDir); | ||||
| 	await fs.mkdirp(destDir); | ||||
| 	await fs.copy(sourceDir, destDir); | ||||
| } | ||||
|  | ||||
| module.exports = main; | ||||
| @@ -6,6 +6,6 @@ But with support for Joplin checkboxes. | ||||
|  | ||||
| ## Building | ||||
|  | ||||
| Use `npm run build` to build the plugin, which will also copy the compiled version to the right ElectronClient sub-directory. | ||||
| Use `npm i && npm run build` to build the plugin, which will also copy the compiled version to the right ElectronClient sub-directory. | ||||
|  | ||||
| To test the plugin, use `npm run buildAndStart`, which will build the plugin and start the desktop application. | ||||
| @@ -26,8 +26,13 @@ const getForcedRootBlockAttrs = (editor: Editor): Record<string, string> => { | ||||
|   return editor.getParam('forced_root_block_attrs', {}); | ||||
| }; | ||||
|  | ||||
| const getLocalizationFunction = (editor:Editor):Function => { | ||||
|   return editor.getParam('localization_function', (s:string) => s); | ||||
| } | ||||
|  | ||||
| export { | ||||
|   shouldIndentOnTab, | ||||
|   getForcedRootBlock, | ||||
|   getForcedRootBlockAttrs | ||||
|   getForcedRootBlockAttrs, | ||||
|   getLocalizationFunction, | ||||
| }; | ||||
|   | ||||
| @@ -6,6 +6,7 @@ | ||||
|  */ | ||||
|  | ||||
| import Tools from 'tinymce/core/api/util/Tools'; | ||||
| import * as Settings from '../api/Settings'; | ||||
| import * as NodeType from '../core/NodeType'; | ||||
| import Editor from 'tinymce/core/api/Editor'; | ||||
| import { isCustomList } from '../core/Util'; | ||||
| @@ -63,6 +64,7 @@ const register = function (editor: Editor) { | ||||
|     return Tools.inArray(plugins.split(/[ ,]/), plugin) !== -1; | ||||
|   }; | ||||
|  | ||||
|   const _ = Settings.getLocalizationFunction(editor); | ||||
|   const exec = (command) => () => editor.execCommand(command); | ||||
|  | ||||
|   if (!hasPlugin(editor, 'advlist')) { | ||||
| @@ -85,7 +87,7 @@ const register = function (editor: Editor) { | ||||
|     editor.ui.registry.addToggleButton('joplinChecklist', { | ||||
|       icon: 'checklist', | ||||
|       active: false, | ||||
|       tooltip: 'Checkbox list', | ||||
|       tooltip: _('Checkbox list'), | ||||
|       onAction: exec('InsertJoplinChecklist'), | ||||
|       onSetup: listState(editor, 'UL', { listType: 'joplinChecklist' }) | ||||
|     }); | ||||
|   | ||||
							
								
								
									
										4
									
								
								Modules/TinyMCE/langs/README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								Modules/TinyMCE/langs/README.md
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| This is the language packs for TinyMCE. | ||||
|  | ||||
| - Get the packs from there: https://www.tiny.cloud/get-tiny/language-packages/ | ||||
| - Then they need to be copied to the node_modules/tinymce directory. This is done from the ElectronClient gulpfile. | ||||
							
								
								
									
										420
									
								
								Modules/TinyMCE/langs/ar.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										420
									
								
								Modules/TinyMCE/langs/ar.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,420 @@ | ||||
| tinymce.addI18n('ar',{ | ||||
| "Redo": "\u0625\u0639\u0627\u062f\u0629", | ||||
| "Undo": "\u062a\u0631\u0627\u062c\u0639", | ||||
| "Cut": "\u0642\u0635", | ||||
| "Copy": "\u0646\u0633\u062e", | ||||
| "Paste": "\u0644\u0635\u0642", | ||||
| "Select all": "\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u0643\u0644", | ||||
| "New document": "\u0645\u0633\u062a\u0646\u062f \u062c\u062f\u064a\u062f", | ||||
| "Ok": "\u0645\u0648\u0627\u0641\u0642", | ||||
| "Cancel": "\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0623\u0645\u0631", | ||||
| "Visual aids": "\u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629 \u0627\u0644\u0628\u0635\u0631\u064a\u0629", | ||||
| "Bold": "\u063a\u0627\u0645\u0642", | ||||
| "Italic": "\u0645\u0627\u0626\u0644", | ||||
| "Underline": "\u062a\u0633\u0637\u064a\u0631", | ||||
| "Strikethrough": "\u064a\u062a\u0648\u0633\u0637\u0647 \u062e\u0637", | ||||
| "Superscript": "\u0645\u0631\u062a\u0641\u0639", | ||||
| "Subscript": "\u0645\u0646\u062e\u0641\u0636", | ||||
| "Clear formatting": "\u0645\u0633\u062d \u0627\u0644\u062a\u0646\u0633\u064a\u0642", | ||||
| "Align left": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0625\u0644\u0649 \u0627\u0644\u064a\u0633\u0627\u0631", | ||||
| "Align center": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0625\u0644\u0649 \u0627\u0644\u0648\u0633\u0637", | ||||
| "Align right": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0625\u0644\u0649 \u0627\u0644\u064a\u0645\u064a\u0646", | ||||
| "Justify": "\u0636\u0628\u0637", | ||||
| "Bullet list": "\u0642\u0627\u0626\u0645\u0629 \u062a\u0639\u062f\u0627\u062f \u0646\u0642\u0637\u064a", | ||||
| "Numbered list": "\u0642\u0627\u0626\u0645\u0629 \u0645\u0631\u0642\u0645\u0651\u064e\u0629", | ||||
| "Decrease indent": "\u062a\u0642\u0644\u064a\u0644 \u0627\u0644\u0645\u0633\u0627\u0641\u0629 \u0627\u0644\u0628\u0627\u062f\u0626\u0629", | ||||
| "Increase indent": "\u0632\u064a\u0627\u062f\u0629 \u0627\u0644\u0645\u0633\u0627\u0641\u0629 \u0627\u0644\u0628\u0627\u062f\u0626\u0629", | ||||
| "Close": "\u0625\u063a\u0644\u0627\u0642", | ||||
| "Formats": "\u0627\u0644\u062a\u0646\u0633\u064a\u0642\u0627\u062a", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0645\u062a\u0635\u0641\u062d\u0643 \u0644\u0627 \u064a\u062f\u0639\u0645 \u0627\u0644\u0648\u0635\u0648\u0644 \u0627\u0644\u0645\u0628\u0627\u0634\u0631 \u0625\u0644\u0649 \u0627\u0644\u062d\u0627\u0641\u0638\u0629. \u064a\u064f\u0631\u062c\u0649 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d Ctrl+X\/C\/V \u0628\u062f\u0644\u0627\u064b \u0645\u0646 \u0630\u0644\u0643.", | ||||
| "Headers": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646", | ||||
| "Header 1": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 1", | ||||
| "Header 2": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 2", | ||||
| "Header 3": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 3", | ||||
| "Header 4": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 4", | ||||
| "Header 5": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 5", | ||||
| "Header 6": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 6", | ||||
| "Headings": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646", | ||||
| "Heading 1": "\u0639\u0646\u0648\u0627\u0646 \u0661", | ||||
| "Heading 2": "\u0639\u0646\u0648\u0627\u0646 2", | ||||
| "Heading 3": "\u0639\u0646\u0648\u0627\u0646 3", | ||||
| "Heading 4": "\u0639\u0646\u0648\u0627\u0646 4", | ||||
| "Heading 5": "\u0639\u0646\u0648\u0627\u0646 5", | ||||
| "Heading 6": "\u0639\u0646\u0648\u0627\u0646 6", | ||||
| "Preformatted": "\u0645\u0646\u0633\u0642 \u0645\u0633\u0628\u0642\u064b\u0627", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "\u0631\u0645\u0632", | ||||
| "Paragraph": "\u0627\u0644\u0641\u0642\u0631\u0629", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "\u062f\u0627\u062e\u0644\u064a", | ||||
| "Blocks": "\u0627\u0644\u0643\u062a\u0644", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u064a\u062a\u0645 \u0627\u0644\u0644\u0635\u0642 \u062d\u0627\u0644\u064a\u0627\u064b \u0643\u0646\u0635 \u0639\u0627\u062f\u064a. \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0633\u064a\u0628\u0642\u0649 \u0643\u0646\u0635 \u0639\u0627\u062f\u064a \u062d\u062a\u0649 \u062a\u0642\u0648\u0645 \u0628\u062a\u0639\u0637\u064a\u0644 \u0647\u0630\u0627 \u0627\u0644\u062e\u064a\u0627\u0631.", | ||||
| "Fonts": "\u0627\u0644\u062e\u0637\u0648\u0637", | ||||
| "Font Sizes": "\u0623\u062d\u062c\u0627\u0645 \u0627\u0644\u062e\u0637\u0648\u0637", | ||||
| "Class": "\u0627\u0644\u0641\u0626\u0629", | ||||
| "Browse for an image": "\u0627\u0633\u062a\u0639\u0631\u0627\u0636 \u0635\u0648\u0631\u0629", | ||||
| "OR": "\u0623\u0648", | ||||
| "Drop an image here": "\u0625\u0641\u0644\u0627\u062a \u0635\u0648\u0631\u0629 \u0647\u0646\u0627", | ||||
| "Upload": "\u062a\u062d\u0645\u064a\u0644", | ||||
| "Block": "\u062d\u0638\u0631", | ||||
| "Align": "\u0645\u062d\u0627\u0630\u0627\u0629", | ||||
| "Default": "\u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a", | ||||
| "Circle": "\u062f\u0627\u0626\u0631\u0629", | ||||
| "Disc": "\u0642\u0631\u0635", | ||||
| "Square": "\u0645\u0631\u0628\u0639", | ||||
| "Lower Alpha": "\u062a\u0631\u0642\u064a\u0645 \u0623\u062e\u0631\u0641 \u0635\u063a\u064a\u0631\u0629", | ||||
| "Lower Greek": "\u062a\u0631\u0642\u064a\u0645 \u064a\u0648\u0646\u0627\u0646\u064a \u0635\u063a\u064a\u0631", | ||||
| "Lower Roman": "\u062a\u0631\u0642\u064a\u0645 \u0631\u0648\u0645\u0627\u0646\u064a \u0635\u063a\u064a\u0631", | ||||
| "Upper Alpha": "\u062a\u0631\u0642\u064a\u0645 \u0623\u062d\u0631\u0641 \u0643\u0628\u064a\u0631\u0629", | ||||
| "Upper Roman": "\u062a\u0631\u0642\u064a\u0645 \u0631\u0648\u0645\u0627\u0646\u064a \u0643\u0628\u064a\u0631", | ||||
| "Anchor...": "\u0645\u0631\u0633\u0627\u0629...", | ||||
| "Name": "\u0627\u0644\u0627\u0633\u0645", | ||||
| "Id": "\u0631\u0642\u0645 \u0627\u0644\u0645\u0639\u0631\u0641", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u0631\u0642\u0645 \u0627\u0644\u0645\u0639\u0631\u0641 \u064a\u062c\u0628 \u0623\u0646 \u062a\u0628\u062f\u0623 \u0628\u062d\u0631\u0641\u060c \u064a\u062a\u0628\u0639 \u0641\u0642\u0637 \u0628\u062d\u0631\u0648\u0641 \u0648\u0623\u0631\u0642\u0627\u0645\u060c \u0634\u0631\u0637\u0627\u062a\u060c \u0623\u0648 \u0627\u0644\u0646\u0642\u0627\u0637\u060c \u0627\u0644\u0646\u0642\u0637\u062a\u064a\u0646 \u0623\u0648 \u0627\u0644\u0634\u0631\u0637\u0627\u062a \u0627\u0644\u0633\u0641\u0644\u064a\u0629.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u0644\u062f\u064a\u0643 \u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0644\u0645 \u064a\u062a\u0645 \u062d\u0641\u0638\u0647\u0627 \u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u063a\u0628 \u0641\u064a \u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u0639\u064a\u062f\u0627\u061f", | ||||
| "Restore last draft": "\u0627\u0633\u062a\u0639\u0627\u062f\u0629 \u0623\u062e\u0631 \u0645\u0633\u0648\u062f\u0629", | ||||
| "Special character...": "\u0631\u0645\u0632 \u062e\u0627\u0635...", | ||||
| "Source code": "\u0634\u0641\u0631\u0629 \u0627\u0644\u0645\u0635\u062f\u0631", | ||||
| "Insert\/Edit code sample": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0643\u0648\u062f", | ||||
| "Language": "\u0627\u0644\u0644\u063a\u0629", | ||||
| "Code sample...": "\u0639\u064a\u0646\u0629 \u0627\u0644\u0631\u0645\u0632...", | ||||
| "Color Picker": "\u0645\u0646\u062a\u0642\u064a \u0627\u0644\u0623\u0644\u0648\u0627\u0646", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "\u0645\u0646 \u0627\u0644\u064a\u0633\u0627\u0631 \u0644\u0644\u064a\u0645\u064a\u0646", | ||||
| "Right to left": "\u0645\u0646 \u0627\u0644\u064a\u0645\u064a\u0646 \u0644\u0644\u064a\u0633\u0627\u0631", | ||||
| "Emoticons...": "\u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u0634\u0627\u0639\u0631...", | ||||
| "Metadata and Document Properties": "\u062e\u0635\u0627\u0626\u0635 \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u062a\u0639\u0631\u064a\u0641 \u0648\u0627\u0644\u0645\u0633\u062a\u0646\u062f", | ||||
| "Title": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646", | ||||
| "Keywords": "\u0643\u0644\u0645\u0627\u062a \u0627\u0644\u0628\u062d\u062b", | ||||
| "Description": "\u0627\u0644\u0648\u0635\u0641", | ||||
| "Robots": "\u0627\u0644\u0631\u0648\u0628\u0648\u062a\u0627\u062a", | ||||
| "Author": "\u0627\u0644\u0643\u0627\u062a\u0628", | ||||
| "Encoding": "\u0627\u0644\u062a\u0631\u0645\u064a\u0632", | ||||
| "Fullscreen": "\u0645\u0644\u0621 \u0627\u0644\u0634\u0627\u0634\u0629", | ||||
| "Action": "\u0627\u0644\u0639\u0645\u0644\u064a\u0629", | ||||
| "Shortcut": "\u0627\u0644\u0627\u062e\u062a\u0635\u0627\u0631", | ||||
| "Help": "\u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629", | ||||
| "Address": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646", | ||||
| "Focus to menubar": "\u0627\u0644\u062a\u0631\u0643\u064a\u0632 \u0639\u0644\u0649 \u0634\u0631\u064a\u0637 \u0627\u0644\u0642\u0648\u0627\u0626\u0645", | ||||
| "Focus to toolbar": "\u0627\u0644\u062a\u0631\u0643\u064a\u0632 \u0639\u0644\u0649 \u0634\u0631\u064a\u0637 \u0627\u0644\u0623\u062f\u0648\u0627\u062a", | ||||
| "Focus to element path": "\u0627\u0644\u062a\u0631\u0643\u064a\u0632 \u0639\u0644\u0649 \u0645\u0633\u0627\u0631 \u0627\u0644\u0639\u0646\u0635\u0631", | ||||
| "Focus to contextual toolbar": "\u0627\u0644\u062a\u0631\u0643\u064a\u0632 \u0639\u0644\u0649 \u0634\u0631\u064a\u0637 \u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0633\u064a\u0627\u0642", | ||||
| "Insert link (if link plugin activated)": "\u0625\u0636\u0627\u0641\u0629 \u0631\u0627\u0628\u0637 (\u0625\u0630\u0627 \u0643\u0627\u0646\u062a \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0631\u0648\u0627\u0628\u0637 \u0645\u0641\u0639\u0644\u0629)", | ||||
| "Save (if save plugin activated)": "\u062d\u0641\u0638 (\u0625\u0630\u0627 \u0643\u0627\u0646\u062a \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u062d\u0641\u0638 \u0645\u0641\u0639\u0644\u0629)", | ||||
| "Find (if searchreplace plugin activated)": "\u0627\u0644\u0628\u062d\u062b (\u0625\u0630\u0627 \u0643\u0627\u0646\u062a \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0628\u062d\u062b \u0645\u0641\u0639\u0644\u0629)", | ||||
| "Plugins installed ({0}):": "\u0627\u0644\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0645\u062b\u0628\u062a\u0629 ({0}):", | ||||
| "Premium plugins:": "\u0627\u0644\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0645\u0645\u064a\u0632\u0629:", | ||||
| "Learn more...": "\u0645\u0639\u0631\u0641\u0629 \u0627\u0644\u0645\u0632\u064a\u062f...", | ||||
| "You are using {0}": "\u0623\u0646\u062a \u062a\u0633\u062a\u062e\u062f\u0645 {0}", | ||||
| "Plugins": "\u0627\u0644\u0625\u0636\u0627\u0641\u0627\u062a", | ||||
| "Handy Shortcuts": "\u0627\u062e\u062a\u0635\u0627\u0631\u0627\u062a \u0645\u0633\u0627\u0639\u0650\u062f\u0629", | ||||
| "Horizontal line": "\u062e\u0637 \u0623\u0641\u0642\u064a", | ||||
| "Insert\/edit image": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0635\u0648\u0631\u0629", | ||||
| "Image description": "\u0648\u0635\u0641 \u0627\u0644\u0635\u0648\u0631\u0629", | ||||
| "Source": "\u0627\u0644\u0645\u0635\u062f\u0631", | ||||
| "Dimensions": "\u0627\u0644\u0623\u0628\u0639\u0627\u062f", | ||||
| "Constrain proportions": "\u0627\u0644\u062a\u0646\u0627\u0633\u0628", | ||||
| "General": "\u0639\u0627\u0645", | ||||
| "Advanced": "\u062e\u0635\u0627\u0626\u0635 \u0645\u062a\u0642\u062f\u0645\u0647", | ||||
| "Style": "\u0627\u0644\u0646\u0645\u0637 \/ \u0627\u0644\u0634\u0643\u0644", | ||||
| "Vertical space": "\u0645\u0633\u0627\u0641\u0629 \u0639\u0645\u0648\u062f\u064a\u0629", | ||||
| "Horizontal space": "\u0645\u0633\u0627\u0641\u0629 \u0623\u0641\u0642\u064a\u0629", | ||||
| "Border": "\u062d\u062f\u0648\u062f", | ||||
| "Insert image": "\u0625\u062f\u0631\u0627\u062c \u0635\u0648\u0631\u0629", | ||||
| "Image...": "\u0635\u0648\u0631\u0629...", | ||||
| "Image list": "\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0635\u0648\u0631", | ||||
| "Rotate counterclockwise": "\u062a\u062f\u0648\u064a\u0631 \u0639\u0643\u0633 \u0627\u062a\u062c\u0627\u0647 \u0639\u0642\u0627\u0631\u0628 \u0627\u0644\u0633\u0627\u0639\u0629", | ||||
| "Rotate clockwise": "\u062a\u062f\u0648\u064a\u0631 \u0641\u064a \u0627\u062a\u062c\u0627\u0647 \u0639\u0642\u0627\u0631\u0628 \u0627\u0644\u0633\u0627\u0639\u0629", | ||||
| "Flip vertically": "\u0627\u0646\u0639\u0643\u0627\u0633 \u0639\u0627\u0645\u0648\u062f\u064a", | ||||
| "Flip horizontally": "\u0627\u0646\u0639\u0643\u0627\u0633 \u0623\u0641\u0642\u064a", | ||||
| "Edit image": "\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0635\u0648\u0631\u0629", | ||||
| "Image options": "\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0635\u0648\u0631\u0629", | ||||
| "Zoom in": "\u062a\u0643\u0628\u064a\u0631", | ||||
| "Zoom out": "\u062a\u0635\u063a\u064a\u0631", | ||||
| "Crop": "\u0642\u0635", | ||||
| "Resize": "\u062a\u063a\u064a\u064a\u0631 \u062d\u062c\u0645", | ||||
| "Orientation": "\u0627\u0644\u0645\u062d\u0627\u0630\u0627\u0629", | ||||
| "Brightness": "\u0627\u0644\u0625\u0636\u0627\u0621\u0629", | ||||
| "Sharpen": "\u062d\u0627\u062f\u0629", | ||||
| "Contrast": "\u0627\u0644\u062a\u0628\u0627\u064a\u0646", | ||||
| "Color levels": "\u0645\u0633\u062a\u0648\u0649 \u0627\u0644\u0644\u0648\u0646", | ||||
| "Gamma": "\u063a\u0627\u0645\u0627", | ||||
| "Invert": "\u0639\u0643\u0633", | ||||
| "Apply": "\u062a\u0637\u0628\u064a\u0642", | ||||
| "Back": "\u0644\u0644\u062e\u0644\u0641", | ||||
| "Insert date\/time": "\u0625\u062f\u0631\u0627\u062c \u062a\u0627\u0631\u064a\u062e\/\u0648\u0642\u062a", | ||||
| "Date\/time": "\u0627\u0644\u062a\u0627\u0631\u064a\u062e\/\u0627\u0644\u0648\u0642\u062a", | ||||
| "Insert\/Edit Link": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0627\u0631\u062a\u0628\u0627\u0637", | ||||
| "Insert\/edit link": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0631\u0627\u0628\u0637", | ||||
| "Text to display": "\u0627\u0644\u0646\u0635 \u0627\u0644\u0645\u0637\u0644\u0648\u0628 \u0639\u0631\u0636\u0647", | ||||
| "Url": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646", | ||||
| "Open link in...": "\u062c\u0627\u0631\u064d \u0641\u062a\u062d \u0627\u0644\u0627\u0631\u062a\u0628\u0627\u0637.", | ||||
| "Current window": "\u0627\u0644\u0646\u0627\u0641\u0630\u0629 \u0627\u0644\u062d\u0627\u0644\u064a\u0629", | ||||
| "None": "\u0628\u0644\u0627", | ||||
| "New window": "\u0646\u0627\u0641\u0630\u0629 \u062c\u062f\u064a\u062f\u0629", | ||||
| "Remove link": "\u062d\u0630\u0641 \u0627\u0644\u0631\u0627\u0628\u0637", | ||||
| "Anchors": "\u0627\u0644\u0645\u0631\u0633\u0627\u0629", | ||||
| "Link...": "\u0627\u0631\u062a\u0628\u0627\u0637...", | ||||
| "Paste or type a link": "\u0623\u062f\u062e\u0644 \u0623\u0648 \u0627\u0643\u062a\u0628 \u0627\u0644\u0631\u0627\u0628\u0637", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0630\u064a \u0642\u0645\u062a \u0628\u0625\u062f\u0631\u0627\u062c\u0647 \u064a\u0634\u0627\u0628\u0647 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a. \u0647\u0644 \u062a\u0631\u064a\u062f \u0627\u0646 \u062a\u0636\u064a\u0641 \u0627\u0644\u0644\u0627\u062d\u0642\u0629 mailto: \u0645\u0639\u062a\u0628\u0631\u0627\u064b \u0647\u0630\u0627 \u0627\u0644\u0631\u0627\u0628\u0637 \u0628\u0631\u064a\u062f\u0627 \u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0627\u064b\u061f", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0646\u062a\u0648\u0642\u0639 \u0627\u0646\u0643 \u0642\u0645\u062a \u0628\u0625\u062f\u0631\u0627\u062c \u0631\u0627\u0628\u0637 \u0644\u0645\u0648\u0642\u0639 \u062e\u0627\u0631\u062c\u064a. \u0647\u0644 \u062a\u0631\u064a\u062f \u0627\u0646 \u0646\u0636\u064a\u0641 \u0627\u0644\u0644\u0627\u062d\u0642\u0629 http:\/\/ \u0644\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0630\u064a \u0627\u062f\u062e\u0644\u062a\u0647\u061f", | ||||
| "Link list": "\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0631\u0648\u0627\u0628\u0637", | ||||
| "Insert video": "\u0625\u062f\u0631\u0627\u062c \u0641\u064a\u062f\u064a\u0648", | ||||
| "Insert\/edit video": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0641\u064a\u062f\u064a\u0648", | ||||
| "Insert\/edit media": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629", | ||||
| "Alternative source": "\u0645\u0635\u062f\u0631 \u0628\u062f\u064a\u0644", | ||||
| "Alternative source URL": "\u0639\u0646\u0648\u0627\u0646 URL \u0644\u0644\u0645\u0635\u062f\u0631 \u0627\u0644\u0628\u062f\u064a\u0644", | ||||
| "Media poster (Image URL)": "\u0645\u0644\u0635\u0642 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 (\u0639\u0646\u0648\u0627\u0646 URL \u0644\u0644\u0635\u0648\u0631\u0629)", | ||||
| "Paste your embed code below:": "\u0644\u0635\u0642 \u0643\u0648\u062f \u0627\u0644\u062a\u0636\u0645\u064a\u0646 \u0647\u0646\u0627:", | ||||
| "Embed": "\u062a\u0636\u0645\u064a\u0646", | ||||
| "Media...": "\u0627\u0644\u0648\u0633\u0627\u0626\u0637...", | ||||
| "Nonbreaking space": "\u0645\u0633\u0627\u0641\u0629 \u063a\u064a\u0631 \u0645\u0646\u0642\u0633\u0645\u0629", | ||||
| "Page break": "\u0641\u0627\u0635\u0644 \u0644\u0644\u0635\u0641\u062d\u0629", | ||||
| "Paste as text": "\u0644\u0635\u0642 \u0643\u0646\u0635", | ||||
| "Preview": "\u0645\u0639\u0627\u064a\u0646\u0629", | ||||
| "Print...": "\u0637\u0628\u0627\u0639\u0629...", | ||||
| "Save": "\u062d\u0641\u0638", | ||||
| "Find": "\u0628\u062d\u062b", | ||||
| "Replace with": "\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0628\u0640", | ||||
| "Replace": "\u0627\u0633\u062a\u0628\u062f\u0627\u0644", | ||||
| "Replace all": "\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0627\u0644\u0643\u0644", | ||||
| "Previous": "\u0627\u0644\u0633\u0627\u0628\u0642", | ||||
| "Next": "\u0627\u0644\u062a\u0627\u0644\u064a", | ||||
| "Find and replace...": "\u062c\u0627\u0631\u064d \u0627\u0644\u0628\u062d\u062b \u0648\u0627\u0644\u0627\u0633\u062a\u0628\u062f\u0627\u0644...", | ||||
| "Could not find the specified string.": "\u062a\u0639\u0630\u0631 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u062d\u062f\u062f\u0629", | ||||
| "Match case": "\u0645\u0637\u0627\u0628\u0642\u0629 \u062d\u0627\u0644\u0629 \u0627\u0644\u0623\u062d\u0631\u0641", | ||||
| "Find whole words only": "\u0628\u062d\u062b \u0643\u0644\u0645\u0627\u062a \u0628\u0623\u0643\u0645\u0644\u0647\u0627 \u0641\u0642\u0637", | ||||
| "Spell check": "\u062a\u062f\u0642\u064a\u0642 \u0625\u0645\u0644\u0627\u0626\u064a", | ||||
| "Ignore": "\u062a\u062c\u0627\u0647\u0644", | ||||
| "Ignore all": "\u062a\u062c\u0627\u0647\u0644 \u0627\u0644\u0643\u0644", | ||||
| "Finish": "\u0627\u0646\u062a\u0647\u064a", | ||||
| "Add to Dictionary": "\u0627\u0636\u0641 \u0627\u0644\u064a \u0627\u0644\u0642\u0627\u0645\u0648\u0633", | ||||
| "Insert table": "\u0625\u062f\u0631\u0627\u062c \u062c\u062f\u0648\u0644", | ||||
| "Table properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u062c\u062f\u0648\u0644", | ||||
| "Delete table": "\u062d\u0630\u0641 \u062c\u062f\u0648\u0644", | ||||
| "Cell": "\u062e\u0644\u064a\u0629", | ||||
| "Row": "\u0635\u0641", | ||||
| "Column": "\u0639\u0645\u0648\u062f", | ||||
| "Cell properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u062e\u0644\u064a\u0629", | ||||
| "Merge cells": "\u062f\u0645\u062c \u062e\u0644\u0627\u064a\u0627", | ||||
| "Split cell": "\u062a\u0642\u0633\u064a\u0645 \u0627\u0644\u062e\u0644\u0627\u064a\u0627", | ||||
| "Insert row before": "\u0625\u062f\u0631\u0627\u062c \u0635\u0641 \u0644\u0644\u0623\u0639\u0644\u0649", | ||||
| "Insert row after": "\u0625\u062f\u0631\u0627\u062c \u0635\u0641 \u0644\u0644\u0623\u0633\u0641\u0644", | ||||
| "Delete row": "\u062d\u0630\u0641 \u0635\u0641", | ||||
| "Row properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0635\u0641", | ||||
| "Cut row": "\u0642\u0635 \u0627\u0644\u0635\u0641", | ||||
| "Copy row": "\u0646\u0633\u062e \u0627\u0644\u0635\u0641", | ||||
| "Paste row before": "\u0644\u0635\u0642 \u0627\u0644\u0635\u0641 \u0644\u0644\u0623\u0639\u0644\u0649", | ||||
| "Paste row after": "\u0644\u0635\u0642 \u0627\u0644\u0635\u0641 \u0644\u0644\u0623\u0633\u0641\u0644", | ||||
| "Insert column before": "\u0625\u062f\u0631\u0627\u062c \u0639\u0645\u0648\u062f \u0644\u0644\u064a\u0633\u0627\u0631", | ||||
| "Insert column after": "\u0625\u062f\u0631\u0627\u062c \u0639\u0645\u0648\u062f \u0644\u0644\u064a\u0645\u064a\u0646", | ||||
| "Delete column": "\u062d\u0630\u0641 \u0639\u0645\u0648\u062f", | ||||
| "Cols": "\u0639\u062f\u062f \u0627\u0644\u0623\u0639\u0645\u062f\u0629", | ||||
| "Rows": "\u0639\u062f\u062f \u0627\u0644\u0635\u0641\u0648\u0641", | ||||
| "Width": "\u0639\u0631\u0636", | ||||
| "Height": "\u0627\u0631\u062a\u0641\u0627\u0639", | ||||
| "Cell spacing": "\u0627\u0644\u0645\u0633\u0627\u0641\u0629 \u0628\u064a\u0646 \u0627\u0644\u062e\u0644\u0627\u064a\u0627", | ||||
| "Cell padding": "\u062a\u0628\u0627\u0639\u062f \u0627\u0644\u062e\u0644\u064a\u0629", | ||||
| "Show caption": "\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u062a\u0648\u0636\u064a\u062d\u064a\u0629", | ||||
| "Left": "\u064a\u0633\u0627\u0631", | ||||
| "Center": "\u062a\u0648\u0633\u064a\u0637", | ||||
| "Right": "\u064a\u0645\u064a\u0646", | ||||
| "Cell type": "\u0646\u0648\u0639 \u0627\u0644\u062e\u0644\u064a\u0629", | ||||
| "Scope": "\u0627\u0644\u0645\u062c\u0627\u0644", | ||||
| "Alignment": "\u0645\u062d\u0627\u0630\u0627\u0629", | ||||
| "H Align": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0623\u0641\u0642\u064a\u0629", | ||||
| "V Align": "\u0645\u062d\u0627\u0630\u0627\u0629 \u0631\u0623\u0633\u064a\u0629", | ||||
| "Top": "\u0623\u0639\u0644\u064a", | ||||
| "Middle": "\u0627\u0644\u0648\u0633\u0637", | ||||
| "Bottom": "\u0627\u0644\u0623\u0633\u0641\u0644", | ||||
| "Header cell": "\u0631\u0623\u0633 \u0627\u0644\u062e\u0644\u064a\u0629", | ||||
| "Row group": "\u0645\u062c\u0645\u0648\u0639\u0629 \u0635\u0641", | ||||
| "Column group": "\u0645\u062c\u0645\u0648\u0639\u0629 \u0639\u0645\u0648\u062f", | ||||
| "Row type": "\u0646\u0648\u0639 \u0627\u0644\u0635\u0641", | ||||
| "Header": "\u0627\u0644\u0631\u0623\u0633", | ||||
| "Body": "\u0647\u064a\u0643\u0644", | ||||
| "Footer": "\u062a\u0630\u064a\u064a\u0644", | ||||
| "Border color": "\u0644\u0648\u0646 \u0627\u0644\u0625\u0637\u0627\u0631", | ||||
| "Insert template...": "\u062c\u0627\u0631\u064d \u0625\u062f\u0631\u0627\u062c \u0642\u0627\u0644\u0628...", | ||||
| "Templates": "\u0642\u0648\u0627\u0644\u0628", | ||||
| "Template": "\u0627\u0644\u0642\u0627\u0644\u0628", | ||||
| "Text color": "\u0644\u0648\u0646 \u0627\u0644\u0646\u0635", | ||||
| "Background color": "\u0644\u0648\u0646 \u0627\u0644\u062e\u0644\u0641\u064a\u0629", | ||||
| "Custom...": "\u062a\u062e\u0635\u064a\u0635 ...", | ||||
| "Custom color": "\u0644\u0648\u0646 \u0645\u062e\u0635\u0635", | ||||
| "No color": "\u0628\u062f\u0648\u0646 \u0644\u0648\u0646", | ||||
| "Remove color": "\u0625\u0632\u0627\u0644\u0629 \u0644\u0648\u0646", | ||||
| "Table of Contents": "\u062c\u062f\u0648\u0644 \u0627\u0644\u0645\u062d\u062a\u0648\u064a\u0627\u062a", | ||||
| "Show blocks": "\u0645\u0634\u0627\u0647\u062f\u0629 \u0627\u0644\u0643\u062a\u0644", | ||||
| "Show invisible characters": "\u0623\u0638\u0647\u0631 \u0627\u0644\u0623\u062d\u0631\u0641 \u0627\u0644\u063a\u064a\u0631 \u0645\u0631\u0626\u064a\u0629", | ||||
| "Word count": "\u0639\u062f\u062f \u0627\u0644\u0643\u0644\u0645\u0627\u062a", | ||||
| "Count": "\u0627\u0644\u0639\u062f\u062f", | ||||
| "Document": "\u0627\u0644\u0645\u0633\u062a\u0646\u062f", | ||||
| "Selection": "\u0627\u0644\u062a\u062d\u062f\u064a\u062f", | ||||
| "Words": "\u0627\u0644\u0643\u0644\u0645\u0627\u062a", | ||||
| "Words: {0}": "\u0627\u0644\u0643\u0644\u0645\u0627\u062a:{0}", | ||||
| "{0} words": "{0} \u0643\u0644\u0645\u0627\u062a", | ||||
| "File": "\u0645\u0644\u0641", | ||||
| "Edit": "\u062a\u062d\u0631\u064a\u0631", | ||||
| "Insert": "\u0625\u062f\u0631\u0627\u062c", | ||||
| "View": "\u0639\u0631\u0636", | ||||
| "Format": "\u062a\u0646\u0633\u064a\u0642", | ||||
| "Table": "\u062c\u062f\u0648\u0644", | ||||
| "Tools": "\u0623\u062f\u0627\u0648\u0627\u062a", | ||||
| "Powered by {0}": "\u0645\u062f\u0639\u0648\u0645 \u0645\u0646 {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0645\u0646\u0637\u0642\u0629 \u0646\u0635 \u0645\u0646\u0633\u0642. \u0627\u0636\u063a\u0637 ALT-F9 \u0644\u0644\u0642\u0627\u0626\u0645\u0629. \u0627\u0636\u063a\u0637 ALT-F10 \u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u0623\u062f\u0648\u0627\u062a. \u0627\u0636\u063a\u0637 ALT-0 \u0644\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0645\u0633\u0627\u0639\u062f\u0629", | ||||
| "Image title": "\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0635\u0648\u0631\u0629", | ||||
| "Border width": "\u0639\u0631\u0636 \u0627\u0644\u062d\u062f", | ||||
| "Border style": "\u0646\u0645\u0637 \u0627\u0644\u062d\u062f", | ||||
| "Error": "\u062e\u0637\u0623", | ||||
| "Warn": "\u062a\u062d\u0630\u064a\u0631", | ||||
| "Valid": "\u0635\u062d\u064a\u062d", | ||||
| "To open the popup, press Shift+Enter": "\u0644\u0641\u062a\u062d \u0627\u0644\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0645\u0646\u0628\u062b\u0642\u0629\u060c \u0627\u0636\u063a\u0637 \u0639\u0644\u0649 Shift\u200f+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u0645\u0646\u0637\u0642\u0629 \u0646\u0635 \u0645\u0646\u0633\u0642. \u0627\u0636\u063a\u0637 ALT-0 \u0644\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629.", | ||||
| "System Font": "\u062e\u0637 \u0627\u0644\u0646\u0638\u0627\u0645", | ||||
| "Failed to upload image: {0}": "\u0641\u0634\u0644 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0635\u0648\u0631\u0629: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u0641\u0634\u0644 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0645\u0643\u0648\u0651\u0650\u0646 \u0627\u0644\u0625\u0636\u0627\u0641\u064a: {0} \u0645\u0646 url \u200f{1}", | ||||
| "Failed to load plugin url: {0}": "\u0641\u0634\u0644 \u062a\u062d\u0645\u064a\u0644 url \u0644\u0644\u0645\u0643\u0648\u0651\u0650\u0646 \u0627\u0644\u0625\u0636\u0627\u0641\u064a: {0}", | ||||
| "Failed to initialize plugin: {0}": "\u0641\u0634\u0644\u062a \u062a\u0647\u064a\u0626\u0629 \u0627\u0644\u0645\u0643\u0648\u0651\u0650\u0646 \u0627\u0644\u0625\u0636\u0627\u0641\u064a: {0}", | ||||
| "example": "\u0645\u062b\u0627\u0644", | ||||
| "Search": "\u0628\u062d\u062b", | ||||
| "All": "\u0627\u0644\u0643\u0644", | ||||
| "Currency": "\u0627\u0644\u0639\u0645\u0644\u0629", | ||||
| "Text": "\u0627\u0644\u0646\u0635", | ||||
| "Quotations": "\u0639\u0631\u0648\u0636 \u0627\u0644\u0623\u0633\u0639\u0627\u0631", | ||||
| "Mathematical": "\u0631\u064a\u0627\u0636\u064a\u0629", | ||||
| "Extended Latin": "\u0627\u0644\u0644\u0627\u062a\u064a\u0646\u064a\u0629 \u0627\u0644\u0645\u0648\u0633\u0639\u0629", | ||||
| "Symbols": "\u0627\u0644\u0631\u0645\u0648\u0632", | ||||
| "Arrows": "\u0627\u0644\u0623\u0633\u0647\u0645", | ||||
| "User Defined": "\u0645\u0639\u0631\u0651\u064e\u0641 \u0645\u0646 \u0642\u0628\u0644 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645", | ||||
| "dollar sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u062f\u0648\u0644\u0627\u0631", | ||||
| "currency sign": "\u0639\u0644\u0627\u0645\u0629 \u0639\u0645\u0644\u0629", | ||||
| "euro-currency sign": "\u0639\u0644\u0627\u0645\u0629 \u0639\u0645\u0644\u0629 \u0627\u0644\u064a\u0648\u0631\u0648", | ||||
| "colon sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0646\u0642\u0637\u062a\u064a\u0646", | ||||
| "cruzeiro sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0643\u0631\u0648\u0632\u064a\u0631\u0648", | ||||
| "french franc sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0641\u0631\u0646\u0643 \u0627\u0644\u0641\u0631\u0646\u0633\u064a", | ||||
| "lira sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0644\u064a\u0631\u0629", | ||||
| "mill sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0645\u0644", | ||||
| "naira sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0646\u064a\u0631\u0629", | ||||
| "peseta sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0628\u064a\u0632\u064a\u062a\u0627", | ||||
| "rupee sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0631\u0648\u0628\u064a\u0629", | ||||
| "won sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0648\u0646", | ||||
| "new sheqel sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0634\u064a\u0643\u0644 \u0627\u0644\u062c\u062f\u064a\u062f", | ||||
| "dong sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u062f\u0648\u0646\u062c", | ||||
| "kip sign": "\u0639\u0645\u0644\u0629 \u0627\u0644\u0643\u064a\u0628", | ||||
| "tugrik sign": "\u0639\u0645\u0644\u0629 \u0627\u0644\u062a\u0648\u063a\u0631\u064a\u0643", | ||||
| "drachma sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u062f\u0631\u0627\u062e\u0645\u0627", | ||||
| "german penny symbol": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0628\u0646\u0633 \u0627\u0644\u0623\u0644\u0645\u0627\u0646\u064a", | ||||
| "peso sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0628\u064a\u0632\u0648", | ||||
| "guarani sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u062c\u0648\u0627\u0631\u0627\u0646\u064a", | ||||
| "austral sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0623\u0648\u0633\u062a\u0631\u0627\u0644", | ||||
| "hryvnia sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0647\u0631\u064a\u0641\u0646\u064a\u0627", | ||||
| "cedi sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0633\u064a\u062f\u064a", | ||||
| "livre tournois sign": "\u0639\u0644\u0627\u0645\u0629 \u0644\u064a\u0641\u0631 \u062a\u0648\u0631\u0646\u0648\u064a\u0632", | ||||
| "spesmilo sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0627\u0633\u0628\u064a\u0632\u0645\u0627\u064a\u0644\u0648", | ||||
| "tenge sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u062a\u064a\u0646\u062c", | ||||
| "indian rupee sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0631\u0648\u0628\u064a\u0629 \u0627\u0644\u0647\u0646\u062f\u064a\u0629", | ||||
| "turkish lira sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0644\u064a\u0631\u0629 \u0627\u0644\u062a\u0631\u0643\u064a\u0629", | ||||
| "nordic mark sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0646\u0648\u0631\u062f\u0643", | ||||
| "manat sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0645\u0627\u0646\u0627\u062a", | ||||
| "ruble sign": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0631\u0648\u0628\u0644", | ||||
| "yen character": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u064a\u0646", | ||||
| "yuan character": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u064a\u0648\u0627\u0646", | ||||
| "yuan character, in hong kong and taiwan": "\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u064a\u0648\u0627\u0646 \u0641\u064a \u0647\u0648\u0646\u062c \u0643\u0648\u0646\u062c \u0648\u062a\u0627\u064a\u0648\u0627\u0646", | ||||
| "yen\/yuan character variant one": "\u0627\u0644\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0628\u062f\u064a\u0644\u0629 \u0644\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u064a\u0646\/\u0627\u0644\u064a\u0648\u0627\u0646", | ||||
| "Loading emoticons...": "\u062c\u0627\u0631\u064d \u062a\u062d\u0645\u064a\u0644 \u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u0634\u0627\u0639\u0631...", | ||||
| "Could not load emoticons": "\u062c\u0627\u0631\u064d \u062a\u062d\u0645\u064a\u0644 \u0631\u0645\u0648\u0632 \u0627\u0644\u0645\u0634\u0627\u0639\u0631", | ||||
| "People": "\u0623\u0634\u062e\u0627\u0635", | ||||
| "Animals and Nature": "\u0627\u0644\u062d\u064a\u0648\u0627\u0646\u0627\u062a \u0648\u0627\u0644\u0637\u0628\u064a\u0639\u0629", | ||||
| "Food and Drink": "\u0627\u0644\u0623\u0637\u0639\u0645\u0629 \u0648\u0627\u0644\u0645\u0634\u0631\u0648\u0628\u0627\u062a", | ||||
| "Activity": "\u0627\u0644\u0646\u0634\u0627\u0637", | ||||
| "Travel and Places": "\u0627\u0644\u0633\u0641\u0631 \u0648\u0627\u0644\u0623\u0645\u0627\u0643\u0646 \u0633\u064a\u0627\u062d\u064a\u0629", | ||||
| "Objects": "\u0643\u0627\u0626\u0646\u0627\u062a", | ||||
| "Flags": "\u0627\u0644\u0639\u0644\u0627\u0645\u0627\u062a", | ||||
| "Characters": "\u0627\u0644\u0623\u062d\u0631\u0641", | ||||
| "Characters (no spaces)": "\u0627\u0644\u0623\u062d\u0631\u0641 (\u062f\u0648\u0646 \u0627\u0644\u0645\u0633\u0627\u0641\u0627\u062a)", | ||||
| "{0} characters": "{0} \u0631\u0645\u0648\u0632", | ||||
| "Error: Form submit field collision.": "\u062e\u0637\u0623: \u062a\u0636\u0627\u0631\u0628 \u0641\u064a \u062d\u0642\u0644 \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u0646\u0645\u0648\u0630\u062c.", | ||||
| "Error: No form element found.": "\u0627\u0644\u062e\u0637\u0623: \u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0639\u0646\u0635\u0631 \u0646\u0645\u0648\u0630\u062c.", | ||||
| "Update": "\u062a\u062d\u062f\u064a\u062b", | ||||
| "Color swatch": "\u0639\u064a\u0646\u0627\u062a \u0627\u0644\u0623\u0644\u0648\u0627\u0646", | ||||
| "Turquoise": "\u0641\u064a\u0631\u0648\u0632\u064a", | ||||
| "Green": "\u0623\u062e\u0636\u0631", | ||||
| "Blue": "\u0623\u0632\u0631\u0642", | ||||
| "Purple": "\u0628\u0646\u0641\u0633\u062c\u064a", | ||||
| "Navy Blue": "\u0623\u0632\u0631\u0642 \u0646\u064a\u0644\u064a", | ||||
| "Dark Turquoise": "\u0641\u064a\u0631\u0648\u0632\u064a \u062f\u0627\u0643\u0646", | ||||
| "Dark Green": "\u0623\u062e\u0636\u0631 \u062f\u0627\u0643\u0646", | ||||
| "Medium Blue": "\u0623\u0632\u0631\u0642 \u0645\u062a\u0648\u0633\u0637", | ||||
| "Medium Purple": "\u0628\u0646\u0641\u0633\u062c\u064a \u0645\u062a\u0648\u0633\u0637", | ||||
| "Midnight Blue": "\u0623\u0632\u0631\u0642 \u062f\u0627\u0643\u0646 \u062c\u062f\u0627\u064b", | ||||
| "Yellow": "\u0623\u0635\u0641\u0631", | ||||
| "Orange": "\u0628\u0631\u062a\u0642\u0627\u0644\u064a", | ||||
| "Red": "\u0623\u062d\u0645\u0631", | ||||
| "Light Gray": "\u0631\u0645\u0627\u062f\u064a \u0641\u0627\u062a\u062d", | ||||
| "Gray": "\u0631\u0645\u0627\u062f\u064a", | ||||
| "Dark Yellow": "\u0623\u0635\u0641\u0631 \u062f\u0627\u0643\u0646", | ||||
| "Dark Orange": "\u0628\u0631\u062a\u0642\u0627\u0644\u064a \u062f\u0627\u0643\u0646", | ||||
| "Dark Red": "\u0623\u062d\u0645\u0631 \u062f\u0627\u0643\u0646", | ||||
| "Medium Gray": "\u0631\u0645\u0627\u062f\u064a \u0645\u062a\u0648\u0633\u0637", | ||||
| "Dark Gray": "\u0631\u0645\u0627\u062f\u064a \u062f\u0627\u0643\u0646", | ||||
| "Light Green": "\u0623\u062e\u0636\u0631 \u0641\u0627\u062a\u062d", | ||||
| "Light Yellow": "\u0623\u0635\u0641\u0631 \u0641\u0627\u062a\u062d", | ||||
| "Light Red": "\u0623\u062d\u0645\u0631 \u0641\u0627\u062a\u062d", | ||||
| "Light Purple": "\u0628\u0646\u0641\u0633\u062c\u064a \u0641\u0627\u062a\u062d", | ||||
| "Light Blue": "\u0623\u0632\u0631\u0642 \u0641\u0627\u062a\u062d", | ||||
| "Dark Purple": "\u0623\u0631\u062c\u0648\u0627\u0646\u064a \u062f\u0627\u0643\u0646", | ||||
| "Dark Blue": "\u0623\u0632\u0631\u0642 \u062f\u0627\u0643\u0646", | ||||
| "Black": "\u0623\u0633\u0648\u062f", | ||||
| "White": "\u0623\u0628\u064a\u0636", | ||||
| "Switch to or from fullscreen mode": "\u0627\u0644\u062a\u0628\u062f\u064a\u0644 \u0625\u0644\u0649 \u0623\u0648 \u0645\u0646 \u0648\u0636\u0639 \u0645\u0644\u0621 \u0627\u0644\u0634\u0627\u0634\u0629", | ||||
| "Open help dialog": "\u0627\u0641\u062a\u062d \u062d\u0648\u0627\u0631 \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u0627\u062a", | ||||
| "history": "\u0627\u0644\u0645\u062d\u0641\u0648\u0638\u0627\u062a", | ||||
| "styles": "\u0627\u0644\u0623\u0646\u0645\u0627\u0637", | ||||
| "formatting": "\u062a\u0646\u0633\u064a\u0642", | ||||
| "alignment": "\u0645\u062d\u0627\u0630\u0627\u0629", | ||||
| "indentation": "\u0645\u0633\u0627\u0641\u0629 \u0628\u0627\u062f\u0626\u0629", | ||||
| "permanent pen": "\u0642\u0644\u0645 \u062b\u0627\u0628\u062a", | ||||
| "comments": "\u0627\u0644\u062a\u0639\u0644\u064a\u0642\u0627\u062a", | ||||
| "Format Painter": "\u0646\u0627\u0633\u062e \u0627\u0644\u062a\u0646\u0633\u064a\u0642", | ||||
| "Insert\/edit iframe": "\u0625\u062f\u0631\u0627\u062c\/\u062a\u062d\u0631\u064a\u0631 \u0625\u0637\u0627\u0631 \u0645\u062f\u0645\u062c", | ||||
| "Capitalization": "\u0643\u062a\u0627\u0628\u0629 \u0628\u0627\u0644\u0623\u062d\u0631\u0641 \u0627\u0644\u0643\u0628\u064a\u0631\u0629", | ||||
| "lowercase": "\u0623\u062d\u0631\u0641 \u0635\u063a\u064a\u0631\u0629", | ||||
| "UPPERCASE": "\u0623\u062d\u0631\u0641 \u0643\u0628\u064a\u0631\u0629", | ||||
| "Title Case": "\u062d\u0627\u0644\u0629 \u0623\u062d\u0631\u0641 \u0627\u0644\u0639\u0646\u0648\u0627\u0646", | ||||
| "Permanent Pen Properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0642\u0644\u0645 \u0627\u0644\u062b\u0627\u0628\u062a", | ||||
| "Permanent pen properties...": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0642\u0644\u0645 \u0627\u0644\u062b\u0627\u0628\u062a...", | ||||
| "Font": "\u0627\u0644\u062e\u0637", | ||||
| "Size": "\u0627\u0644\u062d\u062c\u0645", | ||||
| "More...": "\u0627\u0644\u0645\u0632\u064a\u062f...", | ||||
| "Spellcheck Language": "\u0644\u063a\u0629 \u0627\u0644\u062a\u062f\u0642\u064a\u0642 \u0627\u0644\u0625\u0645\u0644\u0627\u0626\u064a", | ||||
| "Select...": "\u062a\u062d\u062f\u064a\u062f...", | ||||
| "Preferences": "\u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a", | ||||
| "Yes": "\u0646\u0639\u0645", | ||||
| "No": "\u0644\u0627", | ||||
| "Keyboard Navigation": "\u0627\u0644\u062a\u0646\u0642\u0644 \u0628\u0648\u0627\u0633\u0637\u0629 \u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d", | ||||
| "Version": "\u0627\u0644\u0625\u0635\u062f\u0627\u0631", | ||||
| "Anchor": "\u0645\u0631\u0633\u0627\u0629", | ||||
| "Special character": "\u0631\u0645\u0632", | ||||
| "Code sample": "\u0639\u064a\u0651\u0646\u0629 \u0639\u0646 \u0627\u0644\u0643\u0648\u062f \u0627\u0644\u0628\u0631\u0645\u062c\u064a", | ||||
| "Color": "\u0627\u0644\u0644\u0648\u0646", | ||||
| "Emoticons": "\u0627\u0644\u0631\u0645\u0648\u0632", | ||||
| "Document properties": "\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0645\u0633\u062a\u0646\u062f", | ||||
| "Image": "\u0627\u0644\u0635\u0648\u0631\u0629", | ||||
| "Insert link": "\u0625\u062f\u0631\u0627\u062c \u0631\u0627\u0628\u0637", | ||||
| "Target": "\u0627\u0644\u0625\u0637\u0627\u0631 \u0627\u0644\u0647\u062f\u0641", | ||||
| "Link": "\u0627\u0644\u0631\u0627\u0628\u0637", | ||||
| "Poster": "\u0645\u0644\u0635\u0642", | ||||
| "Media": "\u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629", | ||||
| "Print": "\u0637\u0628\u0627\u0639\u0629", | ||||
| "Prev": "\u0627\u0644\u0633\u0627\u0628\u0642", | ||||
| "Find and replace": "\u0628\u062d\u062b \u0648\u0627\u0633\u062a\u0628\u062f\u0627\u0644", | ||||
| "Whole words": "\u0645\u0637\u0627\u0628\u0642\u0629 \u0627\u0644\u0643\u0644\u0645\u0627\u062a \u0628\u0627\u0644\u0643\u0627\u0645\u0644", | ||||
| "Spellcheck": "\u062a\u062f\u0642\u064a\u0642 \u0625\u0645\u0644\u0627\u0626\u064a", | ||||
| "Caption": "\u0634\u0631\u062d", | ||||
| "Insert template": "\u0625\u062f\u0631\u0627\u062c \u0642\u0627\u0644\u0628", | ||||
| "_dir": "rtl" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/bg_BG.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/bg_BG.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('bg_BG',{ | ||||
| "Redo": "\u041e\u0442\u043c\u0435\u043d\u044f\u043d\u0435", | ||||
| "Undo": "\u0412\u0440\u044a\u0449\u0430\u043d\u0435", | ||||
| "Cut": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435", | ||||
| "Copy": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435", | ||||
| "Paste": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435", | ||||
| "Select all": "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0446\u044f\u043b\u043e\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435", | ||||
| "New document": "\u041d\u043e\u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442", | ||||
| "Ok": "\u0414\u043e\u0431\u0440\u0435", | ||||
| "Cancel": "\u041e\u0442\u043a\u0430\u0437", | ||||
| "Visual aids": "\u0412\u0438\u0437\u0443\u0430\u043b\u043d\u043e \u043e\u0442\u043a\u0440\u043e\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0438 \u0431\u0435\u0437 \u043a\u0430\u043d\u0442\u043e\u0432\u0435 (\u0440\u0430\u043c\u043a\u0438)", | ||||
| "Bold": "\u0423\u0434\u0435\u0431\u0435\u043b\u0435\u043d (\u043f\u043e\u043b\u0443\u0447\u0435\u0440)", | ||||
| "Italic": "\u041d\u0430\u043a\u043b\u043e\u043d\u0435\u043d (\u043a\u0443\u0440\u0441\u0438\u0432)", | ||||
| "Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u0442\u0430\u0432\u0430\u043d\u0435", | ||||
| "Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u0442\u0430\u0432\u0430\u043d\u0435", | ||||
| "Superscript": "\u0413\u043e\u0440\u0435\u043d \u0438\u043d\u0434\u0435\u043a\u0441", | ||||
| "Subscript": "\u0414\u043e\u043b\u0435\u043d \u0438\u043d\u0434\u0435\u043a\u0441", | ||||
| "Clear formatting": "\u0418\u0437\u0447\u0438\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e", | ||||
| "Align left": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435 \u043e\u0442\u043b\u044f\u0432\u043e", | ||||
| "Align center": "\u0426\u0435\u043d\u0442\u0440\u0438\u0440\u0430\u043d\u0435", | ||||
| "Align right": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435 \u043e\u0442\u0434\u044f\u0441\u043d\u043e", | ||||
| "Justify": "\u0414\u0432\u0443\u0441\u0442\u0440\u0430\u043d\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435", | ||||
| "Bullet list": "\u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u0432\u043e\u0434\u0430\u0447\u0438", | ||||
| "Numbered list": "\u041d\u043e\u043c\u0435\u0440\u0438\u0440\u0430\u043d \u0441\u043f\u0438\u0441\u044a\u043a", | ||||
| "Decrease indent": "\u041d\u0430\u043c\u0430\u043b\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0441\u0442\u044a\u043f\u0430", | ||||
| "Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0441\u0442\u044a\u043f\u0430", | ||||
| "Close": "\u0417\u0430\u0442\u0432\u0430\u0440\u044f\u043d\u0435", | ||||
| "Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448\u0438\u044f\u0442 \u0431\u0440\u0430\u0443\u0437\u044a\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u0435\u043d \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u043a\u043b\u0438\u043f\u0431\u043e\u0440\u0434\u0430. \u0412\u043c\u0435\u0441\u0442\u043e \u0442\u043e\u0432\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u043d\u0438\u0442\u0435 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u0438 Ctrl+X (\u0437\u0430 \u0438\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435), Ctrl+C (\u0437\u0430 \u043a\u043e\u043f\u0438\u0440\u0430\u043d\u0435) \u0438 Ctrl+V (\u0437\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435).", | ||||
| "Headers": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f", | ||||
| "Header 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 1", | ||||
| "Header 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 2", | ||||
| "Header 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 3", | ||||
| "Header 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 4", | ||||
| "Header 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 5", | ||||
| "Header 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 6", | ||||
| "Headings": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f", | ||||
| "Heading 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 1", | ||||
| "Heading 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 2", | ||||
| "Heading 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 3", | ||||
| "Heading 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 4", | ||||
| "Heading 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 5", | ||||
| "Heading 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 6", | ||||
| "Preformatted": "\u041f\u0440\u0435\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d", | ||||
| "Div": "\u0411\u043b\u043e\u043a", | ||||
| "Pre": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u043d\u043e \u043e\u0444\u043e\u0440\u043c\u0435\u043d \u0442\u0435\u043a\u0441\u0442", | ||||
| "Code": "\u041a\u043e\u0434", | ||||
| "Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444", | ||||
| "Blockquote": "\u0426\u0438\u0442\u0430\u0442", | ||||
| "Inline": "\u041d\u0430 \u0435\u0434\u0438\u043d \u0440\u0435\u0434", | ||||
| "Blocks": "\u0411\u043b\u043e\u043a\u043e\u0432\u0435", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435\u0442\u043e \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0435 \u0432 \u043e\u0431\u0438\u043a\u043d\u043e\u0432\u0435\u043d \u0440\u0435\u0436\u0438\u043c. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0449\u0435 \u0431\u044a\u0434\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e \u043a\u0430\u0442\u043e \u043d\u0435\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d \u0442\u0435\u043a\u0441\u0442, \u0434\u043e\u043a\u0430\u0442\u043e \u0438\u0437\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0442\u0430\u0437\u0438 \u043e\u043f\u0446\u0438\u044f.", | ||||
| "Fonts": "\u0428\u0440\u0438\u0444\u0442\u043e\u0432\u0435", | ||||
| "Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430", | ||||
| "Class": "\u041a\u043b\u0430\u0441", | ||||
| "Browse for an image": "\u041f\u043e\u0442\u044a\u0440\u0441\u0435\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", | ||||
| "OR": "\u0418\u041b\u0418", | ||||
| "Drop an image here": "\u041f\u0443\u0441\u043d\u0435\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e \u0442\u0443\u043a", | ||||
| "Upload": "\u041a\u0430\u0447\u0432\u0430\u043d\u0435", | ||||
| "Block": "\u0411\u043b\u043e\u043a", | ||||
| "Align": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435", | ||||
| "Default": "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435", | ||||
| "Circle": "\u041e\u043a\u0440\u044a\u0436\u043d\u043e\u0441\u0442\u0438", | ||||
| "Disc": "\u041a\u0440\u044a\u0433\u0447\u0435\u0442\u0430", | ||||
| "Square": "\u0417\u0430\u043f\u044a\u043b\u043d\u0435\u043d\u0438 \u043a\u0432\u0430\u0434\u0440\u0430\u0442\u0438", | ||||
| "Lower Alpha": "\u041c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438", | ||||
| "Lower Greek": "\u041c\u0430\u043b\u043a\u0438 \u0433\u0440\u044a\u0446\u043a\u0438 \u0431\u0443\u043a\u0432\u0438", | ||||
| "Lower Roman": "\u0420\u0438\u043c\u0441\u043a\u0438 \u0447\u0438\u0441\u043b\u0430 \u0441 \u043c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438", | ||||
| "Upper Alpha": "\u0413\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438", | ||||
| "Upper Roman": "\u0420\u0438\u043c\u0441\u043a\u0438 \u0447\u0438\u0441\u043b\u0430 \u0441 \u0433\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438", | ||||
| "Anchor...": "\u041a\u043e\u0442\u0432\u0430...", | ||||
| "Name": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435", | ||||
| "Id": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 (id)", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430 (id) \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441 \u0431\u0443\u043a\u0432\u0430, \u043f\u043e\u0441\u043b\u0435\u0434\u0432\u0430\u043d \u043e\u0442 \u0431\u0443\u043a\u0432\u0438, \u0447\u0438\u0444\u0440\u0438, \u0442\u0438\u0440\u0435\u0442\u0430, \u0442\u043e\u0447\u043a\u0438, \u0434\u0432\u043e\u0435\u0442\u043e\u0447\u0438\u0435 \u0438 \u0434\u043e\u043b\u043d\u043e \u0442\u0438\u0440\u0435.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u0412 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0438\u043c\u0430 \u043d\u0435\u0437\u0430\u043f\u0430\u0437\u0435\u043d\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438. \u0429\u0435 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435 \u043b\u0438?", | ||||
| "Restore last draft": "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0430\u0442\u0430 \u0447\u0435\u0440\u043d\u043e\u0432\u0430", | ||||
| "Special character...": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u0435\u043d \u0441\u0438\u043c\u0432\u043e\u043b...", | ||||
| "Source code": "\u0418\u0437\u0445\u043e\u0434\u0435\u043d \u043a\u043e\u0434 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0432 HTML", | ||||
| "Insert\/Edit code sample": "\u0412\u043c\u044a\u043a\u043d\u0438\/ \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439 \u043f\u0440\u0438\u043c\u0435\u0440\u0435\u043d \u043a\u043e\u0434", | ||||
| "Language": "\u0415\u0437\u0438\u043a", | ||||
| "Code sample...": "\u041f\u0440\u0438\u043c\u0435\u0440\u0435\u043d \u043a\u043e\u0434...", | ||||
| "Color Picker": "\u0418\u0437\u0431\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0446\u0432\u044f\u0442", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "\u041e\u0442\u043b\u044f\u0432\u043e \u043d\u0430\u0434\u044f\u0441\u043d\u043e", | ||||
| "Right to left": "\u041e\u0442\u0434\u044f\u0441\u043d\u043e \u043d\u0430\u043b\u044f\u0432\u043e", | ||||
| "Emoticons...": "\u0415\u043c\u043e\u0442\u0438\u043a\u043e\u043d\u0438...", | ||||
| "Metadata and Document Properties": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u0438 \u0438 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", | ||||
| "Title": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435", | ||||
| "Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0438 \u0434\u0443\u043c\u0438", | ||||
| "Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", | ||||
| "Robots": "\u0420\u043e\u0431\u043e\u0442\u0438 \u043d\u0430 \u0443\u0435\u0431 \u0442\u044a\u0440\u0441\u0430\u0447\u043a\u0438", | ||||
| "Author": "\u0410\u0432\u0442\u043e\u0440", | ||||
| "Encoding": "\u041a\u043e\u0434\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0437\u043d\u0430\u0446\u0438\u0442\u0435", | ||||
| "Fullscreen": "\u041d\u0430 \u0446\u044f\u043b \u0435\u043a\u0440\u0430\u043d", | ||||
| "Action": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435", | ||||
| "Shortcut": "\u0411\u044a\u0440\u0437 \u043a\u043b\u0430\u0432\u0438\u0448", | ||||
| "Help": "\u041f\u043e\u043c\u043e\u0449", | ||||
| "Address": "\u0410\u0434\u0440\u0435\u0441", | ||||
| "Focus to menubar": "Focus to menubar", | ||||
| "Focus to toolbar": "Focus to toolbar", | ||||
| "Focus to element path": "Focus to element path", | ||||
| "Focus to contextual toolbar": "Focus to contextual toolbar", | ||||
| "Insert link (if link plugin activated)": "\u041f\u043e\u0441\u0442\u0430\u0432\u0438 \u0432\u0440\u044a\u0437\u043a\u0430 (\u0430\u043a\u043e \u043f\u043b\u044a\u0433\u0438\u043d\u0430 \u0437\u0430 \u0432\u0440\u044a\u0437\u043a\u0438 \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d)", | ||||
| "Save (if save plugin activated)": "\u0417\u0430\u043f\u0438\u0448\u0438 (\u0430\u043a\u043e \u043f\u043b\u044a\u0433\u0438\u043d\u0430 \u0437\u0430 \u0437\u0430\u043f\u0438\u0441 \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d)", | ||||
| "Find (if searchreplace plugin activated)": "\u041d\u0430\u043c\u0435\u0440\u0438 (\u0430\u043a\u043e \u043f\u043b\u044a\u0433\u0438\u043d\u0430 \u0437\u0430 \u0442\u044a\u0440\u0441\u0435\u043d\u0435\/\u0437\u0430\u043c\u044f\u043d\u0430 \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d)", | ||||
| "Plugins installed ({0}):": "\u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u043f\u043b\u044a\u0433\u0438\u043d\u0438 ({0}):", | ||||
| "Premium plugins:": "\u041f\u0440\u0435\u043c\u0438\u0439\u043d\u0438 \u043f\u043b\u044a\u0433\u0438\u043d\u0438:", | ||||
| "Learn more...": "\u041d\u0430\u0443\u0447\u0435\u0442\u0435 \u043f\u043e\u0432\u0435\u0447\u0435...", | ||||
| "You are using {0}": "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 {0}", | ||||
| "Plugins": "Plugins", | ||||
| "Handy Shortcuts": "Handy Shortcuts", | ||||
| "Horizontal line": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u0430 \u0447\u0435\u0440\u0442\u0430", | ||||
| "Insert\/edit image": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430", | ||||
| "Image description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e", | ||||
| "Source": "\u0410\u0434\u0440\u0435\u0441", | ||||
| "Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440", | ||||
| "Constrain proportions": "\u0417\u0430\u0432\u0430\u0437\u043d\u0430\u0432\u0435 \u043d\u0430 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438\u0442\u0435", | ||||
| "General": "\u041e\u0431\u0449\u043e", | ||||
| "Advanced": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u043e", | ||||
| "Style": "\u0421\u0442\u0438\u043b", | ||||
| "Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e", | ||||
| "Horizontal space": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e", | ||||
| "Border": "\u041a\u0430\u043d\u0442 (\u0440\u0430\u043c\u043a\u0430)", | ||||
| "Insert image": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", | ||||
| "Image...": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435...", | ||||
| "Image list": "\u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0438", | ||||
| "Rotate counterclockwise": "\u0417\u0430\u0432\u044a\u0440\u0442\u0430\u043d\u0435 \u043e\u0431\u0440\u0430\u0442\u043d\u043e \u043d\u0430 \u0447\u0430\u0441\u043e\u0432\u043d\u0438\u043a\u0430", | ||||
| "Rotate clockwise": "\u0417\u0430\u0432\u044a\u0440\u0442\u0430\u043d\u0435 \u043f\u043e \u0447\u0430\u0441\u043e\u0432\u043d\u0438\u043a\u0430", | ||||
| "Flip vertically": "\u041e\u0431\u044a\u0440\u043d\u0438 \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e", | ||||
| "Flip horizontally": "\u041e\u0431\u044a\u0440\u043d\u0438 \u0445\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e", | ||||
| "Edit image": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e", | ||||
| "Image options": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e", | ||||
| "Zoom in": "\u041f\u0440\u0438\u0431\u043b\u0438\u0436\u0438", | ||||
| "Zoom out": "\u041e\u0442\u0434\u0430\u043b\u0435\u0447\u0438", | ||||
| "Crop": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435", | ||||
| "Resize": "\u041f\u0440\u0435\u043e\u0440\u0430\u0437\u043c\u0435\u0440\u044f\u0432\u0430\u043d\u0435", | ||||
| "Orientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f", | ||||
| "Brightness": "\u042f\u0440\u043a\u043e\u0441\u0442", | ||||
| "Sharpen": "\u0418\u0437\u043e\u0441\u0442\u0440\u044f\u043d\u0435", | ||||
| "Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442", | ||||
| "Color levels": "\u0426\u0432\u0435\u0442\u043d\u0438 \u043d\u0438\u0432\u0430", | ||||
| "Gamma": "\u0413\u0430\u043c\u0430", | ||||
| "Invert": "\u0418\u043d\u0432\u0435\u0440\u0441\u0438\u044f", | ||||
| "Apply": "\u041f\u0440\u0438\u043b\u043e\u0436\u0438", | ||||
| "Back": "\u041d\u0430\u0437\u0430\u0434", | ||||
| "Insert date\/time": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0434\u0430\u0442\u0430\/\u0447\u0430\u0441", | ||||
| "Date\/time": "\u0414\u0430\u0442\u0430\/\u0447\u0430\u0441", | ||||
| "Insert\/Edit Link": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 (\u043b\u0438\u043d\u043a)", | ||||
| "Insert\/edit link": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 (\u043b\u0438\u043d\u043a)", | ||||
| "Text to display": "\u0422\u0435\u043a\u0441\u0442", | ||||
| "Url": "\u0410\u0434\u0440\u0435\u0441 (URL)", | ||||
| "Open link in...": "\u041e\u0442\u0432\u0430\u0440\u044f\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 \u0432...", | ||||
| "Current window": "\u0422\u0435\u043a\u0443\u0449 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446", | ||||
| "None": "\u0411\u0435\u0437", | ||||
| "New window": "\u0412 \u043d\u043e\u0432 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446 (\u043f\u043e\u0434\u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446)", | ||||
| "Remove link": "\u041f\u0440\u0435\u043c\u0430\u0445\u0432\u0430\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430", | ||||
| "Anchors": "\u041a\u043e\u0442\u0432\u0438", | ||||
| "Link...": "\u0425\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430...", | ||||
| "Paste or type a link": "\u041f\u043e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u0438\u043b\u0438 \u043d\u0430\u043f\u0438\u0448\u0435\u0442\u0435 \u0432\u0440\u044a\u0437\u043a\u0430(\u043b\u0438\u043d\u043a)", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u044a\u0442, \u043a\u043e\u0439\u0442\u043e \u0432\u044a\u0432\u0434\u043e\u0445\u0442\u0435 \u043f\u0440\u0438\u043b\u0438\u0447\u0430 \u043d\u0430 \u0435-\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438\u044f mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u044a\u0442, \u043a\u043e\u0439\u0442\u043e \u0432\u044a\u0432\u0434\u043e\u0445\u0442\u0435 \u043f\u0440\u0438\u043b\u0438\u0447\u0430 \u0432\u044a\u043d\u0448\u0435\u043d \u0430\u0434\u0440\u0435\u0441. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438\u044f http:\/\/ \u043f\u0440\u0435\u0444\u0438\u043a\u0441?", | ||||
| "Link list": "\u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u0432\u0440\u044a\u0437\u043a\u0438", | ||||
| "Insert video": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0432\u0438\u0434\u0435\u043e", | ||||
| "Insert\/edit video": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u0432\u0438\u0434\u0435\u043e", | ||||
| "Insert\/edit media": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043c\u0435\u0434\u0438\u044f", | ||||
| "Alternative source": "\u0410\u043b\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0435\u043d \u0430\u0434\u0440\u0435\u0441", | ||||
| "Alternative source URL": "\u0410\u043b\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0435\u043d \u0430\u0434\u0440\u0435\u0441 URL", | ||||
| "Media poster (Image URL)": "\u041c\u0435\u0434\u0438\u0435\u043d \u043f\u043b\u0430\u043a\u0430\u0442 (\u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 URL)", | ||||
| "Paste your embed code below:": "\u041f\u043e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043a\u043e\u0434\u0430 \u0437\u0430 \u0432\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0432 \u043f\u043e\u043b\u0435\u0442\u043e \u043f\u043e-\u0434\u043e\u043b\u0443:", | ||||
| "Embed": "\u0412\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435", | ||||
| "Media...": "\u041c\u0435\u0434\u0438\u044f...", | ||||
| "Nonbreaking space": "\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b", | ||||
| "Page break": "\u041d\u043e\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", | ||||
| "Paste as text": "\u041f\u043e\u0441\u0442\u0430\u0432\u0438 \u043a\u0430\u0442\u043e \u0442\u0435\u043a\u0441\u0442", | ||||
| "Preview": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u0435\u043d \u0438\u0437\u0433\u043b\u0435\u0434", | ||||
| "Print...": "\u041e\u0442\u043f\u0435\u0447\u0430\u0442\u0432\u0430\u043d\u0435...", | ||||
| "Save": "\u0421\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435", | ||||
| "Find": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0437\u0430", | ||||
| "Replace with": "\u0417\u0430\u043c\u044f\u043d\u0430 \u0441", | ||||
| "Replace": "\u0417\u0430\u043c\u044f\u043d\u0430", | ||||
| "Replace all": "\u0417\u0430\u043c\u044f\u043d\u0430 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0441\u0440\u0435\u0449\u0430\u043d\u0438\u044f", | ||||
| "Previous": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d", | ||||
| "Next": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449", | ||||
| "Find and replace...": "\u041d\u0430\u043c\u0438\u0440\u0430\u043d\u0435 \u0438 \u0437\u0430\u043c\u044f\u043d\u0430...", | ||||
| "Could not find the specified string.": "\u0422\u044a\u0440\u0441\u0435\u043d\u0438\u044f\u0442 \u0442\u0435\u043a\u0441\u0442 \u043d\u0435 \u0435 \u043d\u0430\u043c\u0435\u0440\u0435\u043d.", | ||||
| "Match case": "\u0421\u044a\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0435 \u043d\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u044a\u0440\u0430 (\u043c\u0430\u043b\u043a\u0438\/\u0433\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438)", | ||||
| "Find whole words only": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0441\u0430\u043c\u043e \u043d\u0430 \u0446\u0435\u043b\u0438 \u0434\u0443\u043c\u0438", | ||||
| "Spell check": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430", | ||||
| "Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u043d\u0435", | ||||
| "Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u043e", | ||||
| "Finish": "\u041a\u0440\u0430\u0439", | ||||
| "Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0432 \u0440\u0435\u0447\u043d\u0438\u043a\u0430", | ||||
| "Insert table": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430", | ||||
| "Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430", | ||||
| "Delete table": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430", | ||||
| "Cell": "\u041a\u043b\u0435\u0442\u043a\u0430", | ||||
| "Row": "\u0420\u0435\u0434", | ||||
| "Column": "\u041a\u043e\u043b\u043e\u043d\u0430", | ||||
| "Cell properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430\u0442\u0430", | ||||
| "Merge cells": "\u0421\u043b\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0438\u0442\u0435", | ||||
| "Split cell": "\u0420\u0430\u0437\u0434\u0435\u043b\u044f\u043d\u0435 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430", | ||||
| "Insert row before": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434\u0438", | ||||
| "Insert row after": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u0441\u043b\u0435\u0434", | ||||
| "Delete row": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434\u0430", | ||||
| "Row properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0435\u0434\u0430", | ||||
| "Cut row": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434", | ||||
| "Copy row": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434", | ||||
| "Paste row before": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434\u0438", | ||||
| "Paste row after": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u0441\u043b\u0435\u0434", | ||||
| "Insert column before": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u043f\u0440\u0435\u0434\u0438", | ||||
| "Insert column after": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u0441\u043b\u0435\u0434", | ||||
| "Delete column": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430\u0442\u0430", | ||||
| "Cols": "\u041a\u043e\u043b\u043e\u043d\u0438", | ||||
| "Rows": "\u0420\u0435\u0434\u043e\u0432\u0435", | ||||
| "Width": "\u0428\u0438\u0440\u0438\u043d\u0430", | ||||
| "Height": "\u0412\u0438\u0441\u043e\u0447\u0438\u043d\u0430", | ||||
| "Cell spacing": "\u0420\u0430\u0437\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043c\u0435\u0436\u0434\u0443 \u043a\u043b\u0435\u0442\u043a\u0438\u0442\u0435", | ||||
| "Cell padding": "\u0420\u0430\u0437\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e", | ||||
| "Show caption": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u0430\u0434\u043f\u0438\u0441", | ||||
| "Left": "\u041b\u044f\u0432\u043e", | ||||
| "Center": "\u0426\u0435\u043d\u0442\u0440\u0438\u0440\u0430\u043d\u043e", | ||||
| "Right": "\u0414\u044f\u0441\u043d\u043e", | ||||
| "Cell type": "\u0422\u0438\u043f \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430\u0442\u0430", | ||||
| "Scope": "\u041e\u0431\u0445\u0432\u0430\u0442", | ||||
| "Alignment": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435", | ||||
| "H Align": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435", | ||||
| "V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435", | ||||
| "Top": "\u0413\u043e\u0440\u0435", | ||||
| "Middle": "\u041f\u043e \u0441\u0440\u0435\u0434\u0430\u0442\u0430", | ||||
| "Bottom": "\u0414\u043e\u043b\u0443", | ||||
| "Header cell": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430 (\u0430\u043d\u0442\u0435\u0442\u043a\u0430)", | ||||
| "Row group": "Row group", | ||||
| "Column group": "Column group", | ||||
| "Row type": "\u0422\u0438\u043f \u043d\u0430 \u0440\u0435\u0434\u0430", | ||||
| "Header": "\u0413\u043e\u0440\u0435\u043d \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b (header)", | ||||
| "Body": "\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 (body)", | ||||
| "Footer": "\u0414\u043e\u043b\u0435\u043d \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b (footer)", | ||||
| "Border color": "\u0426\u0432\u044f\u0442 \u043d\u0430 \u0440\u0430\u043c\u043a\u0430\u0442\u0430", | ||||
| "Insert template...": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0448\u0430\u0431\u043b\u043e\u043d...", | ||||
| "Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438", | ||||
| "Template": "\u0428\u0430\u0431\u043b\u043e\u043d", | ||||
| "Text color": "\u0426\u0432\u044f\u0442 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430", | ||||
| "Background color": "\u0424\u043e\u043d\u043e\u0432 \u0446\u0432\u044f\u0442", | ||||
| "Custom...": "\u0418\u0437\u0431\u0440\u0430\u043d...", | ||||
| "Custom color": "\u0426\u0432\u044f\u0442 \u043f\u043e \u0438\u0437\u0431\u043e\u0440", | ||||
| "No color": "\u0411\u0435\u0437 \u0446\u0432\u044f\u0442", | ||||
| "Remove color": "\u041f\u0440\u0435\u043c\u0430\u0445\u0432\u0430\u043d\u0435 \u043d\u0430 \u0446\u0432\u0435\u0442\u0430", | ||||
| "Table of Contents": "\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435", | ||||
| "Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0431\u043b\u043e\u043a\u043e\u0432\u0435\u0442\u0435", | ||||
| "Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u0435\u043f\u0435\u0447\u0430\u0442\u0430\u0435\u043c\u0438 \u0437\u043d\u0430\u0446\u0438", | ||||
| "Word count": "\u0411\u0440\u043e\u0435\u043d\u0435 \u043d\u0430 \u0434\u0443\u043c\u0438", | ||||
| "Count": "\u0411\u0440\u043e\u0439", | ||||
| "Document": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442", | ||||
| "Selection": "\u0418\u0437\u0431\u0440\u0430\u043d\u043e", | ||||
| "Words": "\u0414\u0443\u043c\u0438", | ||||
| "Words: {0}": "\u0411\u0440\u043e\u0439 \u0434\u0443\u043c\u0438: {0}", | ||||
| "{0} words": "{0} \u0431\u0440\u043e\u0439 \u0434\u0443\u043c\u0438", | ||||
| "File": "\u0424\u0430\u0439\u043b", | ||||
| "Edit": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435", | ||||
| "Insert": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435", | ||||
| "View": "\u0418\u0437\u0433\u043b\u0435\u0434", | ||||
| "Format": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435", | ||||
| "Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430", | ||||
| "Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438", | ||||
| "Powered by {0}": "\u0421\u044a\u0437\u0434\u0430\u0434\u0435\u043d\u043e \u0441 {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d \u0442\u0435\u043a\u0441\u0442. \u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 Alt+F9 \u0437\u0430 \u043c\u0435\u043d\u044e; Alt+F10 \u0437\u0430 \u043b\u0435\u043d\u0442\u0430 \u0441 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438; Alt+0 \u0437\u0430 \u043f\u043e\u043c\u043e\u0449.", | ||||
| "Image title": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e", | ||||
| "Border width": "\u0428\u0438\u0440\u0438\u043d\u0430 \u043d\u0430 \u0440\u0430\u043c\u043a\u0430\u0442\u0430", | ||||
| "Border style": "\u0421\u0442\u0438\u043b \u043d\u0430 \u0440\u0430\u043c\u043a\u0430\u0442\u0430", | ||||
| "Error": "\u0413\u0440\u0435\u0448\u043a\u0430", | ||||
| "Warn": "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435", | ||||
| "Valid": "\u0412\u0430\u043b\u0438\u0434\u043d\u043e", | ||||
| "To open the popup, press Shift+Enter": "\u0417\u0430 \u0434\u0430 \u043e\u0442\u0432\u043e\u0440\u0438\u0442\u0435 \u0438\u0437\u0441\u043a\u0430\u0447\u0430\u0449\u0438\u044f \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446, \u043d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u041f\u043e\u043b\u0435 \u0437\u0430 \u043e\u0431\u043e\u0433\u0430\u0442\u0435\u043d \u0442\u0435\u043a\u0441\u0442. \u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 ALT+0 \u0437\u0430 \u043f\u043e\u043c\u043e\u0449.", | ||||
| "System Font": "\u0421\u0438\u0441\u0442\u0435\u043c\u0435\u043d \u0448\u0440\u0438\u0444\u0442", | ||||
| "Failed to upload image: {0}": "\u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043a\u0430\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043f\u043b\u044a\u0433\u0438\u043d {0} \u043e\u0442 URL {1}", | ||||
| "Failed to load plugin url: {0}": "\u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 URL \u043d\u0430 \u043f\u043b\u044a\u0433\u0438\u043d: {0}", | ||||
| "Failed to initialize plugin: {0}": "\u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043b\u044a\u0433\u0438\u043d: {0}", | ||||
| "example": "\u043f\u0440\u0438\u043c\u0435\u0440", | ||||
| "Search": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435", | ||||
| "All": "\u0412\u0441\u0438\u0447\u043a\u0438", | ||||
| "Currency": "\u0412\u0430\u043b\u0443\u0442\u0430", | ||||
| "Text": "\u0422\u0435\u043a\u0441\u0442", | ||||
| "Quotations": "\u0426\u0438\u0442\u0430\u0442\u0438", | ||||
| "Mathematical": "\u041c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438", | ||||
| "Extended Latin": "\u0420\u0430\u0437\u0448\u0438\u0440\u0435\u043d\u0438 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438 \u0431\u0443\u043a\u0432\u0438", | ||||
| "Symbols": "\u0421\u0438\u043c\u0432\u043e\u043b\u0438", | ||||
| "Arrows": "\u0421\u0442\u0440\u0435\u043b\u043a\u0438", | ||||
| "User Defined": "\u0417\u0430\u0434\u0430\u0434\u0435\u043d\u0438 \u043e\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f", | ||||
| "dollar sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0434\u043e\u043b\u0430\u0440", | ||||
| "currency sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0432\u0430\u043b\u0443\u0442\u0430", | ||||
| "euro-currency sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0435\u0432\u0440\u043e \u0432\u0430\u043b\u0443\u0442\u0430", | ||||
| "colon sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043a\u043e\u043b\u043e\u043d", | ||||
| "cruzeiro sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043a\u0440\u0443\u0437\u0435\u0439\u0440\u043e", | ||||
| "french franc sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0444\u0440\u0435\u043d\u0441\u043a\u0438 \u0444\u0440\u0430\u043d\u043a", | ||||
| "lira sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043b\u0438\u0440\u0430", | ||||
| "mill sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043c\u0438\u043b", | ||||
| "naira sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043d\u0430\u0439\u0440\u0430", | ||||
| "peseta sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043f\u0435\u0441\u0435\u0442\u0430", | ||||
| "rupee sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0440\u0443\u043f\u0438\u044f", | ||||
| "won sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043a\u043e\u0440\u0435\u0439\u0441\u043a\u0438 \u0432\u043e\u043d", | ||||
| "new sheqel sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043d\u043e\u0432 \u0448\u0435\u043a\u0435\u043b", | ||||
| "dong sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0432\u0438\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0438 \u0434\u043e\u043d\u0433", | ||||
| "kip sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043b\u0430\u043e\u0441\u043a\u0438 \u043a\u0438\u043f", | ||||
| "tugrik sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043c\u043e\u043d\u0433\u043e\u043b\u0441\u043a\u0438 \u0442\u0443\u0433\u0440\u0438\u043a", | ||||
| "drachma sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0434\u0440\u0430\u0445\u043c\u0430", | ||||
| "german penny symbol": "\u0441\u0438\u043c\u0432\u043e\u043b \u0437\u0430 \u0433\u0435\u0440\u043c\u0430\u043d\u0441\u043a\u043e \u043f\u0435\u043d\u0438", | ||||
| "peso sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043f\u0435\u0441\u043e", | ||||
| "guarani sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0433\u0443\u0430\u0440\u0430\u043d\u0438", | ||||
| "austral sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0430\u0443\u0441\u0442\u0440\u0430\u043b", | ||||
| "hryvnia sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0433\u0440\u0438\u0432\u043d\u044f", | ||||
| "cedi sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0441\u0435\u0434\u0438", | ||||
| "livre tournois sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043b\u0438\u0432\u0440 \u0442\u0443\u0440\u043d\u0443\u0430", | ||||
| "spesmilo sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0441\u043f\u0435\u0441\u043c\u0438\u043b\u043e", | ||||
| "tenge sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0442\u0435\u043d\u0433\u0435", | ||||
| "indian rupee sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0438\u043d\u0434\u0438\u0439\u0441\u043a\u0430 \u0440\u0443\u043f\u0438\u044f", | ||||
| "turkish lira sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0442\u0443\u0440\u0441\u043a\u0430 \u043b\u0438\u0440\u0430", | ||||
| "nordic mark sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043d\u043e\u0440\u0434\u0441\u043a\u0430 \u043c\u0430\u0440\u043a\u0430", | ||||
| "manat sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u043c\u0430\u043d\u0430\u0442", | ||||
| "ruble sign": "\u0437\u043d\u0430\u043a \u0437\u0430 \u0440\u0443\u0431\u043b\u0430", | ||||
| "yen character": "\u0441\u0438\u043c\u0432\u043e\u043b \u0437\u0430 \u0439\u0435\u043d\u0430", | ||||
| "yuan character": "\u0441\u0438\u043c\u0432\u043e\u043b \u0437\u0430 \u044e\u0430\u043d", | ||||
| "yuan character, in hong kong and taiwan": "\u0441\u0438\u043c\u0432\u043e\u043b \u0437\u0430 \u044e\u0430\u043d \u0432 \u0425\u043e\u043d\u043a\u043e\u043d\u0433 \u0438 \u0422\u0430\u0439\u0432\u0430\u043d", | ||||
| "yen\/yuan character variant one": "\u0441\u0438\u043c\u0432\u043e\u043b \u0437\u0430 \u0439\u0435\u043d\u0430\/\u044e\u0430\u043d \u0432\u0430\u0440\u0438\u0430\u043d\u0442 \u0435\u0434\u043d\u043e", | ||||
| "Loading emoticons...": "\u0417\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0435\u043c\u043e\u0442\u0438\u043a\u043e\u043d\u0438...", | ||||
| "Could not load emoticons": "\u041d\u0435\u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0435\u043c\u043e\u0442\u0438\u043a\u043e\u043d\u0438", | ||||
| "People": "\u0425\u043e\u0440\u0430", | ||||
| "Animals and Nature": "\u0416\u0438\u0432\u043e\u0442\u043d\u0438 \u0438 \u043f\u0440\u0438\u0440\u043e\u0434\u0430", | ||||
| "Food and Drink": "\u0425\u0440\u0430\u043d\u0430 \u0438 \u043d\u0430\u043f\u0438\u0442\u043a\u0438", | ||||
| "Activity": "\u0414\u0435\u0439\u043d\u043e\u0441\u0442\u0438", | ||||
| "Travel and Places": "\u041f\u044a\u0442\u0443\u0432\u0430\u043d\u0435 \u0438 \u043c\u0435\u0441\u0442\u0430", | ||||
| "Objects": "\u041f\u0440\u0435\u0434\u043c\u0435\u0442\u0438", | ||||
| "Flags": "\u0417\u043d\u0430\u043c\u0435\u043d\u0430", | ||||
| "Characters": "\u0421\u0438\u043c\u0432\u043e\u043b\u0438", | ||||
| "Characters (no spaces)": "\u0421\u0438\u043c\u0432\u043e\u043b\u0438 (\u0431\u0435\u0437 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0438)", | ||||
| "{0} characters": "{0} \u0441\u0438\u043c\u0432\u043e\u043b\u0430", | ||||
| "Error: Form submit field collision.": "\u0413\u0440\u0435\u0448\u043a\u0430: \u041d\u0435\u0441\u044a\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0435 \u043d\u0430 \u043f\u043e\u043b\u0435 \u043f\u0440\u0438 \u0438\u0437\u043f\u0440\u0430\u0449\u0430\u043d\u0435 \u043d\u0430 \u0444\u043e\u0440\u043c\u0443\u043b\u044f\u0440.", | ||||
| "Error: No form element found.": "\u0413\u0440\u0435\u0448\u043a\u0430: \u041d\u0435 \u0435 \u043e\u0442\u043a\u0440\u0438\u0442 \u0435\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0430 \u0444\u043e\u0440\u043c\u0443\u043b\u044f\u0440\u0430.", | ||||
| "Update": "\u0410\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435", | ||||
| "Color swatch": "\u0426\u0432\u0435\u0442\u043d\u0430 \u043c\u043e\u0441\u0442\u0440\u0430", | ||||
| "Turquoise": "\u0422\u044e\u0440\u043a\u043e\u0430\u0437\u0435\u043d\u043e", | ||||
| "Green": "\u0417\u0435\u043b\u0435\u043d\u043e", | ||||
| "Blue": "\u0421\u0438\u043d\u044c\u043e", | ||||
| "Purple": "\u041b\u0438\u043b\u0430\u0432\u043e", | ||||
| "Navy Blue": "\u041c\u043e\u0440\u0441\u043a\u043e\u0441\u0438\u043d\u044c\u043e", | ||||
| "Dark Turquoise": "\u0422\u044a\u043c\u043d\u043e\u0442\u044e\u0440\u043a\u043e\u0430\u0437\u0435\u043d\u043e", | ||||
| "Dark Green": "\u0422\u044a\u043c\u043d\u043e\u0437\u0435\u043b\u0435\u043d\u043e", | ||||
| "Medium Blue": "\u0421\u0440\u0435\u0434\u043d\u043e\u0441\u0438\u043d\u044c\u043e", | ||||
| "Medium Purple": "\u0421\u0440\u0435\u0434\u043d\u043e\u043b\u0438\u043b\u0430\u0432\u043e", | ||||
| "Midnight Blue": "\u0421\u0440\u0435\u0434\u043d\u043e\u0449\u043d\u043e \u0441\u0438\u043d\u044c\u043e", | ||||
| "Yellow": "\u0416\u044a\u043b\u0442\u043e", | ||||
| "Orange": "\u041e\u0440\u0430\u043d\u0436\u0435\u0432\u043e", | ||||
| "Red": "\u0427\u0435\u0440\u0432\u0435\u043d\u043e", | ||||
| "Light Gray": "\u0421\u0432\u0435\u0442\u043b\u043e\u0441\u0438\u0432\u043e", | ||||
| "Gray": "\u0421\u0438\u0432\u043e", | ||||
| "Dark Yellow": "\u0422\u044a\u043c\u043d\u043e\u0436\u044a\u043b\u0442\u043e", | ||||
| "Dark Orange": "\u0422\u044a\u043c\u043d\u043e\u043e\u0440\u0430\u043d\u0436\u0435\u0432\u043e", | ||||
| "Dark Red": "\u0422\u044a\u043c\u043d\u043e\u0447\u0435\u0440\u0432\u0435\u043d\u043e", | ||||
| "Medium Gray": "\u0421\u0440\u0435\u0434\u043d\u043e\u0441\u0438\u0432\u043e", | ||||
| "Dark Gray": "\u0422\u044a\u043c\u043d\u043e\u0441\u0438\u0432\u043e", | ||||
| "Light Green": "\u0421\u0432\u0435\u0442\u043b\u043e\u0437\u0435\u043b\u0435\u043d", | ||||
| "Light Yellow": "\u0421\u0432\u0435\u0442\u043b\u043e\u0436\u044a\u043b\u0442", | ||||
| "Light Red": "\u0421\u0432\u0435\u0442\u043b\u043e\u0447\u0435\u0440\u0432\u0435\u043d", | ||||
| "Light Purple": "\u0421\u0432\u0435\u0442\u043b\u043e\u043b\u0438\u043b\u0430\u0432", | ||||
| "Light Blue": "\u0421\u0432\u0435\u0442\u043b\u043e\u0441\u0438\u043d", | ||||
| "Dark Purple": "\u0422\u044a\u043c\u043d\u043e\u043b\u0438\u043b\u0430\u0432", | ||||
| "Dark Blue": "\u0422\u044a\u043c\u043d\u043e\u0441\u0438\u043d", | ||||
| "Black": "\u0427\u0435\u0440\u043d\u043e", | ||||
| "White": "\u0411\u044f\u043b\u043e", | ||||
| "Switch to or from fullscreen mode": "\u041f\u0440\u0435\u0432\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u043a\u044a\u043c \u0438\u043b\u0438 \u043e\u0442 \u0440\u0435\u0436\u0438\u043c \u043d\u0430 \u0446\u044f\u043b \u0435\u043a\u0440\u0430\u043d", | ||||
| "Open help dialog": "\u041e\u0442\u0432\u0430\u0440\u044f\u043d\u0435 \u043d\u0430 \u0434\u0438\u0430\u043b\u043e\u0433\u043e\u0432 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446 \u0437\u0430 \u043f\u043e\u043c\u043e\u0449", | ||||
| "history": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f", | ||||
| "styles": "\u0441\u0442\u0438\u043b\u043e\u0432\u0435", | ||||
| "formatting": "\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435", | ||||
| "alignment": "\u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435", | ||||
| "indentation": "\u043e\u0442\u0441\u0442\u044a\u043f", | ||||
| "permanent pen": "\u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u0430 \u0445\u0438\u043c\u0438\u043a\u0430\u043b\u043a\u0430", | ||||
| "comments": "\u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0438", | ||||
| "Format Painter": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e", | ||||
| "Insert\/edit iframe": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043d\u0435 \u043d\u0430 iframe", | ||||
| "Capitalization": "\u0413\u043b\u0430\u0432\u043d\u0430 \u0431\u0443\u043a\u0432\u0430", | ||||
| "lowercase": "\u043c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438", | ||||
| "UPPERCASE": "\u0413\u041e\u041b\u0415\u041c\u0418 \u0411\u0423\u041a\u0412\u0418", | ||||
| "Title Case": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u0438 \u0411\u0443\u043a\u0432\u0438", | ||||
| "Permanent Pen Properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u041f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u0438\u044f \u041c\u0430\u0440\u043a\u0435\u0440", | ||||
| "Permanent pen properties...": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u0438\u044f \u043c\u0430\u0440\u043a\u0435\u0440...", | ||||
| "Font": "\u0428\u0440\u0438\u0444\u0442", | ||||
| "Size": "\u0420\u0430\u0437\u043c\u0435\u0440", | ||||
| "More...": "\u041e\u0449\u0435...", | ||||
| "Spellcheck Language": "\u041f\u0440\u043e\u0432\u0435\u0440\u0438 \u041f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430", | ||||
| "Select...": "\u0418\u0437\u0431\u0435\u0440\u0438...", | ||||
| "Preferences": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f", | ||||
| "Yes": "\u0414\u0430", | ||||
| "No": "\u041d\u0435", | ||||
| "Keyboard Navigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u0441 \u043a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u0430", | ||||
| "Version": "\u0412\u0435\u0440\u0441\u0438\u044f", | ||||
| "Anchor": "\u041a\u043e\u0442\u0432\u0430 (\u0432\u0440\u044a\u0437\u043a\u0430 \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430)", | ||||
| "Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u0435\u043d \u0437\u043d\u0430\u043a", | ||||
| "Code sample": "\u041f\u0440\u0438\u043c\u0435\u0440\u0435\u043d \u043a\u043e\u0434", | ||||
| "Color": "\u0426\u0432\u044f\u0442", | ||||
| "Emoticons": "\u0415\u043c\u043e\u0442\u0438\u043a\u043e\u043d\u0438", | ||||
| "Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", | ||||
| "Image": "\u041a\u0430\u0440\u0442\u0438\u043d\u043a\u0430", | ||||
| "Insert link": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 (\u043b\u0438\u043d\u043a)", | ||||
| "Target": "\u0426\u0435\u043b \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", | ||||
| "Link": "\u0412\u0440\u044a\u0437\u043a\u0430(\u043b\u0438\u043d\u043a)", | ||||
| "Poster": "\u041f\u043e\u0441\u0442\u0435\u0440", | ||||
| "Media": "\u041c\u0435\u0434\u0438\u044f", | ||||
| "Print": "\u041f\u0435\u0447\u0430\u0442", | ||||
| "Prev": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d", | ||||
| "Find and replace": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0438 \u0437\u0430\u043c\u044f\u043d\u0430", | ||||
| "Whole words": "\u0421\u0430\u043c\u043e \u0446\u0435\u043b\u0438 \u0434\u0443\u043c\u0438", | ||||
| "Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430", | ||||
| "Caption": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0437\u0430\u0433\u043b\u0430\u0432\u0438\u0435 \u043f\u0440\u0435\u0434\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430", | ||||
| "Insert template": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0448\u0430\u0431\u043b\u043e\u043d" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/ca.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/ca.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('ca',{ | ||||
| "Redo": "Refer", | ||||
| "Undo": "Desfer", | ||||
| "Cut": "Retalla", | ||||
| "Copy": "Copia", | ||||
| "Paste": "Enganxa", | ||||
| "Select all": "Seleccionar-ho tot", | ||||
| "New document": "Nou document", | ||||
| "Ok": "Acceptar", | ||||
| "Cancel": "Cancel\u00b7la", | ||||
| "Visual aids": "Assist\u00e8ncia visual", | ||||
| "Bold": "Negreta", | ||||
| "Italic": "Cursiva", | ||||
| "Underline": "Subratllat", | ||||
| "Strikethrough": "Barrat", | ||||
| "Superscript": "Super\u00edndex", | ||||
| "Subscript": "Sub\u00edndex", | ||||
| "Clear formatting": "Eliminar format", | ||||
| "Align left": "Alinea a l'esquerra", | ||||
| "Align center": "Alinea al centre", | ||||
| "Align right": "Alinea a la dreta", | ||||
| "Justify": "Justificat", | ||||
| "Bullet list": "Llista no ordenada", | ||||
| "Numbered list": "Llista enumerada", | ||||
| "Decrease indent": "Disminuir sagnat", | ||||
| "Increase indent": "Augmentar sagnat", | ||||
| "Close": "Tancar", | ||||
| "Formats": "Formats", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "El vostre navegador no suporta l'acc\u00e9s directe al portaobjectes. Si us plau, feu servir les dreceres de teclat Ctrl+X\/C\/V.", | ||||
| "Headers": "Encap\u00e7alaments", | ||||
| "Header 1": "Encap\u00e7alament 1", | ||||
| "Header 2": "Encap\u00e7alament 2", | ||||
| "Header 3": "Encap\u00e7alament 3", | ||||
| "Header 4": "Encap\u00e7alament 4", | ||||
| "Header 5": "Encap\u00e7alament 5", | ||||
| "Header 6": "Encap\u00e7alament 6", | ||||
| "Headings": "Encap\u00e7alaments", | ||||
| "Heading 1": "Encap\u00e7alament 1", | ||||
| "Heading 2": "Encap\u00e7alament 2", | ||||
| "Heading 3": "Encap\u00e7alament 3", | ||||
| "Heading 4": "Encap\u00e7alament 4", | ||||
| "Heading 5": "Encap\u00e7alament 5", | ||||
| "Heading 6": "Encap\u00e7alament 6", | ||||
| "Preformatted": "Preformatat", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Codi", | ||||
| "Paragraph": "Par\u00e0graf", | ||||
| "Blockquote": "Cita", | ||||
| "Inline": "En l\u00ednia", | ||||
| "Blocks": "Blocs", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Enganxar ara est\u00e0 en mode text pla. Els continguts s'enganxaran com a text pla fins que desactivis aquesta opci\u00f3. ", | ||||
| "Fonts": "Fonts", | ||||
| "Font Sizes": "Mides de la font", | ||||
| "Class": "Classe", | ||||
| "Browse for an image": "Explorar per cercar una imatge", | ||||
| "OR": "O", | ||||
| "Drop an image here": "Deixar anar una imatge aqu\u00ed", | ||||
| "Upload": "Pujar", | ||||
| "Block": "Bloc", | ||||
| "Align": "Alinea", | ||||
| "Default": "Per defecte", | ||||
| "Circle": "Cercle", | ||||
| "Disc": "Disc", | ||||
| "Square": "Quadrat", | ||||
| "Lower Alpha": "Alfa menor", | ||||
| "Lower Greek": "Grec menor", | ||||
| "Lower Roman": "Roman menor", | ||||
| "Upper Alpha": "Alfa major", | ||||
| "Upper Roman": "Roman major", | ||||
| "Anchor...": "Ancoratge...", | ||||
| "Name": "Nom", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "La Id ha de comen\u00e7ar amb una lletra, seguida d'altres lletres, n\u00fameros, punts, ratlles, comes, o guions baixos", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Teniu canvis sense desar, esteu segur que voleu deixar-ho ara?", | ||||
| "Restore last draft": "Restaurar l'\u00faltim esborrany", | ||||
| "Special character...": "Car\u00e0cters especials\u2026", | ||||
| "Source code": "Codi font", | ||||
| "Insert\/Edit code sample": "Inserir\/Editar tros de codi", | ||||
| "Language": "Idioma", | ||||
| "Code sample...": "Mostra de codi...", | ||||
| "Color Picker": "Selector de colors", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "D'esquerra a dreta", | ||||
| "Right to left": "De dreta a esquerra", | ||||
| "Emoticons...": "Emoticones...", | ||||
| "Metadata and Document Properties": "Metadades i propietats del document", | ||||
| "Title": "T\u00edtol", | ||||
| "Keywords": "Paraules clau", | ||||
| "Description": "Descripci\u00f3", | ||||
| "Robots": "Robots", | ||||
| "Author": "Autor", | ||||
| "Encoding": "Codificaci\u00f3", | ||||
| "Fullscreen": "Pantalla completa", | ||||
| "Action": "Acci\u00f3", | ||||
| "Shortcut": "Drecera", | ||||
| "Help": "Ajuda", | ||||
| "Address": "Adre\u00e7a", | ||||
| "Focus to menubar": "Enfocar la barra de men\u00fa", | ||||
| "Focus to toolbar": "Enfocar la barra d'eines", | ||||
| "Focus to element path": "Enfocar la ruta d'elements", | ||||
| "Focus to contextual toolbar": "Enfocar la barra d'eines contextual", | ||||
| "Insert link (if link plugin activated)": "Inserir enlla\u00e7 (si el complement d'enlla\u00e7 est\u00e0 activat)", | ||||
| "Save (if save plugin activated)": "Desar (si el complement desar est\u00e0 activat)", | ||||
| "Find (if searchreplace plugin activated)": "Cercar (si el complement cercar-reempla\u00e7ar est\u00e0 activat)", | ||||
| "Plugins installed ({0}):": "Complements instal\u00b7lats ({0}):", | ||||
| "Premium plugins:": "Complements premium", | ||||
| "Learn more...": "Apr\u00e8n m\u00e9s...", | ||||
| "You are using {0}": "Est\u00e0s utilitzant {0}", | ||||
| "Plugins": "Complements", | ||||
| "Handy Shortcuts": "Dreceres a m\u00e0", | ||||
| "Horizontal line": "L\u00ednia horitzontal", | ||||
| "Insert\/edit image": "Inserir\/editar imatge", | ||||
| "Image description": "Descripci\u00f3 de la imatge", | ||||
| "Source": "Font", | ||||
| "Dimensions": "Dimensions", | ||||
| "Constrain proportions": "Mantenir proporcions", | ||||
| "General": "General", | ||||
| "Advanced": "Avan\u00e7at", | ||||
| "Style": "Estil", | ||||
| "Vertical space": "Espai vertical", | ||||
| "Horizontal space": "Espai horitzontal", | ||||
| "Border": "Vora", | ||||
| "Insert image": "Inserir imatge", | ||||
| "Image...": "Imatge...", | ||||
| "Image list": "Llista d'imatges", | ||||
| "Rotate counterclockwise": "Girar a l'esquerra", | ||||
| "Rotate clockwise": "Girar a la dreta", | ||||
| "Flip vertically": "Capgirar verticalment", | ||||
| "Flip horizontally": "Capgirar horitzontalment", | ||||
| "Edit image": "Editar imatge", | ||||
| "Image options": "Opcions d'imatge", | ||||
| "Zoom in": "Ampliar", | ||||
| "Zoom out": "Empetitir", | ||||
| "Crop": "Escap\u00e7ar", | ||||
| "Resize": "Canviar mida", | ||||
| "Orientation": "Orientaci\u00f3", | ||||
| "Brightness": "Brillantor", | ||||
| "Sharpen": "Remarcar vores", | ||||
| "Contrast": "Contrast", | ||||
| "Color levels": "Nivells de color", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Invertir", | ||||
| "Apply": "Aplicar", | ||||
| "Back": "Tornar", | ||||
| "Insert date\/time": "Inserir data\/hora", | ||||
| "Date\/time": "Data\/hora", | ||||
| "Insert\/Edit Link": "Inserir\/editar l'enlla\u00e7", | ||||
| "Insert\/edit link": "Inserir\/editar enlla\u00e7", | ||||
| "Text to display": "Text per mostrar", | ||||
| "Url": "URL", | ||||
| "Open link in...": "Obrir l'enlla\u00e7 a...", | ||||
| "Current window": "Finestra actual", | ||||
| "None": "Cap", | ||||
| "New window": "Finestra nova", | ||||
| "Remove link": "Treure enlla\u00e7", | ||||
| "Anchors": "\u00c0ncores", | ||||
| "Link...": "Enlla\u00e7...", | ||||
| "Paste or type a link": "Enganxa o escriu un enlla\u00e7", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que has escrit sembla una adre\u00e7a de correu electr\u00f2nic. Vols afegir-li el prefix obligatori mailto: ?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que has escrit sembla un enlla\u00e7 extern. Vols afegir-li el prefix obligatori http:\/\/ ?", | ||||
| "Link list": "Llista d'enlla\u00e7os", | ||||
| "Insert video": "Inserir v\u00eddeo", | ||||
| "Insert\/edit video": "Inserir\/editar v\u00eddeo", | ||||
| "Insert\/edit media": "Inserir\/editar mitj\u00e0", | ||||
| "Alternative source": "Font alternativa", | ||||
| "Alternative source URL": "URL de font alternativa", | ||||
| "Media poster (Image URL)": "Cartell de multim\u00e8dia (URL d'imatge)", | ||||
| "Paste your embed code below:": "Enganxau el codi a sota:", | ||||
| "Embed": "Incloure", | ||||
| "Media...": "Multim\u00e8dia...", | ||||
| "Nonbreaking space": "Espai fixe", | ||||
| "Page break": "Salt de p\u00e0gina", | ||||
| "Paste as text": "Enganxar com a text", | ||||
| "Preview": "Previsualitzaci\u00f3", | ||||
| "Print...": "Imprimir...", | ||||
| "Save": "Desa", | ||||
| "Find": "Buscar", | ||||
| "Replace with": "Rempla\u00e7ar amb", | ||||
| "Replace": "Rempla\u00e7ar", | ||||
| "Replace all": "Rempla\u00e7ar-ho tot", | ||||
| "Previous": "Anterior", | ||||
| "Next": "Seg\u00fcent", | ||||
| "Find and replace...": "Cercar i reempla\u00e7ar...", | ||||
| "Could not find the specified string.": "No es pot trobar el text especificat.", | ||||
| "Match case": "Coincidir maj\u00fascules", | ||||
| "Find whole words only": "Cercar nom\u00e9s paraules completes", | ||||
| "Spell check": "Corrector ortogr\u00e0fic", | ||||
| "Ignore": "Ignorar", | ||||
| "Ignore all": "Ignorar tots", | ||||
| "Finish": "Finalitzar", | ||||
| "Add to Dictionary": "Afegir al diccionari", | ||||
| "Insert table": "Inserir taula", | ||||
| "Table properties": "Propietats de taula", | ||||
| "Delete table": "Esborrar taula", | ||||
| "Cell": "Cel\u00b7la", | ||||
| "Row": "Fila", | ||||
| "Column": "Columna", | ||||
| "Cell properties": "Propietats de cel\u00b7la", | ||||
| "Merge cells": "Fusionar cel\u00b7les", | ||||
| "Split cell": "Dividir cel\u00b7les", | ||||
| "Insert row before": "Inserir fila a sobre", | ||||
| "Insert row after": "Inserir fila a sota", | ||||
| "Delete row": "Esborrar fila", | ||||
| "Row properties": "Propietats de fila", | ||||
| "Cut row": "Retallar fila", | ||||
| "Copy row": "Copiar fila", | ||||
| "Paste row before": "Enganxar fila a sobre", | ||||
| "Paste row after": "Enganxar fila a sota", | ||||
| "Insert column before": "Inserir columna abans", | ||||
| "Insert column after": "Inserir columna despr\u00e9s", | ||||
| "Delete column": "Esborrar columna", | ||||
| "Cols": "Cols", | ||||
| "Rows": "Files", | ||||
| "Width": "Amplada", | ||||
| "Height": "Al\u00e7ada", | ||||
| "Cell spacing": "Espai entre cel\u00b7les", | ||||
| "Cell padding": "Marge intern", | ||||
| "Show caption": "Mostrar encap\u00e7alament", | ||||
| "Left": "A l'esquerra", | ||||
| "Center": "Centrat", | ||||
| "Right": "A la dreta", | ||||
| "Cell type": "Tipus de cel\u00b7la", | ||||
| "Scope": "\u00c0mbit", | ||||
| "Alignment": "Aliniament", | ||||
| "H Align": "Al\u00edniament H", | ||||
| "V Align": "Al\u00edniament V", | ||||
| "Top": "Superior", | ||||
| "Middle": "Mitj\u00e0", | ||||
| "Bottom": "Inferior", | ||||
| "Header cell": "Cel\u00b7la de cap\u00e7alera", | ||||
| "Row group": "Grup de fila", | ||||
| "Column group": "Grup de columna", | ||||
| "Row type": "Tipus de fila", | ||||
| "Header": "Cap\u00e7alera", | ||||
| "Body": "Cos", | ||||
| "Footer": "Peu", | ||||
| "Border color": "Color de vora", | ||||
| "Insert template...": "Inserir plantilla...", | ||||
| "Templates": "Plantilles", | ||||
| "Template": "Plantilla", | ||||
| "Text color": "Color del text", | ||||
| "Background color": "Color del fons", | ||||
| "Custom...": "Personalitzar...", | ||||
| "Custom color": "Personalitzar el color", | ||||
| "No color": "Sense color", | ||||
| "Remove color": "Eliminar el color", | ||||
| "Table of Contents": "Taula de continguts", | ||||
| "Show blocks": "Mostrar blocs", | ||||
| "Show invisible characters": "Mostrar car\u00e0cters invisibles", | ||||
| "Word count": "Recompte de paraules", | ||||
| "Count": "Compta", | ||||
| "Document": "Document", | ||||
| "Selection": "Selecci\u00f3", | ||||
| "Words": "Paraules", | ||||
| "Words: {0}": "Paraules: {0}", | ||||
| "{0} words": "{0} paraules", | ||||
| "File": "Arxiu", | ||||
| "Edit": "Edici\u00f3", | ||||
| "Insert": "Inserir", | ||||
| "View": "Veure", | ||||
| "Format": "Format", | ||||
| "Table": "Taula", | ||||
| "Tools": "Eines", | ||||
| "Powered by {0}": "Impulsat per {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c0rea de text amb format. Premeu ALT-F9 per mostrar el men\u00fa, ALT F10 per la barra d'eines i ALT-0 per ajuda.", | ||||
| "Image title": "T\u00edtol de la imatge", | ||||
| "Border width": "Amplada de la vora", | ||||
| "Border style": "Estil de la vora", | ||||
| "Error": "Error", | ||||
| "Warn": "Alerta", | ||||
| "Valid": "V\u00e0lid", | ||||
| "To open the popup, press Shift+Enter": "Per obrir la finestra emergent, premeu Maj.+Retorn", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u00c0rea de Text enriquit. Premeu ALT-0 per obtenir ajuda.", | ||||
| "System Font": "Font del sistema", | ||||
| "Failed to upload image: {0}": "No s'ha pogut carregar la imatge: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "No s'ha pogut carregar el complement: {0} de l\u2019URL {1}", | ||||
| "Failed to load plugin url: {0}": "No s'ha pogut carregar l\u2019URL del complement: {0}", | ||||
| "Failed to initialize plugin: {0}": "No s'ha pogut inicialitzar el complement: {0}", | ||||
| "example": "exemple", | ||||
| "Search": "Cerca", | ||||
| "All": "Tot", | ||||
| "Currency": "Moneda", | ||||
| "Text": "Text", | ||||
| "Quotations": "Cites", | ||||
| "Mathematical": "S\u00edmbols matem\u00e0tics", | ||||
| "Extended Latin": "Llat\u00ed ampliat", | ||||
| "Symbols": "S\u00edmbols", | ||||
| "Arrows": "Fletxes", | ||||
| "User Defined": "Definit per l'usuari", | ||||
| "dollar sign": "signe del d\u00f2lar", | ||||
| "currency sign": "signe de la moneda", | ||||
| "euro-currency sign": "signe de l'euro", | ||||
| "colon sign": "signe del col\u00f3n", | ||||
| "cruzeiro sign": "signe del cruzeiro", | ||||
| "french franc sign": "signe del franc franc\u00e8s", | ||||
| "lira sign": "signe de la lira", | ||||
| "mill sign": "signe del mill", | ||||
| "naira sign": "signe de la naira", | ||||
| "peseta sign": "signe de la pesseta", | ||||
| "rupee sign": "signe de la rupia", | ||||
| "won sign": "signe del won", | ||||
| "new sheqel sign": "signe del nou x\u00e9quel", | ||||
| "dong sign": "signe del dong", | ||||
| "kip sign": "signe del kip", | ||||
| "tugrik sign": "signe del t\u00f6gr\u00f6g", | ||||
| "drachma sign": "signe del dracma", | ||||
| "german penny symbol": "signe del penic alemany", | ||||
| "peso sign": "signe del peso", | ||||
| "guarani sign": "signe del guaran\u00ed", | ||||
| "austral sign": "signe de l\u2019austral", | ||||
| "hryvnia sign": "signe de la hr\u00edvnia", | ||||
| "cedi sign": "signe del cedi", | ||||
| "livre tournois sign": "signe de la lliura tornesa", | ||||
| "spesmilo sign": "signe de l\u2019spesmilo", | ||||
| "tenge sign": "signe del tenge", | ||||
| "indian rupee sign": "signe de la rupia \u00edndia", | ||||
| "turkish lira sign": "signe de la lira turca", | ||||
| "nordic mark sign": "signe del marc n\u00f2rdic", | ||||
| "manat sign": "signe del manat", | ||||
| "ruble sign": "signe del ruble", | ||||
| "yen character": "signe del ien", | ||||
| "yuan character": "signe del iuan", | ||||
| "yuan character, in hong kong and taiwan": "signe del iuan en Hong Kong i Taiwan", | ||||
| "yen\/yuan character variant one": "variaci\u00f3 1 del signe del ien\/iuan", | ||||
| "Loading emoticons...": "Carregant les emoticones...", | ||||
| "Could not load emoticons": "No s'han pogut carregar les emoticones", | ||||
| "People": "Gent", | ||||
| "Animals and Nature": "Animals i natura", | ||||
| "Food and Drink": "Menjar i beure", | ||||
| "Activity": "Activitat", | ||||
| "Travel and Places": "Viatges i llocs", | ||||
| "Objects": "Objectes", | ||||
| "Flags": "Banderes", | ||||
| "Characters": "Car\u00e0cters", | ||||
| "Characters (no spaces)": "Car\u00e0cters (sense espais)", | ||||
| "{0} characters": "{0} car\u00e0cters", | ||||
| "Error: Form submit field collision.": "Error: error en el camp d\u2019enviament del formulari.", | ||||
| "Error: No form element found.": "Error: no s'ha trobat l'element del formulari.", | ||||
| "Update": "Actualitzar", | ||||
| "Color swatch": "Mostra de color", | ||||
| "Turquoise": "Turquesa", | ||||
| "Green": "Verd", | ||||
| "Blue": "Blau", | ||||
| "Purple": "Violeta", | ||||
| "Navy Blue": "Blau mar\u00ed", | ||||
| "Dark Turquoise": "Turquesa fosc", | ||||
| "Dark Green": "Verd fosc", | ||||
| "Medium Blue": "Blau mitj\u00e0", | ||||
| "Medium Purple": "Violeta mitj\u00e0", | ||||
| "Midnight Blue": "Blau mitjanit", | ||||
| "Yellow": "Groc", | ||||
| "Orange": "Taronja", | ||||
| "Red": "Vermell", | ||||
| "Light Gray": "Gris clar", | ||||
| "Gray": "Gris", | ||||
| "Dark Yellow": "Groc fosc", | ||||
| "Dark Orange": "Taronja fosc", | ||||
| "Dark Red": "Vermell fosc", | ||||
| "Medium Gray": "Gris mitj\u00e0", | ||||
| "Dark Gray": "Gris fosc", | ||||
| "Light Green": "Verd clar", | ||||
| "Light Yellow": "Groc clar", | ||||
| "Light Red": "Vermell clar", | ||||
| "Light Purple": "Porpra clar", | ||||
| "Light Blue": "Blau clar", | ||||
| "Dark Purple": "Porpra fosc", | ||||
| "Dark Blue": "Blau fosc", | ||||
| "Black": "Negre", | ||||
| "White": "Blanc", | ||||
| "Switch to or from fullscreen mode": "Canviar a o del mode de pantalla completa", | ||||
| "Open help dialog": "Obrir el quadre de di\u00e0leg d'ajuda", | ||||
| "history": "historial", | ||||
| "styles": "estils", | ||||
| "formatting": "format", | ||||
| "alignment": "alineaci\u00f3", | ||||
| "indentation": "sagnat", | ||||
| "permanent pen": "retolador permanent", | ||||
| "comments": "comentaris", | ||||
| "Format Painter": "Formata el Painter", | ||||
| "Insert\/edit iframe": "Insereix\/edita iframe", | ||||
| "Capitalization": "Capitalitzaci\u00f3", | ||||
| "lowercase": "min\u00fascules", | ||||
| "UPPERCASE": "MAJ\u00daSCULES", | ||||
| "Title Case": "Caixa del t\u00edtol", | ||||
| "Permanent Pen Properties": "Par\u00e0metres permanents del llapis", | ||||
| "Permanent pen properties...": "Par\u00e0metres permanents del llapis\u2026", | ||||
| "Font": "Font", | ||||
| "Size": "Mida", | ||||
| "More...": "M\u00e9s\u2026", | ||||
| "Spellcheck Language": "Idioma de la comprovaci\u00f3 d'ortografia", | ||||
| "Select...": "Selecciona\u2026", | ||||
| "Preferences": "Par\u00e0metres", | ||||
| "Yes": "S\u00ed", | ||||
| "No": "No", | ||||
| "Keyboard Navigation": "Navegaci\u00f3 per teclat", | ||||
| "Version": "Versi\u00f3", | ||||
| "Anchor": "\u00c0ncora", | ||||
| "Special character": "Car\u00e0cter especial", | ||||
| "Code sample": "Mostra de codi", | ||||
| "Color": "Color", | ||||
| "Emoticons": "Emoticones", | ||||
| "Document properties": "Propietats del document", | ||||
| "Image": "Imatge", | ||||
| "Insert link": "Inserir enlla\u00e7", | ||||
| "Target": "Dest\u00ed", | ||||
| "Link": "Enlla\u00e7", | ||||
| "Poster": "P\u00f3ster", | ||||
| "Media": "Mitjans", | ||||
| "Print": "Imprimir", | ||||
| "Prev": "Anterior", | ||||
| "Find and replace": "Buscar i rempla\u00e7ar", | ||||
| "Whole words": "Paraules senceres", | ||||
| "Spellcheck": "Comprovar ortrografia", | ||||
| "Caption": "Encap\u00e7alament", | ||||
| "Insert template": "Inserir plantilla" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/cs.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/cs.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('cs',{ | ||||
| "Redo": "Opakovat", | ||||
| "Undo": "Zp\u011bt", | ||||
| "Cut": "Vyjmout", | ||||
| "Copy": "Kop\u00edrovat", | ||||
| "Paste": "Vlo\u017eit", | ||||
| "Select all": "Vybrat v\u0161e", | ||||
| "New document": "Nov\u00fd dokument", | ||||
| "Ok": "OK", | ||||
| "Cancel": "Storno", | ||||
| "Visual aids": "Vizu\u00e1ln\u00ed pom\u016fcky", | ||||
| "Bold": "Tu\u010dn\u00e9", | ||||
| "Italic": "Kurz\u00edva", | ||||
| "Underline": "Podtr\u017een\u00ed", | ||||
| "Strikethrough": "P\u0159e\u0161krtnut\u00e9", | ||||
| "Superscript": "Horn\u00ed index", | ||||
| "Subscript": "Doln\u00ed index", | ||||
| "Clear formatting": "Vymazat form\u00e1tov\u00e1n\u00ed", | ||||
| "Align left": "Zarovnat doleva", | ||||
| "Align center": "Zarovnat na st\u0159ed", | ||||
| "Align right": "Zarovnat doprava", | ||||
| "Justify": "Zarovnat do bloku", | ||||
| "Bullet list": "Odr\u00e1\u017eky", | ||||
| "Numbered list": "\u010c\u00edslov\u00e1n\u00ed", | ||||
| "Decrease indent": "Zmen\u0161it odsazen\u00ed", | ||||
| "Increase indent": "Zv\u011bt\u0161it odsazen\u00ed", | ||||
| "Close": "Zav\u0159\u00edt", | ||||
| "Formats": "Form\u00e1ty", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prohl\u00ed\u017ee\u010d nepodporuje p\u0159\u00edm\u00fd p\u0159\u00edstup do schr\u00e1nky. Pou\u017eijte pros\u00edm kl\u00e1vesov\u00e9 zkratky Ctrl+X\/C\/V.", | ||||
| "Headers": "Nadpisy", | ||||
| "Header 1": "Nadpis 1", | ||||
| "Header 2": "Nadpis 2", | ||||
| "Header 3": "Nadpis 3", | ||||
| "Header 4": "Nadpis 4", | ||||
| "Header 5": "Nadpis 5", | ||||
| "Header 6": "Nadpis 6", | ||||
| "Headings": "Nadpisy", | ||||
| "Heading 1": "Nadpis 1", | ||||
| "Heading 2": "Nadpis 2", | ||||
| "Heading 3": "Nadpis 3", | ||||
| "Heading 4": "Nadpis 4", | ||||
| "Heading 5": "Nadpis 5", | ||||
| "Heading 6": "Nadpis 6", | ||||
| "Preformatted": "P\u0159edform\u00e1tovan\u00fd text", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "K\u00f3d", | ||||
| "Paragraph": "Odstavec", | ||||
| "Blockquote": "Blokov\u00e1 citace", | ||||
| "Inline": "\u0158\u00e1dkov\u00e9 zobrazen\u00ed (inline)", | ||||
| "Blocks": "Bloky", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Je zapnuto vkl\u00e1d\u00e1n\u00ed \u010dist\u00e9ho textu. Dokud nebude tato volba vypnuta, bude ve\u0161ker\u00fd obsah vlo\u017een jako \u010dist\u00fd text.", | ||||
| "Fonts": "P\u00edsma", | ||||
| "Font Sizes": "Velikost p\u00edsma", | ||||
| "Class": "T\u0159\u00edda", | ||||
| "Browse for an image": "Vyhledat obr\u00e1zek", | ||||
| "OR": "OR", | ||||
| "Drop an image here": "P\u0159esu\u0148te obr\u00e1zek sem", | ||||
| "Upload": "Nahr\u00e1t", | ||||
| "Block": "Do bloku", | ||||
| "Align": "Zarovnat", | ||||
| "Default": "V\u00fdchoz\u00ed", | ||||
| "Circle": "Kole\u010dko", | ||||
| "Disc": "Punt\u00edk", | ||||
| "Square": "\u010ctvere\u010dek", | ||||
| "Lower Alpha": "Norm\u00e1ln\u00ed \u010d\u00edslov\u00e1n\u00ed", | ||||
| "Lower Greek": "Mal\u00e9 p\u00edsmenkov\u00e1n\u00ed", | ||||
| "Lower Roman": "Mal\u00e9 \u0159\u00edmsk\u00e9 \u010d\u00edslice", | ||||
| "Upper Alpha": "velk\u00e9 p\u00edsmenkov\u00e1n\u00ed", | ||||
| "Upper Roman": "\u0158\u00edmsk\u00e9 \u010d\u00edslice", | ||||
| "Anchor...": "Kotva...", | ||||
| "Name": "N\u00e1zev", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id by m\u011blo za\u010d\u00ednat p\u00edsmenem a d\u00e1le obsahovat pouze p\u00edsmena, \u010d\u00edsla, poml\u010dky, te\u010dky, dvojte\u010dky, nebo podtr\u017e\u00edtka.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zm\u011bny. Opravdu chcete opustit str\u00e1nku?", | ||||
| "Restore last draft": "Obnovit posledn\u00ed koncept", | ||||
| "Special character...": "Speci\u00e1ln\u00ed znak\u2026", | ||||
| "Source code": "Zdrojov\u00fd k\u00f3d", | ||||
| "Insert\/Edit code sample": "Vlo\u017eit \/ Upravit uk\u00e1zkov\u00fd k\u00f3d", | ||||
| "Language": "Jazyk", | ||||
| "Code sample...": "Uk\u00e1zkov\u00fd k\u00f3d...", | ||||
| "Color Picker": "V\u00fdb\u011br barvy", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Zleva doprava", | ||||
| "Right to left": "Zprava doleva", | ||||
| "Emoticons...": "Emotikony...", | ||||
| "Metadata and Document Properties": "Metadata a vlastnosti dokumentu", | ||||
| "Title": "Titulek", | ||||
| "Keywords": "Kl\u00ed\u010dov\u00e1 slova", | ||||
| "Description": "Popis", | ||||
| "Robots": "Roboti", | ||||
| "Author": "Autor", | ||||
| "Encoding": "K\u00f3dov\u00e1n\u00ed", | ||||
| "Fullscreen": "Na celou obrazovku", | ||||
| "Action": "Akce", | ||||
| "Shortcut": "Kl\u00e1vesov\u00e1 zkratka", | ||||
| "Help": "N\u00e1pov\u011bda", | ||||
| "Address": "Blok s po\u0161tovn\u00ed adresou", | ||||
| "Focus to menubar": "P\u0159ej\u00edt do menu", | ||||
| "Focus to toolbar": "P\u0159ej\u00edt na panel n\u00e1stroj\u016f", | ||||
| "Focus to element path": "P\u0159ej\u00edt na element path", | ||||
| "Focus to contextual toolbar": "P\u0159ej\u00edt na kontextov\u00fd panel n\u00e1stroj\u016f", | ||||
| "Insert link (if link plugin activated)": "Vlo\u017eit odkaz (pokud je aktivn\u00ed link plugin)", | ||||
| "Save (if save plugin activated)": "Ulo\u017eit (pokud je aktivni save plugin)", | ||||
| "Find (if searchreplace plugin activated)": "Hledat (pokud je aktivn\u00ed plugin searchreplace)", | ||||
| "Plugins installed ({0}):": "Instalovan\u00e9 pluginy ({0}):", | ||||
| "Premium plugins:": "Pr\u00e9miov\u00e9 pluginy:", | ||||
| "Learn more...": "Zjistit v\u00edce...", | ||||
| "You are using {0}": "Pou\u017e\u00edv\u00e1te {0}", | ||||
| "Plugins": "Pluginy", | ||||
| "Handy Shortcuts": "U\u017eite\u010dn\u00e9 kl\u00e1vesov\u00e9 zkratky", | ||||
| "Horizontal line": "Vodorovn\u00e1 \u010d\u00e1ra", | ||||
| "Insert\/edit image": "Vlo\u017eit \/ upravit obr\u00e1zek", | ||||
| "Image description": "Popis obr\u00e1zku", | ||||
| "Source": "URL", | ||||
| "Dimensions": "Rozm\u011bry", | ||||
| "Constrain proportions": "Zachovat proporce", | ||||
| "General": "Obecn\u00e9", | ||||
| "Advanced": "Pokro\u010dil\u00e9", | ||||
| "Style": "Styl", | ||||
| "Vertical space": "Vertik\u00e1ln\u00ed mezera", | ||||
| "Horizontal space": "Horizont\u00e1ln\u00ed mezera", | ||||
| "Border": "R\u00e1me\u010dek", | ||||
| "Insert image": "Vlo\u017eit obr\u00e1zek", | ||||
| "Image...": "Obr\u00e1zek\u2026", | ||||
| "Image list": "Seznam obr\u00e1zk\u016f", | ||||
| "Rotate counterclockwise": "Oto\u010dit doleva", | ||||
| "Rotate clockwise": "Oto\u010dit doprava", | ||||
| "Flip vertically": "P\u0159evr\u00e1tit svisle", | ||||
| "Flip horizontally": "P\u0159evr\u00e1tit vodorovn\u011b", | ||||
| "Edit image": "Upravit obr\u00e1zek", | ||||
| "Image options": "Vlastnosti obr\u00e1zku", | ||||
| "Zoom in": "P\u0159ibl\u00ed\u017eit", | ||||
| "Zoom out": "Odd\u00e1lit", | ||||
| "Crop": "O\u0159\u00edznout", | ||||
| "Resize": "Zm\u011bnit velikost", | ||||
| "Orientation": "Transformovat", | ||||
| "Brightness": "Jas", | ||||
| "Sharpen": "Ostrost", | ||||
| "Contrast": "Kontrast", | ||||
| "Color levels": "\u00darovn\u011b barev", | ||||
| "Gamma": "Gama", | ||||
| "Invert": "Invertovat", | ||||
| "Apply": "Pou\u017e\u00edt", | ||||
| "Back": "Zp\u011bt", | ||||
| "Insert date\/time": "Vlo\u017eit datum \/ \u010das", | ||||
| "Date\/time": "Datum\/\u010das", | ||||
| "Insert\/Edit Link": "P\u0159idat\/upravit odkaz", | ||||
| "Insert\/edit link": "Vlo\u017eit \/ upravit odkaz", | ||||
| "Text to display": "Text k zobrazen\u00ed", | ||||
| "Url": "URL", | ||||
| "Open link in...": "Otev\u0159\u00edt odkaz v...", | ||||
| "Current window": "Aktu\u00e1ln\u00ed okno", | ||||
| "None": "\u017d\u00e1dn\u00e9", | ||||
| "New window": "Nov\u00e9 okno", | ||||
| "Remove link": "Odstranit odkaz", | ||||
| "Anchors": "Kotvy", | ||||
| "Link...": "Odkaz...", | ||||
| "Paste or type a link": "Vlo\u017eit nebo napsat odkaz", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Zadan\u00e9 URL vypad\u00e1 jako e-mailov\u00e1 adresa. Chcete doplnit povinn\u00fd prefix mailto:?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix http:\/\/?", | ||||
| "Link list": "Seznam odkaz\u016f", | ||||
| "Insert video": "Vlo\u017eit video", | ||||
| "Insert\/edit video": "Vlo\u017eit \/ upravit video", | ||||
| "Insert\/edit media": "Vlo\u017eit \/ upravit m\u00e9dia", | ||||
| "Alternative source": "Alternativn\u00ed zdroj", | ||||
| "Alternative source URL": "Alternativn\u00ed zdrojov\u00e1 URL", | ||||
| "Media poster (Image URL)": "Medi\u00e1ln\u00ed plak\u00e1t (URL obr\u00e1zku)", | ||||
| "Paste your embed code below:": "Vlo\u017ete k\u00f3d pro vlo\u017een\u00ed n\u00ed\u017ee:", | ||||
| "Embed": "Vlo\u017eit", | ||||
| "Media...": "M\u00e9dium...", | ||||
| "Nonbreaking space": "Pevn\u00e1 mezera", | ||||
| "Page break": "Konec str\u00e1nky", | ||||
| "Paste as text": "Vlo\u017eit jako \u010dist\u00fd text", | ||||
| "Preview": "N\u00e1hled", | ||||
| "Print...": "Tisk...", | ||||
| "Save": "Ulo\u017eit", | ||||
| "Find": "Naj\u00edt", | ||||
| "Replace with": "Nahradit za", | ||||
| "Replace": "Nahradit", | ||||
| "Replace all": "Nahradit v\u0161e", | ||||
| "Previous": "P\u0159edchoz\u00ed", | ||||
| "Next": "Dal\u0161\u00ed", | ||||
| "Find and replace...": "Naj\u00edt a nahradit...", | ||||
| "Could not find the specified string.": "Zadan\u00fd \u0159et\u011bzec nebyl nalezen.", | ||||
| "Match case": "Rozli\u0161ovat mal\u00e1 a velk\u00e1 p\u00edsmena", | ||||
| "Find whole words only": "Hledat pouze cel\u00e1 slova", | ||||
| "Spell check": "Kontrola pravopisu", | ||||
| "Ignore": "Ignorovat", | ||||
| "Ignore all": "Ignorovat v\u0161e", | ||||
| "Finish": "Ukon\u010dit", | ||||
| "Add to Dictionary": "P\u0159idat do slovn\u00edku", | ||||
| "Insert table": "Vlo\u017eit tabulku", | ||||
| "Table properties": "Vlastnosti tabulky", | ||||
| "Delete table": "Smazat tabulku", | ||||
| "Cell": "Bu\u0148ka", | ||||
| "Row": "\u0158\u00e1dek", | ||||
| "Column": "Sloupec", | ||||
| "Cell properties": "Vlastnosti bu\u0148ky", | ||||
| "Merge cells": "Slou\u010dit bu\u0148ky", | ||||
| "Split cell": "Rozd\u011blit bu\u0148ky", | ||||
| "Insert row before": "Vlo\u017eit \u0159\u00e1dek nad", | ||||
| "Insert row after": "Vlo\u017eit \u0159\u00e1dek pod", | ||||
| "Delete row": "Smazat \u0159\u00e1dek", | ||||
| "Row properties": "Vlastnosti \u0159\u00e1dku", | ||||
| "Cut row": "Vyjmout \u0159\u00e1dek", | ||||
| "Copy row": "Kop\u00edrovat \u0159\u00e1dek", | ||||
| "Paste row before": "Vlo\u017eit \u0159\u00e1dek nad", | ||||
| "Paste row after": "Vlo\u017eit \u0159\u00e1dek pod", | ||||
| "Insert column before": "Vlo\u017eit sloupec vlevo", | ||||
| "Insert column after": "Vlo\u017eit sloupec vpravo", | ||||
| "Delete column": "Smazat sloupec", | ||||
| "Cols": "Sloupc\u016f", | ||||
| "Rows": "\u0158\u00e1dek", | ||||
| "Width": "\u0160\u00ed\u0159ka", | ||||
| "Height": "V\u00fd\u0161ka", | ||||
| "Cell spacing": "Vn\u011bj\u0161\u00ed okraj bun\u011bk", | ||||
| "Cell padding": "Vnit\u0159n\u00ed okraj bun\u011bk", | ||||
| "Show caption": "Zobrazit titulku", | ||||
| "Left": "Vlevo", | ||||
| "Center": "Na st\u0159ed", | ||||
| "Right": "Vpravo", | ||||
| "Cell type": "Typ bu\u0148ky", | ||||
| "Scope": "Rozsah", | ||||
| "Alignment": "Zarovn\u00e1n\u00ed", | ||||
| "H Align": "Horizont\u00e1ln\u00ed zarovn\u00e1n\u00ed", | ||||
| "V Align": "Vertik\u00e1ln\u00ed zarovn\u00e1n\u00ed", | ||||
| "Top": "Nahoru", | ||||
| "Middle": "Uprost\u0159ed", | ||||
| "Bottom": "Dol\u016f", | ||||
| "Header cell": "Hlavi\u010dkov\u00e1 bu\u0148ka", | ||||
| "Row group": "Skupina \u0159\u00e1dk\u016f", | ||||
| "Column group": "Skupina sloupc\u016f", | ||||
| "Row type": "Typ \u0159\u00e1dku", | ||||
| "Header": "Hlavi\u010dka", | ||||
| "Body": "T\u011blo", | ||||
| "Footer": "Pati\u010dka", | ||||
| "Border color": "Barva r\u00e1me\u010dku", | ||||
| "Insert template...": "Vlo\u017eit \u0161ablonu...", | ||||
| "Templates": "\u0160ablony", | ||||
| "Template": "\u0160ablona", | ||||
| "Text color": "Barva p\u00edsma", | ||||
| "Background color": "Barva pozad\u00ed", | ||||
| "Custom...": "Vlastn\u00ed...", | ||||
| "Custom color": "Vlastn\u00ed barva", | ||||
| "No color": "Bez barvy", | ||||
| "Remove color": "Odebrat barvu", | ||||
| "Table of Contents": "Obsah", | ||||
| "Show blocks": "Uk\u00e1zat bloky", | ||||
| "Show invisible characters": "Zobrazit speci\u00e1ln\u00ed znaky", | ||||
| "Word count": "Po\u010det slov", | ||||
| "Count": "Po\u010det", | ||||
| "Document": "Dokument", | ||||
| "Selection": "V\u00fdb\u011br", | ||||
| "Words": "Slova", | ||||
| "Words: {0}": "Po\u010det slov: {0}", | ||||
| "{0} words": "Po\u010det slov: {0}", | ||||
| "File": "Soubor", | ||||
| "Edit": "\u00dapravy", | ||||
| "Insert": "Vlo\u017eit", | ||||
| "View": "Zobrazit", | ||||
| "Format": "Form\u00e1t", | ||||
| "Table": "Tabulka", | ||||
| "Tools": "N\u00e1stroje", | ||||
| "Powered by {0}": "Vytvo\u0159il {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Editor. Stiskn\u011bte ALT-F9 pro menu, ALT-F10 pro n\u00e1strojovou li\u0161tu a ALT-0 pro n\u00e1pov\u011bdu.", | ||||
| "Image title": "N\u00e1zev obr\u00e1zku", | ||||
| "Border width": "\u0160\u00ed\u0159ka ohrani\u010den\u00ed", | ||||
| "Border style": "Styl ohrani\u010den\u00ed", | ||||
| "Error": "Chyba", | ||||
| "Warn": "Varov\u00e1n\u00ed", | ||||
| "Valid": "Platn\u00fd", | ||||
| "To open the popup, press Shift+Enter": "Vyskakovac\u00ed okno otev\u0159ete stisknut\u00edm Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Oblast Rich Text, stiskn\u011bte ALT-0 pro n\u00e1pov\u011bdu.", | ||||
| "System Font": "Syst\u00e9mov\u00e9 p\u00edsmo", | ||||
| "Failed to upload image: {0}": "Nahr\u00e1n\u00ed obr\u00e1zku selhalo:", | ||||
| "Failed to load plugin: {0} from url {1}": "Na\u010dten\u00ed z\u00e1suvn\u00e9ho modulu selhalo: {0} z URL {1}", | ||||
| "Failed to load plugin url: {0}": "Na\u010dten\u00ed z\u00e1suvn\u00e9ho modulu URL selhalo: {0}", | ||||
| "Failed to initialize plugin: {0}": "Inicializace z\u00e1suvn\u00e9ho modulu selhala:", | ||||
| "example": "p\u0159\u00edklad", | ||||
| "Search": "Hledat", | ||||
| "All": "V\u0161e", | ||||
| "Currency": "M\u011bna", | ||||
| "Text": "Text", | ||||
| "Quotations": "Citace", | ||||
| "Mathematical": "Matematick\u00e9 symboly", | ||||
| "Extended Latin": "Roz\u0161\u00ed\u0159en\u00e9 Latin", | ||||
| "Symbols": "Symboly", | ||||
| "Arrows": "\u0160ipky", | ||||
| "User Defined": "Definovan\u00e9 u\u017eivatelem", | ||||
| "dollar sign": "znak dolaru", | ||||
| "currency sign": "znak m\u011bny", | ||||
| "euro-currency sign": "znak m\u011bny euro", | ||||
| "colon sign": "znak dvojte\u010dky", | ||||
| "cruzeiro sign": "znak cruzeiro", | ||||
| "french franc sign": "znak francouzsk\u00e9ho franku", | ||||
| "lira sign": "znak liry", | ||||
| "mill sign": "znak mill", | ||||
| "naira sign": "znak nairy", | ||||
| "peseta sign": "znak pesety", | ||||
| "rupee sign": "znak rupie", | ||||
| "won sign": "znak wonu", | ||||
| "new sheqel sign": "znak nov\u00e9ho \u0161ekelu", | ||||
| "dong sign": "znak dongu", | ||||
| "kip sign": "znak kipu", | ||||
| "tugrik sign": "znak tugriku", | ||||
| "drachma sign": "znak drachmy", | ||||
| "german penny symbol": "znak n\u011bmeck\u00e9ho feniku", | ||||
| "peso sign": "znak pesa", | ||||
| "guarani sign": "znak guaran\u00ed", | ||||
| "austral sign": "znak austral", | ||||
| "hryvnia sign": "znak h\u0159ivny", | ||||
| "cedi sign": "znak cedi", | ||||
| "livre tournois sign": "znak tournois libry", | ||||
| "spesmilo sign": "znak spesmilo", | ||||
| "tenge sign": "znak tenge", | ||||
| "indian rupee sign": "znak indick\u00e9 rupie", | ||||
| "turkish lira sign": "znak tureck\u00e9 liry", | ||||
| "nordic mark sign": "znak norsk\u00e9 marky", | ||||
| "manat sign": "znak manatu", | ||||
| "ruble sign": "znak rublu", | ||||
| "yen character": "znak jenu", | ||||
| "yuan character": "znak juanu", | ||||
| "yuan character, in hong kong and taiwan": "znak juanu v hongkongu a tchaj-wanu", | ||||
| "yen\/yuan character variant one": "znak jenu\/juanu, varianta 1", | ||||
| "Loading emoticons...": "Na\u010d\u00edt\u00e1n\u00ed emotikon\u016f...", | ||||
| "Could not load emoticons": "Nelze na\u010d\u00edst emotikony", | ||||
| "People": "Lid\u00e9", | ||||
| "Animals and Nature": "Zv\u00ed\u0159ata a p\u0159\u00edroda", | ||||
| "Food and Drink": "J\u00eddlo a pit\u00ed", | ||||
| "Activity": "Aktivita", | ||||
| "Travel and Places": "Cestov\u00e1n\u00ed a m\u00edsta", | ||||
| "Objects": "Objekty", | ||||
| "Flags": "Vlajky", | ||||
| "Characters": "Znaky", | ||||
| "Characters (no spaces)": "Znaky (bez mezer)", | ||||
| "{0} characters": "{0} znak\u016f", | ||||
| "Error: Form submit field collision.": "Chyba: Kolize odes\u00edlac\u00edho formul\u00e1\u0159ov\u00e9ho pole.", | ||||
| "Error: No form element found.": "Chyba: Nebyl nalezen \u017e\u00e1dn\u00fd prvek formul\u00e1\u0159e.", | ||||
| "Update": "Aktualizovat", | ||||
| "Color swatch": "Vzorek barvy", | ||||
| "Turquoise": "Tyrkysov\u00e1", | ||||
| "Green": "Zelen\u00e1", | ||||
| "Blue": "Modr\u00e1", | ||||
| "Purple": "Fialov\u00e1", | ||||
| "Navy Blue": "N\u00e1mo\u0159nick\u00e1 mod\u0159", | ||||
| "Dark Turquoise": "Tmav\u011b tyrkysov\u00e1", | ||||
| "Dark Green": "Tmav\u011b zelen\u00e1", | ||||
| "Medium Blue": "St\u0159edn\u011b modr\u00e1", | ||||
| "Medium Purple": "St\u0159edn\u011b fialov\u00e1", | ||||
| "Midnight Blue": "P\u016flno\u010dn\u00ed modr\u00e1", | ||||
| "Yellow": "\u017dlut\u00e1", | ||||
| "Orange": "Oran\u017eov\u00e1", | ||||
| "Red": "\u010cerven\u00e1", | ||||
| "Light Gray": "Sv\u011btle \u0161ed\u00e1", | ||||
| "Gray": "\u0160ed\u00e1", | ||||
| "Dark Yellow": "Tmav\u011b \u017elut\u00e1", | ||||
| "Dark Orange": "Tmav\u011b oran\u017eov\u00e1", | ||||
| "Dark Red": "Tmav\u011b \u010derven\u00e1", | ||||
| "Medium Gray": "St\u0159edn\u011b \u0161ed\u00e1", | ||||
| "Dark Gray": "Tmav\u011b \u0161ed\u00e1", | ||||
| "Light Green": "Sv\u011btle zelen\u00e1", | ||||
| "Light Yellow": "Sv\u011btle \u017elut\u00e1", | ||||
| "Light Red": "Sv\u011btle \u010derven\u00e1", | ||||
| "Light Purple": "Sv\u011btle fialov\u00e1", | ||||
| "Light Blue": "Sv\u011btle modr\u00e1", | ||||
| "Dark Purple": "Tmav\u011b fialov\u00e1", | ||||
| "Dark Blue": "Tmav\u011b modr\u00e1", | ||||
| "Black": "\u010cern\u00e1", | ||||
| "White": "B\u00edl\u00e1", | ||||
| "Switch to or from fullscreen mode": "P\u0159ep\u00edn\u00e1n\u00ed mezi re\u017eimem cel\u00e9 obrazovky", | ||||
| "Open help dialog": "Otev\u0159\u00edt okno n\u00e1pov\u011bdy", | ||||
| "history": "historie", | ||||
| "styles": "styly", | ||||
| "formatting": "form\u00e1tov\u00e1n\u00ed", | ||||
| "alignment": "zarovn\u00e1n\u00ed", | ||||
| "indentation": "odsazen\u00ed", | ||||
| "permanent pen": "permanentn\u00ed pero", | ||||
| "comments": "koment\u00e1\u0159e", | ||||
| "Format Painter": "Kop\u00edrovat form\u00e1t", | ||||
| "Insert\/edit iframe": "Vlo\u017eit\/upravit prvek iframe", | ||||
| "Capitalization": "Velk\u00e1 p\u00edsmena", | ||||
| "lowercase": "mal\u00e1 p\u00edsmena", | ||||
| "UPPERCASE": "VELK\u00c1 P\u00cdSMENA", | ||||
| "Title Case": "V\u0161echna Prvn\u00ed Velk\u00e1", | ||||
| "Permanent Pen Properties": "Vlastnosti permanentn\u00edho pera", | ||||
| "Permanent pen properties...": "Vlastnosti permanentn\u00edho pera\u2026", | ||||
| "Font": "P\u00edsmo", | ||||
| "Size": "Velikost", | ||||
| "More...": "Dal\u0161\u00ed\u2026", | ||||
| "Spellcheck Language": "Jazyk kontroly pravopisu", | ||||
| "Select...": "Vybrat\u2026", | ||||
| "Preferences": "P\u0159edvolby", | ||||
| "Yes": "Ano", | ||||
| "No": "Ne", | ||||
| "Keyboard Navigation": "Navigace pomoc\u00ed kl\u00e1vesnice", | ||||
| "Version": "Verze", | ||||
| "Anchor": "Kotva", | ||||
| "Special character": "Speci\u00e1ln\u00ed znak", | ||||
| "Code sample": "Uk\u00e1zkov\u00fd k\u00f3d", | ||||
| "Color": "Barva", | ||||
| "Emoticons": "Emotikony", | ||||
| "Document properties": "Vlastnosti dokumentu", | ||||
| "Image": "Obr\u00e1zek", | ||||
| "Insert link": "Vlo\u017eit odkaz", | ||||
| "Target": "C\u00edl", | ||||
| "Link": "Odkaz", | ||||
| "Poster": "N\u00e1hled", | ||||
| "Media": "M\u00e9dia", | ||||
| "Print": "Tisk", | ||||
| "Prev": "P\u0159edchoz\u00ed", | ||||
| "Find and replace": "Naj\u00edt a nahradit", | ||||
| "Whole words": "Pouze cel\u00e1 slova", | ||||
| "Spellcheck": "Kontrola pravopisu", | ||||
| "Caption": "Nadpis", | ||||
| "Insert template": "Vlo\u017eit \u0161ablonu" | ||||
| }); | ||||
							
								
								
									
										418
									
								
								Modules/TinyMCE/langs/cy.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										418
									
								
								Modules/TinyMCE/langs/cy.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,418 @@ | ||||
| tinymce.addI18n('cy',{ | ||||
| "Redo": "Ailwneud", | ||||
| "Undo": "Dadwneud", | ||||
| "Cut": "Torri", | ||||
| "Copy": "Cop\u00efo", | ||||
| "Paste": "Gludo", | ||||
| "Select all": "Dewis popeth", | ||||
| "New document": "Dogfen newydd", | ||||
| "Ok": "Iawn", | ||||
| "Cancel": "Canslo", | ||||
| "Visual aids": "Cymorth gweledol", | ||||
| "Bold": "Bras", | ||||
| "Italic": "Italig", | ||||
| "Underline": "Tanlinellu", | ||||
| "Strikethrough": "Llinell drwodd", | ||||
| "Superscript": "Uwchsgript", | ||||
| "Subscript": "Is-sgript", | ||||
| "Clear formatting": "Clirio pob fformat", | ||||
| "Align left": "Aliniad chwith", | ||||
| "Align center": "Aliniad canol", | ||||
| "Align right": "Aliniad de", | ||||
| "Justify": "Unioni", | ||||
| "Bullet list": "Rhestr fwled", | ||||
| "Numbered list": "Rhestr rifol", | ||||
| "Decrease indent": "Lleihau mewnoliad", | ||||
| "Increase indent": "Cynyddu mewnoliad", | ||||
| "Close": "Cau", | ||||
| "Formats": "Fformatau", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Dyw eich porwr ddim yn cynnal mynediad uniongyrchol i'r clipfwrdd. Yn hytrach defnyddiwch y bysellau llwybrau byr Ctrl+X\/C\/V.", | ||||
| "Headers": "Penawdau", | ||||
| "Header 1": "Pennawd 1", | ||||
| "Header 2": "Pennawd 2", | ||||
| "Header 3": "Pennawd 3", | ||||
| "Header 4": "Pennawd 4", | ||||
| "Header 5": "Pennawd 5", | ||||
| "Header 6": "Pennawd 6", | ||||
| "Headings": "Penawdau", | ||||
| "Heading 1": "Pennawd 1", | ||||
| "Heading 2": "Pennawd 2", | ||||
| "Heading 3": "Pennawd 3", | ||||
| "Heading 4": "Pennawd 4", | ||||
| "Heading 5": "Pennawd 5", | ||||
| "Heading 6": "Pennawd 6", | ||||
| "Preformatted": "Wedi ei rag-fformatio", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Cod", | ||||
| "Paragraph": "Paragraff", | ||||
| "Blockquote": "Dyfyniad Bloc", | ||||
| "Inline": "Mewnlin", | ||||
| "Blocks": "Blociau", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Mae gludo nawr yn gweithio yn y modd testun plaen.  Caiff testun plaen ei ludo nawr tan gaiff yr opsiwn ei doglo i'w ddiffodd.", | ||||
| "Fonts": "Ffontau", | ||||
| "Font Sizes": "Meintiau Ffont", | ||||
| "Class": "Dosbarth", | ||||
| "Browse for an image": "Pori am ddelwedd", | ||||
| "OR": "NEU", | ||||
| "Drop an image here": "Gollwng delwedd yma", | ||||
| "Upload": "Uwchlwytho", | ||||
| "Block": "Bloc", | ||||
| "Align": "Alinio", | ||||
| "Default": "Diofyn", | ||||
| "Circle": "Cylch", | ||||
| "Disc": "Disg", | ||||
| "Square": "Sgw\u00e2r", | ||||
| "Lower Alpha": "Alffa Is", | ||||
| "Lower Greek": "Groeg Is", | ||||
| "Lower Roman": "Rhufeinig Is", | ||||
| "Upper Alpha": "Alffa Uwch", | ||||
| "Upper Roman": "Rhufeinig Uwch", | ||||
| "Anchor...": "Angor...", | ||||
| "Name": "Enw", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Dylai Id gychwyn gyda llythyren ac yna dim ond llythrennau, rhifau, llinellau toriad,dotiau, colonau neu danlinellau.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Mae newidiadau heb eu cadw - ydych chi wir am symud i ffwrdd?", | ||||
| "Restore last draft": "Adfer y drafft olaf", | ||||
| "Special character...": "Nod arbennig...", | ||||
| "Source code": "Cod gwreiddiol", | ||||
| "Insert\/Edit code sample": "Mewnosod\/golygu sampl cod", | ||||
| "Language": "Iaith", | ||||
| "Code sample...": "Sampl cod...", | ||||
| "Color Picker": "Dewisydd Lliw", | ||||
| "R": "C", | ||||
| "G": "Gw", | ||||
| "B": "Gl", | ||||
| "Left to right": "Chwith i'r dde", | ||||
| "Right to left": "De i'r chwith", | ||||
| "Emoticons...": "Gwenogluniau...", | ||||
| "Metadata and Document Properties": "Metaddata a Priodweddau'r ddogfen", | ||||
| "Title": "Teitl", | ||||
| "Keywords": "Allweddeiriau", | ||||
| "Description": "Disgrifiad", | ||||
| "Robots": "Robotiaid", | ||||
| "Author": "Awdur", | ||||
| "Encoding": "Amgodiad", | ||||
| "Fullscreen": "Sgrin llawn", | ||||
| "Action": "Gweithred", | ||||
| "Shortcut": "Llwybr Byr", | ||||
| "Help": "Help", | ||||
| "Address": "Cyfeiriad", | ||||
| "Focus to menubar": "Ffocws i'r bar dewislen", | ||||
| "Focus to toolbar": "Ffocws i'r bar offer", | ||||
| "Focus to element path": "Ffocws i lwybr elfen", | ||||
| "Focus to contextual toolbar": "Ffocws i far offer y cyd-destun", | ||||
| "Insert link (if link plugin activated)": "Mewnosod dolen (os yw'r ategyn dolen yn weithredol)", | ||||
| "Save (if save plugin activated)": "Cadw (os yw'r ategyn cadw yn weithredol)", | ||||
| "Find (if searchreplace plugin activated)": "Canfod (os yw'r ategyn chwilio ac amnewid yn weithredol)", | ||||
| "Plugins installed ({0}):": "Ategio wedi eu gosod ({0}):", | ||||
| "Premium plugins:": "Ategion premiwm:", | ||||
| "Learn more...": "Dysgu Mwy...", | ||||
| "You are using {0}": "Rydych yn defnyddio {0}", | ||||
| "Plugins": "Ategion", | ||||
| "Handy Shortcuts": "Llwybrau byr cyfleus", | ||||
| "Horizontal line": "Llinell lorweddol", | ||||
| "Insert\/edit image": "Mewnosod\/golygu delwedd", | ||||
| "Image description": "Disgrifiad y ddelwedd", | ||||
| "Source": "Ffynhonnell", | ||||
| "Dimensions": "Dimensiynau", | ||||
| "Constrain proportions": "Gorfodi cyfrannedd", | ||||
| "General": "Cyffredinol", | ||||
| "Advanced": "Uwch", | ||||
| "Style": "Arddull", | ||||
| "Vertical space": "Gofod fertigol", | ||||
| "Horizontal space": "Gofod llorweddol", | ||||
| "Border": "Border", | ||||
| "Insert image": "Mewnosod delwedd", | ||||
| "Image...": "Delwedd...", | ||||
| "Image list": "Rhestr delweddau", | ||||
| "Rotate counterclockwise": "Troi gwrthgloc", | ||||
| "Rotate clockwise": "Troi clocwedd", | ||||
| "Flip vertically": "Fflipio fertigol", | ||||
| "Flip horizontally": "Fflipio llorweddol", | ||||
| "Edit image": "Golygu delwedd", | ||||
| "Image options": "Dewisiadau delwedd", | ||||
| "Zoom in": "Chwyddo mewn", | ||||
| "Zoom out": "Chwyddo allan", | ||||
| "Crop": "Tocio", | ||||
| "Resize": "Ailfeintio", | ||||
| "Orientation": "Cyfeiriadaeth", | ||||
| "Brightness": "Disgleirdeb", | ||||
| "Sharpen": "Hogi", | ||||
| "Contrast": "Cyferbynnedd", | ||||
| "Color levels": "Lefelau Lliw", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Gwrthdroi", | ||||
| "Apply": "Rhoi ar waith", | ||||
| "Back": "Nol", | ||||
| "Insert date\/time": "Mewnosod dyddiad\/amser", | ||||
| "Date\/time": "Dyddiad\/amser", | ||||
| "Insert\/Edit Link": "Mewnosod\/Golygu dolen", | ||||
| "Insert\/edit link": "Mewnosod\/golygu dolen", | ||||
| "Text to display": "Testun i'w ddangos", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Agor dolen yn...", | ||||
| "Current window": "Ffenestr gyfredol", | ||||
| "None": "Dim", | ||||
| "New window": "Ffenest newydd", | ||||
| "Remove link": "Tynnu dolen", | ||||
| "Anchors": "Angorau", | ||||
| "Link...": "Dolen...", | ||||
| "Paste or type a link": "Pastio neu deipio dolen", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Mae'n debyg mai cyfeiriad e-bost yw'r URL hwn. Ydych chi am ychwanegu'r rhagddoddiad mailto:?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Mae'n debyg mai dolen allanol yw'r URL hwn. Ydych chi am ychwanegu'r rhagddodiad http:\/\/ ?", | ||||
| "Link list": "Rhestr dolenni", | ||||
| "Insert video": "Mewnosod fideo", | ||||
| "Insert\/edit video": "Mewnosod\/golygu fideo", | ||||
| "Insert\/edit media": "Mewnosod\/golygu cyfrwng", | ||||
| "Alternative source": "Ffynhonnell amgen", | ||||
| "Alternative source URL": "Ffynhonnell URL arall", | ||||
| "Media poster (Image URL)": "Poster cyfrwng (URL delwedd)", | ||||
| "Paste your embed code below:": "Gludwch eich cod mewnosod isod:", | ||||
| "Embed": "Mewnosod", | ||||
| "Media...": "Cyfrwng...", | ||||
| "Nonbreaking space": "Bwlch heb dorri", | ||||
| "Page break": "Toriad tudalen", | ||||
| "Paste as text": "Gludo fel testun", | ||||
| "Preview": "Rhagolwg", | ||||
| "Print...": "Argraffu...", | ||||
| "Save": "Cadw", | ||||
| "Find": "Chwilio", | ||||
| "Replace with": "Amnewid gyda", | ||||
| "Replace": "Amnewid", | ||||
| "Replace all": "Amnewid y cwbl", | ||||
| "Previous": "Blaenorol", | ||||
| "Next": "Nesaf", | ||||
| "Find and replace...": "Chwilio ac amnewid", | ||||
| "Could not find the specified string.": "Methu ffeindio'r llinyn hwnnw.", | ||||
| "Match case": "Cas yn cyfateb", | ||||
| "Find whole words only": "Canfod geiriau llawn yn unig", | ||||
| "Spell check": "Gwirwr sillafu", | ||||
| "Ignore": "Anwybyddu", | ||||
| "Ignore all": "Amwybyddu pob", | ||||
| "Finish": "Gorffen", | ||||
| "Add to Dictionary": "Adio i'r Geiriadur", | ||||
| "Insert table": "Mewnosod tabl", | ||||
| "Table properties": "Priodweddau tabl", | ||||
| "Delete table": "Dileu'r tabl", | ||||
| "Cell": "Cell", | ||||
| "Row": "Rhes", | ||||
| "Column": "Colofn", | ||||
| "Cell properties": "Priodweddau'r gell", | ||||
| "Merge cells": "Cyfuno celloedd", | ||||
| "Split cell": "Hollti celloedd", | ||||
| "Insert row before": "Mewnosod rhes cyn", | ||||
| "Insert row after": "Mewnosod rhes ar \u00f4l", | ||||
| "Delete row": "Dileu rhes", | ||||
| "Row properties": "Priodweddau rhes", | ||||
| "Cut row": "Torri rhes", | ||||
| "Copy row": "Cop\u00efo rhes", | ||||
| "Paste row before": "Gludo rhes cyn", | ||||
| "Paste row after": "Gludo rhes ar \u00f4l", | ||||
| "Insert column before": "Mewnosod colofn cyn", | ||||
| "Insert column after": "Mewnosod colofn ar \u00f4l", | ||||
| "Delete column": "Dileu colofn", | ||||
| "Cols": "Colofnau", | ||||
| "Rows": "Rhesi", | ||||
| "Width": "Lled", | ||||
| "Height": "Uchder", | ||||
| "Cell spacing": "Bylchiad celloedd", | ||||
| "Cell padding": "Padio celloedd", | ||||
| "Show caption": "Dangos capsiwn", | ||||
| "Left": "Chwith", | ||||
| "Center": "Canol", | ||||
| "Right": "De", | ||||
| "Cell type": "Math y gell", | ||||
| "Scope": "Cwmpas", | ||||
| "Alignment": "Aliniad", | ||||
| "H Align": "Aliniad Ll", | ||||
| "V Align": "Aliniad F", | ||||
| "Top": "Brig", | ||||
| "Middle": "Canol", | ||||
| "Bottom": "Gwaelod", | ||||
| "Header cell": "Cell bennawd", | ||||
| "Row group": "Gr\u0175p rhes", | ||||
| "Column group": "Gr\u0175p colofn", | ||||
| "Row type": "Math y rhes", | ||||
| "Header": "Pennyn", | ||||
| "Body": "Corff", | ||||
| "Footer": "Troedyn", | ||||
| "Border color": "Lliw Border", | ||||
| "Insert template...": "Mewnosod templed...", | ||||
| "Templates": "Templedi", | ||||
| "Template": "Templed", | ||||
| "Text color": "Lliw testun", | ||||
| "Background color": "Lliw cefndir", | ||||
| "Custom...": "Personol...", | ||||
| "Custom color": "Lliw personol", | ||||
| "No color": "Dim Lliw", | ||||
| "Remove color": "Tynnu lliw", | ||||
| "Table of Contents": "Tabl Cynnwys", | ||||
| "Show blocks": "Dangos blociau", | ||||
| "Show invisible characters": "Dangos nodau anweledig", | ||||
| "Word count": "Cyfri geiriau", | ||||
| "Count": "Cyfrif", | ||||
| "Document": "Dogfen", | ||||
| "Selection": "Dewis", | ||||
| "Words": "Geiriau", | ||||
| "Words: {0}": "Geiriau: {0}", | ||||
| "{0} words": "{0} o eiriau", | ||||
| "File": "Ffeil", | ||||
| "Edit": "Golygu", | ||||
| "Insert": "Mewnosod", | ||||
| "View": "Dangos", | ||||
| "Format": "Fformat", | ||||
| "Table": "Tabl", | ||||
| "Tools": "Offer", | ||||
| "Powered by {0}": "Gyrrir gan {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Ardal Testun Uwch. Pwyswch ALT-F9 ar gyfer y ddewislen, Pwyswch ALT-F10 ar gyfer y bar offer. Pwyswch ALT-0 am gymorth", | ||||
| "Image title": "Teitl delwedd", | ||||
| "Border width": "Lled border", | ||||
| "Border style": "Steil border", | ||||
| "Error": "Gwall", | ||||
| "Warn": "Rhybuddio", | ||||
| "Valid": "Dilys", | ||||
| "To open the popup, press Shift+Enter": "I agor y llamlen, pwyswch Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Ardal testun cyfoethog. Pwyswch ALT-0 am help.", | ||||
| "System Font": "Ffont system", | ||||
| "Failed to upload image: {0}": "Wedi methu uwchlwytho'r ddelwedd: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Wedi methu llwytho'r ategyn: {0} o'r url {1}", | ||||
| "Failed to load plugin url: {0}": "Wedi methu llwytho url yr ategyn: {0}", | ||||
| "Failed to initialize plugin: {0}": "Wedi methu ymgychwyn yr ategyn: {0}", | ||||
| "example": "enghraifft", | ||||
| "Search": "Chwilio", | ||||
| "All": "Y cwbl", | ||||
| "Currency": "Arian cyfred", | ||||
| "Text": "Testun", | ||||
| "Quotations": "Dyfyniadau", | ||||
| "Mathematical": "Mathemategol", | ||||
| "Extended Latin": "Lladin estynedig", | ||||
| "Symbols": "Symbolau", | ||||
| "Arrows": "Saethau", | ||||
| "User Defined": "Diffinir gan y defnyddiwr", | ||||
| "dollar sign": "Arwydd dolar", | ||||
| "currency sign": "Arwydd arian cyfred", | ||||
| "euro-currency sign": "Arwydd euro", | ||||
| "colon sign": "Arwydd colon", | ||||
| "cruzeiro sign": "Arwydd cruzeiro", | ||||
| "french franc sign": "Arwydd ffranc Ffrengig", | ||||
| "lira sign": "Arwydd lira", | ||||
| "mill sign": "arwydd mill", | ||||
| "naira sign": "arwydd naira", | ||||
| "peseta sign": "arwydd peseta", | ||||
| "rupee sign": "arwydd rupee", | ||||
| "won sign": "arwydd won", | ||||
| "new sheqel sign": "arwydd sheqel newydd", | ||||
| "dong sign": "arwydd dong", | ||||
| "kip sign": "arwydd kip", | ||||
| "tugrik sign": "arwydd tugrik", | ||||
| "drachma sign": "arwydd drachma", | ||||
| "german penny symbol": "arwydd ceiniog almaenig", | ||||
| "peso sign": "arwydd peso", | ||||
| "guarani sign": "arwydd quarani", | ||||
| "austral sign": "arwydd austral", | ||||
| "hryvnia sign": "arwydd hryvnia", | ||||
| "cedi sign": "arwydd cedi", | ||||
| "livre tournois sign": "arwydd punt tournois", | ||||
| "spesmilo sign": "arwydd spesmilo", | ||||
| "tenge sign": "arwydd tenge", | ||||
| "indian rupee sign": "arwydd rupee india", | ||||
| "turkish lira sign": "arwydd lira twrcaidd", | ||||
| "nordic mark sign": "arwydd marc nordig", | ||||
| "manat sign": "arwydd manat", | ||||
| "ruble sign": "arwydd ruble", | ||||
| "yen character": "nod yen", | ||||
| "yuan character": "nod yuan", | ||||
| "yuan character, in hong kong and taiwan": "nod yuan yn Hong Kong a Taiwan", | ||||
| "yen\/yuan character variant one": "nod yen\/yuan amrywiad un", | ||||
| "Loading emoticons...": "Yn llwytho gwenogluniau", | ||||
| "Could not load emoticons": "Wedi methu llwytho gwenogluniau", | ||||
| "People": "Pobl", | ||||
| "Animals and Nature": "Anifeiliaid a Natur", | ||||
| "Food and Drink": "Bwyd a Diod", | ||||
| "Activity": "Gweithgaredd", | ||||
| "Travel and Places": "Teithio a lleoedd", | ||||
| "Objects": "Gwrthrychau", | ||||
| "Flags": "Baneri", | ||||
| "Characters": "Nodau", | ||||
| "Characters (no spaces)": "Nodau (dim gofod)", | ||||
| "{0} characters": "{0} nod", | ||||
| "Error: Form submit field collision.": "Gwall: Gwrthdrawiad maes cyflwyno ffurflen", | ||||
| "Error: No form element found.": "Gwall: Ni chafwyd elfen ffurflen", | ||||
| "Update": "Diweddaru", | ||||
| "Color swatch": "Casgliad lliwiau", | ||||
| "Turquoise": "Gwyrddlas", | ||||
| "Green": "Gwyrdd", | ||||
| "Blue": "Glas", | ||||
| "Purple": "Porffor", | ||||
| "Navy Blue": "Dulas", | ||||
| "Dark Turquoise": "Gwyrddlas tywyll", | ||||
| "Dark Green": "Gwyrdd tywyll", | ||||
| "Medium Blue": "Glas canolig", | ||||
| "Medium Purple": "Porffor canolig", | ||||
| "Midnight Blue": "Glas y nos", | ||||
| "Yellow": "Melyn", | ||||
| "Orange": "Oren", | ||||
| "Red": "Coch", | ||||
| "Light Gray": "Llwyd golau", | ||||
| "Gray": "d", | ||||
| "Dark Yellow": "Melyn tywyll", | ||||
| "Dark Orange": "Oren tywyll", | ||||
| "Dark Red": "Coch tywyll", | ||||
| "Medium Gray": "Llwyd canolig", | ||||
| "Dark Gray": "Llwyd tywyll", | ||||
| "Light Green": "Gwyrdd Golau", | ||||
| "Light Yellow": "Melyn Golau", | ||||
| "Light Red": "Coch Golau", | ||||
| "Light Purple": "Porffor Golau", | ||||
| "Light Blue": "Glas Golau", | ||||
| "Dark Purple": "Porffor Tywyll", | ||||
| "Dark Blue": "Glas Tywyll", | ||||
| "Black": "Du", | ||||
| "White": "Gwyn", | ||||
| "Switch to or from fullscreen mode": "Newid i neu o'r modd sgr\u00een llawn", | ||||
| "Open help dialog": "Agor y ddeialog gymorth", | ||||
| "history": "hanes", | ||||
| "styles": "steiliau", | ||||
| "formatting": "fformatio", | ||||
| "alignment": "aliniad", | ||||
| "indentation": "mewnoli", | ||||
| "permanent pen": "pen sefydlog", | ||||
| "comments": "Sylwadau", | ||||
| "Format Painter": "Brwsh Fformat", | ||||
| "Insert\/edit iframe": "Mewnosod\/golygu iframe", | ||||
| "Capitalization": "Priflythrennu", | ||||
| "lowercase": "llythrennau bach", | ||||
| "UPPERCASE": "Priflythrennau", | ||||
| "Title Case": "Priflythyren i bob gair", | ||||
| "Permanent Pen Properties": "Priodweddau Yswgrifbin Parhaol", | ||||
| "Permanent pen properties...": "Priodweddau ysgrifbin parhaol...", | ||||
| "Font": "Ffont", | ||||
| "Size": "Maint", | ||||
| "More...": "Mwy...", | ||||
| "Spellcheck Language": "Iaith Gwirio Sillafu", | ||||
| "Select...": "Dewis...", | ||||
| "Preferences": "Dewisiadau", | ||||
| "Yes": "Iawn", | ||||
| "No": "Na", | ||||
| "Keyboard Navigation": "Llywio Bysellfwrdd", | ||||
| "Version": "Fersiwn", | ||||
| "Anchor": "Angor", | ||||
| "Special character": "Nod arbennig", | ||||
| "Color": "Lliw", | ||||
| "Emoticons": "Gwenogluniau", | ||||
| "Document properties": "Priodweddau'r ddogfen", | ||||
| "Image": "Delwedd", | ||||
| "Insert link": "Mewnosod dolen", | ||||
| "Link": "Dolen", | ||||
| "Target": "Targed", | ||||
| "Media": "Cyfrwng", | ||||
| "Poster": "Poster", | ||||
| "Print": "Argraffu", | ||||
| "Whole words": "Geiriau cyfan", | ||||
| "Find and replace": "Chwilio ac amnewid", | ||||
| "Prev": "Blaenorol", | ||||
| "Spellcheck": "Sillafydd", | ||||
| "Caption": "Pennawd", | ||||
| "Insert template": "Mewnosod templed" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/da.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/da.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('da',{ | ||||
| "Redo": "Gendan", | ||||
| "Undo": "Fortryd", | ||||
| "Cut": "Klip", | ||||
| "Copy": "Kopier", | ||||
| "Paste": "S\u00e6t ind", | ||||
| "Select all": "V\u00e6lg alle", | ||||
| "New document": "Nyt dokument", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Annuller", | ||||
| "Visual aids": "Visuel hj\u00e6lp", | ||||
| "Bold": "Fed", | ||||
| "Italic": "Kursiv", | ||||
| "Underline": "Understreget", | ||||
| "Strikethrough": "Gennemstreget", | ||||
| "Superscript": "H\u00e6vet skrift", | ||||
| "Subscript": "S\u00e6nket skrift", | ||||
| "Clear formatting": "Nulstil formattering", | ||||
| "Align left": "Opstil til venstre", | ||||
| "Align center": "Centrer", | ||||
| "Align right": "Opstil til h\u00f8jre", | ||||
| "Justify": "Justering", | ||||
| "Bullet list": "Punktopstillet liste", | ||||
| "Numbered list": "Nummereret liste", | ||||
| "Decrease indent": "Formindsk indrykning", | ||||
| "Increase indent": "For\u00f8g indrykning", | ||||
| "Close": "Luk", | ||||
| "Formats": "Formater", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Din browser underst\u00f8tter ikke direkte adgang til udklipsholder. Benyt Ctrl+X\/C\/ tastaturgenveje i stedet for.", | ||||
| "Headers": "Overskrifter", | ||||
| "Header 1": "Overskrift 1", | ||||
| "Header 2": "Overskrift 2", | ||||
| "Header 3": "Overskrift 3", | ||||
| "Header 4": "Overskrift 4", | ||||
| "Header 5": "Overskrift 5", | ||||
| "Header 6": "Overskrift 6", | ||||
| "Headings": "Overskrifter", | ||||
| "Heading 1": "Overskrift 1", | ||||
| "Heading 2": "Overskrift 2", | ||||
| "Heading 3": "Overskrift 3", | ||||
| "Heading 4": "Overskrift 4", | ||||
| "Heading 5": "Overskrift 5", | ||||
| "Heading 6": "Overskrift 6", | ||||
| "Preformatted": "Forudformateret", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Kode", | ||||
| "Paragraph": "Afsnit", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Inline", | ||||
| "Blocks": "Blokke", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "S\u00e6t ind er indstillet til at inds\u00e6tte som ren tekst. Indhold bliver nu indsat uden formatering indtil du \u00e6ndrer indstillingen.", | ||||
| "Fonts": "Skrifttyper", | ||||
| "Font Sizes": "Skriftst\u00f8rrelse", | ||||
| "Class": "Class", | ||||
| "Browse for an image": "S\u00f8g efter et billede", | ||||
| "OR": "OR", | ||||
| "Drop an image here": "Slip et billede her", | ||||
| "Upload": "Upload", | ||||
| "Block": "Blok\u00e9r", | ||||
| "Align": "Align", | ||||
| "Default": "Standard", | ||||
| "Circle": "Cirkel", | ||||
| "Disc": "Disk", | ||||
| "Square": "Kvadrat", | ||||
| "Lower Alpha": "Lower Alpha", | ||||
| "Lower Greek": "Lower Gr\u00e6sk", | ||||
| "Lower Roman": "Lower Roman", | ||||
| "Upper Alpha": "Upper Alpha", | ||||
| "Upper Roman": "Upper Roman", | ||||
| "Anchor...": "Anker...", | ||||
| "Name": "Navn", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id b\u00f8r starte med et bogstav, efterfulgt af bogstaver, tal, bindestreger, punktummer, koloner eller underscores.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Du har ikke gemte \u00e6ndringer. Er du sikker p\u00e5 at du vil forts\u00e6tte?", | ||||
| "Restore last draft": "Genopret sidste kladde", | ||||
| "Special character...": "Specielle tegn...", | ||||
| "Source code": "Kildekode", | ||||
| "Insert\/Edit code sample": "Inds\u00e6t\/Ret kodeeksempel", | ||||
| "Language": "Sprog", | ||||
| "Code sample...": "Kodeeksempel...", | ||||
| "Color Picker": "Farvev\u00e6lger", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Venstre til h\u00f8jre", | ||||
| "Right to left": "H\u00f8jre til venstre", | ||||
| "Emoticons...": "Emotikoner...", | ||||
| "Metadata and Document Properties": "Metadata og dokumentegenskaber", | ||||
| "Title": "Titel", | ||||
| "Keywords": "S\u00f8geord", | ||||
| "Description": "Beskrivelse", | ||||
| "Robots": "Robotter", | ||||
| "Author": "Forfatter", | ||||
| "Encoding": "Kodning", | ||||
| "Fullscreen": "Fuldsk\u00e6rm", | ||||
| "Action": "Handling", | ||||
| "Shortcut": "Genvej", | ||||
| "Help": "Hj\u00e6lp", | ||||
| "Address": "Adresse", | ||||
| "Focus to menubar": "Fokus p\u00e5 menulinjen", | ||||
| "Focus to toolbar": "Fokus p\u00e5 v\u00e6rkt\u00f8jslinjen", | ||||
| "Focus to element path": "Fokuser p\u00e5 elementvej", | ||||
| "Focus to contextual toolbar": "Fokuser p\u00e5 kontekstuelle v\u00e6rkt\u00f8jslinje", | ||||
| "Insert link (if link plugin activated)": "Inds\u00e6t link (hvis link plugin er aktiveret)", | ||||
| "Save (if save plugin activated)": "Gem (hvis save plugin er aktiveret)", | ||||
| "Find (if searchreplace plugin activated)": "Find (hvis searchreplace plugin er aktiveret)", | ||||
| "Plugins installed ({0}):": "Installerede plugins ({0}):", | ||||
| "Premium plugins:": "Premium plugins:", | ||||
| "Learn more...": "L\u00e6r mere...", | ||||
| "You are using {0}": "Du benytter {0}", | ||||
| "Plugins": "Plugins", | ||||
| "Handy Shortcuts": "Praktiske Genveje", | ||||
| "Horizontal line": "Vandret linie", | ||||
| "Insert\/edit image": "Inds\u00e6t\/ret billede", | ||||
| "Image description": "Billede beskrivelse", | ||||
| "Source": "Kilde", | ||||
| "Dimensions": "Dimensioner", | ||||
| "Constrain proportions": "Behold propertioner", | ||||
| "General": "Generet", | ||||
| "Advanced": "Avanceret", | ||||
| "Style": "Stil", | ||||
| "Vertical space": "Lodret afstand", | ||||
| "Horizontal space": "Vandret afstand", | ||||
| "Border": "Kant", | ||||
| "Insert image": "Inds\u00e6t billede", | ||||
| "Image...": "Billede...", | ||||
| "Image list": "Billede liste", | ||||
| "Rotate counterclockwise": "Drej modsat urets retning", | ||||
| "Rotate clockwise": "Drej med urets retning", | ||||
| "Flip vertically": "Flip vertikalt", | ||||
| "Flip horizontally": "Flip horisontalt", | ||||
| "Edit image": "Rediger billede", | ||||
| "Image options": "Billede indstillinger", | ||||
| "Zoom in": "Zoom ind", | ||||
| "Zoom out": "Zoom ud", | ||||
| "Crop": "Besk\u00e6r", | ||||
| "Resize": "Skaler", | ||||
| "Orientation": "Retning", | ||||
| "Brightness": "Lysstyrke", | ||||
| "Sharpen": "G\u00f8r skarpere", | ||||
| "Contrast": "Kontrast", | ||||
| "Color levels": "Farve niveauer", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Inverter", | ||||
| "Apply": "Anvend", | ||||
| "Back": "Tilbage", | ||||
| "Insert date\/time": "Inds\u00e6t dato\/klokkeslet", | ||||
| "Date\/time": "Dato\/klokkeslet", | ||||
| "Insert\/Edit Link": "Inds\u00e6t\/rediger link", | ||||
| "Insert\/edit link": "Inds\u00e6t\/ret link", | ||||
| "Text to display": "Vis tekst", | ||||
| "Url": "Url", | ||||
| "Open link in...": "\u00c5bn link med...", | ||||
| "Current window": "Aktuelle vindue", | ||||
| "None": "Ingen", | ||||
| "New window": "Nyt vindue", | ||||
| "Remove link": "Fjern link", | ||||
| "Anchors": "Ankre", | ||||
| "Link...": "Link...", | ||||
| "Paste or type a link": "Inds\u00e6t eller skriv et link", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URLen som du angav ser ud til at v\u00e6re en email adresse. \u00d8nsker du at tilf\u00f8je det kr\u00e6vede prefiks  mailto: ?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URLen som du angav ser ud til at v\u00e6re et eksternt link. \u00d8nsker du at tilf\u00f8je det kr\u00e6vede prefiks http:\/\/ ?", | ||||
| "Link list": "Link liste", | ||||
| "Insert video": "Inds\u00e6t video", | ||||
| "Insert\/edit video": "Inds\u00e6t\/ret video", | ||||
| "Insert\/edit media": "Inds\u00e6t\/ret medier", | ||||
| "Alternative source": "Alternativ kilde", | ||||
| "Alternative source URL": "Alternativ kilde URL", | ||||
| "Media poster (Image URL)": "Medieplakat (billede URL)", | ||||
| "Paste your embed code below:": "Inds\u00e6t din embed kode herunder:", | ||||
| "Embed": "Integrer", | ||||
| "Media...": "Medie...", | ||||
| "Nonbreaking space": "H\u00e5rdt mellemrum", | ||||
| "Page break": "Sideskift", | ||||
| "Paste as text": "Inds\u00e6t som ren tekst", | ||||
| "Preview": "Forh\u00e5ndsvisning", | ||||
| "Print...": "Udskriv...", | ||||
| "Save": "Gem", | ||||
| "Find": "Find", | ||||
| "Replace with": "Erstat med", | ||||
| "Replace": "Erstat", | ||||
| "Replace all": "Erstat alt", | ||||
| "Previous": "Forrige", | ||||
| "Next": "N\u00e6ste", | ||||
| "Find and replace...": "Find og erstat...", | ||||
| "Could not find the specified string.": "Kunne ikke finde s\u00f8getekst", | ||||
| "Match case": "STORE og sm\u00e5 bogstaver", | ||||
| "Find whole words only": "Find kun hele ord", | ||||
| "Spell check": "Stavekontrol", | ||||
| "Ignore": "Ignorer", | ||||
| "Ignore all": "Ignorer alt", | ||||
| "Finish": "F\u00e6rdig", | ||||
| "Add to Dictionary": "Tilf\u00f8j til ordbog", | ||||
| "Insert table": "Inds\u00e6t tabel", | ||||
| "Table properties": "Tabel egenskaber", | ||||
| "Delete table": "Slet tabel", | ||||
| "Cell": "Celle", | ||||
| "Row": "R\u00e6kke", | ||||
| "Column": "Kolonne", | ||||
| "Cell properties": "Celle egenskaber", | ||||
| "Merge cells": "Flet celler", | ||||
| "Split cell": "Split celle", | ||||
| "Insert row before": "Inds\u00e6t r\u00e6kke f\u00f8r", | ||||
| "Insert row after": "Inds\u00e6t r\u00e6kke efter", | ||||
| "Delete row": "Slet r\u00e6kke", | ||||
| "Row properties": "R\u00e6kke egenskaber", | ||||
| "Cut row": "Klip r\u00e6kke", | ||||
| "Copy row": "Kopier r\u00e6kke", | ||||
| "Paste row before": "Inds\u00e6t r\u00e6kke f\u00f8r", | ||||
| "Paste row after": "Inds\u00e6t r\u00e6kke efter", | ||||
| "Insert column before": "Inds\u00e6t kolonne f\u00f8r", | ||||
| "Insert column after": "Inds\u00e6t kolonne efter", | ||||
| "Delete column": "Slet kolonne", | ||||
| "Cols": "Kolonne", | ||||
| "Rows": "R\u00e6kker", | ||||
| "Width": "Bredde", | ||||
| "Height": "H\u00f8jde", | ||||
| "Cell spacing": "Celle afstand", | ||||
| "Cell padding": "Celle padding", | ||||
| "Show caption": "Vis overskrift", | ||||
| "Left": "Venstre", | ||||
| "Center": "Centrering", | ||||
| "Right": "H\u00f8jre", | ||||
| "Cell type": "Celle type", | ||||
| "Scope": "Anvendelsesomr\u00e5de", | ||||
| "Alignment": "Tilpasning", | ||||
| "H Align": "H juster", | ||||
| "V Align": "V juster", | ||||
| "Top": "Top", | ||||
| "Middle": "Midt", | ||||
| "Bottom": "Bund", | ||||
| "Header cell": "Sidehoved celle", | ||||
| "Row group": "R\u00e6kke gruppe", | ||||
| "Column group": "Kolonne gruppe", | ||||
| "Row type": "R\u00e6kke type", | ||||
| "Header": "Sidehoved", | ||||
| "Body": "Krop", | ||||
| "Footer": "Sidefod", | ||||
| "Border color": "Kant farve", | ||||
| "Insert template...": "Inds\u00e6t skabelon...", | ||||
| "Templates": "Skabeloner", | ||||
| "Template": "Skabelon", | ||||
| "Text color": "Tekst farve", | ||||
| "Background color": "Baggrunds farve", | ||||
| "Custom...": "Brugerdefineret...", | ||||
| "Custom color": "Brugerdefineret farve", | ||||
| "No color": "Ingen farve", | ||||
| "Remove color": "Fjern farve", | ||||
| "Table of Contents": "Indholdsfortegnelse", | ||||
| "Show blocks": "Vis klokke", | ||||
| "Show invisible characters": "Vis usynlige tegn", | ||||
| "Word count": "Optalte ord", | ||||
| "Count": "Antal", | ||||
| "Document": "Dokument", | ||||
| "Selection": "Valg", | ||||
| "Words": "Ord", | ||||
| "Words: {0}": "Ord: {0}", | ||||
| "{0} words": "{0} ord", | ||||
| "File": "Fil", | ||||
| "Edit": "Rediger", | ||||
| "Insert": "Inds\u00e6t", | ||||
| "View": "Vis", | ||||
| "Format": "Format", | ||||
| "Table": "Tabel", | ||||
| "Tools": "V\u00e6rkt\u00f8j", | ||||
| "Powered by {0}": "Drevet af {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text omr\u00e5de. Tryk ALT-F9 for menu. Tryk ALT-F10 for toolbar. Tryk ALT-0 for hj\u00e6lp", | ||||
| "Image title": "Billedtitel", | ||||
| "Border width": "Kantbredde", | ||||
| "Border style": "Kantstil", | ||||
| "Error": "Fejl", | ||||
| "Warn": "Advar", | ||||
| "Valid": "Gyldig", | ||||
| "To open the popup, press Shift+Enter": "Tryk skift + enter for at \u00e5bne pop op", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Rich tekst omr\u00e5de. Tryk p\u00e5 ALT-0 for hj\u00e6lp.", | ||||
| "System Font": "Systemskrifttype", | ||||
| "Failed to upload image: {0}": "Mislykket billed-upload:", | ||||
| "Failed to load plugin: {0} from url {1}": "Mislykket plugin indl\u00e6sning: {0}  fra url {1}", | ||||
| "Failed to load plugin url: {0}": "Mislykket indl\u00e6sning af plugin-url: {0}", | ||||
| "Failed to initialize plugin: {0}": "Mislykket initiering a plugin: {0}", | ||||
| "example": "eksempel", | ||||
| "Search": "S\u00f8g", | ||||
| "All": "Alle", | ||||
| "Currency": "Valuta", | ||||
| "Text": "Tekst", | ||||
| "Quotations": "Anf\u00f8rselstegn", | ||||
| "Mathematical": "Matematiske tegn", | ||||
| "Extended Latin": "Udvidet Latin", | ||||
| "Symbols": "Symboler", | ||||
| "Arrows": "Pile", | ||||
| "User Defined": "Brugerdefineret", | ||||
| "dollar sign": "dollartegn", | ||||
| "currency sign": "valutategn", | ||||
| "euro-currency sign": "euro-tegn", | ||||
| "colon sign": "kolontegn", | ||||
| "cruzeiro sign": "cruzeiro-tegn", | ||||
| "french franc sign": "fransk frank-tegn", | ||||
| "lira sign": "lira-tegn", | ||||
| "mill sign": "mill-tegn", | ||||
| "naira sign": "naira-tegn", | ||||
| "peseta sign": "peseta-tegn", | ||||
| "rupee sign": "rupee-tegn", | ||||
| "won sign": "won-tegn", | ||||
| "new sheqel sign": "ny sheqel-tegn", | ||||
| "dong sign": "dong-tegn", | ||||
| "kip sign": "kip-tegn", | ||||
| "tugrik sign": "tugrik-tegn", | ||||
| "drachma sign": "drakmer-tegn", | ||||
| "german penny symbol": "tysk penny-symbol", | ||||
| "peso sign": "peso-tegn", | ||||
| "guarani sign": "guarani-tegn", | ||||
| "austral sign": "austral-tegn", | ||||
| "hryvnia sign": "hryvnia-tegn", | ||||
| "cedi sign": "cedi-tegn", | ||||
| "livre tournois sign": "livre tournois-tegn", | ||||
| "spesmilo sign": "spesmilo-tegn", | ||||
| "tenge sign": "tenge-tegn", | ||||
| "indian rupee sign": "indisk rupee-tegn", | ||||
| "turkish lira sign": "tyrkisk lira-tegn", | ||||
| "nordic mark sign": "nordisk mark-tegn", | ||||
| "manat sign": "manat-tegn", | ||||
| "ruble sign": "rubel-tegn", | ||||
| "yen character": "yen-tegn", | ||||
| "yuan character": "yuan-tegn", | ||||
| "yuan character, in hong kong and taiwan": "yuan-tegn, i hong kong og taiwan", | ||||
| "yen\/yuan character variant one": "yen\/yuan-tegn variant en", | ||||
| "Loading emoticons...": "Indl\u00e6ser emotikoner...", | ||||
| "Could not load emoticons": "Kunne ikke indl\u00e6se emotikoner", | ||||
| "People": "Folk", | ||||
| "Animals and Nature": "Dyr og natur", | ||||
| "Food and Drink": "F\u00f8de og drikke", | ||||
| "Activity": "Aktivitet", | ||||
| "Travel and Places": "Rejser og steder", | ||||
| "Objects": "Objekter", | ||||
| "Flags": "Flag", | ||||
| "Characters": "Tegn", | ||||
| "Characters (no spaces)": "Tegn (uden mellemrum)", | ||||
| "{0} characters": "{0} tegn", | ||||
| "Error: Form submit field collision.": "Fejl: Form submit felt kollision", | ||||
| "Error: No form element found.": "Fejl: Ingen form element fundet.", | ||||
| "Update": "Opdater", | ||||
| "Color swatch": "Farvepr\u00f8ve", | ||||
| "Turquoise": "Turkis", | ||||
| "Green": "Gr\u00f8n", | ||||
| "Blue": "Bl\u00e5", | ||||
| "Purple": "Lilla", | ||||
| "Navy Blue": "Marinebl\u00e5", | ||||
| "Dark Turquoise": "M\u00f8rketurkis", | ||||
| "Dark Green": "M\u00f8rkegr\u00f8n", | ||||
| "Medium Blue": "Medium bl\u00e5", | ||||
| "Medium Purple": "Medium lilla", | ||||
| "Midnight Blue": "Midnatsbl\u00e5", | ||||
| "Yellow": "Gul", | ||||
| "Orange": "Orange", | ||||
| "Red": "R\u00f8d", | ||||
| "Light Gray": "Lysegr\u00e5", | ||||
| "Gray": "Gr\u00e5", | ||||
| "Dark Yellow": "M\u00f8rkegul", | ||||
| "Dark Orange": "M\u00f8rkeorange", | ||||
| "Dark Red": "M\u00f8rker\u00f8d", | ||||
| "Medium Gray": "Mellemgr\u00e5", | ||||
| "Dark Gray": "M\u00f8rkegr\u00e5", | ||||
| "Light Green": "Lysegr\u00f8n", | ||||
| "Light Yellow": "Lysegul", | ||||
| "Light Red": "Lyser\u00f8d", | ||||
| "Light Purple": "Lyslilla", | ||||
| "Light Blue": "Lysebl\u00e5", | ||||
| "Dark Purple": "M\u00f8rkelilla", | ||||
| "Dark Blue": "M\u00f8rkebl\u00e5", | ||||
| "Black": "Sort", | ||||
| "White": "Hvid", | ||||
| "Switch to or from fullscreen mode": "Skift til eller fra fuldsk\u00e6rmstilstand", | ||||
| "Open help dialog": "\u00c5bn hj\u00e6lpedialog", | ||||
| "history": "historie", | ||||
| "styles": "stile", | ||||
| "formatting": "formatering", | ||||
| "alignment": "justering", | ||||
| "indentation": "indrykning", | ||||
| "permanent pen": "permanent pen", | ||||
| "comments": "kommentarer", | ||||
| "Format Painter": "Formatpensel", | ||||
| "Insert\/edit iframe": "Inds\u00e6t\/rediger iframe", | ||||
| "Capitalization": "Store bogstaver", | ||||
| "lowercase": "sm\u00e5 bogstaver", | ||||
| "UPPERCASE": "STORE BOGSTAVER", | ||||
| "Title Case": "Stort begyndelsesbogstav", | ||||
| "Permanent Pen Properties": "Permanente penegenskaber", | ||||
| "Permanent pen properties...": "Permanente penegenskaber...", | ||||
| "Font": "Skrifttype", | ||||
| "Size": "St\u00f8rrelse", | ||||
| "More...": "Mere...", | ||||
| "Spellcheck Language": "Sprog til stavekontrol", | ||||
| "Select...": "V\u00e6lg...", | ||||
| "Preferences": "Pr\u00e6ferencer", | ||||
| "Yes": "Ja", | ||||
| "No": "Nej", | ||||
| "Keyboard Navigation": "Navigation med tastatur", | ||||
| "Version": "Version", | ||||
| "Anchor": "Anchor", | ||||
| "Special character": "Specielle tegn", | ||||
| "Code sample": "Kodepr\u00f8ve", | ||||
| "Color": "Farve", | ||||
| "Emoticons": "Emot-ikoner", | ||||
| "Document properties": "Dokument egenskaber", | ||||
| "Image": "Billede", | ||||
| "Insert link": "Inds\u00e6t link", | ||||
| "Target": "Target", | ||||
| "Link": "Link", | ||||
| "Poster": "Poster", | ||||
| "Media": "Medier", | ||||
| "Print": "Udskriv", | ||||
| "Prev": "Forrige", | ||||
| "Find and replace": "Find og erstat", | ||||
| "Whole words": "Hele ord", | ||||
| "Spellcheck": "Stavekontrol", | ||||
| "Caption": "Tekst", | ||||
| "Insert template": "Inds\u00e6t skabelon" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/de.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/de.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('de',{ | ||||
| "Redo": "Wiederholen", | ||||
| "Undo": "R\u00fcckg\u00e4ngig machen", | ||||
| "Cut": "Ausschneiden", | ||||
| "Copy": "Kopieren", | ||||
| "Paste": "Einf\u00fcgen", | ||||
| "Select all": "Alles ausw\u00e4hlen", | ||||
| "New document": "Neues Dokument", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Abbrechen", | ||||
| "Visual aids": "Visuelle Hilfen", | ||||
| "Bold": "Fett", | ||||
| "Italic": "Kursiv", | ||||
| "Underline": "Unterstrichen", | ||||
| "Strikethrough": "Durchgestrichen", | ||||
| "Superscript": "Hochgestellt", | ||||
| "Subscript": "Tiefgestellt", | ||||
| "Clear formatting": "Formatierung entfernen", | ||||
| "Align left": "Linksb\u00fcndig ausrichten", | ||||
| "Align center": "Zentrieren", | ||||
| "Align right": "Rechtsb\u00fcndig ausrichten", | ||||
| "Justify": "Blocksatz", | ||||
| "Bullet list": "Aufz\u00e4hlung", | ||||
| "Numbered list": "Nummerierte Liste", | ||||
| "Decrease indent": "Einzug verkleinern", | ||||
| "Increase indent": "Einzug vergr\u00f6\u00dfern", | ||||
| "Close": "Schlie\u00dfen", | ||||
| "Formats": "Formate", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Ihr Browser unterst\u00fctzt leider keinen direkten Zugriff auf die Zwischenablage. Bitte benutzen Sie die Tastenkombinationen Strg+X\/C\/V.", | ||||
| "Headers": "\u00dcberschriften", | ||||
| "Header 1": "\u00dcberschrift 1", | ||||
| "Header 2": "\u00dcberschrift 2", | ||||
| "Header 3": "\u00dcberschrift 3", | ||||
| "Header 4": "\u00dcberschrift 4", | ||||
| "Header 5": "\u00dcberschrift 5", | ||||
| "Header 6": "\u00dcberschrift 6", | ||||
| "Headings": "\u00dcberschriften", | ||||
| "Heading 1": "Kopfzeile 1", | ||||
| "Heading 2": "Kopfzeile 2", | ||||
| "Heading 3": "Kopfzeile 3", | ||||
| "Heading 4": "Kopfzeile 4", | ||||
| "Heading 5": "Kopfzeile 5", | ||||
| "Heading 6": "Kopfzeile 6", | ||||
| "Preformatted": "Vorformatiert", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Code", | ||||
| "Paragraph": "Absatz", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Zeichenformate", | ||||
| "Blocks": "Bl\u00f6cke", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Einf\u00fcgen ist nun im einfachen Textmodus. Inhalte werden ab jetzt als unformatierter Text eingef\u00fcgt, bis Sie diese Einstellung wieder ausschalten!", | ||||
| "Fonts": "Schriftarten", | ||||
| "Font Sizes": "Schriftgr\u00f6\u00dfe", | ||||
| "Class": "Klasse", | ||||
| "Browse for an image": "Bild...", | ||||
| "OR": "ODER", | ||||
| "Drop an image here": "Bild hier ablegen", | ||||
| "Upload": "Hochladen", | ||||
| "Block": "Blocksatz", | ||||
| "Align": "Ausrichten", | ||||
| "Default": "Standard", | ||||
| "Circle": "Kreis", | ||||
| "Disc": "Punkt", | ||||
| "Square": "Quadrat", | ||||
| "Lower Alpha": "Kleinbuchstaben", | ||||
| "Lower Greek": "Griechische Kleinbuchstaben", | ||||
| "Lower Roman": "R\u00f6mische Zahlen (Kleinbuchstaben)", | ||||
| "Upper Alpha": "Gro\u00dfbuchstaben", | ||||
| "Upper Roman": "R\u00f6mische Zahlen (Gro\u00dfbuchstaben)", | ||||
| "Anchor...": "Textmarke", | ||||
| "Name": "Name", | ||||
| "Id": "Kennung", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Die Kennung sollte mit einem Buchstaben anfangen. Nachfolgend nur Buchstaben, Zahlen, Striche (Minus), Punkte, Kommas und Unterstriche.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Die \u00c4nderungen wurden noch nicht gespeichert, sind Sie sicher, dass Sie diese Seite verlassen wollen?", | ||||
| "Restore last draft": "Letzten Entwurf wiederherstellen", | ||||
| "Special character...": "Sonderzeichen...", | ||||
| "Source code": "Quelltext", | ||||
| "Insert\/Edit code sample": "Codebeispiel einf\u00fcgen\/bearbeiten", | ||||
| "Language": "Sprache", | ||||
| "Code sample...": "Codebeispiel...", | ||||
| "Color Picker": "Farbwahl", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Von links nach rechts", | ||||
| "Right to left": "Von rechts nach links", | ||||
| "Emoticons...": "Emoticons...", | ||||
| "Metadata and Document Properties": "Dokument-Eigenschaften und -Metadaten", | ||||
| "Title": "Titel", | ||||
| "Keywords": "Sch\u00fcsselw\u00f6rter", | ||||
| "Description": "Beschreibung", | ||||
| "Robots": "Robots", | ||||
| "Author": "Verfasser", | ||||
| "Encoding": "Zeichenkodierung", | ||||
| "Fullscreen": "Vollbild", | ||||
| "Action": "Aktion", | ||||
| "Shortcut": "Shortcut", | ||||
| "Help": "Hilfe", | ||||
| "Address": "Adresse", | ||||
| "Focus to menubar": "Fokus auf Men\u00fcleiste", | ||||
| "Focus to toolbar": "Fokus auf Werkzeugleiste", | ||||
| "Focus to element path": "Fokus auf Elementpfad", | ||||
| "Focus to contextual toolbar": "Fokus auf kontextbezogene Werkzeugleiste", | ||||
| "Insert link (if link plugin activated)": "Link einf\u00fcgen (wenn Link-Plugin aktiviert ist)", | ||||
| "Save (if save plugin activated)": "Speichern (wenn Save-Plugin aktiviert ist)", | ||||
| "Find (if searchreplace plugin activated)": "Suchen einf\u00fcgen (wenn Suchen\/Ersetzen-Plugin aktiviert ist)", | ||||
| "Plugins installed ({0}):": "installierte Plugins ({0}):", | ||||
| "Premium plugins:": "Premium Plugins:", | ||||
| "Learn more...": "Erfahren Sie mehr dazu...", | ||||
| "You are using {0}": "Sie verwenden {0}", | ||||
| "Plugins": "Plugins", | ||||
| "Handy Shortcuts": "Praktische Tastenkombinationen", | ||||
| "Horizontal line": "Horizontale Linie", | ||||
| "Insert\/edit image": "Bild einf\u00fcgen\/bearbeiten", | ||||
| "Image description": "Bildbeschreibung", | ||||
| "Source": "Quelle", | ||||
| "Dimensions": "Abmessungen", | ||||
| "Constrain proportions": "Seitenverh\u00e4ltnis beibehalten", | ||||
| "General": "Allgemein", | ||||
| "Advanced": "Erweitert", | ||||
| "Style": "Stil", | ||||
| "Vertical space": "Vertikaler Abstand", | ||||
| "Horizontal space": "Horizontaler Abstand", | ||||
| "Border": "Rahmen", | ||||
| "Insert image": "Bild einf\u00fcgen", | ||||
| "Image...": "Bild...", | ||||
| "Image list": "Bildliste", | ||||
| "Rotate counterclockwise": "Gegen den Uhrzeigersinn drehen", | ||||
| "Rotate clockwise": "Im Uhrzeigersinn drehen", | ||||
| "Flip vertically": "Vertikal spiegeln", | ||||
| "Flip horizontally": "Horizontal spiegeln", | ||||
| "Edit image": "Bild bearbeiten", | ||||
| "Image options": "Bildeigenschaften", | ||||
| "Zoom in": "Ansicht vergr\u00f6\u00dfern", | ||||
| "Zoom out": "Ansicht verkleinern", | ||||
| "Crop": "Bescheiden", | ||||
| "Resize": "Skalieren", | ||||
| "Orientation": "Ausrichtung", | ||||
| "Brightness": "Helligkeit", | ||||
| "Sharpen": "Sch\u00e4rfen", | ||||
| "Contrast": "Kontrast", | ||||
| "Color levels": "Farbwerte", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Invertieren", | ||||
| "Apply": "Anwenden", | ||||
| "Back": "Zur\u00fcck", | ||||
| "Insert date\/time": "Datum\/Uhrzeit einf\u00fcgen ", | ||||
| "Date\/time": "Datum\/Uhrzeit", | ||||
| "Insert\/Edit Link": "Link einf\u00fcgen\/bearbeiten", | ||||
| "Insert\/edit link": "Link einf\u00fcgen\/bearbeiten", | ||||
| "Text to display": "Anzuzeigender Text", | ||||
| "Url": "URL", | ||||
| "Open link in...": "Link \u00f6ffnen in...", | ||||
| "Current window": "Aktuelles Fenster", | ||||
| "None": "Keine", | ||||
| "New window": "Neues Fenster", | ||||
| "Remove link": "Link entfernen", | ||||
| "Anchors": "Textmarken", | ||||
| "Link...": "Link...", | ||||
| "Paste or type a link": "Link einf\u00fcgen oder eintippen", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Diese Adresse scheint eine E-Mail-Adresse zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"mailto:\" voranstellen?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Diese Adresse scheint ein externer Link zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"http:\/\/\" voranstellen?", | ||||
| "Link list": "Linkliste", | ||||
| "Insert video": "Video einf\u00fcgen", | ||||
| "Insert\/edit video": "Video einf\u00fcgen\/bearbeiten", | ||||
| "Insert\/edit media": "Medien einf\u00fcgen\/bearbeiten", | ||||
| "Alternative source": "Alternative Quelle", | ||||
| "Alternative source URL": "URL der alternativen Quelle", | ||||
| "Media poster (Image URL)": "Medienposter (Bild-URL)", | ||||
| "Paste your embed code below:": "F\u00fcgen Sie Ihren Einbettungscode hier ein:", | ||||
| "Embed": "Einbetten", | ||||
| "Media...": "Medien...", | ||||
| "Nonbreaking space": "Gesch\u00fctztes Leerzeichen", | ||||
| "Page break": "Seitenumbruch", | ||||
| "Paste as text": "Als Text einf\u00fcgen", | ||||
| "Preview": "Vorschau", | ||||
| "Print...": "Drucken...", | ||||
| "Save": "Speichern", | ||||
| "Find": "Suchen", | ||||
| "Replace with": "Ersetzen durch", | ||||
| "Replace": "Ersetzen", | ||||
| "Replace all": "Alles ersetzen", | ||||
| "Previous": "Vorherige", | ||||
| "Next": "Weiter", | ||||
| "Find and replace...": "Suchen und ersetzen...", | ||||
| "Could not find the specified string.": "Die Zeichenfolge wurde nicht gefunden.", | ||||
| "Match case": "Gro\u00df-\/Kleinschreibung beachten", | ||||
| "Find whole words only": "Nur ganze W\u00f6rter suchen", | ||||
| "Spell check": "Rechschreibpr\u00fcfung", | ||||
| "Ignore": "Ignorieren", | ||||
| "Ignore all": "Alles Ignorieren", | ||||
| "Finish": "Ende", | ||||
| "Add to Dictionary": "Zum W\u00f6rterbuch hinzuf\u00fcgen", | ||||
| "Insert table": "Tabelle einf\u00fcgen", | ||||
| "Table properties": "Tabelleneigenschaften", | ||||
| "Delete table": "Tabelle l\u00f6schen", | ||||
| "Cell": "Zelle", | ||||
| "Row": "Zeile", | ||||
| "Column": "Spalte", | ||||
| "Cell properties": "Zelleneigenschaften", | ||||
| "Merge cells": "Zellen verbinden", | ||||
| "Split cell": "Zelle aufteilen", | ||||
| "Insert row before": "Neue Zeile davor einf\u00fcgen ", | ||||
| "Insert row after": "Neue Zeile danach einf\u00fcgen", | ||||
| "Delete row": "Zeile l\u00f6schen", | ||||
| "Row properties": "Zeileneigenschaften", | ||||
| "Cut row": "Zeile ausschneiden", | ||||
| "Copy row": "Zeile kopieren", | ||||
| "Paste row before": "Zeile davor einf\u00fcgen", | ||||
| "Paste row after": "Zeile danach einf\u00fcgen", | ||||
| "Insert column before": "Neue Spalte davor einf\u00fcgen", | ||||
| "Insert column after": "Neue Spalte danach einf\u00fcgen", | ||||
| "Delete column": "Spalte l\u00f6schen", | ||||
| "Cols": "Spalten", | ||||
| "Rows": "Zeilen", | ||||
| "Width": "Breite", | ||||
| "Height": "H\u00f6he", | ||||
| "Cell spacing": "Zellenabstand", | ||||
| "Cell padding": "Zelleninnenabstand", | ||||
| "Show caption": "Beschriftung anzeigen", | ||||
| "Left": "Linksb\u00fcndig", | ||||
| "Center": "Zentriert", | ||||
| "Right": "Rechtsb\u00fcndig", | ||||
| "Cell type": "Zellentyp", | ||||
| "Scope": "G\u00fcltigkeitsbereich", | ||||
| "Alignment": "Ausrichtung", | ||||
| "H Align": "Horizontale Ausrichtung", | ||||
| "V Align": "Vertikale Ausrichtung", | ||||
| "Top": "Oben", | ||||
| "Middle": "Mitte", | ||||
| "Bottom": "Unten", | ||||
| "Header cell": "Kopfzelle", | ||||
| "Row group": "Zeilengruppe", | ||||
| "Column group": "Spaltengruppe", | ||||
| "Row type": "Zeilentyp", | ||||
| "Header": "Kopfzeile", | ||||
| "Body": "Inhalt", | ||||
| "Footer": "Fu\u00dfzeile", | ||||
| "Border color": "Rahmenfarbe", | ||||
| "Insert template...": "Vorlage einf\u00fcgen...", | ||||
| "Templates": "Vorlagen", | ||||
| "Template": "Vorlage", | ||||
| "Text color": "Textfarbe", | ||||
| "Background color": "Hintergrundfarbe", | ||||
| "Custom...": "Benutzerdefiniert...", | ||||
| "Custom color": "Benutzerdefinierte Farbe", | ||||
| "No color": "Keine Farbe", | ||||
| "Remove color": "Farbauswahl aufheben", | ||||
| "Table of Contents": "Inhaltsverzeichnis", | ||||
| "Show blocks": "Bl\u00f6cke anzeigen", | ||||
| "Show invisible characters": "Unsichtbare Zeichen anzeigen", | ||||
| "Word count": "Anzahl der W\u00f6rter", | ||||
| "Count": "Anzahl", | ||||
| "Document": "Dokument", | ||||
| "Selection": "Auswahl", | ||||
| "Words": "W\u00f6rter", | ||||
| "Words: {0}": "W\u00f6rter: {0}", | ||||
| "{0} words": "{0} W\u00f6rter", | ||||
| "File": "Datei", | ||||
| "Edit": "Bearbeiten", | ||||
| "Insert": "Einf\u00fcgen", | ||||
| "View": "Ansicht", | ||||
| "Format": "Format", | ||||
| "Table": "Tabelle", | ||||
| "Tools": "Werkzeuge", | ||||
| "Powered by {0}": "Betrieben von {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich-Text- Area. Dr\u00fccken Sie ALT-F9 f\u00fcr das Men\u00fc. Dr\u00fccken Sie ALT-F10 f\u00fcr Symbolleiste. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe", | ||||
| "Image title": "Bildtitel", | ||||
| "Border width": "Rahmenbreite", | ||||
| "Border style": "Rahmenstil", | ||||
| "Error": "Fehler", | ||||
| "Warn": "Warnung", | ||||
| "Valid": "G\u00fcltig", | ||||
| "To open the popup, press Shift+Enter": "Dr\u00fccken Sie Umschalt+Eingabe, um das Popup-Fenster zu \u00f6ffnen.", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Rich-Text-Bereich. Dr\u00fccken Sie Alt+0 f\u00fcr Hilfe.", | ||||
| "System Font": "Betriebssystemschriftart", | ||||
| "Failed to upload image: {0}": "Bild konnte nicht hochgeladen werden: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Plugin konnte nicht geladen werden: {0} von URL {1}", | ||||
| "Failed to load plugin url: {0}": "Plugin-URL konnte nicht geladen werden: {0}", | ||||
| "Failed to initialize plugin: {0}": "Plugin konnte nicht initialisiert werden: {0}", | ||||
| "example": "Beispiel", | ||||
| "Search": "Suchen", | ||||
| "All": "Alles", | ||||
| "Currency": "W\u00e4hrung", | ||||
| "Text": "Text", | ||||
| "Quotations": "Anf\u00fchrungszeichen", | ||||
| "Mathematical": "Mathematisch", | ||||
| "Extended Latin": "Erweitertes Latein", | ||||
| "Symbols": "Symbole", | ||||
| "Arrows": "Pfeile", | ||||
| "User Defined": "Benutzerdefiniert", | ||||
| "dollar sign": "Dollarzeichen", | ||||
| "currency sign": "W\u00e4hrungssymbol", | ||||
| "euro-currency sign": "Eurozeichen", | ||||
| "colon sign": "Doppelpunkt", | ||||
| "cruzeiro sign": "Cruzeirozeichen", | ||||
| "french franc sign": "Franczeichen", | ||||
| "lira sign": "Lirezeichen", | ||||
| "mill sign": "Millzeichen", | ||||
| "naira sign": "Nairazeichen", | ||||
| "peseta sign": "Pesetazeichen", | ||||
| "rupee sign": "Rupiezeichen", | ||||
| "won sign": "Wonzeichen", | ||||
| "new sheqel sign": "Schekelzeichen", | ||||
| "dong sign": "Dongzeichen", | ||||
| "kip sign": "Kipzeichen", | ||||
| "tugrik sign": "Tugrikzeichen", | ||||
| "drachma sign": "Drachmezeichen", | ||||
| "german penny symbol": "Pfennigzeichen", | ||||
| "peso sign": "Pesozeichen", | ||||
| "guarani sign": "Guaranizeichen", | ||||
| "austral sign": "Australzeichen", | ||||
| "hryvnia sign": "Hrywnjazeichen", | ||||
| "cedi sign": "Cedizeichen", | ||||
| "livre tournois sign": "Livrezeichen", | ||||
| "spesmilo sign": "Spesmilozeichen", | ||||
| "tenge sign": "Tengezeichen", | ||||
| "indian rupee sign": "Indisches Rupiezeichen", | ||||
| "turkish lira sign": "T\u00fcrkisches Lirazeichen", | ||||
| "nordic mark sign": "Zeichen nordische Mark", | ||||
| "manat sign": "Manatzeichen", | ||||
| "ruble sign": "Rubelzeichen", | ||||
| "yen character": "Yenzeichen", | ||||
| "yuan character": "Yuanzeichen", | ||||
| "yuan character, in hong kong and taiwan": "Yuanzeichen in Hongkong und Taiwan", | ||||
| "yen\/yuan character variant one": "Yen-\/Yuanzeichen Variante 1", | ||||
| "Loading emoticons...": "Emoticons werden geladen...", | ||||
| "Could not load emoticons": "Emoticons konnten nicht geladen werden", | ||||
| "People": "Menschen", | ||||
| "Animals and Nature": "Tiere und Natur", | ||||
| "Food and Drink": "Essen und Trinken", | ||||
| "Activity": "Aktivit\u00e4t", | ||||
| "Travel and Places": "Reisen und Orte", | ||||
| "Objects": "Objekte", | ||||
| "Flags": "Flaggen", | ||||
| "Characters": "Zeichen", | ||||
| "Characters (no spaces)": "Zeichen (ohne Leerzeichen)", | ||||
| "{0} characters": "{0}\u00a0Zeichen", | ||||
| "Error: Form submit field collision.": "Fehler: Kollision der Formularbest\u00e4tigungsfelder.", | ||||
| "Error: No form element found.": "Fehler: Kein Formularelement gefunden.", | ||||
| "Update": "Aktualisieren", | ||||
| "Color swatch": "Farbpalette", | ||||
| "Turquoise": "T\u00fcrkis", | ||||
| "Green": "Gr\u00fcn", | ||||
| "Blue": "Blau", | ||||
| "Purple": "Violett", | ||||
| "Navy Blue": "Marineblau", | ||||
| "Dark Turquoise": "Dunkelt\u00fcrkis", | ||||
| "Dark Green": "Dunkelgr\u00fcn", | ||||
| "Medium Blue": "Mittleres Blau", | ||||
| "Medium Purple": "Mittelviolett", | ||||
| "Midnight Blue": "Mitternachtsblau", | ||||
| "Yellow": "Gelb", | ||||
| "Orange": "Orange", | ||||
| "Red": "Rot", | ||||
| "Light Gray": "Hellgrau", | ||||
| "Gray": "Grau", | ||||
| "Dark Yellow": "Dunkelgelb", | ||||
| "Dark Orange": "Dunkelorange", | ||||
| "Dark Red": "Dunkelrot", | ||||
| "Medium Gray": "Mittelgrau", | ||||
| "Dark Gray": "Dunkelgrau", | ||||
| "Light Green": "Hellgr\u00fcn", | ||||
| "Light Yellow": "Hellgelb", | ||||
| "Light Red": "Hellrot", | ||||
| "Light Purple": "Helllila", | ||||
| "Light Blue": "Hellblau", | ||||
| "Dark Purple": "Dunkellila", | ||||
| "Dark Blue": "Dunkelblau", | ||||
| "Black": "Schwarz", | ||||
| "White": "Wei\u00df", | ||||
| "Switch to or from fullscreen mode": "Vollbildmodus umschalten", | ||||
| "Open help dialog": "Hilfe-Dialog \u00f6ffnen", | ||||
| "history": "Historie", | ||||
| "styles": "Stile", | ||||
| "formatting": "Formatierung", | ||||
| "alignment": "Ausrichtung", | ||||
| "indentation": "Einr\u00fcckungen", | ||||
| "permanent pen": "Textmarker", | ||||
| "comments": "Anmerkungen", | ||||
| "Format Painter": "Format-Painter", | ||||
| "Insert\/edit iframe": "iframe einf\u00fcgen\/bearbeiten", | ||||
| "Capitalization": "Gro\u00dfschreibung", | ||||
| "lowercase": "Kleinbuchstaben", | ||||
| "UPPERCASE": "Gro\u00dfbuchstaben", | ||||
| "Title Case": "Gro\u00df-\/Kleinschreibung des Titels", | ||||
| "Permanent Pen Properties": "Eigenschaften von Permanent Pen", | ||||
| "Permanent pen properties...": "Eigenschaften von Permanent Pen...", | ||||
| "Font": "Schriftart", | ||||
| "Size": "Schriftgr\u00f6\u00dfe", | ||||
| "More...": "Mehr...", | ||||
| "Spellcheck Language": "Sprache f\u00fcr die Rechtschreibpr\u00fcfung", | ||||
| "Select...": "Auswahl...", | ||||
| "Preferences": "Einstellungen", | ||||
| "Yes": "Ja", | ||||
| "No": "Nein", | ||||
| "Keyboard Navigation": "Tastaturnavigation", | ||||
| "Version": "Version", | ||||
| "Anchor": "Textmarke", | ||||
| "Special character": "Sonderzeichen", | ||||
| "Code sample": "Codebeispiel", | ||||
| "Color": "Farbe", | ||||
| "Emoticons": "Emoticons", | ||||
| "Document properties": "Dokumenteigenschaften", | ||||
| "Image": "Bild", | ||||
| "Insert link": "Link einf\u00fcgen", | ||||
| "Target": "Ziel", | ||||
| "Link": "Link", | ||||
| "Poster": "Poster", | ||||
| "Media": "Medium", | ||||
| "Print": "Drucken", | ||||
| "Prev": "Zur\u00fcck", | ||||
| "Find and replace": "Suchen und ersetzen", | ||||
| "Whole words": "Nur ganze W\u00f6rter", | ||||
| "Spellcheck": "Rechtschreibpr\u00fcfung", | ||||
| "Caption": "Beschriftung", | ||||
| "Insert template": "Vorlage einf\u00fcgen " | ||||
| }); | ||||
							
								
								
									
										261
									
								
								Modules/TinyMCE/langs/el.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										261
									
								
								Modules/TinyMCE/langs/el.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,261 @@ | ||||
| tinymce.addI18n('el',{ | ||||
| "Redo": "\u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7", | ||||
| "Undo": "\u0391\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7", | ||||
| "Cut": "\u0391\u03c0\u03bf\u03ba\u03bf\u03c0\u03ae", | ||||
| "Copy": "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae", | ||||
| "Paste": "\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7", | ||||
| "Select all": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03cc\u03bb\u03c9\u03bd", | ||||
| "New document": "\u039d\u03ad\u03bf \u03ad\u03b3\u03b3\u03c1\u03b1\u03c6\u03bf", | ||||
| "Ok": "\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9", | ||||
| "Cancel": "\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7", | ||||
| "Visual aids": "O\u03c0\u03c4\u03b9\u03ba\u03ac \u03b2\u03bf\u03b7\u03b8\u03ae\u03bc\u03b1\u03c4\u03b1 ", | ||||
| "Bold": "\u0388\u03bd\u03c4\u03bf\u03bd\u03b7", | ||||
| "Italic": "\u03a0\u03bb\u03ac\u03b3\u03b9\u03b1", | ||||
| "Underline": "\u03a5\u03c0\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b9\u03c3\u03b7", | ||||
| "Strikethrough": "\u0394\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03ae \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae", | ||||
| "Superscript": "\u0395\u03ba\u03b8\u03ad\u03c4\u03b7\u03c2", | ||||
| "Subscript": "\u0394\u03b5\u03af\u03ba\u03c4\u03b7\u03c2", | ||||
| "Clear formatting": "\u0391\u03c0\u03b1\u03bb\u03bf\u03b9\u03c6\u03ae \u03bc\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2", | ||||
| "Align left": "\u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7 \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac", | ||||
| "Align center": "\u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7 \u03c3\u03c4\u03bf \u03ba\u03ad\u03bd\u03c4\u03c1\u03bf", | ||||
| "Align right": "\u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7 \u03b4\u03b5\u03be\u03b9\u03ac", | ||||
| "Justify": "\u03a0\u03bb\u03ae\u03c1\u03b7\u03c2 \u03c3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7", | ||||
| "Bullet list": "\u039b\u03af\u03c3\u03c4\u03b1 \u03bc\u03b5 \u03ba\u03bf\u03c5\u03ba\u03ba\u03af\u03b4\u03b5\u03c2", | ||||
| "Numbered list": "\u0391\u03c1\u03b9\u03b8\u03bc\u03b7\u03bc\u03ad\u03bd\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1", | ||||
| "Decrease indent": "\u039c\u03b5\u03af\u03c9\u03c3\u03b7 \u03b5\u03c3\u03bf\u03c7\u03ae\u03c2", | ||||
| "Increase indent": "\u0391\u03cd\u03be\u03b7\u03c3\u03b7 \u03b5\u03c3\u03bf\u03c7\u03ae\u03c2", | ||||
| "Close": "\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf", | ||||
| "Formats": "\u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u039f \u03c0\u03b5\u03c1\u03b9\u03b7\u03b3\u03b7\u03c4\u03ae\u03c2 \u03c3\u03b1\u03c2 \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03b9 \u03ac\u03bc\u03b5\u03c3\u03b7 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u03c0\u03c1\u03cc\u03c7\u03b5\u03b9\u03c1\u03bf. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03bd\u03c4\u03bf\u03bc\u03b5\u03cd\u03c3\u03b5\u03b9\u03c2 \u03c0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03bf\u03b3\u03af\u03bf\u03c5 Ctrl+X\/C\/V.", | ||||
| "Headers": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b5\u03c2", | ||||
| "Header 1": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 1", | ||||
| "Header 2": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 2", | ||||
| "Header 3": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 3", | ||||
| "Header 4": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 4", | ||||
| "Header 5": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 5", | ||||
| "Header 6": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 6", | ||||
| "Headings": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b5\u03c2", | ||||
| "Heading 1": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 1", | ||||
| "Heading 2": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 2", | ||||
| "Heading 3": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 3", | ||||
| "Heading 4": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 4", | ||||
| "Heading 5": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 5", | ||||
| "Heading 6": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1 6", | ||||
| "Preformatted": "\u03a0\u03c1\u03bf\u03b4\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03c9\u03bc\u03ad\u03bd\u03bf", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "\u039a\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2", | ||||
| "Paragraph": "\u03a0\u03b1\u03c1\u03ac\u03b3\u03c1\u03b1\u03c6\u03bf\u03c2", | ||||
| "Blockquote": "\u03a0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u03c0\u03b1\u03c1\u03ac\u03b8\u03b5\u03c3\u03b7\u03c2", | ||||
| "Inline": "\u0395\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03b7", | ||||
| "Blocks": "\u03a4\u03bc\u03ae\u03bc\u03b1\u03c4\u03b1", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0397 \u03b5\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03ce\u03c1\u03b1 \u03c3\u03b5 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b1\u03c0\u03bb\u03bf\u03cd \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5. \u03a4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b1 \u03bc\u03b9\u03b1\u03c2 \u03b5\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7\u03c2 \u03b8\u03b1 \u03b5\u03c0\u03b9\u03ba\u03bf\u03bb\u03bb\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03c9\u03c2 \u03b1\u03c0\u03bb\u03cc \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03cc\u03c3\u03bf \u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b1\u03c5\u03c4\u03ae \u03c0\u03b1\u03c1\u03b1\u03bc\u03ad\u03bd\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae.", | ||||
| "Font Family": "\u0393\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac", | ||||
| "Font Sizes": "\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2", | ||||
| "Class": "\u039a\u03bb\u03ac\u03c3\u03b7", | ||||
| "Browse for an image": "\u0391\u03bd\u03b1\u03b6\u03b7\u03c4\u03ae\u03c3\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1", | ||||
| "OR": "\u0389", | ||||
| "Drop an image here": "\u03a1\u03af\u03be\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1 \u03b5\u03b4\u03ce", | ||||
| "Upload": "\u039c\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7", | ||||
| "Block": "\u03a4\u03bc\u03ae\u03bc\u03b1", | ||||
| "Align": "\u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7", | ||||
| "Default": "\u03a0\u03c1\u03bf\u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf", | ||||
| "Circle": "\u039a\u03cd\u03ba\u03bb\u03bf\u03c2", | ||||
| "Disc": "\u0394\u03af\u03c3\u03ba\u03bf\u03c2", | ||||
| "Square": "\u03a4\u03b5\u03c4\u03c1\u03ac\u03b3\u03c9\u03bd\u03bf", | ||||
| "Lower Alpha": "\u03a0\u03b5\u03b6\u03ac \u03bb\u03b1\u03c4\u03b9\u03bd\u03b9\u03ba\u03ac", | ||||
| "Lower Greek": "\u03a0\u03b5\u03b6\u03ac \u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac", | ||||
| "Lower Roman": "\u03a0\u03b5\u03b6\u03ac \u03c1\u03c9\u03bc\u03b1\u03ca\u03ba\u03ac", | ||||
| "Upper Alpha": "\u039a\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03b1 \u03bb\u03b1\u03c4\u03b9\u03bd\u03b9\u03ba\u03ac", | ||||
| "Upper Roman": "\u039a\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03b1 \u03c1\u03c9\u03bc\u03b1\u03ca\u03ba\u03ac", | ||||
| "Anchor": "\u0391\u03b3\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7", | ||||
| "Name": "\u038c\u03bd\u03bf\u03bc\u03b1", | ||||
| "Id": "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u039f \u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5 \u03ad\u03bd\u03b1 \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1, \u03b1\u03ba\u03bf\u03bb\u03bf\u03c5\u03b8\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03bc\u03cc\u03bd\u03bf \u03b1\u03c0\u03cc \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1, \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd\u03c2, \u03c0\u03b1\u03cd\u03bb\u03b5\u03c2, \u03c4\u03b5\u03bb\u03b5\u03af\u03b5\u03c2, \u03ac\u03bd\u03c9 \u03c4\u03b5\u03bb\u03b5\u03af\u03b1 \u03ae \u03c5\u03c0\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03af\u03c3\u03b5\u03b9\u03c2.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u0388\u03c7\u03b5\u03c4\u03b5 \u03bc\u03b7 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2. \u0395\u03af\u03c3\u03c4\u03b5 \u03b2\u03ad\u03b2\u03b1\u03b9\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c6\u03cd\u03b3\u03b5\u03c4\u03b5 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03b1;", | ||||
| "Restore last draft": "\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5", | ||||
| "Special character": "\u0395\u03b9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b1\u03c2", | ||||
| "Source code": "\u03a0\u03b7\u03b3\u03b1\u03af\u03bf\u03c2 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2", | ||||
| "Insert\/Edit code sample": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\/\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b4\u03b5\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1", | ||||
| "Language": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1", | ||||
| "Code sample": "\u0394\u03b5\u03af\u03b3\u03bc\u03b1 \u039a\u03ce\u03b4\u03b9\u03ba\u03b1", | ||||
| "Color": "\u03a7\u03c1\u03ce\u03bc\u03b1", | ||||
| "R": "\u03ba", | ||||
| "G": "\u03a0", | ||||
| "B": "\u039c", | ||||
| "Left to right": "\u0391\u03c0\u03cc \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03b4\u03b5\u03be\u03b9\u03ac", | ||||
| "Right to left": "\u0391\u03c0\u03cc \u03b4\u03b5\u03be\u03b9\u03ac \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac", | ||||
| "Emoticons": "\u03a6\u03b1\u03c4\u03c3\u03bf\u03cd\u03bb\u03b5\u03c2", | ||||
| "Document properties": "\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03b5\u03b3\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5", | ||||
| "Title": "\u03a4\u03af\u03c4\u03bb\u03bf\u03c2", | ||||
| "Keywords": "\u039b\u03ad\u03be\u03b5\u03b9\u03c2 \u03ba\u03bb\u03b5\u03b9\u03b4\u03b9\u03ac", | ||||
| "Description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae", | ||||
| "Robots": "\u03a1\u03bf\u03bc\u03c0\u03cc\u03c4", | ||||
| "Author": "\u03a3\u03c5\u03bd\u03c4\u03ac\u03ba\u03c4\u03b7\u03c2", | ||||
| "Encoding": "\u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", | ||||
| "Fullscreen": "\u03a0\u03bb\u03ae\u03c1\u03b7\u03c2 \u03bf\u03b8\u03cc\u03bd\u03b7", | ||||
| "Action": "\u0395\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b1", | ||||
| "Shortcut": "\u03a3\u03c5\u03bd\u03c4\u03cc\u03bc\u03b5\u03c5\u03c3\u03b7", | ||||
| "Help": "\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1", | ||||
| "Address": "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7", | ||||
| "Focus to menubar": "\u0395\u03c3\u03c4\u03af\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd", | ||||
| "Focus to toolbar": "\u0395\u03c3\u03c4\u03af\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03c9\u03bd", | ||||
| "Focus to element path": "\u0395\u03c3\u03c4\u03af\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03bf\u03c5", | ||||
| "Focus to contextual toolbar": "\u0395\u03c3\u03c4\u03af\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03c3\u03c5\u03bd\u03b1\u03c6\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03c9\u03bd", | ||||
| "Insert link (if link plugin activated)": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5 (\u03b5\u03ac\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf \u03c4\u03bf \u03c0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03bf \u03c4\u03bf\u03c5 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5)", | ||||
| "Save (if save plugin activated)": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 (\u03b5\u03ac\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf \u03c4\u03bf \u03c0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03bf \u03c4\u03b7\u03c2 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2)", | ||||
| "Find (if searchreplace plugin activated)": "\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 (\u03b5\u03ac\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf \u03c4\u03bf \u03c0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03bf \u03c4\u03b7\u03c2 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2)", | ||||
| "Plugins installed ({0}):": "\u0395\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b1 \u03c0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1 ({0}):", | ||||
| "Premium plugins:": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1 \u03c5\u03c8\u03b7\u03bb\u03ae\u03c2 \u03c0\u03bf\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2:", | ||||
| "Learn more...": "\u039c\u03ac\u03b8\u03b5\u03c4\u03b5 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1...", | ||||
| "You are using {0}": "\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5 {0}", | ||||
| "Plugins": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1", | ||||
| "Handy Shortcuts": "\u03a7\u03c1\u03ae\u03c3\u03b9\u03bc\u03b5\u03c2 \u03c3\u03c5\u03bd\u03c4\u03bf\u03bc\u03b5\u03cd\u03c3\u03b5\u03b9\u03c2", | ||||
| "Horizontal line": "\u039f\u03c1\u03b9\u03b6\u03cc\u03bd\u03c4\u03b9\u03b1 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae", | ||||
| "Insert\/edit image": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\/\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2", | ||||
| "Image description": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2", | ||||
| "Source": "\u03a0\u03b7\u03b3\u03ae", | ||||
| "Dimensions": "\u0394\u03b9\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2", | ||||
| "Constrain proportions": "\u03a0\u03b5\u03c1\u03b9\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b1\u03bd\u03b1\u03bb\u03bf\u03b3\u03b9\u03ce\u03bd", | ||||
| "General": "\u0393\u03b5\u03bd\u03b9\u03ba\u03ac", | ||||
| "Advanced": "\u0393\u03b9\u03b1 \u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2", | ||||
| "Style": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7", | ||||
| "Vertical space": "\u039a\u03ac\u03b8\u03b5\u03c4\u03bf \u03b4\u03b9\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1", | ||||
| "Horizontal space": "\u039f\u03c1\u03b9\u03b6\u03cc\u03bd\u03c4\u03b9\u03bf \u03b4\u03b9\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1", | ||||
| "Border": "\u03a0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf", | ||||
| "Insert image": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2", | ||||
| "Image": "\u0395\u03b9\u03ba\u03cc\u03bd\u03b1", | ||||
| "Image list": "\u039b\u03af\u03c3\u03c4\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03c9\u03bd", | ||||
| "Rotate counterclockwise": "\u03a0\u03b5\u03c1\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03cc\u03c3\u03c4\u03c1\u03bf\u03c6\u03b1", | ||||
| "Rotate clockwise": "\u03a0\u03b5\u03c1\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03b4\u03b5\u03be\u03b9\u03cc\u03c3\u03c4\u03c1\u03bf\u03c6\u03b1", | ||||
| "Flip vertically": "\u0391\u03bd\u03b1\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03ba\u03b1\u03b8\u03ad\u03c4\u03c9\u03c2", | ||||
| "Flip horizontally": "\u0391\u03bd\u03b1\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03bf\u03c1\u03b9\u03b6\u03bf\u03bd\u03c4\u03af\u03c9\u03c2", | ||||
| "Edit image": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2", | ||||
| "Image options": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2", | ||||
| "Zoom in": "\u039c\u03b5\u03b3\u03ad\u03b8\u03c5\u03bd\u03c3\u03b7", | ||||
| "Zoom out": "\u03a3\u03bc\u03af\u03ba\u03c1\u03c5\u03bd\u03c3\u03b7", | ||||
| "Crop": "\u03a0\u03b5\u03c1\u03b9\u03ba\u03bf\u03c0\u03ae", | ||||
| "Resize": "\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03bc\u03b5\u03b3\u03ad\u03b8\u03bf\u03c5\u03c2", | ||||
| "Orientation": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03bd\u03b1\u03c4\u03bf\u03bb\u03b9\u03c3\u03bc\u03cc\u03c2", | ||||
| "Brightness": "\u03a6\u03c9\u03c4\u03b5\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1", | ||||
| "Sharpen": "\u038c\u03be\u03c5\u03bd\u03c3\u03b7", | ||||
| "Contrast": "\u0391\u03bd\u03c4\u03af\u03b8\u03b5\u03c3\u03b7", | ||||
| "Color levels": "\u0395\u03c0\u03af\u03c0\u03b5\u03b4\u03b1 \u03c7\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2", | ||||
| "Gamma": "\u0393\u03ac\u03bc\u03bc\u03b1", | ||||
| "Invert": "\u0391\u03bd\u03c4\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae", | ||||
| "Apply": "\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", | ||||
| "Back": "\u03a0\u03af\u03c3\u03c9", | ||||
| "Insert date\/time": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2\/\u03ce\u03c1\u03b1\u03c2", | ||||
| "Date\/time": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\/\u03ce\u03c1\u03b1", | ||||
| "Insert link": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5", | ||||
| "Insert\/edit link": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\/\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5", | ||||
| "Text to display": "\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03b3\u03b9\u03b1 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7", | ||||
| "Url": "URL", | ||||
| "Target": "\u03a0\u03c1\u03bf\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2", | ||||
| "None": "\u039a\u03b1\u03bc\u03af\u03b1", | ||||
| "New window": "\u039d\u03ad\u03bf \u03c0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf", | ||||
| "Remove link": "\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5", | ||||
| "Anchors": "\u0386\u03b3\u03ba\u03c5\u03c1\u03b5\u03c2", | ||||
| "Link": "\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2", | ||||
| "Paste or type a link": "\u0395\u03c0\u03b9\u03ba\u03bf\u03bb\u03bb\u03ae\u03c3\u03c4\u03b5 \u03ae \u03c0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0397 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03c0\u03bf\u03c5 \u03b5\u03b9\u03c3\u03ac\u03c7\u03b8\u03b7\u03ba\u03b5 \u03c0\u03b9\u03b8\u03b1\u03bd\u03ce\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 email. \u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03b1\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03c0\u03c1\u03cc\u03b8\u03b7\u03bc\u03b1 mailto:;", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0397 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 URL \u03c0\u03bf\u03c5 \u03b5\u03b9\u03c3\u03ac\u03c7\u03b8\u03b7\u03ba\u03b5 \u03c0\u03b9\u03b8\u03b1\u03bd\u03ce\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03be\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03cc\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2. \u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03b1\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03c0\u03c1\u03cc\u03b8\u03b7\u03bc\u03b1 http:\/\/;", | ||||
| "Link list": "\u039b\u03af\u03c3\u03c4\u03b1 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03c9\u03bd", | ||||
| "Insert video": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b2\u03af\u03bd\u03c4\u03b5\u03bf", | ||||
| "Insert\/edit video": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\/\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b2\u03af\u03bd\u03c4\u03b5\u03bf", | ||||
| "Insert\/edit media": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\/\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 media", | ||||
| "Alternative source": "\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03ba\u03c4\u03b9\u03ba\u03ae \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7", | ||||
| "Poster": "\u0391\u03c6\u03af\u03c3\u03b1", | ||||
| "Paste your embed code below:": "\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03b5\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03bf \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9:", | ||||
| "Embed": "\u0395\u03bd\u03c3\u03c9\u03bc\u03ac\u03c4\u03c9\u03c3\u03b7", | ||||
| "Media": "\u039c\u03ad\u03c3\u03b1 (\u03bc\u03af\u03bd\u03c4\u03b9\u03b1)", | ||||
| "Nonbreaking space": "\u039a\u03b5\u03bd\u03cc \u03c7\u03c9\u03c1\u03af\u03c2 \u03b4\u03b9\u03b1\u03ba\u03bf\u03c0\u03ae", | ||||
| "Page break": "\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2", | ||||
| "Paste as text": "\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 \u03c9\u03c2 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf", | ||||
| "Preview": "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", | ||||
| "Print": "\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7", | ||||
| "Save": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7", | ||||
| "Find": "\u0395\u03cd\u03c1\u03b5\u03c3\u03b7", | ||||
| "Replace with": "\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03bc\u03b5", | ||||
| "Replace": "\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7", | ||||
| "Replace all": "\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd", | ||||
| "Prev": "\u03a0\u03c1\u03bf\u03b7\u03b3.", | ||||
| "Next": "\u0395\u03c0\u03cc\u03bc.", | ||||
| "Find and replace": "\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7", | ||||
| "Could not find the specified string.": "\u0394\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03b5\u03cd\u03c1\u03b5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5 \u03b1\u03bb\u03c6\u03b1\u03c1\u03b9\u03b8\u03bc\u03b7\u03c4\u03b9\u03ba\u03bf\u03cd.", | ||||
| "Match case": "\u03a4\u03b1\u03af\u03c1\u03b9\u03b1\u03c3\u03bc\u03b1 \u03c0\u03b5\u03b6\u03ce\u03bd\/\u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03c9\u03bd", | ||||
| "Whole words": "\u039f\u03bb\u03cc\u03ba\u03bb\u03b7\u03c1\u03b5\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2", | ||||
| "Spellcheck": "\u039f\u03c1\u03b8\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc\u03c2 \u03ad\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 ", | ||||
| "Ignore": "\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7", | ||||
| "Ignore all": "\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03cc\u03bb\u03c9\u03bd", | ||||
| "Finish": "\u03a4\u03ad\u03bb\u03bf\u03c2", | ||||
| "Add to Dictionary": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c4\u03bf \u039b\u03b5\u03be\u03b9\u03ba\u03cc", | ||||
| "Insert table": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c0\u03af\u03bd\u03b1\u03ba\u03b1", | ||||
| "Table properties": "\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03c0\u03af\u03bd\u03b1\u03ba\u03b1", | ||||
| "Delete table": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03af\u03bd\u03b1\u03ba\u03b1", | ||||
| "Cell": "\u039a\u03b5\u03bb\u03af", | ||||
| "Row": "\u0393\u03c1\u03b1\u03bc\u03bc\u03ae", | ||||
| "Column": "\u03a3\u03c4\u03ae\u03bb\u03b7", | ||||
| "Cell properties": "\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03ba\u03b5\u03bb\u03b9\u03bf\u03cd", | ||||
| "Merge cells": "\u03a3\u03c5\u03b3\u03c7\u03ce\u03bd\u03b5\u03c5\u03c3\u03b7 \u03ba\u03b5\u03bb\u03b9\u03ce\u03bd", | ||||
| "Split cell": "\u0394\u03b9\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b5\u03bb\u03b9\u03bf\u03cd", | ||||
| "Insert row before": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03b5\u03c0\u03ac\u03bd\u03c9", | ||||
| "Insert row after": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03ba\u03ac\u03c4\u03c9", | ||||
| "Delete row": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", | ||||
| "Row properties": "\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b5\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", | ||||
| "Cut row": "\u0391\u03c0\u03bf\u03ba\u03bf\u03c0\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", | ||||
| "Copy row": "\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", | ||||
| "Paste row before": "\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03b5\u03c0\u03ac\u03bd\u03c9", | ||||
| "Paste row after": "\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03ba\u03ac\u03c4\u03c9", | ||||
| "Insert column before": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c4\u03ae\u03bb\u03b7\u03c2 \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac", | ||||
| "Insert column after": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c4\u03ae\u03bb\u03b7\u03c2 \u03b4\u03b5\u03be\u03b9\u03ac", | ||||
| "Delete column": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03c4\u03ae\u03bb\u03b7\u03c2", | ||||
| "Cols": "\u03a3\u03c4\u03ae\u03bb\u03b5\u03c2", | ||||
| "Rows": "\u0393\u03c1\u03b1\u03bc\u03bc\u03ad\u03c2", | ||||
| "Width": "\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2", | ||||
| "Height": "\u038e\u03c8\u03bf\u03c2", | ||||
| "Cell spacing": "\u0391\u03c0\u03cc\u03c3\u03c4\u03b1\u03c3\u03b7 \u03ba\u03b5\u03bb\u03b9\u03ce\u03bd", | ||||
| "Cell padding": "\u0391\u03bd\u03b1\u03c0\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03ba\u03b5\u03bb\u03b9\u03ce\u03bd", | ||||
| "Caption": "\u039b\u03b5\u03b6\u03ac\u03bd\u03c4\u03b1", | ||||
| "Left": "\u0391\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac", | ||||
| "Center": "\u039a\u03b5\u03bd\u03c4\u03c1\u03b1\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7", | ||||
| "Right": "\u0394\u03b5\u03be\u03b9\u03ac", | ||||
| "Cell type": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03ba\u03b5\u03bb\u03b9\u03bf\u03cd", | ||||
| "Scope": "\u0388\u03ba\u03c4\u03b1\u03c3\u03b7", | ||||
| "Alignment": "\u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7", | ||||
| "H Align": "\u039f\u03c1. \u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7", | ||||
| "V Align": "\u039a. \u03a3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7", | ||||
| "Top": "\u039a\u03bf\u03c1\u03c5\u03c6\u03ae", | ||||
| "Middle": "\u039c\u03ad\u03c3\u03b7", | ||||
| "Bottom": "\u039a\u03ac\u03c4\u03c9", | ||||
| "Header cell": "\u039a\u03b5\u03bb\u03af-\u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1", | ||||
| "Row group": "\u039f\u03bc\u03ac\u03b4\u03b1 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ce\u03bd", | ||||
| "Column group": "\u039f\u03bc\u03ac\u03b4\u03b1 \u03c3\u03c4\u03b7\u03bb\u03ce\u03bd", | ||||
| "Row type": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2", | ||||
| "Header": "\u039a\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1", | ||||
| "Body": "\u03a3\u03ce\u03bc\u03b1", | ||||
| "Footer": "\u03a5\u03c0\u03bf\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf", | ||||
| "Border color": "\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c0\u03bb\u03b1\u03b9\u03c3\u03af\u03bf\u03c5", | ||||
| "Insert template": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 ", | ||||
| "Templates": "\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03b1", | ||||
| "Template": "\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf", | ||||
| "Text color": "\u03a7\u03c1\u03ce\u03bc\u03b1 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 ", | ||||
| "Background color": "\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5", | ||||
| "Custom...": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae...", | ||||
| "Custom color": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1", | ||||
| "No color": "\u03a7\u03c9\u03c1\u03af\u03c2 \u03c7\u03c1\u03ce\u03bc\u03b1", | ||||
| "Table of Contents": "\u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", | ||||
| "Show blocks": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03c4\u03bc\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd", | ||||
| "Show invisible characters": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03ba\u03c1\u03c5\u03c6\u03ce\u03bd \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03c9\u03bd", | ||||
| "Words: {0}": "\u039b\u03ad\u03be\u03b5\u03b9\u03c2: {0}", | ||||
| "{0} words": "{0} \u03bb\u03ad\u03be\u03b5\u03b9\u03c2", | ||||
| "File": "\u0391\u03c1\u03c7\u03b5\u03af\u03bf", | ||||
| "Edit": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1", | ||||
| "Insert": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae", | ||||
| "View": "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae", | ||||
| "Format": "\u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7", | ||||
| "Table": "\u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2", | ||||
| "Tools": "\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1", | ||||
| "Powered by {0}": "\u03a4\u03c1\u03bf\u03c6\u03bf\u03b4\u03bf\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u03a0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u0395\u03bc\u03c0\u03bb\u03bf\u03c5\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u039a\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5. \u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 ALT-F9 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd. \u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 ALT-F10 \u03b3\u03b9\u03b1  \u03c4\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03c9\u03bd. \u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 ALT-0 \u03b3\u03b9\u03b1 \u03b2\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1" | ||||
| }); | ||||
							
								
								
									
										219
									
								
								Modules/TinyMCE/langs/eo.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										219
									
								
								Modules/TinyMCE/langs/eo.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,219 @@ | ||||
| tinymce.addI18n('eo',{ | ||||
| "Cut": "Eltran\u0109i", | ||||
| "Heading 5": "Titolo 5", | ||||
| "Header 2": "\u0108apo 2", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Via retumilo ne subtenas rektan aliron al bufro. Bonvolu antata\u016de uzi klavarajn kombinojn Ctrl+X\/C\/V.", | ||||
| "Heading 4": "Titolo 4", | ||||
| "Div": "Div", | ||||
| "Heading 2": "Titolo 2", | ||||
| "Paste": "Englui", | ||||
| "Close": "Fermi", | ||||
| "Font Family": "Tipara familio", | ||||
| "Pre": "Pre", | ||||
| "Align right": "Ordigu dekstren", | ||||
| "New document": "Nova dokumento", | ||||
| "Blockquote": "Mar\u011denigo", | ||||
| "Numbered list": "Numera listo", | ||||
| "Heading 1": "Titolo 1", | ||||
| "Headings": "Titoloj", | ||||
| "Increase indent": "Pliigu alineon", | ||||
| "Formats": "Formatoj", | ||||
| "Headers": "\u0108apoj", | ||||
| "Select all": "Elekti \u0109ion", | ||||
| "Header 3": "\u0108apo 3", | ||||
| "Blocks": "Blokoj", | ||||
| "Undo": "Malfari", | ||||
| "Strikethrough": "Trastreki", | ||||
| "Bullet list": "Punkta listo", | ||||
| "Header 1": "\u0108apo 1", | ||||
| "Superscript": "Superskribi", | ||||
| "Clear formatting": "Forigi formatigon", | ||||
| "Font Sizes": "Tiparaj grandoj", | ||||
| "Subscript": "Malsuperskribi", | ||||
| "Header 6": "\u0108apo 6", | ||||
| "Redo": "Refari", | ||||
| "Paragraph": "Alineo", | ||||
| "Ok": "Bone", | ||||
| "Bold": "Dika", | ||||
| "Code": "Kodo", | ||||
| "Italic": "Oblikva", | ||||
| "Align center": "Ordigu centren", | ||||
| "Header 5": "\u0108apo 5", | ||||
| "Heading 6": "Titolo 6", | ||||
| "Heading 3": "Titolo 3", | ||||
| "Decrease indent": "Malpliigu alineon", | ||||
| "Header 4": "\u0108apo 4", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "La engluado nun okazas en simpla teksta re\u011dimo. La enhavo estos engluata kiel simpla teksto \u011dis anta\u016d vi for\u015daltos tiun \u0109i opcion.", | ||||
| "Underline": "Substreki", | ||||
| "Cancel": "Nuligi", | ||||
| "Justify": "Ordigu la\u016dflanke", | ||||
| "Inline": "Enlinie", | ||||
| "Copy": "Kopii", | ||||
| "Align left": "Ordigu maldekstren", | ||||
| "Visual aids": "Videblaj helpiloj", | ||||
| "Lower Greek": "Minuskla greka", | ||||
| "Square": "Kvadrato", | ||||
| "Default": "Implicite", | ||||
| "Lower Alpha": "Minuskla alfabeta", | ||||
| "Circle": "Cirklo", | ||||
| "Disc": "Disko", | ||||
| "Upper Alpha": "Majuskla alfabeta", | ||||
| "Upper Roman": "Majuskla latina", | ||||
| "Lower Roman": "Minuskla latina", | ||||
| "Name": "Nomo", | ||||
| "Anchor": "Ankro", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Vi havas nekonservitajn \u015dan\u011dojn, \u0109u vi certe deziras eliri?", | ||||
| "Restore last draft": "Restarigu lastan malneton", | ||||
| "Special character": "Speciala karaktro", | ||||
| "Source code": "Fonta kodo", | ||||
| "B": "B", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "Color": "Koloro", | ||||
| "Right to left": "Dekstro maldekstren", | ||||
| "Left to right": "Maldekstro dekstren", | ||||
| "Emoticons": "Emociikonoj", | ||||
| "Robots": "Robotoj", | ||||
| "Document properties": "Dokumentaj trajtoj", | ||||
| "Title": "Titolo", | ||||
| "Keywords": "\u015closilvortoj", | ||||
| "Encoding": "Enkodigo", | ||||
| "Description": "Priskribo", | ||||
| "Author": "A\u016dtoro", | ||||
| "Fullscreen": "Tutekrane", | ||||
| "Horizontal line": "Horizontala linio", | ||||
| "Horizontal space": "Horizontala spaco", | ||||
| "Insert\/edit image": "Enmetu\/redaktu bildon", | ||||
| "General": "\u011cenerale", | ||||
| "Advanced": "Por spertuloj", | ||||
| "Source": "Fonto", | ||||
| "Border": "Limo", | ||||
| "Constrain proportions": "Relativigu proporciojn", | ||||
| "Vertical space": "Vertikala spaco", | ||||
| "Image description": "Bilda priskribo", | ||||
| "Style": "Stilo", | ||||
| "Dimensions": "Dimensioj", | ||||
| "Insert image": "Enmetu bildon", | ||||
| "Zoom in": "Plilar\u011digu", | ||||
| "Contrast": "Kontrasto", | ||||
| "Back": "Reen", | ||||
| "Gamma": "Gamo", | ||||
| "Flip horizontally": "Respegulu horizontale", | ||||
| "Resize": "\u015can\u011du dimensiojn", | ||||
| "Sharpen": "Akrigu", | ||||
| "Zoom out": "Malplilar\u011digu", | ||||
| "Image options": "Bildaj opcioj", | ||||
| "Apply": "Apliku", | ||||
| "Brightness": "Heleco", | ||||
| "Rotate clockwise": "Rotaciu la\u016d horlo\u011do", | ||||
| "Rotate counterclockwise": "Rotaciu kontra\u016d horlo\u011do", | ||||
| "Edit image": "Redaktu bildon", | ||||
| "Color levels": "Kolorniveloj", | ||||
| "Crop": "Randtran\u0109u", | ||||
| "Orientation": "Orientigo", | ||||
| "Flip vertically": "Respegulu vertikale", | ||||
| "Invert": "Inversigu", | ||||
| "Insert date\/time": "Enmetu daton\/tempon", | ||||
| "Remove link": "Forigu ligilon", | ||||
| "Url": "Urlo", | ||||
| "Text to display": "Montrata teksto", | ||||
| "Anchors": "Ankroj", | ||||
| "Insert link": "Enmetu ligilon", | ||||
| "New window": "Nova fenestro", | ||||
| "None": "Nenio", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "La enmetita URLo \u015dajnas esti ekstera ligilo. \u0108u vi deziras aldoni nepran prefikson http:\/\/?", | ||||
| "Target": "Celo", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "La enmetita URLo \u015dajnas esti retadreso. \u0108u vi deziras aldoni prefikson mailto:?", | ||||
| "Insert\/edit link": "Enmetu\/redaktu ligilon", | ||||
| "Insert\/edit video": "Enmetu\/redaktu videon", | ||||
| "Poster": "Afi\u015do", | ||||
| "Alternative source": "Alternativa fonto", | ||||
| "Paste your embed code below:": "Engluu vian internan kodon \u0109i-sube:", | ||||
| "Insert video": "Enmetu videon", | ||||
| "Embed": "Enkonstruu", | ||||
| "Nonbreaking space": "Nerompebla spaco", | ||||
| "Page break": "Pa\u011da fino", | ||||
| "Paste as text": "Engluu kiel tekston", | ||||
| "Preview": "Provrigardo", | ||||
| "Print": "Presu", | ||||
| "Save": "Konservi", | ||||
| "Could not find the specified string.": "Malsukceso trovi la indikitan sinsekvon", | ||||
| "Replace": "Anstata\u016digi", | ||||
| "Next": "Posta", | ||||
| "Whole words": "Tutaj vortoj", | ||||
| "Find and replace": "Trovi kaj anstata\u016digi", | ||||
| "Replace with": "Anstata\u016digi per", | ||||
| "Find": "Trovi", | ||||
| "Replace all": "Anstata\u016digi\u0109ion", | ||||
| "Match case": "Sekvi usklecon", | ||||
| "Prev": "Anta\u016da", | ||||
| "Spellcheck": "Literumu", | ||||
| "Finish": "Finu", | ||||
| "Ignore all": "Ignoru \u0109ion", | ||||
| "Ignore": "Ignoru", | ||||
| "Add to Dictionary": "Aldonu al vortaro", | ||||
| "Insert row before": "Enmetu vicon anta\u016d", | ||||
| "Rows": "Vicoj", | ||||
| "Height": "Alto", | ||||
| "Paste row after": "Engluu vicon poste", | ||||
| "Alignment": "Aligo", | ||||
| "Border color": "Lima koloro", | ||||
| "Column group": "Kolumna grupo", | ||||
| "Row": "Vico", | ||||
| "Insert column before": "Enmetu kolumnon anta\u016d", | ||||
| "Split cell": "Disdividu \u0109elon", | ||||
| "Cell padding": "\u0108elmar\u011denoj", | ||||
| "Cell spacing": "\u0108elspacoj", | ||||
| "Row type": "Vica tipo", | ||||
| "Insert table": "Enmetu tabelon", | ||||
| "Body": "Korpo", | ||||
| "Caption": "Cita\u0135o", | ||||
| "Footer": "Piedo", | ||||
| "Delete row": "Forigu vicon", | ||||
| "Paste row before": "Engluu vicon anta\u016d", | ||||
| "Scope": "Amplekso", | ||||
| "Delete table": "Forigu tabelon", | ||||
| "H Align": "H aligo", | ||||
| "Top": "Supro", | ||||
| "Header cell": "\u0108apa \u0109elo", | ||||
| "Column": "Kolumno", | ||||
| "Row group": "Vica grupo", | ||||
| "Cell": "\u0108elo", | ||||
| "Middle": "Mezo", | ||||
| "Cell type": "\u0108ela tipo", | ||||
| "Copy row": "Kopiu vicon", | ||||
| "Row properties": "Vicaj ecoj", | ||||
| "Table properties": "Tabelaj ecoj", | ||||
| "Bottom": "Subo", | ||||
| "V Align": "V aligo", | ||||
| "Header": "\u0108apo", | ||||
| "Right": "Dekstro", | ||||
| "Insert column after": "Enmetu kolumnon poste", | ||||
| "Cols": "Kolumonoj", | ||||
| "Insert row after": "Enmetu vicon poste", | ||||
| "Width": "Lar\u011do", | ||||
| "Cell properties": "\u0108elaj ecoj", | ||||
| "Left": "Maldekstro", | ||||
| "Cut row": "Eltran\u0109u vicon", | ||||
| "Delete column": "Forigu kolumnon", | ||||
| "Center": "Centro", | ||||
| "Merge cells": "Kunigu \u0109elojn", | ||||
| "Insert template": "Enmetu \u015dablonon", | ||||
| "Templates": "\u015cablonoj", | ||||
| "Background color": "Fona koloro", | ||||
| "Custom...": "Propra...", | ||||
| "Custom color": "Propra koloro", | ||||
| "No color": "Neniu koloro", | ||||
| "Text color": "Teksta koloro", | ||||
| "Show blocks": "Montru blokojn", | ||||
| "Show invisible characters": "Montru nevideblajn karaktrojn", | ||||
| "Words: {0}": "Vortoj: {0}", | ||||
| "Insert": "Enmeti", | ||||
| "File": "Dokumento", | ||||
| "Edit": "Redakti", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Ri\u0109teksta Areo. Premu ALT-F9 por menuo. Premu ALT-F10 por menuejo. Premu ALT-0 por helpo", | ||||
| "Tools": "Iloj", | ||||
| "View": "Vidi", | ||||
| "Table": "Tabelo", | ||||
| "Format": "Aspektigi" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/es.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/es.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('es',{ | ||||
| "Redo": "Rehacer", | ||||
| "Undo": "Deshacer", | ||||
| "Cut": "Cortar", | ||||
| "Copy": "Copiar", | ||||
| "Paste": "Pegar", | ||||
| "Select all": "Seleccionar todo", | ||||
| "New document": "Nuevo documento", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Cancelar", | ||||
| "Visual aids": "Ayudas visuales", | ||||
| "Bold": "Negrita", | ||||
| "Italic": "Cursiva", | ||||
| "Underline": "Subrayado", | ||||
| "Strikethrough": "Tachado", | ||||
| "Superscript": "Super\u00edndice", | ||||
| "Subscript": "Sub\u00edndice", | ||||
| "Clear formatting": "Limpiar formato", | ||||
| "Align left": "Alinear a la izquierda", | ||||
| "Align center": "Alinear al centro", | ||||
| "Align right": "Alinear a la derecha", | ||||
| "Justify": "Justificar", | ||||
| "Bullet list": "Lista de vi\u00f1etas", | ||||
| "Numbered list": "Lista numerada", | ||||
| "Decrease indent": "Disminuir sangr\u00eda", | ||||
| "Increase indent": "Incrementar sangr\u00eda", | ||||
| "Close": "Cerrar", | ||||
| "Formats": "Formatos", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Su navegador no es compatible con el acceso directo al portapapeles. Use las teclas Crtl+X\/C\/V de su teclado.", | ||||
| "Headers": "Encabezados", | ||||
| "Header 1": "Encabezado 1", | ||||
| "Header 2": "Encabezado 2", | ||||
| "Header 3": "Encabezado 3", | ||||
| "Header 4": "Encabezado 4", | ||||
| "Header 5": "Encabezado 5", | ||||
| "Header 6": "Encabezado 6", | ||||
| "Headings": "Encabezados", | ||||
| "Heading 1": "Encabezado 1", | ||||
| "Heading 2": "Encabezado 2", | ||||
| "Heading 3": "Encabezado 3", | ||||
| "Heading 4": "Encabezado 4", | ||||
| "Heading 5": "Encabezado 5", | ||||
| "Heading 6": "Encabezado 6", | ||||
| "Preformatted": "Con formato previo", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "C\u00f3digo", | ||||
| "Paragraph": "P\u00e1rrafo", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Alineado", | ||||
| "Blocks": "Bloques", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Pegar est\u00e1 ahora en modo de texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.", | ||||
| "Fonts": "Fuentes", | ||||
| "Font Sizes": "Tama\u00f1os de fuente", | ||||
| "Class": "Clase", | ||||
| "Browse for an image": "Buscar una imagen", | ||||
| "OR": "OR", | ||||
| "Drop an image here": "Arrastre una imagen aqu\u00ed", | ||||
| "Upload": "Cargar", | ||||
| "Block": "Bloque", | ||||
| "Align": "Alinear", | ||||
| "Default": "Por defecto", | ||||
| "Circle": "C\u00edrculo", | ||||
| "Disc": "Disco", | ||||
| "Square": "Cuadrado", | ||||
| "Lower Alpha": "Inferior Alfa", | ||||
| "Lower Greek": "Inferior Griega", | ||||
| "Lower Roman": "Inferior Romana", | ||||
| "Upper Alpha": "Superior Alfa", | ||||
| "Upper Roman": "Superior Romana", | ||||
| "Anchor...": "Anclaje...", | ||||
| "Name": "Nombre", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Deber\u00eda comenzar por una letra, seguida solo de letras, n\u00fameros, guiones, puntos, dos puntos o guiones bajos.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Tiene cambios sin guardar. \u00bfEst\u00e1 seguro de que quiere salir?", | ||||
| "Restore last draft": "Restaurar el \u00faltimo borrador", | ||||
| "Special character...": "Car\u00e1cter especial...", | ||||
| "Source code": "C\u00f3digo fuente", | ||||
| "Insert\/Edit code sample": "Insertar\/editar c\u00f3digo de prueba", | ||||
| "Language": "Idioma", | ||||
| "Code sample...": "Ejemplo de c\u00f3digo...", | ||||
| "Color Picker": "Selector de colores", | ||||
| "R": "R", | ||||
| "G": "V", | ||||
| "B": "A", | ||||
| "Left to right": "De izquierda a derecha", | ||||
| "Right to left": "De derecha a izquierda", | ||||
| "Emoticons...": "Emoticones...", | ||||
| "Metadata and Document Properties": "Metadatos y propiedades del documento", | ||||
| "Title": "T\u00edtulo", | ||||
| "Keywords": "Palabras clave", | ||||
| "Description": "Descripci\u00f3n", | ||||
| "Robots": "Robots", | ||||
| "Author": "Autor", | ||||
| "Encoding": "Codificaci\u00f3n", | ||||
| "Fullscreen": "Pantalla completa", | ||||
| "Action": "Acci\u00f3n", | ||||
| "Shortcut": "Atajo", | ||||
| "Help": "Ayuda", | ||||
| "Address": "Direcci\u00f3n", | ||||
| "Focus to menubar": "Enfocar la barra del men\u00fa", | ||||
| "Focus to toolbar": "Enfocar la barra de herramientas", | ||||
| "Focus to element path": "Enfocar la ruta del elemento", | ||||
| "Focus to contextual toolbar": "Enfocar la barra de herramientas contextual", | ||||
| "Insert link (if link plugin activated)": "Insertar enlace (si el complemento de enlace est\u00e1 activado)", | ||||
| "Save (if save plugin activated)": "Guardar (si el componente de salvar est\u00e1 activado)", | ||||
| "Find (if searchreplace plugin activated)": "Buscar (si el complemento buscar-remplazar est\u00e1 activado)", | ||||
| "Plugins installed ({0}):": "Plugins instalados ({0}):", | ||||
| "Premium plugins:": "Complementos premium:", | ||||
| "Learn more...": "Aprende m\u00e1s...", | ||||
| "You are using {0}": "Estas usando {0}", | ||||
| "Plugins": "Complementos", | ||||
| "Handy Shortcuts": "Accesos directos", | ||||
| "Horizontal line": "L\u00ednea horizontal", | ||||
| "Insert\/edit image": "Insertar\/editar imagen", | ||||
| "Image description": "Descripci\u00f3n de la imagen", | ||||
| "Source": "Enlace", | ||||
| "Dimensions": "Dimensiones", | ||||
| "Constrain proportions": "Restringir proporciones", | ||||
| "General": "General", | ||||
| "Advanced": "Avanzado", | ||||
| "Style": "Estilo", | ||||
| "Vertical space": "Espacio vertical", | ||||
| "Horizontal space": "Espacio horizontal", | ||||
| "Border": "Borde", | ||||
| "Insert image": "Insertar imagen", | ||||
| "Image...": "Imagen...", | ||||
| "Image list": "Lista de im\u00e1genes", | ||||
| "Rotate counterclockwise": "Girar a la izquierda", | ||||
| "Rotate clockwise": "Girar a la derecha", | ||||
| "Flip vertically": "Invertir verticalmente", | ||||
| "Flip horizontally": "Invertir horizontalmente", | ||||
| "Edit image": "Editar imagen", | ||||
| "Image options": "Opciones de imagen", | ||||
| "Zoom in": "Acercar", | ||||
| "Zoom out": "Alejar", | ||||
| "Crop": "Recortar", | ||||
| "Resize": "Redimensionar", | ||||
| "Orientation": "Orientaci\u00f3n", | ||||
| "Brightness": "Brillo", | ||||
| "Sharpen": "Forma", | ||||
| "Contrast": "Contraste", | ||||
| "Color levels": "Niveles de color", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Invertir", | ||||
| "Apply": "Aplicar", | ||||
| "Back": "Atr\u00e1s", | ||||
| "Insert date\/time": "Insertar fecha\/hora", | ||||
| "Date\/time": "Fecha\/hora", | ||||
| "Insert\/Edit Link": "Insertar\/editar enlace", | ||||
| "Insert\/edit link": "Insertar\/editar enlace", | ||||
| "Text to display": "Texto para mostrar", | ||||
| "Url": "URL", | ||||
| "Open link in...": "Abrir enlace en...", | ||||
| "Current window": "Ventana actual", | ||||
| "None": "Ninguno", | ||||
| "New window": "Nueva ventana", | ||||
| "Remove link": "Quitar enlace", | ||||
| "Anchors": "Anclas", | ||||
| "Link...": "Enlace...", | ||||
| "Paste or type a link": "Pega o introduce un enlace", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "El enlace que has introducido no parece ser una direcci\u00f3n de correo electr\u00f3nico. Quieres a\u00f1adir el prefijo necesario mailto: ?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "El enlace que has introducido no parece ser una enlace externo. Quieres a\u00f1adir el prefijo necesario http:\/\/ ?", | ||||
| "Link list": "Lista de enlaces", | ||||
| "Insert video": "Insertar video", | ||||
| "Insert\/edit video": "Insertar\/editar video", | ||||
| "Insert\/edit media": "Insertar\/editar medio", | ||||
| "Alternative source": "Enlace alternativo", | ||||
| "Alternative source URL": "Origen de URL alternativo", | ||||
| "Media poster (Image URL)": "P\u00f3ster de medio (URL de imagen)", | ||||
| "Paste your embed code below:": "Pega tu c\u00f3digo embebido debajo", | ||||
| "Embed": "Incrustado", | ||||
| "Media...": "Medios...", | ||||
| "Nonbreaking space": "Espacio fijo", | ||||
| "Page break": "Salto de p\u00e1gina", | ||||
| "Paste as text": "Pegar como texto", | ||||
| "Preview": "Previsualizar", | ||||
| "Print...": "Imprimir...", | ||||
| "Save": "Guardar", | ||||
| "Find": "Buscar", | ||||
| "Replace with": "Reemplazar con", | ||||
| "Replace": "Reemplazar", | ||||
| "Replace all": "Reemplazar todo", | ||||
| "Previous": "Anterior", | ||||
| "Next": "Siguiente", | ||||
| "Find and replace...": "Buscar y reemplazar...", | ||||
| "Could not find the specified string.": "No se encuentra la cadena de texto especificada", | ||||
| "Match case": "Coincidencia exacta", | ||||
| "Find whole words only": "Solo palabras completas", | ||||
| "Spell check": "Revisar ortograf\u00eda", | ||||
| "Ignore": "Ignorar", | ||||
| "Ignore all": "Ignorar todos", | ||||
| "Finish": "Finalizar", | ||||
| "Add to Dictionary": "A\u00f1adir al Diccionario", | ||||
| "Insert table": "Insertar tabla", | ||||
| "Table properties": "Propiedades de la tabla", | ||||
| "Delete table": "Eliminar tabla", | ||||
| "Cell": "Celda", | ||||
| "Row": "Fila", | ||||
| "Column": "Columna", | ||||
| "Cell properties": "Propiedades de la celda", | ||||
| "Merge cells": "Combinar celdas", | ||||
| "Split cell": "Dividir celdas", | ||||
| "Insert row before": "Insertar fila antes", | ||||
| "Insert row after": "Insertar fila despu\u00e9s ", | ||||
| "Delete row": "Eliminar fila", | ||||
| "Row properties": "Propiedades de la fila", | ||||
| "Cut row": "Cortar fila", | ||||
| "Copy row": "Copiar fila", | ||||
| "Paste row before": "Pegar la fila antes", | ||||
| "Paste row after": "Pegar la fila despu\u00e9s", | ||||
| "Insert column before": "Insertar columna antes", | ||||
| "Insert column after": "Insertar columna despu\u00e9s", | ||||
| "Delete column": "Eliminar columna", | ||||
| "Cols": "Columnas", | ||||
| "Rows": "Filas", | ||||
| "Width": "Ancho", | ||||
| "Height": "Alto", | ||||
| "Cell spacing": "Espacio entre celdas", | ||||
| "Cell padding": "Relleno de celda", | ||||
| "Show caption": "Mostrar t\u00edtulo", | ||||
| "Left": "Izquierda", | ||||
| "Center": "Centrado", | ||||
| "Right": "Derecha", | ||||
| "Cell type": "Tipo de celda", | ||||
| "Scope": "\u00c1mbito", | ||||
| "Alignment": "Alineaci\u00f3n", | ||||
| "H Align": "Alineamiento Horizontal", | ||||
| "V Align": "Alineamiento Vertical", | ||||
| "Top": "Arriba", | ||||
| "Middle": "Centro", | ||||
| "Bottom": "Abajo", | ||||
| "Header cell": "Celda de la cebecera", | ||||
| "Row group": "Grupo de filas", | ||||
| "Column group": "Grupo de columnas", | ||||
| "Row type": "Tipo de fila", | ||||
| "Header": "Cabecera", | ||||
| "Body": "Cuerpo", | ||||
| "Footer": "Pie de p\u00e1gina", | ||||
| "Border color": "Color del borde", | ||||
| "Insert template...": "Insertar plantilla...", | ||||
| "Templates": "Plantillas", | ||||
| "Template": "Plantilla", | ||||
| "Text color": "Color del texto", | ||||
| "Background color": "Color de fondo", | ||||
| "Custom...": "Personalizar...", | ||||
| "Custom color": "Color personalizado", | ||||
| "No color": "Sin color", | ||||
| "Remove color": "Quitar color", | ||||
| "Table of Contents": "Tabla de contenidos", | ||||
| "Show blocks": "Mostrar bloques", | ||||
| "Show invisible characters": "Mostrar caracteres invisibles", | ||||
| "Word count": "Contar palabras", | ||||
| "Count": "Recuento", | ||||
| "Document": "Documento", | ||||
| "Selection": "Selecci\u00f3n", | ||||
| "Words": "Palabras", | ||||
| "Words: {0}": "Palabras: {0}", | ||||
| "{0} words": "{0} palabras", | ||||
| "File": "Archivo", | ||||
| "Edit": "Editar", | ||||
| "Insert": "Insertar", | ||||
| "View": "Ver", | ||||
| "Format": "Formato", | ||||
| "Table": "Tabla", | ||||
| "Tools": "Herramientas", | ||||
| "Powered by {0}": "Desarrollado por {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto enriquecido. Pulse ALT-F9 para el menu. Pulse ALT-F10 para la barra de herramientas. Pulse ALT-0 para ayuda", | ||||
| "Image title": "Titulo de imagen", | ||||
| "Border width": "Ancho de borde", | ||||
| "Border style": "Estilo de borde", | ||||
| "Error": "Error", | ||||
| "Warn": "Advertencia", | ||||
| "Valid": "V\u00e1lido", | ||||
| "To open the popup, press Shift+Enter": "Para abrir el elemento emergente, pulse May\u00fas+Intro", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u00c1rea de texto enriquecido. Pulse ALT-0 para abrir la ayuda.", | ||||
| "System Font": "Fuente de sistema", | ||||
| "Failed to upload image: {0}": "Fallo al cargar imagen: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Fallo al cargar complemento: {0} desde URL {1}", | ||||
| "Failed to load plugin url: {0}": "Fallo al cargar URL del complemento: {0}", | ||||
| "Failed to initialize plugin: {0}": "Fallo al iniciar el complemento: {0}", | ||||
| "example": "ejemplo", | ||||
| "Search": "Buscar", | ||||
| "All": "Todo", | ||||
| "Currency": "Divisa", | ||||
| "Text": "Texto", | ||||
| "Quotations": "Comillas", | ||||
| "Mathematical": "S\u00edmbolo matem\u00e1tico", | ||||
| "Extended Latin": "Latino extendido A", | ||||
| "Symbols": "S\u00edmbolos", | ||||
| "Arrows": "Flechas", | ||||
| "User Defined": "Definido por el usuario", | ||||
| "dollar sign": "signo de d\u00f3lar", | ||||
| "currency sign": "signo de divisa", | ||||
| "euro-currency sign": "signo de euro", | ||||
| "colon sign": "signo de dos puntos", | ||||
| "cruzeiro sign": "signo de cruceiro", | ||||
| "french franc sign": "signo de franco franc\u00e9s", | ||||
| "lira sign": "signo de lira", | ||||
| "mill sign": "signo de mill", | ||||
| "naira sign": "signo de naira", | ||||
| "peseta sign": "signo de peseta", | ||||
| "rupee sign": "signo de rupia", | ||||
| "won sign": "signo de won", | ||||
| "new sheqel sign": "signo de nuevo s\u00e9quel", | ||||
| "dong sign": "signo de dong", | ||||
| "kip sign": "signo de kip", | ||||
| "tugrik sign": "signo de tugrik", | ||||
| "drachma sign": "signo de dracma", | ||||
| "german penny symbol": "signo de penique alem\u00e1n", | ||||
| "peso sign": "signo de peso", | ||||
| "guarani sign": "signo de guaran\u00ed", | ||||
| "austral sign": "signo de austral", | ||||
| "hryvnia sign": "signo de grivna", | ||||
| "cedi sign": "signo de cedi", | ||||
| "livre tournois sign": "signo de libra tornesa", | ||||
| "spesmilo sign": "signo de spesmilo", | ||||
| "tenge sign": "signo de tenge", | ||||
| "indian rupee sign": "signo de rupia india", | ||||
| "turkish lira sign": "signo de lira turca", | ||||
| "nordic mark sign": "signo de marco n\u00f3rdico", | ||||
| "manat sign": "signo de manat", | ||||
| "ruble sign": "signo de rublo", | ||||
| "yen character": "car\u00e1cter de yen", | ||||
| "yuan character": "car\u00e1cter de yuan", | ||||
| "yuan character, in hong kong and taiwan": "car\u00e1cter de yuan en Hong Kong y Taiw\u00e1n", | ||||
| "yen\/yuan character variant one": "Variante uno de car\u00e1cter de yen\/yuan", | ||||
| "Loading emoticons...": "Cargando emoticonos...", | ||||
| "Could not load emoticons": "No se han podido cargar los emoticonos", | ||||
| "People": "Personas", | ||||
| "Animals and Nature": "Animales y naturaleza", | ||||
| "Food and Drink": "Comida y bebida", | ||||
| "Activity": "Actividad", | ||||
| "Travel and Places": "Viajes y lugares", | ||||
| "Objects": "Objetos", | ||||
| "Flags": "Banderas", | ||||
| "Characters": "Caracteres", | ||||
| "Characters (no spaces)": "Caracteres (sin espacios)", | ||||
| "{0} characters": "{0} caracteres", | ||||
| "Error: Form submit field collision.": "Error: Colisi\u00f3n de campo al enviar formulario.", | ||||
| "Error: No form element found.": "Error: No se encuentra ning\u00fan elemento de formulario.", | ||||
| "Update": "Actualizar", | ||||
| "Color swatch": "Muestrario de colores", | ||||
| "Turquoise": "Turquesa", | ||||
| "Green": "Verde", | ||||
| "Blue": "Azul", | ||||
| "Purple": "P\u00farpura", | ||||
| "Navy Blue": "Azul marino", | ||||
| "Dark Turquoise": "Turquesa oscuro", | ||||
| "Dark Green": "Verde oscuro", | ||||
| "Medium Blue": "Azul medio", | ||||
| "Medium Purple": "P\u00farpura medio", | ||||
| "Midnight Blue": "Azul medio", | ||||
| "Yellow": "Amarillo", | ||||
| "Orange": "Naranja", | ||||
| "Red": "Rojo", | ||||
| "Light Gray": "Gris claro", | ||||
| "Gray": "Gris", | ||||
| "Dark Yellow": "Amarillo oscuro", | ||||
| "Dark Orange": "Naranja oscuro", | ||||
| "Dark Red": "Rojo oscuro", | ||||
| "Medium Gray": "Gris medio", | ||||
| "Dark Gray": "Gris oscuro", | ||||
| "Light Green": "Verde claro", | ||||
| "Light Yellow": "Amarillo claro", | ||||
| "Light Red": "Rojo claro", | ||||
| "Light Purple": "Morado claro", | ||||
| "Light Blue": "Azul claro", | ||||
| "Dark Purple": "Morado oscuro", | ||||
| "Dark Blue": "Azul oscuro", | ||||
| "Black": "Negro", | ||||
| "White": "Blanco", | ||||
| "Switch to or from fullscreen mode": "Activar o desactivar modo pantalla completa", | ||||
| "Open help dialog": "Abrir di\u00e1logo de ayuda", | ||||
| "history": "historial", | ||||
| "styles": "estilos", | ||||
| "formatting": "formato", | ||||
| "alignment": "alineaci\u00f3n", | ||||
| "indentation": "sangr\u00eda", | ||||
| "permanent pen": "bol\u00edgrafo permanente", | ||||
| "comments": "comentarios", | ||||
| "Format Painter": "Copiar formato", | ||||
| "Insert\/edit iframe": "Insertar\/editar iframe", | ||||
| "Capitalization": "Uso de may\u00fasculas", | ||||
| "lowercase": "min\u00fasculas", | ||||
| "UPPERCASE": "MAY\u00daSCULAS", | ||||
| "Title Case": "Tipo T\u00edtulo", | ||||
| "Permanent Pen Properties": "Propiedades del bol\u00edgrafo permanente", | ||||
| "Permanent pen properties...": "Propiedades del bol\u00edgrafo permanente...", | ||||
| "Font": "Fuente", | ||||
| "Size": "Tama\u00f1o", | ||||
| "More...": "M\u00e1s...", | ||||
| "Spellcheck Language": "Corrector", | ||||
| "Select...": "Seleccionar...", | ||||
| "Preferences": "Preferencias", | ||||
| "Yes": "S\u00ed", | ||||
| "No": "No", | ||||
| "Keyboard Navigation": "Navegaci\u00f3n con el teclado", | ||||
| "Version": "Versi\u00f3n", | ||||
| "Anchor": "Ancla", | ||||
| "Special character": "Car\u00e1cter especial", | ||||
| "Code sample": "Ejemplo de c\u00f3digo", | ||||
| "Color": "Color", | ||||
| "Emoticons": "Emoticonos", | ||||
| "Document properties": "Propiedades del documento", | ||||
| "Image": "Imagen", | ||||
| "Insert link": "Insertar enlace", | ||||
| "Target": "Destino", | ||||
| "Link": "Enlace", | ||||
| "Poster": "Miniatura", | ||||
| "Media": "Media", | ||||
| "Print": "Imprimir", | ||||
| "Prev": "Anterior", | ||||
| "Find and replace": "Buscar y reemplazar", | ||||
| "Whole words": "Palabras completas", | ||||
| "Spellcheck": "Corrector ortogr\u00e1fico", | ||||
| "Caption": "Subt\u00edtulo", | ||||
| "Insert template": "Insertar plantilla" | ||||
| }); | ||||
							
								
								
									
										370
									
								
								Modules/TinyMCE/langs/es_ES.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										370
									
								
								Modules/TinyMCE/langs/es_ES.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,370 @@ | ||||
| tinymce.addI18n('es_ES',{ | ||||
| "Redo": "Rehacer", | ||||
| "Undo": "Deshacer", | ||||
| "Cut": "Cortar", | ||||
| "Copy": "Copiar", | ||||
| "Paste": "Pegar", | ||||
| "Select all": "Seleccionar todo", | ||||
| "New document": "Nuevo documento", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Cancelar", | ||||
| "Visual aids": "Ayudas visuales", | ||||
| "Bold": "Negrita", | ||||
| "Italic": "Cursiva", | ||||
| "Underline": "Subrayado", | ||||
| "Strikethrough": "Tachado", | ||||
| "Superscript": "Super\u00edndice", | ||||
| "Subscript": "Sub\u00edndice", | ||||
| "Clear formatting": "Limpiar formato", | ||||
| "Align left": "Alinear a la izquierda", | ||||
| "Align center": "Alinear al centro", | ||||
| "Align right": "Alinear a la derecha", | ||||
| "Justify": "Justificar", | ||||
| "Bullet list": "Lista de vi\u00f1etas", | ||||
| "Numbered list": "Lista numerada", | ||||
| "Decrease indent": "Disminuir sangr\u00eda", | ||||
| "Increase indent": "Incrementar sangr\u00eda", | ||||
| "Close": "Cerrar", | ||||
| "Formats": "Formatos", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Su navegador no es compatible con el acceso directo al portapapeles. Use las teclas Crtl+X\/C\/V de su teclado.", | ||||
| "Headers": "Encabezados", | ||||
| "Header 1": "Encabezado 1", | ||||
| "Header 2": "Encabezado 2", | ||||
| "Header 3": "Encabezado 3", | ||||
| "Header 4": "Encabezado 4", | ||||
| "Header 5": "Encabezado 5", | ||||
| "Header 6": "Encabezado 6", | ||||
| "Headings": "Encabezados", | ||||
| "Heading 1": "Encabezado 1", | ||||
| "Heading 2": "Encabezado 2", | ||||
| "Heading 3": "Encabezado 3", | ||||
| "Heading 4": "Encabezado 4", | ||||
| "Heading 5": "Encabezado 5", | ||||
| "Heading 6": "Encabezado 6", | ||||
| "Preformatted": "Con formato previo", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "C\u00f3digo", | ||||
| "Paragraph": "P\u00e1rrafo", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Alineado", | ||||
| "Blocks": "Bloques", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Pegar est\u00e1 ahora en modo de texto sin formato. El contenido se pegar\u00e1 ahora como texto sin formato hasta que desactive esta opci\u00f3n.", | ||||
| "Fonts": "Fuentes", | ||||
| "Font Sizes": "Tama\u00f1os de fuente", | ||||
| "Class": "Clase", | ||||
| "Browse for an image": "Buscar una imagen", | ||||
| "OR": "O", | ||||
| "Drop an image here": "Arrastre una imagen aqu\u00ed", | ||||
| "Upload": "Cargar", | ||||
| "Block": "Bloque", | ||||
| "Align": "Alinear", | ||||
| "Default": "Por defecto", | ||||
| "Circle": "C\u00edrculo", | ||||
| "Disc": "Disco", | ||||
| "Square": "Cuadrado", | ||||
| "Lower Alpha": "Letras min\u00fasculas", | ||||
| "Lower Greek": "Griego en min\u00fasculas", | ||||
| "Lower Roman": "Romano en min\u00fasculas", | ||||
| "Upper Alpha": "Letras may\u00fasculas", | ||||
| "Upper Roman": "Romano en may\u00fasculas", | ||||
| "Anchor...": "Anclaje...", | ||||
| "Name": "Nombre", | ||||
| "Id": "Id.", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "El Id. debe comenzar por una letra, seguida solo de letras, n\u00fameros, guiones, puntos, dos puntos o guiones bajos.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Tiene cambios sin guardar. \u00bfEst\u00e1 seguro de que quiere salir?", | ||||
| "Restore last draft": "Restaurar el \u00faltimo borrador", | ||||
| "Special characters...": "Caracteres especiales...", | ||||
| "Source code": "C\u00f3digo fuente", | ||||
| "Insert\/Edit code sample": "Insertar\/editar ejemplo de c\u00f3digo", | ||||
| "Language": "Idioma", | ||||
| "Code sample...": "Ejemplo de c\u00f3digo...", | ||||
| "Color Picker": "Selector de colores", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Izquierda a derecha", | ||||
| "Right to left": "Derecha a izquierda", | ||||
| "Emoticons...": "Emoticones...", | ||||
| "Metadata and Document Properties": "Metadatos y propiedades del documento", | ||||
| "Title": "T\u00edtulo", | ||||
| "Keywords": "Palabras clave", | ||||
| "Description": "Descripci\u00f3n", | ||||
| "Robots": "Robots", | ||||
| "Author": "Autor", | ||||
| "Encoding": "Codificaci\u00f3n", | ||||
| "Fullscreen": "Pantalla completa", | ||||
| "Action": "Acci\u00f3n", | ||||
| "Shortcut": "Acceso directo", | ||||
| "Help": "Ayuda", | ||||
| "Address": "Direcci\u00f3n", | ||||
| "Focus to menubar": "Enfocar la barra del men\u00fa", | ||||
| "Focus to toolbar": "Enfocar la barra de herramientas", | ||||
| "Focus to element path": "Enfocar la ruta del elemento", | ||||
| "Focus to contextual toolbar": "Enfocar la barra de herramientas contextual", | ||||
| "Insert link (if link plugin activated)": "Insertar enlace (si el complemento de enlace est\u00e1 activado)", | ||||
| "Save (if save plugin activated)": "Guardar (si el complemento de guardar est\u00e1 activado)", | ||||
| "Find (if searchreplace plugin activated)": "Buscar (si el complemento buscar-reemplazar est\u00e1 activado)", | ||||
| "Plugins installed ({0}):": "Complementos instalados ({0}):", | ||||
| "Premium plugins:": "Complementos premium:", | ||||
| "Learn more...": "M\u00e1s informaci\u00f3n...", | ||||
| "You are using {0}": "Est\u00e1 usando {0}", | ||||
| "Plugins": "Complementos", | ||||
| "Handy Shortcuts": "Accesos pr\u00e1cticos", | ||||
| "Horizontal line": "L\u00ednea horizontal", | ||||
| "Insert\/edit image": "Insertar\/editar imagen", | ||||
| "Image description": "Descripci\u00f3n de la imagen", | ||||
| "Source": "C\u00f3digo fuente", | ||||
| "Dimensions": "Dimensiones", | ||||
| "Constrain proportions": "Restringir proporciones", | ||||
| "General": "General", | ||||
| "Advanced": "Avanzado", | ||||
| "Style": "Estilo", | ||||
| "Vertical space": "Espacio vertical", | ||||
| "Horizontal space": "Espacio horizontal", | ||||
| "Border": "Borde", | ||||
| "Insert image": "Insertar imagen", | ||||
| "Image...": "Imagen...", | ||||
| "Image list": "Lista de im\u00e1genes", | ||||
| "Rotate counterclockwise": "Girar a la izquierda", | ||||
| "Rotate clockwise": "Girar a la derecha", | ||||
| "Flip vertically": "Invertir verticalmente", | ||||
| "Flip horizontally": "Invertir horizontalmente", | ||||
| "Edit image": "Editar imagen", | ||||
| "Image options": "Opciones de imagen", | ||||
| "Zoom in": "Acercar", | ||||
| "Zoom out": "Alejar", | ||||
| "Crop": "Recortar", | ||||
| "Resize": "Redimensionar", | ||||
| "Orientation": "Orientaci\u00f3n", | ||||
| "Brightness": "Brillo", | ||||
| "Sharpen": "Enfocar", | ||||
| "Contrast": "Contraste", | ||||
| "Color levels": "Niveles de color", | ||||
| "Gamma": "Gama", | ||||
| "Invert": "Invertir", | ||||
| "Apply": "Aplicar", | ||||
| "Back": "Atr\u00e1s", | ||||
| "Insert date\/time": "Insertar fecha\/hora", | ||||
| "Date\/time": "Fecha\/hora", | ||||
| "Insert\/Edit Link": "Insertar\/editar enlace", | ||||
| "Insert\/edit link": "Insertar\/editar enlace", | ||||
| "Text to display": "Texto que mostrar", | ||||
| "Url": "URL", | ||||
| "Open link in...": "Abrir enlace en...", | ||||
| "Current window": "Ventana actual", | ||||
| "None": "Ninguno", | ||||
| "New window": "Nueva ventana", | ||||
| "Remove link": "Quitar enlace", | ||||
| "Anchors": "Anclajes", | ||||
| "Link...": "Enlace...", | ||||
| "Paste or type a link": "Pegue o escriba un enlace", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "La URL que ha introducido parece ser una direcci\u00f3n de correo electr\u00f3nico. \u00bfQuiere a\u00f1adir el prefijo necesario mailto:?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "La URL que ha introducido parece ser un enlace externo. \u00bfQuiere a\u00f1adir el prefijo necesario http:\/\/?", | ||||
| "Link list": "Lista de enlaces", | ||||
| "Insert video": "Insertar v\u00eddeo", | ||||
| "Insert\/edit video": "Insertar\/editar v\u00eddeo", | ||||
| "Insert\/edit media": "Insertar\/editar medio", | ||||
| "Alternative source": "Enlace alternativo", | ||||
| "Alternative source URL": "Origen de URL alternativo", | ||||
| "Media poster (Image URL)": "P\u00f3ster de medio (URL de imagen)", | ||||
| "Paste your embed code below:": "Pegue el c\u00f3digo para insertar a continuaci\u00f3n:", | ||||
| "Embed": "Insertar", | ||||
| "Media...": "Medios...", | ||||
| "Nonbreaking space": "Espacio de no separaci\u00f3n", | ||||
| "Page break": "Salto de p\u00e1gina", | ||||
| "Paste as text": "Pegar como texto", | ||||
| "Preview": "Previsualizar", | ||||
| "Print...": "Imprimir...", | ||||
| "Save": "Guardar", | ||||
| "Find": "Buscar", | ||||
| "Replace with": "Reemplazar por", | ||||
| "Replace": "Reemplazar", | ||||
| "Replace all": "Reemplazar todo", | ||||
| "Previous": "Anterior", | ||||
| "Next": "Siguiente", | ||||
| "Find and replace...": "Buscar y reemplazar...", | ||||
| "Could not find the specified string.": "No se encuentra la cadena especificada.", | ||||
| "Match case": "Coincidir may\u00fasculas y min\u00fasculas", | ||||
| "Find whole words only": "Solo palabras completas", | ||||
| "Spell check": "Revisar ortograf\u00eda", | ||||
| "Ignore": "Ignorar", | ||||
| "Ignore all": "Ignorar todo", | ||||
| "Finish": "Fin\u00e9s", | ||||
| "Add to Dictionary": "A\u00f1adir al Diccionario", | ||||
| "Insert table": "Insertar tabla", | ||||
| "Table properties": "Propiedades de la tabla", | ||||
| "Delete table": "Eliminar tabla", | ||||
| "Cell": "Celda", | ||||
| "Row": "Fila", | ||||
| "Column": "Columna", | ||||
| "Cell properties": "Propiedades de la celda", | ||||
| "Merge cells": "Combinar celdas", | ||||
| "Split cell": "Dividir celda", | ||||
| "Insert row before": "Insertar fila antes", | ||||
| "Insert row after": "Insertar fila despu\u00e9s", | ||||
| "Delete row": "Eliminar fila", | ||||
| "Row properties": "Propiedades de la fila", | ||||
| "Cut row": "Cortar fila", | ||||
| "Copy row": "Copiar fila", | ||||
| "Paste row before": "Pegar la fila antes", | ||||
| "Paste row after": "Pegar la fila despu\u00e9s", | ||||
| "Insert column before": "Insertar columna antes", | ||||
| "Insert column after": "Insertar columna despu\u00e9s", | ||||
| "Delete column": "Eliminar columna", | ||||
| "Cols": "Columnas", | ||||
| "Rows": "Filas", | ||||
| "Width": "Ancho", | ||||
| "Height": "Altura", | ||||
| "Cell spacing": "Espacio entre celdas", | ||||
| "Cell padding": "Relleno de celda", | ||||
| "Show caption": "Mostrar t\u00edtulo", | ||||
| "Left": "Izquierda", | ||||
| "Center": "Centro", | ||||
| "Right": "Derecha", | ||||
| "Cell type": "Tipo de celda", | ||||
| "Scope": "\u00c1mbito", | ||||
| "Alignment": "Alineaci\u00f3n", | ||||
| "H Align": "Alineaci\u00f3n horizontal", | ||||
| "V Align": "Alineaci\u00f3n vertical", | ||||
| "Top": "Superior", | ||||
| "Middle": "Central", | ||||
| "Bottom": "Inferior", | ||||
| "Header cell": "Celda de encabezado", | ||||
| "Row group": "Grupo de filas", | ||||
| "Column group": "Grupo de columnas", | ||||
| "Row type": "Tipo de fila", | ||||
| "Header": "Encabezado", | ||||
| "Body": "Cuerpo", | ||||
| "Footer": "Pie de p\u00e1gina", | ||||
| "Border color": "Color de borde", | ||||
| "Insert template...": "Insertar plantilla...", | ||||
| "Templates": "Plantillas", | ||||
| "Template": "Plantilla", | ||||
| "Text color": "Color del texto", | ||||
| "Background color": "Color de fondo", | ||||
| "Custom...": "Personalizado...", | ||||
| "Custom color": "Color personalizado", | ||||
| "No color": "Sin color", | ||||
| "Remove color": "Quitar color", | ||||
| "Table of Contents": "Tabla de contenido", | ||||
| "Show blocks": "Mostrar bloques", | ||||
| "Show invisible characters": "Mostrar caracteres invisibles", | ||||
| "Word count": "Contar palabras", | ||||
| "Words: {0}": "Palabras: {0}", | ||||
| "{0} words": "{0} palabras", | ||||
| "File": "Archivo", | ||||
| "Edit": "Editar", | ||||
| "Insert": "Insertar", | ||||
| "View": "Ver", | ||||
| "Format": "Formato", | ||||
| "Table": "Tabla", | ||||
| "Tools": "Herramientas", | ||||
| "Powered by {0}": "Con tecnolog\u00eda de {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto enriquecido. Pulse ALT-F9 para el men\u00fa. Pulse ALT-F10 para la barra de herramientas. Pulse ALT-0 para la ayuda.", | ||||
| "Image title": "Titulo de imagen", | ||||
| "Border width": "Ancho de borde", | ||||
| "Border style": "Estilo de borde", | ||||
| "Error": "Error", | ||||
| "Warn": "Advertencia", | ||||
| "Valid": "V\u00e1lido", | ||||
| "To open the popup, press Shift+Enter": "Para abrir el elemento emergente, pulse May\u00fas+Intro", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u00c1rea de texto enriquecido. Pulse ALT-0 para abrir la ayuda.", | ||||
| "System Font": "Fuente de sistema", | ||||
| "Failed to upload image: {0}": "Fallo al cargar imagen: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Fallo al cargar complemento: {0} desde URL {1}", | ||||
| "Failed to load plugin url: {0}": "Fallo al cargar URL del complemento: {0}", | ||||
| "Failed to initialize plugin: {0}": "Fallo al iniciar el complemento: {0}", | ||||
| "example": "ejemplo", | ||||
| "Search": "Buscar", | ||||
| "All": "Todo", | ||||
| "Currency": "Divisa", | ||||
| "Text": "Texto", | ||||
| "Quotations": "Comillas", | ||||
| "Mathematical": "S\u00edmbolo matem\u00e1tico", | ||||
| "Extended Latin": "Latino extendido A", | ||||
| "Symbols": "S\u00edmbolos", | ||||
| "Arrows": "Flechas", | ||||
| "User Defined": "Definido por el usuario", | ||||
| "dollar sign": "signo de d\u00f3lar", | ||||
| "currency sign": "signo de divisa", | ||||
| "euro-currency sign": "signo de euro", | ||||
| "colon sign": "signo de dos puntos", | ||||
| "cruzeiro sign": "signo de cruceiro", | ||||
| "french franc sign": "signo de franco franc\u00e9s", | ||||
| "lira sign": "signo de lira", | ||||
| "mill sign": "signo de mill", | ||||
| "naira sign": "signo de naira", | ||||
| "peseta sign": "signo de peseta", | ||||
| "rupee sign": "signo de rupia", | ||||
| "won sign": "signo de won", | ||||
| "new sheqel sign": "signo de nuevo s\u00e9quel", | ||||
| "dong sign": "signo de dong", | ||||
| "kip sign": "signo de kip", | ||||
| "tugrik sign": "signo de tugrik", | ||||
| "drachma sign": "signo de dracma", | ||||
| "german penny symbol": "signo de penique alem\u00e1n", | ||||
| "peso sign": "signo de peso", | ||||
| "guarani sign": "signo de guaran\u00ed", | ||||
| "austral sign": "signo de austral", | ||||
| "hryvnia sign": "signo de grivna", | ||||
| "cedi sign": "signo de cedi", | ||||
| "livre tournois sign": "signo de libra tornesa", | ||||
| "spesmilo sign": "signo de spesmilo", | ||||
| "tenge sign": "signo de tenge", | ||||
| "indian rupee sign": "signo de rupia india", | ||||
| "turkish lira sign": "signo de lira turca", | ||||
| "nordic mark sign": "signo de marco n\u00f3rdico", | ||||
| "manat sign": "signo de manat", | ||||
| "ruble sign": "signo de rublo", | ||||
| "yen character": "car\u00e1cter de yen", | ||||
| "yuan character": "car\u00e1cter de yuan", | ||||
| "yuan character, in hong kong and taiwan": "car\u00e1cter de yuan en Hong Kong y Taiw\u00e1n", | ||||
| "yen\/yuan character variant one": "Variante uno de car\u00e1cter de yen\/yuan", | ||||
| "Loading emoticons...": "Cargando emoticonos...", | ||||
| "Could not load emoticons": "No se han podido cargar los emoticonos", | ||||
| "People": "Personas", | ||||
| "Animals and Nature": "Animales y naturaleza", | ||||
| "Food and Drink": "Comida y bebida", | ||||
| "Activity": "Actividad", | ||||
| "Travel and Places": "Viajes y lugares", | ||||
| "Objects": "Objetos", | ||||
| "Flags": "Banderas", | ||||
| "Characters": "Caracteres", | ||||
| "Characters (no spaces)": "Caracteres (sin espacios)", | ||||
| "Error: Form submit field collision.": "Error: Colisi\u00f3n de campo al enviar formulario.", | ||||
| "Error: No form element found.": "Error: No se encuentra ning\u00fan elemento de formulario.", | ||||
| "Update": "Actualizar", | ||||
| "Color swatch": "Muestrario de colores", | ||||
| "Turquoise": "Turquesa", | ||||
| "Green": "Verde", | ||||
| "Blue": "Azul", | ||||
| "Purple": "P\u00farpura", | ||||
| "Navy Blue": "Azul marino", | ||||
| "Dark Turquoise": "Turquesa oscuro", | ||||
| "Dark Green": "Verde oscuro", | ||||
| "Medium Blue": "Azul medio", | ||||
| "Medium Purple": "P\u00farpura medio", | ||||
| "Midnight Blue": "Azul medio", | ||||
| "Yellow": "Amarillo", | ||||
| "Orange": "Naranja", | ||||
| "Red": "Rojo", | ||||
| "Light Gray": "Gris claro", | ||||
| "Gray": "Gris", | ||||
| "Dark Yellow": "Amarillo oscuro", | ||||
| "Dark Orange": "Naranja oscuro", | ||||
| "Dark Red": "Rojo oscuro", | ||||
| "Medium Gray": "Gris medio", | ||||
| "Dark Gray": "Gris oscuro", | ||||
| "Black": "Negro", | ||||
| "White": "Blanco", | ||||
| "Switch to or from fullscreen mode": "Activar o desactivar modo pantalla completa", | ||||
| "Open help dialog": "Abrir di\u00e1logo de ayuda", | ||||
| "history": "historial", | ||||
| "styles": "estilos", | ||||
| "formatting": "formato", | ||||
| "alignment": "alineaci\u00f3n", | ||||
| "indentation": "sangr\u00eda", | ||||
| "permanent pen": "bol\u00edgrafo permanente", | ||||
| "comments": "comentarios" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/es_MX.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/es_MX.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('es_MX',{ | ||||
| "Redo": "Rehacer", | ||||
| "Undo": "Deshacer", | ||||
| "Cut": "Cortar", | ||||
| "Copy": "Copiar", | ||||
| "Paste": "Pegar", | ||||
| "Select all": "Seleccionar todo", | ||||
| "New document": "Nuevo documento", | ||||
| "Ok": "Aceptar", | ||||
| "Cancel": "Cancelar", | ||||
| "Visual aids": "Ayudas visuales", | ||||
| "Bold": "Negrita", | ||||
| "Italic": "Cursiva", | ||||
| "Underline": "Subrayado", | ||||
| "Strikethrough": "Tachado", | ||||
| "Superscript": "Super\u00edndice", | ||||
| "Subscript": "Sub\u00edndice", | ||||
| "Clear formatting": "Borrar formato", | ||||
| "Align left": "Alinear a la izquierda", | ||||
| "Align center": "Alinear al centro", | ||||
| "Align right": "Alinear a la derecha", | ||||
| "Justify": "Justificar", | ||||
| "Bullet list": "Lista de vi\u00f1etas", | ||||
| "Numbered list": "Lista numerada", | ||||
| "Decrease indent": "Reducir sangr\u00eda", | ||||
| "Increase indent": "Aumentar sangr\u00eda", | ||||
| "Close": "Cerrar", | ||||
| "Formats": "Formatos", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Su navegador no admite el acceso directo al portapapeles. Utilice los m\u00e9todos abreviados de teclado Ctrl+ X\/C\/V.", | ||||
| "Headers": "Encabezados", | ||||
| "Header 1": "Encabezado 1", | ||||
| "Header 2": "Encabezado 2", | ||||
| "Header 3": "Encabezado 3", | ||||
| "Header 4": "Encabezado 4", | ||||
| "Header 5": "Encabezado 5", | ||||
| "Header 6": "Encabezado 6", | ||||
| "Headings": "T\u00edtulos", | ||||
| "Heading 1": "T\u00edtulo 1", | ||||
| "Heading 2": "T\u00edtulo 2", | ||||
| "Heading 3": "T\u00edtulo 3", | ||||
| "Heading 4": "T\u00edtulo 4", | ||||
| "Heading 5": "T\u00edtulo 5", | ||||
| "Heading 6": "T\u00edtulo 6", | ||||
| "Preformatted": "Con formato previo", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "C\u00f3digo", | ||||
| "Paragraph": "P\u00e1rrafo", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "En l\u00ednea", | ||||
| "Blocks": "Bloques", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Se pegar\u00e1 en texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.", | ||||
| "Fonts": "Fuentes", | ||||
| "Font Sizes": "Tama\u00f1os de fuente", | ||||
| "Class": "Clase", | ||||
| "Browse for an image": "Buscar una imagen", | ||||
| "OR": "O", | ||||
| "Drop an image here": "Soltar una imagen aqu\u00ed", | ||||
| "Upload": "Cargar", | ||||
| "Block": "Bloque", | ||||
| "Align": "Alinear", | ||||
| "Default": "Por defecto", | ||||
| "Circle": "Circulo", | ||||
| "Disc": "Disco", | ||||
| "Square": "Cuadro", | ||||
| "Lower Alpha": "Alfa min\u00fascula", | ||||
| "Lower Greek": "Griega min\u00fascula", | ||||
| "Lower Roman": "Romano min\u00fascula", | ||||
| "Upper Alpha": "Alfa may\u00fascula", | ||||
| "Upper Roman": "May\u00fascula Romana", | ||||
| "Anchor...": "Marcador...", | ||||
| "Name": "Nombre", | ||||
| "Id": "Identificador", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "El Identificador debe comenzar con una letra, seguido solo por letras, n\u00fameros, puntos, guiones medios o guiones bajos.  ", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "No se  han guardado los cambios. \u00bfSeguro que desea abandonar la p\u00e1gina?", | ||||
| "Restore last draft": "Restaurar el \u00faltimo borrador", | ||||
| "Special character...": "Car\u00e1cter especial...", | ||||
| "Source code": "C\u00f3digo fuente", | ||||
| "Insert\/Edit code sample": "Insertar\/Editar c\u00f3digo muestra", | ||||
| "Language": "idioma", | ||||
| "Code sample...": "Ejemplo de c\u00f3digo...", | ||||
| "Color Picker": "Selector de colores", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Izquierda a derecha", | ||||
| "Right to left": "Derecha a Izquierda", | ||||
| "Emoticons...": "Emoticonos...", | ||||
| "Metadata and Document Properties": "Metadatos y propiedades del documento", | ||||
| "Title": "T\u00edtulo", | ||||
| "Keywords": "Palabras clave", | ||||
| "Description": "Descripci\u00f3n ", | ||||
| "Robots": "Robots", | ||||
| "Author": "Autor", | ||||
| "Encoding": "Codificaci\u00f3n", | ||||
| "Fullscreen": "Pantalla completa", | ||||
| "Action": "Acci\u00f3n", | ||||
| "Shortcut": "Atajo", | ||||
| "Help": "Ayuda", | ||||
| "Address": "Direcci\u00f3n", | ||||
| "Focus to menubar": "Enfocar en barra de menu", | ||||
| "Focus to toolbar": "Enfocar en barra de herramientas", | ||||
| "Focus to element path": "Enfocar ruta del elemento", | ||||
| "Focus to contextual toolbar": "Enfocar en barra de herramientas contextual", | ||||
| "Insert link (if link plugin activated)": "Insertar enlace (si enlace del plugin est\u00e1 activo)", | ||||
| "Save (if save plugin activated)": "Guardar (si el plugin guardar est\u00e1 activo)", | ||||
| "Find (if searchreplace plugin activated)": "Buscar (si el plugin buscar\/reemplazar est\u00e1 activo)", | ||||
| "Plugins installed ({0}):": "Plugins instalados ({0}):", | ||||
| "Premium plugins:": "Plugins premium:", | ||||
| "Learn more...": "Aprende m\u00e1s...", | ||||
| "You are using {0}": "est\u00e1s usando {0}", | ||||
| "Plugins": "Plugins", | ||||
| "Handy Shortcuts": "Atajos \u00fatiles", | ||||
| "Horizontal line": "L\u00ednea Horizontal", | ||||
| "Insert\/edit image": "Insertar\/editar imagen", | ||||
| "Image description": "Descripci\u00f3n de imagen", | ||||
| "Source": "Origen", | ||||
| "Dimensions": "Dimensiones", | ||||
| "Constrain proportions": "Restringir proporciones", | ||||
| "General": "General", | ||||
| "Advanced": "Avanzado", | ||||
| "Style": "Estilo", | ||||
| "Vertical space": "Espacio vertical", | ||||
| "Horizontal space": "Espacio horizontal", | ||||
| "Border": "Borde", | ||||
| "Insert image": "Insertar imagen", | ||||
| "Image...": "Imagen...", | ||||
| "Image list": "Lista de im\u00e1genes", | ||||
| "Rotate counterclockwise": "Rotar en sentido contrario a las manecillas", | ||||
| "Rotate clockwise": "Rotar en sentido de las manecillas", | ||||
| "Flip vertically": "Voltear verticalmente", | ||||
| "Flip horizontally": "Volter horizontalmente", | ||||
| "Edit image": "Editar imagen", | ||||
| "Image options": "Opciones de la imagen", | ||||
| "Zoom in": "Acercar", | ||||
| "Zoom out": "Alejar", | ||||
| "Crop": "Recortar", | ||||
| "Resize": "Cambiar tama\u00f1o", | ||||
| "Orientation": "Orientaci\u00f3n", | ||||
| "Brightness": "Brillo", | ||||
| "Sharpen": "Nitidez", | ||||
| "Contrast": "Contraste", | ||||
| "Color levels": "Niveles de Color", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Invertir", | ||||
| "Apply": "Aplicar", | ||||
| "Back": "Regresar", | ||||
| "Insert date\/time": "Insertar fecha\/hora", | ||||
| "Date\/time": "Fecha\/hora", | ||||
| "Insert\/Edit Link": "Insertar\/editar v\u00ednculo", | ||||
| "Insert\/edit link": "Inserta\/editar enlace", | ||||
| "Text to display": "Texto a mostrar", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Abrir v\u00ednculo en...", | ||||
| "Current window": "Ventana actual", | ||||
| "None": "Ninguno", | ||||
| "New window": "Nueva ventana", | ||||
| "Remove link": "Eliminar elnace", | ||||
| "Anchors": "Anclas", | ||||
| "Link...": "V\u00ednculo...", | ||||
| "Paste or type a link": "Pega o escribe un enlace", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "El URL que ha insertado tiene formato de correo electr\u00f3nico. \u00bfDesea agregar con prefijo \"mailto:\"?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "El URL que ha ingresado es un enlace externo. \u00bfDesea agregar el prefijo \"http:\/\/\"?", | ||||
| "Link list": "Lista de enlaces", | ||||
| "Insert video": "Insertar video", | ||||
| "Insert\/edit video": "Insertar\/editar video", | ||||
| "Insert\/edit media": "Insertar\/editar multimedia", | ||||
| "Alternative source": "Fuente alternativa", | ||||
| "Alternative source URL": "URL de origen alternativo", | ||||
| "Media poster (Image URL)": "P\u00f3ster multimedia (URL de la imagen)", | ||||
| "Paste your embed code below:": "Pegue su c\u00f3digo de inserci\u00f3n abajo:", | ||||
| "Embed": "Incrustar", | ||||
| "Media...": "Elemento multimedia...", | ||||
| "Nonbreaking space": "Espacio de no separaci\u00f3n", | ||||
| "Page break": "Salto de p\u00e1gina ", | ||||
| "Paste as text": "Copiar como texto", | ||||
| "Preview": "Vista previa ", | ||||
| "Print...": "Imprimir...", | ||||
| "Save": "Guardar", | ||||
| "Find": "Buscar", | ||||
| "Replace with": "Remplazar con", | ||||
| "Replace": "Remplazar", | ||||
| "Replace all": "Remplazar todo", | ||||
| "Previous": "Anterior", | ||||
| "Next": "Siguiente", | ||||
| "Find and replace...": "Buscar y reemplazar...", | ||||
| "Could not find the specified string.": "No se ha encontrado la cadena especificada.", | ||||
| "Match case": "Coincidencia", | ||||
| "Find whole words only": "Buscar solo palabras completas", | ||||
| "Spell check": "Corrector ortogr\u00e1fico", | ||||
| "Ignore": "Ignorar", | ||||
| "Ignore all": "Ignorar todo", | ||||
| "Finish": "Terminar", | ||||
| "Add to Dictionary": "Agregar al diccionario ", | ||||
| "Insert table": "Insertar tabla", | ||||
| "Table properties": "Propiedades de tabla", | ||||
| "Delete table": "Eliminar tabla", | ||||
| "Cell": "Celda", | ||||
| "Row": "Rengl\u00f3n ", | ||||
| "Column": "Columna", | ||||
| "Cell properties": "Propiedades de celda", | ||||
| "Merge cells": "Unir celdas", | ||||
| "Split cell": "Dividir celdas", | ||||
| "Insert row before": "Insertar rengl\u00f3n antes", | ||||
| "Insert row after": "Insertar rengl\u00f3n despu\u00e9s", | ||||
| "Delete row": "Eliminar rengl\u00f3n ", | ||||
| "Row properties": "Propiedades del rengl\u00f3n ", | ||||
| "Cut row": "Cortar renglon", | ||||
| "Copy row": "Copiar rengl\u00f3n ", | ||||
| "Paste row before": "Pegar rengl\u00f3n antes", | ||||
| "Paste row after": "Pegar rengl\u00f3n despu\u00e9s", | ||||
| "Insert column before": "Insertar columna antes", | ||||
| "Insert column after": "Insertar columna despu\u00e9s", | ||||
| "Delete column": "Eliminar columna", | ||||
| "Cols": "Columnas", | ||||
| "Rows": "Renglones ", | ||||
| "Width": "Ancho", | ||||
| "Height": "Alto", | ||||
| "Cell spacing": "Espacio entre celdas", | ||||
| "Cell padding": "Relleno de la celda", | ||||
| "Show caption": "Mostrar leyenda", | ||||
| "Left": "Izquierda", | ||||
| "Center": "Centro", | ||||
| "Right": "Derecha", | ||||
| "Cell type": "Tipo de celda", | ||||
| "Scope": "Alcance", | ||||
| "Alignment": "Alineaci\u00f3n ", | ||||
| "H Align": "Alineaci\u00f3n Horizontal", | ||||
| "V Align": "Alineaci\u00f3n Vertical", | ||||
| "Top": "Arriba", | ||||
| "Middle": "Centrado", | ||||
| "Bottom": "Abajo", | ||||
| "Header cell": "Celda de encabezado", | ||||
| "Row group": "Grupo de renglones", | ||||
| "Column group": "Grupo de columnas", | ||||
| "Row type": "Tipo de rengl\u00f3n ", | ||||
| "Header": "Encabezado", | ||||
| "Body": "Cuerpo", | ||||
| "Footer": "Pie", | ||||
| "Border color": "Color del borde", | ||||
| "Insert template...": "Insertar plantilla...", | ||||
| "Templates": "Plantilla", | ||||
| "Template": "Plantilla", | ||||
| "Text color": "Color de letra", | ||||
| "Background color": "Color de fondo", | ||||
| "Custom...": "Personalizar", | ||||
| "Custom color": "Perzonalizar color", | ||||
| "No color": "Sin color", | ||||
| "Remove color": "Eliminar color", | ||||
| "Table of Contents": "Tabla de Contenidos", | ||||
| "Show blocks": "Mostrar bloques", | ||||
| "Show invisible characters": "Mostrar caracteres invisibles", | ||||
| "Word count": "Contar palabras", | ||||
| "Count": "Recuento", | ||||
| "Document": "Documento", | ||||
| "Selection": "Selecci\u00f3n", | ||||
| "Words": "Palabras", | ||||
| "Words: {0}": "Palabras:{0}", | ||||
| "{0} words": "{0} palabras", | ||||
| "File": "Archivo", | ||||
| "Edit": "Editar", | ||||
| "Insert": "Insertar", | ||||
| "View": "Vistas", | ||||
| "Format": "Formato", | ||||
| "Table": "Tabla", | ||||
| "Tools": "Herramientas", | ||||
| "Powered by {0}": "Creado con {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Presione dentro del \u00e1rea de texto ALT-F9 para invocar el men\u00fa, ALT-F10 para la barra de herramientas y ALT-0 para la ayuda.", | ||||
| "Image title": "T\u00edtulo de la imagen", | ||||
| "Border width": "Ancho del borde", | ||||
| "Border style": "Estilo del borde", | ||||
| "Error": "Error", | ||||
| "Warn": "Advertencia", | ||||
| "Valid": "V\u00e1lido", | ||||
| "To open the popup, press Shift+Enter": "Para abrir la ventana emergente, pulse May\u00fas+Intro", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u00c1rea de texto enriquecido. Pulse ALT-0 para obtener ayuda.", | ||||
| "System Font": "Fuente del sistema", | ||||
| "Failed to upload image: {0}": "Error al cargar la imagen: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Error al cargar el complemento: {0} desde la url {1}", | ||||
| "Failed to load plugin url: {0}": "Error al cargar la url del complemento: {0}", | ||||
| "Failed to initialize plugin: {0}": "Error al inicializar el complemento: {0}", | ||||
| "example": "ejemplo", | ||||
| "Search": "Buscar", | ||||
| "All": "Todo", | ||||
| "Currency": "Moneda", | ||||
| "Text": "Texto", | ||||
| "Quotations": "Comillas", | ||||
| "Mathematical": "Matem\u00e1ticos", | ||||
| "Extended Latin": "Lat\u00edn extendido", | ||||
| "Symbols": "S\u00edmbolos", | ||||
| "Arrows": "Flechas", | ||||
| "User Defined": "Definido por el usuario", | ||||
| "dollar sign": "signo de d\u00f3lar", | ||||
| "currency sign": "signo de moneda", | ||||
| "euro-currency sign": "signo de euro", | ||||
| "colon sign": "signo del col\u00f3n", | ||||
| "cruzeiro sign": "signo del cruzeiro", | ||||
| "french franc sign": "signo del franco franc\u00e9s", | ||||
| "lira sign": "signo de la lira", | ||||
| "mill sign": "signo de mil", | ||||
| "naira sign": "signo del naira", | ||||
| "peseta sign": "signo de la peseta", | ||||
| "rupee sign": "signo de la rupia", | ||||
| "won sign": "signo del won", | ||||
| "new sheqel sign": "signo de nuevo shequel", | ||||
| "dong sign": "signo del dong", | ||||
| "kip sign": "signo del kip", | ||||
| "tugrik sign": "signo del tugrik", | ||||
| "drachma sign": "signo del dracma", | ||||
| "german penny symbol": "signo del penique alem\u00e1n", | ||||
| "peso sign": "signo del peso", | ||||
| "guarani sign": "signo del guaran\u00ed", | ||||
| "austral sign": "signo del austral", | ||||
| "hryvnia sign": "signo de hryvnia", | ||||
| "cedi sign": "signo de cedi", | ||||
| "livre tournois sign": "signo de livre tournois", | ||||
| "spesmilo sign": "signo de spesmilo", | ||||
| "tenge sign": "signo de tenge", | ||||
| "indian rupee sign": "signo de la rupia india", | ||||
| "turkish lira sign": "signo de la lira turca", | ||||
| "nordic mark sign": "signo del marco n\u00f3rdico", | ||||
| "manat sign": "signo de manat", | ||||
| "ruble sign": "signo de rublo", | ||||
| "yen character": "car\u00e1cter del yen", | ||||
| "yuan character": "car\u00e1cter del yuan", | ||||
| "yuan character, in hong kong and taiwan": "car\u00e1cter del yuan, en Hong Kong y Taiw\u00e1n", | ||||
| "yen\/yuan character variant one": "variante uno del car\u00e1cter del yen\/yuan", | ||||
| "Loading emoticons...": "Cargando emoticonos...", | ||||
| "Could not load emoticons": "No se pudieron cargar los emoticonos", | ||||
| "People": "Personas", | ||||
| "Animals and Nature": "Animales y naturaleza", | ||||
| "Food and Drink": "Comida y bebida", | ||||
| "Activity": "Actividad", | ||||
| "Travel and Places": "Viajes y lugares", | ||||
| "Objects": "Objetos", | ||||
| "Flags": "Banderas", | ||||
| "Characters": "Caracteres", | ||||
| "Characters (no spaces)": "Caracteres (sin espacios)", | ||||
| "{0} characters": "{0} caracteres", | ||||
| "Error: Form submit field collision.": "Error: colisi\u00f3n de campo env\u00edo de formulario.", | ||||
| "Error: No form element found.": "Error: no se encontr\u00f3 ning\u00fan elemento de formulario.", | ||||
| "Update": "Actualizar", | ||||
| "Color swatch": "Muestrario de colores", | ||||
| "Turquoise": "Turquesa", | ||||
| "Green": "Verde", | ||||
| "Blue": "Azul", | ||||
| "Purple": "Morado", | ||||
| "Navy Blue": "Azul marino", | ||||
| "Dark Turquoise": "Turquesa oscuro", | ||||
| "Dark Green": "Verde oscuro", | ||||
| "Medium Blue": "Azul medio", | ||||
| "Medium Purple": "Morado medio", | ||||
| "Midnight Blue": "Azul noche", | ||||
| "Yellow": "Amarillo", | ||||
| "Orange": "Anaranjado", | ||||
| "Red": "Rojo", | ||||
| "Light Gray": "Gris claro", | ||||
| "Gray": "Gris", | ||||
| "Dark Yellow": "Amarillo oscuro", | ||||
| "Dark Orange": "Anaranjado oscuro", | ||||
| "Dark Red": "Rojo oscuro", | ||||
| "Medium Gray": "Gris medio", | ||||
| "Dark Gray": "Gris oscuro", | ||||
| "Light Green": "Verde claro", | ||||
| "Light Yellow": "Amarillo claro", | ||||
| "Light Red": "Rojo claro", | ||||
| "Light Purple": "Morado claro", | ||||
| "Light Blue": "Azul claro", | ||||
| "Dark Purple": "Morado oscuro", | ||||
| "Dark Blue": "Azul oscuro", | ||||
| "Black": "Negro", | ||||
| "White": "Blanco", | ||||
| "Switch to or from fullscreen mode": "Cambiar a modo de pantalla completa o salir de \u00e9l", | ||||
| "Open help dialog": "Abrir di\u00e1logo de ayuda", | ||||
| "history": "historial", | ||||
| "styles": "estilos", | ||||
| "formatting": "formato", | ||||
| "alignment": "alineaci\u00f3n", | ||||
| "indentation": "sangr\u00eda", | ||||
| "permanent pen": "l\u00e1piz permanente", | ||||
| "comments": "comentarios", | ||||
| "Format Painter": "Copiar formato", | ||||
| "Insert\/edit iframe": "Insertar\/editar marco flotante", | ||||
| "Capitalization": "Uso de may\u00fasculas", | ||||
| "lowercase": "min\u00fascula", | ||||
| "UPPERCASE": "MAY\u00daSCULA", | ||||
| "Title Case": "Tipo t\u00edtulo", | ||||
| "Permanent Pen Properties": "Propiedades del l\u00e1piz permanente", | ||||
| "Permanent pen properties...": "Propiedades del l\u00e1piz permanente...", | ||||
| "Font": "Fuente", | ||||
| "Size": "Tama\u00f1o", | ||||
| "More...": "M\u00e1s...", | ||||
| "Spellcheck Language": "Idioma de la revisi\u00f3n ortogr\u00e1fica", | ||||
| "Select...": "Seleccionar...", | ||||
| "Preferences": "Preferencias", | ||||
| "Yes": "S\u00ed", | ||||
| "No": "No", | ||||
| "Keyboard Navigation": "Navegaci\u00f3n con el teclado", | ||||
| "Version": "Versi\u00f3n", | ||||
| "Anchor": "Anclar", | ||||
| "Special character": "Caracter especial", | ||||
| "Code sample": "C\u00f3digo muestra", | ||||
| "Color": "Color", | ||||
| "Emoticons": "Emoticones", | ||||
| "Document properties": "Propiedades del documento", | ||||
| "Image": "Imagen", | ||||
| "Insert link": "Insertar enlace", | ||||
| "Target": "Objetivo", | ||||
| "Link": "Enlace", | ||||
| "Poster": "Cartel", | ||||
| "Media": "Multimedia", | ||||
| "Print": "Imprimir", | ||||
| "Prev": "Anterior", | ||||
| "Find and replace": "Buscar y reemplazar", | ||||
| "Whole words": "Palabras completas", | ||||
| "Spellcheck": "Revisi\u00f3n ortogr\u00e1fica", | ||||
| "Caption": "Subt\u00edtulo", | ||||
| "Insert template": "Insertar plantilla" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/eu.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/eu.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('eu',{ | ||||
| "Redo": "Berregin", | ||||
| "Undo": "Desegin", | ||||
| "Cut": "Ebaki", | ||||
| "Copy": "Kopiatu", | ||||
| "Paste": "Itsatsi", | ||||
| "Select all": "Hautatu dena", | ||||
| "New document": "Dokumentu berria", | ||||
| "Ok": "Ondo", | ||||
| "Cancel": "Ezeztatu", | ||||
| "Visual aids": "Laguntza bisualak", | ||||
| "Bold": "Lodia", | ||||
| "Italic": "Etzana", | ||||
| "Underline": "Azpimarratua", | ||||
| "Strikethrough": "Marratua", | ||||
| "Superscript": "Goi-indizea", | ||||
| "Subscript": "Azpiindizea", | ||||
| "Clear formatting": "Ezabatu formatua", | ||||
| "Align left": "Lerrokatu ezkerrean", | ||||
| "Align center": "Lerrokatu erdian", | ||||
| "Align right": "Lerrokatu eskuinean", | ||||
| "Justify": "Justifikatuta", | ||||
| "Bullet list": "Bulet zerrenda", | ||||
| "Numbered list": "Zenbaki-zerrenda", | ||||
| "Decrease indent": "Txikitu koska", | ||||
| "Increase indent": "Handitu koska", | ||||
| "Close": "Itxi", | ||||
| "Formats": "Formatuak", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Zure nabigatzaileak ez du arbela zuzenean erabiltzeko euskarririk. Mesedez erabili CTRL+X\/C\/V teklatuko lasterbideak.", | ||||
| "Headers": "Goiburuak", | ||||
| "Header 1": "1. goiburua", | ||||
| "Header 2": "2. goiburua", | ||||
| "Header 3": "3. goiburua", | ||||
| "Header 4": "4. goiburua", | ||||
| "Header 5": "5. goiburua", | ||||
| "Header 6": "6. goiburua", | ||||
| "Headings": "Izenburuak", | ||||
| "Heading 1": "1. izenburua", | ||||
| "Heading 2": "2. izenburua", | ||||
| "Heading 3": "3. izenburua", | ||||
| "Heading 4": "4. izenburua", | ||||
| "Heading 5": "5. izenburua", | ||||
| "Heading 6": "6. izenburua", | ||||
| "Preformatted": "Aurreformateatuta", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Kodea", | ||||
| "Paragraph": "Paragrafoa", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Txertatuta", | ||||
| "Blocks": "Blokeak", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Itsatsi testu arrunt moduan dago orain. Edukiak testu arruntak bezala itsatsiko dira aukera hau itzaltzen duzunera arte.", | ||||
| "Fonts": "Letra-motak", | ||||
| "Font Sizes": "Letra-tamainak", | ||||
| "Class": "Klasea", | ||||
| "Browse for an image": "Irudia arakatu", | ||||
| "OR": "EDO", | ||||
| "Drop an image here": "Irudia hona ekarri", | ||||
| "Upload": "Kargatu", | ||||
| "Block": "Blokea", | ||||
| "Align": "Lerrokatu", | ||||
| "Default": "Lehenetstia", | ||||
| "Circle": "Zirkulua", | ||||
| "Disc": "Diskoa", | ||||
| "Square": "Karratua", | ||||
| "Lower Alpha": "Behe alfa", | ||||
| "Lower Greek": "Behe grekoa", | ||||
| "Lower Roman": "Behe erromatarra", | ||||
| "Upper Alpha": "Goi alfa", | ||||
| "Upper Roman": "Goi erromatarra", | ||||
| "Anchor...": "Aingura...", | ||||
| "Name": "Izena", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Ida hizki batekin hasi behar da, jarraian hizkiak, zenbakiak, gidoiak, puntuak, bi-puntu edo azpiko marrak bakarrik izan ditzake.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Gorde gabeko aldaketak dituzu, zihur zaude hemendik irten nahi duzula?", | ||||
| "Restore last draft": "Leheneratu azken zirriborroa", | ||||
| "Special character...": "Karaktere bereziak...", | ||||
| "Source code": "Iturburu-kodea", | ||||
| "Insert\/Edit code sample": "Txertatu\/editatu kode adibidea", | ||||
| "Language": "Hizkuntza", | ||||
| "Code sample...": "Kode adibidea...", | ||||
| "Color Picker": "Kolore-hautatzailea", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Ezkerretik eskuinera", | ||||
| "Right to left": "Eskuinetik ezkerrera", | ||||
| "Emoticons...": "Emotikonoak...", | ||||
| "Metadata and Document Properties": "Metadatuak eta dokumentuaren propietateak", | ||||
| "Title": "Titulua", | ||||
| "Keywords": "Hitz gakoak", | ||||
| "Description": "Deskribapena", | ||||
| "Robots": "Robotak", | ||||
| "Author": "Egilea", | ||||
| "Encoding": "Encoding", | ||||
| "Fullscreen": "Pantaila osoa", | ||||
| "Action": "Akzioa", | ||||
| "Shortcut": "Laster tekla", | ||||
| "Help": "Laguntza", | ||||
| "Address": "Helbidea", | ||||
| "Focus to menubar": "Fokoa menu-barrara eraman", | ||||
| "Focus to toolbar": "Fokoa tresna-barrara eraman", | ||||
| "Focus to element path": "Fokoa elementuaren bidera eraman", | ||||
| "Focus to contextual toolbar": "Fokoa kontestuko tresna-barrara eraman", | ||||
| "Insert link (if link plugin activated)": "Lotura txertatu (lotura plugina aktibatuta badago)", | ||||
| "Save (if save plugin activated)": "Gorde (gordetzeko plugina aktibatuta badago)", | ||||
| "Find (if searchreplace plugin activated)": "Bilatu (bilatuordezkatu plugina instalatuta badago)", | ||||
| "Plugins installed ({0}):": "Instalatutako pluginak ({0}):", | ||||
| "Premium plugins:": "Premium pluginak:", | ||||
| "Learn more...": "Gehiago ikasi...", | ||||
| "You are using {0}": "{0} erabiltzen ari zara", | ||||
| "Plugins": "Pluginak", | ||||
| "Handy Shortcuts": "Laster-tekla erabilgarriak", | ||||
| "Horizontal line": "Marra horizontala", | ||||
| "Insert\/edit image": "Irudia txertatu\/editatu", | ||||
| "Image description": "Irudiaren deskribapena", | ||||
| "Source": "Iturburua", | ||||
| "Dimensions": "Neurriak", | ||||
| "Constrain proportions": "Zerraditu proportzioak", | ||||
| "General": "Orokorra", | ||||
| "Advanced": "Aurreratua", | ||||
| "Style": "Estiloa", | ||||
| "Vertical space": "Hutsune bertikala", | ||||
| "Horizontal space": "Hutsune horizontala", | ||||
| "Border": "Ertza", | ||||
| "Insert image": "Irudia txertatu", | ||||
| "Image...": "Irudia...", | ||||
| "Image list": "Irudi zerrenda", | ||||
| "Rotate counterclockwise": "Erlojuaren aurkako eran biratu", | ||||
| "Rotate clockwise": "Erlojuaren eran biratu", | ||||
| "Flip vertically": "Bertikalki irauli", | ||||
| "Flip horizontally": "Horizontalki irauli", | ||||
| "Edit image": "Irudia editatu", | ||||
| "Image options": "Irudiaren aukerak", | ||||
| "Zoom in": "Zooma handiagotu", | ||||
| "Zoom out": "Zooma txikiagotu", | ||||
| "Crop": "Moztu", | ||||
| "Resize": "Tamaina aldatu", | ||||
| "Orientation": "Orientazioa", | ||||
| "Brightness": "Distira", | ||||
| "Sharpen": "Zorroztu", | ||||
| "Contrast": "Kontrastatu", | ||||
| "Color levels": "Kolore mailak", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Biratu", | ||||
| "Apply": "Gorde", | ||||
| "Back": "Atzera", | ||||
| "Insert date\/time": "Data\/ordua txertatu", | ||||
| "Date\/time": "Data\/ordua", | ||||
| "Insert\/Edit Link": "Lotura txertatu\/aldatu...", | ||||
| "Insert\/edit link": "Esteka txertatu\/editatu", | ||||
| "Text to display": "Bistaratzeko testua", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Lotura hemen ireki...", | ||||
| "Current window": "Leiho hau", | ||||
| "None": "Bat ere ez", | ||||
| "New window": "Lehio berria", | ||||
| "Remove link": "Kendu esteka", | ||||
| "Anchors": "Estekak", | ||||
| "Link...": "Esteka...", | ||||
| "Paste or type a link": "Itsatsu edo idatzi lotura", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Sartu duzun URL-ak e-posta helbidea dela dirudi. Nahi duzu dagokion mailto: aurrizkia gehitzea?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Sartu duzun URL-ak kanpoko esteka dela dirudi. Nahi duzu dagokion http:\/\/ aurrizkia gehitzea?", | ||||
| "Link list": "Loturen zerrenda", | ||||
| "Insert video": "Bideoa txertatu", | ||||
| "Insert\/edit video": "Bideoa txertatu\/editatu", | ||||
| "Insert\/edit media": "Media txertatu\/editatu", | ||||
| "Alternative source": "Iturburu alternatiboa", | ||||
| "Alternative source URL": "Ordezko jatorri URL-a", | ||||
| "Media poster (Image URL)": "Media posterra (irudiaren URL-a)", | ||||
| "Paste your embed code below:": "Itsatsi hemen zure enkapsulatzeko kodea:", | ||||
| "Embed": "Kapsulatu", | ||||
| "Media...": "Multimedia...", | ||||
| "Nonbreaking space": "Zuriune zatiezina", | ||||
| "Page break": "Orrialde-jauzia", | ||||
| "Paste as text": "Itsatsi testu bezala", | ||||
| "Preview": "Aurrebista", | ||||
| "Print...": "Inprimatu...", | ||||
| "Save": "Gorde", | ||||
| "Find": "Bilatu", | ||||
| "Replace with": "Honekin ordeztu", | ||||
| "Replace": "Ordeztu", | ||||
| "Replace all": "Ordeztu dena", | ||||
| "Previous": "Aurrekoa", | ||||
| "Next": "Hurrengoa", | ||||
| "Find and replace...": "Bilatu eta ordezkatu...", | ||||
| "Could not find the specified string.": "Ezin izan da zehaztutako katea aurkitu.", | ||||
| "Match case": "Maiuskula\/minuskula", | ||||
| "Find whole words only": "Hitz osoak bakarrik bilatu", | ||||
| "Spell check": "Hizkuntza zuzenketa", | ||||
| "Ignore": "Ez ikusi", | ||||
| "Ignore all": "Ez ikusi guztia", | ||||
| "Finish": "Amaitu", | ||||
| "Add to Dictionary": "Hiztegira gehitu", | ||||
| "Insert table": "Txertatu taula", | ||||
| "Table properties": "Taularen propietateak", | ||||
| "Delete table": "Taula ezabatu", | ||||
| "Cell": "Gelaxka", | ||||
| "Row": "Errenkada", | ||||
| "Column": "Zutabea", | ||||
| "Cell properties": "Gelaxkaren propietateak", | ||||
| "Merge cells": "Batu gelaxkak", | ||||
| "Split cell": "Banatu gelaxkak", | ||||
| "Insert row before": "Txertatu errenkada aurretik", | ||||
| "Insert row after": "Txertatu errenkada ostean", | ||||
| "Delete row": "Ezabatu errenkada", | ||||
| "Row properties": "Errenkadaren propietateak", | ||||
| "Cut row": "Ebaki errenkada", | ||||
| "Copy row": "Kopiatu errenkada", | ||||
| "Paste row before": "Itsatsi errenkada aurretik", | ||||
| "Paste row after": "Itsatsi errenkada ostean", | ||||
| "Insert column before": "Txertatu zutabe aurretik", | ||||
| "Insert column after": "Txertatu zutabea ostean", | ||||
| "Delete column": "Ezabatu zutabea", | ||||
| "Cols": "Zutabeak", | ||||
| "Rows": "Errenkadak", | ||||
| "Width": "Zabalera", | ||||
| "Height": "Altuera", | ||||
| "Cell spacing": "Gelaxka arteko tartea", | ||||
| "Cell padding": "Gelaxken betegarria", | ||||
| "Show caption": "Erakutsi irudi-oina erakutsi", | ||||
| "Left": "Ezkerra", | ||||
| "Center": "Erdia", | ||||
| "Right": "Eskuina", | ||||
| "Cell type": "Gelaxka mota", | ||||
| "Scope": "Esparrua", | ||||
| "Alignment": "Lerrokatzea", | ||||
| "H Align": "Lerrokatze horizontala", | ||||
| "V Align": "Lerrokatze bertikala", | ||||
| "Top": "Goian", | ||||
| "Middle": "Erdian", | ||||
| "Bottom": "Behean", | ||||
| "Header cell": "Goiburuko gelaxka", | ||||
| "Row group": "Lerro taldea", | ||||
| "Column group": "Zutabe taldea", | ||||
| "Row type": "Lerro mota", | ||||
| "Header": "Goiburua", | ||||
| "Body": "Gorputza", | ||||
| "Footer": "Oina", | ||||
| "Border color": "Inguruko marraren kolorea", | ||||
| "Insert template...": "Txantiloia txertatu...", | ||||
| "Templates": "Txantiloiak", | ||||
| "Template": "Txantiloia", | ||||
| "Text color": "Testuaren kolorea", | ||||
| "Background color": "Atzeko kolorea", | ||||
| "Custom...": "Pertsonalizatu", | ||||
| "Custom color": "Pertsonalizatutako kolorea", | ||||
| "No color": "Kolorerik ez", | ||||
| "Remove color": "Kendu kolorea", | ||||
| "Table of Contents": "Edukien taula", | ||||
| "Show blocks": "Erakutsi blokeak", | ||||
| "Show invisible characters": "Erakutsi karaktere izkutuak", | ||||
| "Word count": "Hizki-kontaketa", | ||||
| "Count": "Zenbatu", | ||||
| "Document": "Dokumentua", | ||||
| "Selection": "Aukera", | ||||
| "Words": "Hitzak", | ||||
| "Words: {0}": "Hitzak: {0}", | ||||
| "{0} words": "{0} hitz", | ||||
| "File": "Fitxategia", | ||||
| "Edit": "Editatu", | ||||
| "Insert": "Sartu", | ||||
| "View": "Ikusi", | ||||
| "Format": "Formatua", | ||||
| "Table": "Taula", | ||||
| "Tools": "Tresnak", | ||||
| "Powered by {0}": "{0}rekin egina", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Testu aberastuko area. Sakatu ALT-F9 menurako. Sakatu ALT-F10 tresna-barrarako. Sakatu ALT-0 laguntzarako", | ||||
| "Image title": "Irudiaren izenburua", | ||||
| "Border width": "Ertzaren zabalera", | ||||
| "Border style": "Ertzaren estiloa", | ||||
| "Error": "Errorea", | ||||
| "Warn": "Oharra", | ||||
| "Valid": "Zuzena", | ||||
| "To open the popup, press Shift+Enter": "Leiho berria irekitzeko, sakatu Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Testu aberastuko area. Sakatu ALT-0 laguntza lortzeko.", | ||||
| "System Font": "Sistemaren letra-mota", | ||||
| "Failed to upload image: {0}": "Errorea gertatu da irudia igotzean: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Errorea gertatu da {0} plugina kargatzean {1} url-tik", | ||||
| "Failed to load plugin url: {0}": "Errorea gertatu da pluginaren url-a kargatzean: {0}", | ||||
| "Failed to initialize plugin: {0}": "Errorea gertatu da plugina hasieratzean: {0}", | ||||
| "example": "adibidea", | ||||
| "Search": "Bilatu", | ||||
| "All": "Guztiak", | ||||
| "Currency": "Moneta", | ||||
| "Text": "Testua", | ||||
| "Quotations": "Aipuak", | ||||
| "Mathematical": "Matematika", | ||||
| "Extended Latin": "Latin zabaldua", | ||||
| "Symbols": "Ikurrak", | ||||
| "Arrows": "Geziak", | ||||
| "User Defined": "Erabiltzaileak definitutakoak", | ||||
| "dollar sign": "dolarraren ikurra", | ||||
| "currency sign": "monetaren ikurra", | ||||
| "euro-currency sign": "euroaren ikurra", | ||||
| "colon sign": "bi puntuen ikurra", | ||||
| "cruzeiro sign": "cruzeiroaren ikurra", | ||||
| "french franc sign": "libera frantsesaren ikurra", | ||||
| "lira sign": "liraren ikurra", | ||||
| "mill sign": "millaren ikurra", | ||||
| "naira sign": "naira ikurra", | ||||
| "peseta sign": "pezetaren ikurra", | ||||
| "rupee sign": "rupiaren ikurra", | ||||
| "won sign": "wonaren ikurra", | ||||
| "new sheqel sign": "sheqel berriaren ikurra", | ||||
| "dong sign": "dongaren ikurra", | ||||
| "kip sign": "kiparen ikurra", | ||||
| "tugrik sign": "tugrikaren ikurra", | ||||
| "drachma sign": "drakmaren ikurra", | ||||
| "german penny symbol": "alemaniako peniaren ikurra", | ||||
| "peso sign": "pesoaren ikurra", | ||||
| "guarani sign": "guaraniaren ikurra", | ||||
| "austral sign": "australaren ikurra", | ||||
| "hryvnia sign": "hryvniaren ikurra", | ||||
| "cedi sign": "cediaren ikurra", | ||||
| "livre tournois sign": "libre tournoisaren ikurra", | ||||
| "spesmilo sign": "spesmiloaren ikurra", | ||||
| "tenge sign": "tengearen ikurra", | ||||
| "indian rupee sign": "indiako rupiaren ikurra", | ||||
| "turkish lira sign": "lira turkiarraren ikurra", | ||||
| "nordic mark sign": "iparraldeko markoaren ikurra", | ||||
| "manat sign": "manataren ikurra", | ||||
| "ruble sign": "rubloaren ikurra", | ||||
| "yen character": "yenaren karakterea", | ||||
| "yuan character": "yuanaren karakterea", | ||||
| "yuan character, in hong kong and taiwan": "yuanaren karakterea, hong kong eta taiwanen", | ||||
| "yen\/yuan character variant one": "yen\/yuan karakterearen 1go bariantea", | ||||
| "Loading emoticons...": "Emotikonoak kargatzen...", | ||||
| "Could not load emoticons": "Ezin izan dira emotikonoak kargatu", | ||||
| "People": "Jendea", | ||||
| "Animals and Nature": "Animaliak eta natura", | ||||
| "Food and Drink": "Janari eta edaria", | ||||
| "Activity": "Ekintzak", | ||||
| "Travel and Places": "Bidaiak eta lekuak", | ||||
| "Objects": "Objektuak", | ||||
| "Flags": "Banderak", | ||||
| "Characters": "Karaktereak", | ||||
| "Characters (no spaces)": "Karaktereak (espaziorik gabe)", | ||||
| "{0} characters": "{0} karaktere", | ||||
| "Error: Form submit field collision.": "Errorea: formularioaren eremuetan talka gertatu da.", | ||||
| "Error: No form element found.": "Errorea: ez da formularioa aurkitu.", | ||||
| "Update": "Eguneratu", | ||||
| "Color swatch": "Koloreak", | ||||
| "Turquoise": "Turkesa", | ||||
| "Green": "Berdea", | ||||
| "Blue": "Urdina", | ||||
| "Purple": "Morea", | ||||
| "Navy Blue": "Itsas-urdina", | ||||
| "Dark Turquoise": "Turkesa iluna", | ||||
| "Dark Green": "Berde iluna", | ||||
| "Medium Blue": "Tarteko urdina", | ||||
| "Medium Purple": "Tarteko morea", | ||||
| "Midnight Blue": "Gauerdiko urdina", | ||||
| "Yellow": "Horia", | ||||
| "Orange": "Laranja", | ||||
| "Red": "Gorria", | ||||
| "Light Gray": "Gris argia", | ||||
| "Gray": "Grisa", | ||||
| "Dark Yellow": "Hori iluna", | ||||
| "Dark Orange": "Laranja iluna", | ||||
| "Dark Red": "Gorri iluna", | ||||
| "Medium Gray": "Tarteko grisa", | ||||
| "Dark Gray": "Gris iluna", | ||||
| "Light Green": "Berde argia", | ||||
| "Light Yellow": "Hori argia", | ||||
| "Light Red": "Gorri argia", | ||||
| "Light Purple": "More argia", | ||||
| "Light Blue": "Urdin argia", | ||||
| "Dark Purple": "More iluna", | ||||
| "Dark Blue": "Urdin iluna", | ||||
| "Black": "Beltza", | ||||
| "White": "Zuria", | ||||
| "Switch to or from fullscreen mode": "Pantaila osoko modura joan edo handik itzuli", | ||||
| "Open help dialog": "Laguntza elkarrizketa ireki", | ||||
| "history": "historia", | ||||
| "styles": "estiloak", | ||||
| "formatting": "formatua", | ||||
| "alignment": "lerrokatzea", | ||||
| "indentation": "koska", | ||||
| "permanent pen": "boligrafo iraunkorra", | ||||
| "comments": "iruzkinak", | ||||
| "Format Painter": "Formatua kopiatu", | ||||
| "Insert\/edit iframe": "Txertatu\/editatu bideoa", | ||||
| "Capitalization": "Letra larriak", | ||||
| "lowercase": "Letra xeheak", | ||||
| "UPPERCASE": "Maiuskula", | ||||
| "Title Case": "Izenburu kasua", | ||||
| "Permanent Pen Properties": "Boligrafo iraunkorraren ezaugarriak", | ||||
| "Permanent pen properties...": "Boligrafo iraunkorraren ezaugarriak...", | ||||
| "Font": "Letra-motak", | ||||
| "Size": "Tamaina", | ||||
| "More...": "Gehiago...", | ||||
| "Spellcheck Language": "Zuzenketa ortografikoaren hizkuntza", | ||||
| "Select...": "Aukeratu...", | ||||
| "Preferences": "Lehentasunak", | ||||
| "Yes": "Bai", | ||||
| "No": "Ez", | ||||
| "Keyboard Navigation": "Teklatuaren nabigazioa", | ||||
| "Version": "Bertsioa", | ||||
| "Anchor": "Esteka", | ||||
| "Special character": "Karaktere bereziak", | ||||
| "Code sample": "Kode adibidea", | ||||
| "Color": "Kolorea", | ||||
| "Emoticons": "Irrifartxoak", | ||||
| "Document properties": "Dokumentuaren propietateak", | ||||
| "Image": "Irudia", | ||||
| "Insert link": "Esteka txertatu", | ||||
| "Target": "Target", | ||||
| "Link": "Lotura", | ||||
| "Poster": "Poster-a", | ||||
| "Media": "Media", | ||||
| "Print": "Inprimatu", | ||||
| "Prev": "Aurrekoa", | ||||
| "Find and replace": "Bilatu eta ordeztu", | ||||
| "Whole words": "hitz osoak", | ||||
| "Spellcheck": "Egiaztapenak", | ||||
| "Caption": "Epigrafea", | ||||
| "Insert template": "Txertatu txantiloia" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/fa.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/fa.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('fa',{ | ||||
| "Redo": "\u0628\u0627\u0632\u0627\u0646\u062c\u0627\u0645", | ||||
| "Undo": "\u0648\u0627\u06af\u0631\u062f", | ||||
| "Cut": "\u0628\u0631\u0634", | ||||
| "Copy": "\u06a9\u067e\u06cc", | ||||
| "Paste": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646", | ||||
| "Select all": "\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647", | ||||
| "New document": "\u0633\u0646\u062f \u062c\u062f\u06cc\u062f", | ||||
| "Ok": "\u062a\u0623\u06cc\u06cc\u062f", | ||||
| "Cancel": "\u0644\u063a\u0648", | ||||
| "Visual aids": "\u06a9\u0645\u06a9\u200c\u0647\u0627\u06cc \u0628\u0635\u0631\u06cc", | ||||
| "Bold": "\u067e\u0631\u0631\u0646\u06af", | ||||
| "Italic": "\u06a9\u062c", | ||||
| "Underline": "\u0632\u06cc\u0631 \u062e\u0637 \u062f\u0627\u0631", | ||||
| "Strikethrough": "\u062e\u0637 \u0632\u062f\u0646", | ||||
| "Superscript": "\u0628\u0627\u0644\u0627\u0646\u06af\u0627\u0634\u062a", | ||||
| "Subscript": "\u0632\u06cc\u0631\u0646\u06af\u0627\u0634\u062a", | ||||
| "Clear formatting": "\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc", | ||||
| "Align left": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc \u0627\u0632 \u0686\u067e", | ||||
| "Align center": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc \u0627\u0632 \u0648\u0633\u0637", | ||||
| "Align right": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc \u0627\u0632 \u0631\u0627\u0633\u062a", | ||||
| "Justify": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc \u062f\u0648\u0637\u0631\u0641\u0647", | ||||
| "Bullet list": "\u0641\u0647\u0631\u0633\u062a \u0646\u0634\u0627\u0646\u0647\u200c\u062f\u0627\u0631", | ||||
| "Numbered list": "\u0641\u0647\u0631\u0633\u062a \u0634\u0645\u0627\u0631\u0647\u200c\u062f\u0627\u0631", | ||||
| "Decrease indent": "\u06a9\u0627\u0647\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc", | ||||
| "Increase indent": "\u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc", | ||||
| "Close": "\u0628\u0633\u062a\u0646", | ||||
| "Formats": "\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc\u200c\u0647\u0627", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0645\u0631\u0648\u0631\u06af\u0631 \u0634\u0645\u0627 \u0627\u0632 \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u0633\u062a\u0642\u06cc\u0645 \u0628\u0647 \u06a9\u0644\u06cc\u067e\u200c\u0628\u0648\u0631\u062f \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f\u060c \u0644\u0637\u0641\u0627\u064b \u0627\u0632 \u0645\u06cc\u0627\u0646\u0628\u0631\u0647\u0627\u06cc Ctrl+X\/C\/V \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f.", | ||||
| "Headers": "\u0633\u0631\u0628\u0631\u06af\u200c\u0647\u0627", | ||||
| "Header 1": "\u0633\u0631\u0628\u0631\u06af 1", | ||||
| "Header 2": "\u0633\u0631\u0628\u0631\u06af 2", | ||||
| "Header 3": "\u0633\u0631\u0628\u0631\u06af 3", | ||||
| "Header 4": "\u0633\u0631\u0628\u0631\u06af 4", | ||||
| "Header 5": "\u0633\u0631\u0628\u0631\u06af 5", | ||||
| "Header 6": "\u0633\u0631\u0628\u0631\u06af 6", | ||||
| "Headings": "\u0633\u0631\u0641\u0635\u0644\u200c\u0647\u0627", | ||||
| "Heading 1": "\u0633\u0631\u0641\u0635\u0644 1", | ||||
| "Heading 2": "\u0633\u0631\u0641\u0635\u0644 2", | ||||
| "Heading 3": "\u0633\u0631\u0641\u0635\u0644 3", | ||||
| "Heading 4": "\u0633\u0631\u0641\u0635\u0644 4", | ||||
| "Heading 5": "\u0633\u0631\u0641\u0635\u0644 5", | ||||
| "Heading 6": "\u0633\u0631\u0641\u0635\u0644 6", | ||||
| "Preformatted": "\u0627\u0632 \u067e\u06cc\u0634 \u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc\u200c\u0634\u062f\u0647", | ||||
| "Div": "\u0628\u062e\u0634", | ||||
| "Pre": "\u067e\u06cc\u0634", | ||||
| "Code": "\u06a9\u062f", | ||||
| "Paragraph": "\u067e\u0627\u0631\u0627\u06af\u0631\u0627\u0641", | ||||
| "Blockquote": "\u0646\u0642\u0644 \u0642\u0648\u0644 \u0628\u0644\u0648\u06a9\u06cc", | ||||
| "Inline": "\u0647\u0645\u200c\u0631\u0627\u0633\u062a\u0627", | ||||
| "Blocks": "\u0628\u0644\u0648\u06a9\u200c\u0647\u0627", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0647\u0645 \u0627\u06a9\u0646\u0648\u0646 \u062f\u0631 \u062d\u0627\u0644\u062a \u0645\u062a\u0646 \u0633\u0627\u062f\u0647 \u0627\u0633\u062a. \u062a\u0627 \u0632\u0645\u0627\u0646\u06cc \u06a9\u0647 \u0627\u06cc\u0646 \u062d\u0627\u0644\u062a \u0631\u0627 \u063a\u06cc\u0631\u200c\u0641\u0639\u0627\u0644 \u0646\u06a9\u0646\u06cc\u062f\u060c \u0645\u062d\u062a\u0648\u0627 \u062f\u0631 \u062d\u0627\u0644\u062a \u0645\u062a\u0646 \u0633\u0627\u062f\u0647 \u0627\u0636\u0627\u0641\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f.", | ||||
| "Fonts": "\u0641\u0648\u0646\u062a\u200c\u200c\u0647\u0627", | ||||
| "Font Sizes": "\u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0641\u0648\u0646\u062a", | ||||
| "Class": "\u0637\u0628\u0642\u0647", | ||||
| "Browse for an image": "\u06af\u0634\u062a\u0646 \u0628\u0631\u0627\u06cc \u0639\u06a9\u0633 \u0645\u0648\u0631\u062f \u0646\u0638\u0631", | ||||
| "OR": "OR", | ||||
| "Drop an image here": "\u062a\u0635\u0648\u06cc\u0631 \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u0631\u0627 \u0627\u06cc\u0646\u062c\u0627 \u0631\u0647\u0627 \u06a9\u0646\u06cc\u062f", | ||||
| "Upload": "\u0622\u067e\u0644\u0648\u062f", | ||||
| "Block": "\u0628\u0644\u0648\u06a9", | ||||
| "Align": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc", | ||||
| "Default": "\u067e\u06cc\u0634\u0641\u0631\u0636", | ||||
| "Circle": "\u062f\u0627\u06cc\u0631\u0647", | ||||
| "Disc": "\u062f\u06cc\u0633\u06a9", | ||||
| "Square": "\u0645\u0631\u0628\u0639", | ||||
| "Lower Alpha": "\u0622\u0644\u0641\u0627\u0621 \u06a9\u0648\u0686\u06a9", | ||||
| "Lower Greek": "\u06cc\u0648\u0646\u0627\u0646\u06cc \u06a9\u0648\u0686\u06a9", | ||||
| "Lower Roman": "\u0631\u0648\u0645\u06cc \u06a9\u0648\u0686\u06a9", | ||||
| "Upper Alpha": "\u0622\u0644\u0641\u0627\u0621 \u0628\u0632\u0631\u06af", | ||||
| "Upper Roman": "\u0631\u0648\u0645\u06cc \u0628\u0632\u0631\u06af", | ||||
| "Anchor...": "\u0642\u0644\u0627\u0628...", | ||||
| "Name": "\u0646\u0627\u0645", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u0634\u0645\u0627 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0630\u062e\u06cc\u0631\u0647 \u0646\u0634\u062f\u0647 \u0627\u06cc \u062f\u0627\u0631\u06cc\u062f\u060c \u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u0628\u0631\u0648\u06cc\u062f\u061f", | ||||
| "Restore last draft": "\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f\u0646 \u0622\u062e\u0631\u06cc\u0646 \u067e\u06cc\u0634 \u0646\u0648\u06cc\u0633", | ||||
| "Special character...": "\u0646\u0648\u06cc\u0633\u06c0 \u0648\u06cc\u0698\u0647...", | ||||
| "Source code": "\u06a9\u062f \u0645\u0646\u0628\u0639", | ||||
| "Insert\/Edit code sample": "Insert\/Edit code sample", | ||||
| "Language": "Language", | ||||
| "Code sample...": "\u0646\u0645\u0648\u0646\u0647 \u06a9\u062f...", | ||||
| "Color Picker": "\u0627\u0646\u062a\u062e\u0627\u0628\u200c\u06a9\u0646\u0646\u062f\u0647 \u0631\u0646\u06af", | ||||
| "R": "\u0642\u0631\u0645\u0632", | ||||
| "G": "\u0633\u0628\u0632", | ||||
| "B": "\u0622\u0628\u06cc", | ||||
| "Left to right": "\u0686\u067e \u0628\u0647 \u0631\u0627\u0633\u062a", | ||||
| "Right to left": "\u0631\u0627\u0633\u062a \u0628\u0647 \u0686\u067e", | ||||
| "Emoticons...": "\u0635\u0648\u0631\u062a\u06a9\u200c\u0647\u0627...", | ||||
| "Metadata and Document Properties": "\u0641\u0631\u0627\u062f\u0627\u062f\u0647 \u0648 \u0645\u0634\u062e\u0635\u0627\u062a \u0633\u0646\u062f", | ||||
| "Title": "\u0639\u0646\u0648\u0627\u0646", | ||||
| "Keywords": "\u06a9\u0644\u0645\u0627\u062a \u06a9\u0644\u06cc\u062f\u06cc", | ||||
| "Description": "\u062a\u0648\u0636\u06cc\u062d\u0627\u062a", | ||||
| "Robots": "\u0631\u0628\u0627\u062a\u200c\u0647\u0627", | ||||
| "Author": "\u0646\u0648\u06cc\u0633\u0646\u062f\u0647", | ||||
| "Encoding": "\u06a9\u062f \u06af\u0630\u0627\u0631\u06cc", | ||||
| "Fullscreen": "\u062a\u0645\u0627\u0645 \u0635\u0641\u062d\u0647", | ||||
| "Action": "\u0627\u0642\u062f\u0627\u0645", | ||||
| "Shortcut": "\u0645\u06cc\u0627\u0646\u0628\u0631", | ||||
| "Help": "\u0631\u0627\u0647\u0646\u0645\u0627", | ||||
| "Address": "\u0622\u062f\u0631\u0633", | ||||
| "Focus to menubar": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0646\u0648\u0627\u0631 \u0645\u0646\u0648", | ||||
| "Focus to toolbar": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631", | ||||
| "Focus to element path": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0645\u0633\u06cc\u0631 \u0627\u0644\u0645\u0627\u0646", | ||||
| "Focus to contextual toolbar": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 \u0628\u0627\u0641\u062a\u0627\u0631\u06cc", | ||||
| "Insert link (if link plugin activated)": "\u062f\u0631\u062c \u067e\u06cc\u0648\u0646\u062f (\u062f\u0631 \u0635\u0648\u0631\u062a \u0641\u0639\u0627\u0644 \u0628\u0648\u062f\u0646 \u0627\u0641\u0632\u0648\u0646\u0647\u0654 \u067e\u06cc\u0648\u0646\u062f)", | ||||
| "Save (if save plugin activated)": "\u0630\u062e\u06cc\u0631\u0647\u00a0(\u062f\u0631 \u0635\u0648\u0631\u062a \u0641\u0639\u0627\u0644 \u0628\u0648\u062f\u0646 \u0627\u0641\u0632\u0648\u0646\u0647\u0654 \u0630\u062e\u06cc\u0631\u0647)", | ||||
| "Find (if searchreplace plugin activated)": "\u06cc\u0627\u0641\u062a\u0646 (\u062f\u0631 \u0635\u0648\u0631\u062a \u0641\u0639\u0627\u0644 \u0628\u0648\u062f\u0646 \u0627\u0641\u0632\u0648\u0646\u0647\u0654 \u062c\u0633\u062a\u062c\u0648\/\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc)", | ||||
| "Plugins installed ({0}):": "\u0627\u0641\u0632\u0648\u0646\u0647\u200c\u0647\u0627\u06cc \u0646\u0635\u0628\u200c\u0634\u062f\u0647 ({0}):", | ||||
| "Premium plugins:": "\u0627\u0641\u0632\u0648\u0646\u0647\u200c\u0647\u0627\u06cc \u067e\u0648\u0644\u06cc:", | ||||
| "Learn more...": "\u06cc\u0627\u062f\u06af\u06cc\u0631\u06cc \u0628\u06cc\u0634\u062a\u0631...", | ||||
| "You are using {0}": "\u062f\u0631 \u062d\u0627\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 {0} \u0647\u0633\u062a\u06cc\u062f", | ||||
| "Plugins": "\u0627\u0641\u0632\u0648\u0646\u0647\u200c\u0647\u0627", | ||||
| "Handy Shortcuts": "\u0645\u06cc\u0627\u0646\u0628\u0631\u0647\u0627\u06cc \u0645\u0641\u06cc\u062f", | ||||
| "Horizontal line": "\u062e\u0637 \u0627\u0641\u0642\u06cc", | ||||
| "Insert\/edit image": "\u0627\u0636\u0627\u0641\u0647\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0631\u062f\u0646 \u062a\u0635\u0648\u06cc\u0631", | ||||
| "Image description": "\u062a\u0648\u0636\u06cc\u062d\u0627\u062a \u0639\u06a9\u0633", | ||||
| "Source": "\u0645\u0646\u0628\u0639", | ||||
| "Dimensions": "\u0627\u0628\u0639\u0627\u062f", | ||||
| "Constrain proportions": "\u062d\u0641\u0638 \u062a\u0646\u0627\u0633\u0628", | ||||
| "General": "\u0639\u0645\u0648\u0645\u06cc", | ||||
| "Advanced": "\u067e\u06cc\u0634\u0631\u0641\u062a\u0647", | ||||
| "Style": "\u0633\u0628\u06a9", | ||||
| "Vertical space": "\u0641\u0636\u0627\u06cc \u0639\u0645\u0648\u062f\u06cc", | ||||
| "Horizontal space": "\u0641\u0636\u0627\u06cc \u0627\u0641\u0642\u06cc", | ||||
| "Border": "\u062d\u0627\u0634\u06cc\u0647", | ||||
| "Insert image": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0635\u0648\u06cc\u0631", | ||||
| "Image...": "\u062a\u0635\u0648\u06cc\u0631...", | ||||
| "Image list": "\u0641\u0647\u0631\u0633\u062a \u062a\u0635\u0648\u06cc\u0631", | ||||
| "Rotate counterclockwise": "Rotate counterclockwise", | ||||
| "Rotate clockwise": "Rotate clockwise", | ||||
| "Flip vertically": "Flip vertically", | ||||
| "Flip horizontally": "Flip horizontally", | ||||
| "Edit image": "Edit image", | ||||
| "Image options": "Image options", | ||||
| "Zoom in": "Zoom in", | ||||
| "Zoom out": "Zoom out", | ||||
| "Crop": "Crop", | ||||
| "Resize": "Resize", | ||||
| "Orientation": "Orientation", | ||||
| "Brightness": "Brightness", | ||||
| "Sharpen": "Sharpen", | ||||
| "Contrast": "Contrast", | ||||
| "Color levels": "Color levels", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Invert", | ||||
| "Apply": "Apply", | ||||
| "Back": "Back", | ||||
| "Insert date\/time": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062a\u0627\u0631\u06cc\u062e\/\u0632\u0645\u0627\u0646", | ||||
| "Date\/time": "Date\/time", | ||||
| "Insert\/Edit Link": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u067e\u06cc\u0648\u0646\u062f", | ||||
| "Insert\/edit link": "\u0627\u0636\u0627\u0641\u0647\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0631\u062f\u0646 \u0644\u06cc\u0646\u06a9", | ||||
| "Text to display": "\u0645\u062a\u0646 \u0628\u0631\u0627\u06cc \u0646\u0645\u0627\u06cc\u0634", | ||||
| "Url": "\u0627\u062f\u0631\u0633 \u0644\u06cc\u0646\u06a9", | ||||
| "Open link in...": "\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u067e\u06cc\u0648\u0646\u062f \u062f\u0631...", | ||||
| "Current window": "\u067e\u0646\u062c\u0631\u0647 \u062c\u0627\u0631\u06cc", | ||||
| "None": "\u0647\u06cc\u0686 \u06a9\u062f\u0627\u0645", | ||||
| "New window": "\u067e\u0646\u062c\u0631\u0647 \u062c\u062f\u06cc\u062f", | ||||
| "Remove link": "\u062d\u0630\u0641 \u0644\u06cc\u0646\u06a9", | ||||
| "Anchors": "\u0644\u0646\u06af\u0631 - \u0644\u06cc\u0646\u06a9 \u062f\u0627\u062e\u0644 \u0635\u0641\u062d\u0647", | ||||
| "Link...": "\u067e\u06cc\u0648\u0646\u062f...", | ||||
| "Paste or type a link": "Paste or type a link", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?", | ||||
| "Link list": "\u0641\u0647\u0631\u0633\u062a \u067e\u06cc\u0648\u0646\u062f\u0647\u0627", | ||||
| "Insert video": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0641\u0627\u06cc\u0644 \u062a\u0635\u0648\u06cc\u0631\u06cc", | ||||
| "Insert\/edit video": "\u0627\u0636\u0627\u0641\u0647\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u06a9\u0631\u062f\u0646 \u0641\u0627\u06cc\u0644 \u062a\u0635\u0648\u06cc\u0631\u06cc", | ||||
| "Insert\/edit media": "Insert\/edit media", | ||||
| "Alternative source": "\u0645\u0646\u0628\u0639 \u062f\u06cc\u06af\u0631", | ||||
| "Alternative source URL": "\u0646\u0634\u0627\u0646\u06cc \u0648\u0628 \u0645\u0646\u0628\u0639 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646", | ||||
| "Media poster (Image URL)": "\u067e\u0648\u0633\u062a\u0631 \u0631\u0633\u0627\u0646\u0647 (\u0646\u0634\u0627\u0646\u06cc \u0648\u0628 \u062a\u0635\u0648\u06cc\u0631)", | ||||
| "Paste your embed code below:": "\u06a9\u062f \u062e\u0648\u062f \u0631\u0627 \u0628\u0631\u0627\u06cc \u062c\u0627 \u062f\u0627\u062f\u0646 \u062f\u0631 \u0633\u0627\u06cc\u062a - embed - \u060c \u062f\u0631 \u0632\u06cc\u0631 \u0642\u0631\u0627\u0631 \u062f\u0647\u06cc\u062f:", | ||||
| "Embed": "\u062c\u0627 \u062f\u0627\u062f\u0646", | ||||
| "Media...": "\u0631\u0633\u0627\u0646\u0647...", | ||||
| "Nonbreaking space": "\u0641\u0636\u0627\u06cc \u063a\u06cc\u0631 \u0634\u06a9\u0633\u062a\u0646", | ||||
| "Page break": "\u0634\u06a9\u0633\u062a\u0646 \u0635\u0641\u062d\u0647", | ||||
| "Paste as text": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0645\u062a\u0646", | ||||
| "Preview": "\u067e\u06cc\u0634 \u0646\u0645\u0627\u06cc\u0634", | ||||
| "Print...": "\u0686\u0627\u067e...", | ||||
| "Save": "\u0630\u062e\u06cc\u0631\u0647", | ||||
| "Find": "\u062c\u0633\u062a\u200c\u0648\u200c\u062c\u0648", | ||||
| "Replace with": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646 \u0628\u0627", | ||||
| "Replace": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646", | ||||
| "Replace all": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646 \u0647\u0645\u0647", | ||||
| "Previous": "\u0642\u0628\u0644\u06cc", | ||||
| "Next": "\u0628\u0639\u062f\u06cc", | ||||
| "Find and replace...": "\u06cc\u0627\u0641\u062a\u0646 \u0648 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646...", | ||||
| "Could not find the specified string.": "\u0631\u0634\u062a\u0647 \u0645\u062a\u0646\u06cc \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u067e\u06cc\u062f\u0627 \u0646\u0634\u062f.", | ||||
| "Match case": "\u062d\u0633\u0627\u0633 \u0628\u0647 \u062d\u0631\u0648\u0641 \u06a9\u0648\u0686\u06a9 \u0648 \u0628\u0632\u0631\u06af", | ||||
| "Find whole words only": "\u06cc\u0627\u0641\u062a\u0646 \u062f\u0642\u06cc\u0642\u0627\u064b \u06a9\u0644 \u0648\u0627\u0698\u0647", | ||||
| "Spell check": "\u0628\u0631\u0631\u0633\u06cc \u0627\u0645\u0644\u0627", | ||||
| "Ignore": "\u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646", | ||||
| "Ignore all": "\u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646 \u0647\u0645\u0647", | ||||
| "Finish": "\u067e\u0627\u06cc\u0627\u0646", | ||||
| "Add to Dictionary": "Add to Dictionary", | ||||
| "Insert table": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u062c\u062f\u0648\u0644", | ||||
| "Table properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u062c\u062f\u0648\u0644", | ||||
| "Delete table": "\u062d\u0630\u0641 \u062c\u062f\u0648\u0644", | ||||
| "Cell": "\u0633\u0644\u0648\u0644", | ||||
| "Row": "\u0633\u0637\u0631", | ||||
| "Column": "\u0633\u062a\u0648\u0646", | ||||
| "Cell properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0633\u0644\u0648\u0644", | ||||
| "Merge cells": "\u0627\u062f\u063a\u0627\u0645 \u0633\u0644\u0648\u0644\u200c\u0647\u0627", | ||||
| "Split cell": "\u062a\u0642\u0633\u06cc\u0645 \u0633\u0644\u0648\u0644 \u062c\u062f\u0648\u0644", | ||||
| "Insert row before": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u0637\u0631 \u062c\u062f\u06cc\u062f \u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631", | ||||
| "Insert row after": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u0637\u0631 \u062c\u062f\u06cc\u062f \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631", | ||||
| "Delete row": "\u062d\u0630\u0641 \u0633\u0637\u0631", | ||||
| "Row properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0633\u0637\u0631", | ||||
| "Cut row": "\u0628\u0631\u0634 \u0633\u0637\u0631", | ||||
| "Copy row": "\u06a9\u067e\u06cc \u0633\u0637\u0631", | ||||
| "Paste row before": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631\u060c \u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631", | ||||
| "Paste row after": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631\u060c \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0637\u0631", | ||||
| "Insert column before": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u062a\u0648\u0646 \u062c\u062f\u06cc\u062f \u0642\u0628\u0644 \u0627\u0632 \u0627\u06cc\u0646 \u0633\u062a\u0648\u0646", | ||||
| "Insert column after": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0633\u062a\u0648\u0646 \u062c\u062f\u06cc\u062f \u0628\u0639\u062f \u0627\u0632 \u0627\u06cc\u0646 \u0633\u062a\u0648\u0646", | ||||
| "Delete column": "\u062d\u0630\u0641 \u0633\u062a\u0648\u0646", | ||||
| "Cols": "\u062a\u0639\u062f\u0627\u062f \u0633\u062a\u0648\u0646\u200c\u0647\u0627", | ||||
| "Rows": "\u062a\u0639\u062f\u0627\u062f \u0633\u0637\u0631\u200c\u0647\u0627", | ||||
| "Width": "\u0639\u0631\u0636", | ||||
| "Height": "\u0627\u0631\u062a\u0641\u0627\u0639", | ||||
| "Cell spacing": "\u0641\u0627\u0635\u0644\u0647\u200c\u06cc \u0628\u06cc\u0646 \u0633\u0644\u0648\u0644 \u0647\u0627", | ||||
| "Cell padding": "\u062d\u0627\u0634\u06cc\u0647 \u0633\u0644\u0648\u0644 \u0647\u0627", | ||||
| "Show caption": "\u0646\u0645\u0627\u06cc\u0634 \u0639\u0646\u0648\u0627\u0646", | ||||
| "Left": "\u0686\u067e", | ||||
| "Center": "\u0648\u0633\u0637", | ||||
| "Right": "\u0631\u0627\u0633\u062a", | ||||
| "Cell type": "\u0646\u0648\u0639 \u0633\u0644\u0648\u0644", | ||||
| "Scope": "\u0645\u062d\u062f\u0648\u062f\u0647\u200c\u06cc \u0639\u0646\u0648\u0627\u0646", | ||||
| "Alignment": "\u0631\u062f\u06cc\u0641 \u0628\u0646\u062f\u06cc \u0646\u0648\u0634\u062a\u0647", | ||||
| "H Align": "H Align", | ||||
| "V Align": "V Align", | ||||
| "Top": "Top", | ||||
| "Middle": "Middle", | ||||
| "Bottom": "Bottom", | ||||
| "Header cell": "\u0633\u0631\u0622\u06cc\u0646\u062f \u0633\u0644\u0648\u0644", | ||||
| "Row group": "\u06af\u0631\u0648\u0647 \u0633\u0637\u0631", | ||||
| "Column group": "\u06af\u0631\u0648\u0647 \u0633\u062a\u0648\u0646", | ||||
| "Row type": "\u0646\u0648\u0639 \u0633\u0637\u0631", | ||||
| "Header": "\u0633\u0631\u0622\u06cc\u0646\u062f", | ||||
| "Body": "\u0628\u062f\u0646\u0647", | ||||
| "Footer": "\u067e\u0627\u0646\u0648\u06cc\u0633", | ||||
| "Border color": "Border color", | ||||
| "Insert template...": "\u062f\u0631\u062c \u0627\u0644\u06af\u0648...", | ||||
| "Templates": "\u0627\u0644\u06af\u0648\u200c\u0647\u0627", | ||||
| "Template": "\u0627\u0644\u06af\u0648", | ||||
| "Text color": "\u0631\u0646\u06af \u0645\u062a\u0646", | ||||
| "Background color": "\u0631\u0646\u06af \u0632\u0645\u06cc\u0646\u0647 \u0645\u062a\u0646", | ||||
| "Custom...": "Custom...", | ||||
| "Custom color": "Custom color", | ||||
| "No color": "No color", | ||||
| "Remove color": "\u062d\u0630\u0641 \u0631\u0646\u06af", | ||||
| "Table of Contents": "Table of Contents", | ||||
| "Show blocks": "\u0646\u0645\u0627\u06cc\u0634 \u0628\u062e\u0634\u200c\u0647\u0627", | ||||
| "Show invisible characters": "\u0646\u0645\u0627\u06cc\u0634 \u06a9\u0627\u0631\u0627\u06a9\u062a\u0631\u0647\u0627\u06cc \u063a\u06cc\u0631 \u0642\u0627\u0628\u0644 \u0686\u0627\u067e", | ||||
| "Word count": "\u062a\u0639\u062f\u0627\u062f \u0648\u0627\u0698\u0647\u200c\u0647\u0627", | ||||
| "Count": "\u0634\u0645\u0627\u0631\u0634", | ||||
| "Document": "\u0633\u0646\u062f", | ||||
| "Selection": "\u0627\u0646\u062a\u062e\u0627\u0628", | ||||
| "Words": "\u06a9\u0644\u0645\u0627\u062a", | ||||
| "Words: {0}": "\u06a9\u0644\u0645\u0627\u062a : {0}", | ||||
| "{0} words": "{0} \u0648\u0627\u0698\u0647", | ||||
| "File": "\u067e\u0631\u0648\u0646\u062f\u0647", | ||||
| "Edit": "\u0648\u06cc\u0631\u0627\u06cc\u0634", | ||||
| "Insert": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646", | ||||
| "View": "\u0646\u0645\u0627\u06cc\u0634", | ||||
| "Format": "\u0642\u0627\u0644\u0628", | ||||
| "Table": "\u062c\u062f\u0648\u0644", | ||||
| "Tools": "\u0627\u0628\u0632\u0627\u0631\u0647\u0627", | ||||
| "Powered by {0}": "\u0642\u0648\u062a\u200c\u06af\u0631\u0641\u062a\u0647 \u0627\u0632 {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u067e\u06cc\u0634\u0631\u0641\u062a\u0647\u200c\u06cc \u0645\u062a\u0646. \u0628\u0631\u0627\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0645\u0646\u0648 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc ALT-F9\u060c \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 ALT-F10 \u0648 \u0628\u0631\u0627\u06cc \u0645\u0634\u0627\u0647\u062f\u0647\u200c\u06cc \u0631\u0627\u0647\u0646\u0645\u0627 ALT-0 \u0631\u0627 \u0641\u0634\u0627\u0631 \u062f\u0647\u06cc\u062f.", | ||||
| "Image title": "\u0639\u0646\u0648\u0627\u0646 \u062a\u0635\u0648\u06cc\u0631", | ||||
| "Border width": "\u0639\u0631\u0636 \u062d\u0627\u0634\u06cc\u0647", | ||||
| "Border style": "\u0633\u0628\u06a9 \u062d\u0627\u0634\u06cc\u0647", | ||||
| "Error": "\u062e\u0637\u0627", | ||||
| "Warn": "\u0647\u0634\u062f\u0627\u0631", | ||||
| "Valid": "\u0645\u0639\u062a\u0628\u0631", | ||||
| "To open the popup, press Shift+Enter": "\u062c\u0647\u062a \u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u067e\u0646\u062c\u0631\u0647 \u0628\u0627\u0632\u0634\u0648\u060c \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc Shift + Enter \u0631\u0627 \u0641\u0634\u0627\u0631 \u062f\u0647\u06cc\u062f.", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u0646\u0627\u062d\u06cc\u0647 \u0645\u062a\u0646 \u063a\u0646\u06cc. \u062c\u0647\u062a \u0645\u0634\u0627\u0647\u062f\u0647\u0654 \u0631\u0627\u0647\u0646\u0645\u0627 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc ALT + 0 \u0631\u0627 \u0641\u0634\u0627\u0631 \u062f\u0647\u06cc\u062f.", | ||||
| "System Font": "\u0641\u0648\u0646\u062a \u0633\u06cc\u0633\u062a\u0645\u06cc", | ||||
| "Failed to upload image: {0}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u062a\u0635\u0648\u06cc\u0631: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0641\u0632\u0648\u0646\u0647: {0} \u0627\u0632 \u0646\u0634\u0627\u0646\u06cc \u0648\u0628 {1}", | ||||
| "Failed to load plugin url: {0}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0646\u0634\u0627\u0646\u06cc \u0648\u0628 \u0627\u0641\u0632\u0648\u0646\u0647: {0}", | ||||
| "Failed to initialize plugin: {0}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0627\u0641\u0632\u0648\u0646\u0647: {0}", | ||||
| "example": "\u0645\u062b\u0627\u0644", | ||||
| "Search": "\u062c\u0633\u062a\u062c\u0648", | ||||
| "All": "\u0647\u0645\u0647", | ||||
| "Currency": "\u0627\u0631\u0632", | ||||
| "Text": "\u0645\u062a\u0646", | ||||
| "Quotations": "\u0646\u0642\u0644\u200c\u0642\u0648\u0644\u200c\u0647\u0627", | ||||
| "Mathematical": "\u0631\u06cc\u0627\u0636\u06cc", | ||||
| "Extended Latin": "\u0644\u0627\u062a\u06cc\u0646 \u06af\u0633\u062a\u0631\u062f\u0647", | ||||
| "Symbols": "\u0646\u0645\u0627\u062f\u0647\u0627", | ||||
| "Arrows": "\u067e\u06cc\u06a9\u0627\u0646\u200c\u0647\u0627", | ||||
| "User Defined": "\u0628\u0647 \u062e\u0648\u0627\u0633\u062a \u06a9\u0627\u0631\u0628\u0631", | ||||
| "dollar sign": "\u0646\u0645\u0627\u062f \u062f\u0644\u0627\u0631", | ||||
| "currency sign": "\u0646\u0645\u0627\u062f \u0627\u0631\u0632", | ||||
| "euro-currency sign": "\u0646\u0645\u0627\u062f \u06cc\u0648\u0631\u0648", | ||||
| "colon sign": "\u0646\u0645\u0627\u062f \u062f\u0648\u0646\u0642\u0637\u0647", | ||||
| "cruzeiro sign": "\u0646\u0645\u0627\u062f \u06a9\u0631\u0648\u0632\u06cc\u0631\u0648", | ||||
| "french franc sign": "\u0646\u0645\u0627\u062f \u0641\u0631\u0627\u0646\u06a9 \u0641\u0631\u0627\u0646\u0633\u0647", | ||||
| "lira sign": "\u0646\u0645\u0627\u062f \u0644\u06cc\u0631\u0647", | ||||
| "mill sign": "\u0646\u0645\u0627\u062f \u0645\u06cc\u0644", | ||||
| "naira sign": "\u0646\u0645\u0627\u062f \u0646\u0627\u06cc\u0631\u0627", | ||||
| "peseta sign": "\u0646\u0645\u0627\u062f \u067e\u0632\u062a\u0627", | ||||
| "rupee sign": "\u0646\u0645\u0627\u062f \u0631\u0648\u067e\u06cc\u0647", | ||||
| "won sign": "\u0646\u0645\u0627\u062f \u0648\u0648\u0646", | ||||
| "new sheqel sign": "\u0646\u0645\u0627\u062f \u0634\u06a9\u0644 \u062c\u062f\u06cc\u062f", | ||||
| "dong sign": "\u0646\u0645\u0627\u062f \u062f\u0627\u0646\u06af", | ||||
| "kip sign": "\u0646\u0645\u0627\u062f \u06a9\u06cc\u067e", | ||||
| "tugrik sign": "\u0646\u0645\u0627\u062f \u062a\u0648\u06af\u0631\u0648\u06af", | ||||
| "drachma sign": "\u0646\u0645\u0627\u062f \u062f\u0631\u0627\u062e\u0645\u0627", | ||||
| "german penny symbol": "\u0646\u0645\u0627\u062f \u067e\u0646\u06cc \u0622\u0644\u0645\u0627\u0646\u06cc", | ||||
| "peso sign": "\u0646\u0645\u0627\u062f \u067e\u0632\u0648", | ||||
| "guarani sign": "\u0646\u0645\u0627\u062f \u06af\u0648\u0627\u0631\u0627\u0646\u06cc", | ||||
| "austral sign": "\u0646\u0645\u0627\u062f \u0622\u0633\u062a\u0631\u0627\u0644", | ||||
| "hryvnia sign": "\u0646\u0645\u0627\u062f \u06af\u0631\u06cc\u0648\u0646\u0627", | ||||
| "cedi sign": "\u0646\u0645\u0627\u062f \u0633\u062f\u06cc", | ||||
| "livre tournois sign": "\u0646\u0645\u0627\u062f \u0644\u06cc\u0648\u0631\u0647 \u062a\u0648\u0631\u0646\u0648\u0627", | ||||
| "spesmilo sign": "\u0646\u0645\u0627\u062f \u0627\u0633\u067e\u0633\u0645\u06cc\u0644\u0648", | ||||
| "tenge sign": "\u0646\u0645\u0627\u062f \u062a\u0646\u06af\u0647", | ||||
| "indian rupee sign": "\u0646\u0645\u0627\u062f \u0631\u0648\u067e\u06cc\u0647 \u0647\u0646\u062f\u06cc", | ||||
| "turkish lira sign": "\u0646\u0645\u0627\u062f \u0644\u06cc\u0631\u0647 \u062a\u0631\u06a9\u06cc", | ||||
| "nordic mark sign": "\u0646\u0645\u0627\u062f \u0645\u0627\u0631\u06a9 \u0646\u0631\u0648\u0698", | ||||
| "manat sign": "\u0646\u0645\u0627\u062f \u0645\u0646\u0627\u062a", | ||||
| "ruble sign": "\u0646\u0645\u0627\u062f \u0631\u0648\u0628\u0644", | ||||
| "yen character": "\u0646\u0648\u06cc\u0633\u0647 \u06cc\u0646", | ||||
| "yuan character": "\u0646\u0648\u06cc\u0633\u0647 \u06cc\u0648\u0627\u0646", | ||||
| "yuan character, in hong kong and taiwan": "\u0646\u0648\u06cc\u0633\u0647 \u06cc\u0648\u0627\u0646\u060c \u062f\u0631 \u0647\u0646\u06af\u200c\u06a9\u0646\u06af \u0648 \u062a\u0627\u06cc\u0648\u0627\u0646", | ||||
| "yen\/yuan character variant one": "\u0646\u0648\u06cc\u0633\u0647 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06cc\u0646\/\u06cc\u0648\u0627\u0646", | ||||
| "Loading emoticons...": "\u062f\u0631 \u062d\u0627\u0644 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0634\u06a9\u0644\u06a9\u200c\u0647\u0627...", | ||||
| "Could not load emoticons": "\u0634\u06a9\u0644\u06a9\u200c\u0647\u0627 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0646\u0634\u062f\u0646\u062f", | ||||
| "People": "\u0627\u0641\u0631\u0627\u062f", | ||||
| "Animals and Nature": "\u062d\u06cc\u0648\u0627\u0646\u0627\u062a \u0648 \u0637\u0628\u06cc\u0639\u062a", | ||||
| "Food and Drink": "\u063a\u0630\u0627 \u0648 \u0646\u0648\u0634\u06cc\u062f\u0646\u06cc", | ||||
| "Activity": "\u0641\u0639\u0627\u0644\u06cc\u062a", | ||||
| "Travel and Places": "\u0633\u0641\u0631 \u0648 \u0627\u0645\u0627\u06a9\u0646", | ||||
| "Objects": "\u0627\u0634\u06cc\u0627", | ||||
| "Flags": "\u067e\u0631\u0686\u0645\u200c\u0647\u0627", | ||||
| "Characters": "\u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627", | ||||
| "Characters (no spaces)": "\u0646\u0648\u06cc\u0633\u0647 \u0647\u0627 (\u0628\u062f\u0648\u0646 \u0641\u0627\u0635\u0644\u0647)", | ||||
| "{0} characters": "{0} \u06a9\u0627\u0631\u0627\u06a9\u062a\u0631", | ||||
| "Error: Form submit field collision.": "\u062e\u0637\u0627: \u062a\u062f\u0627\u062e\u0644 \u062f\u0631 \u062b\u0628\u062a \u0641\u0631\u0645.", | ||||
| "Error: No form element found.": "\u062e\u0637\u0627: \u0647\u06cc\u0686 \u0627\u0644\u0645\u0627\u0646 \u0641\u0631\u0645\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f.", | ||||
| "Update": "\u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc", | ||||
| "Color swatch": "\u0646\u0645\u0648\u0646\u0647 \u0631\u0646\u06af", | ||||
| "Turquoise": "\u0641\u06cc\u0631\u0648\u0632\u0647\u200c\u0627\u06cc", | ||||
| "Green": "\u0633\u0628\u0632", | ||||
| "Blue": "\u0622\u0628\u06cc", | ||||
| "Purple": "\u0628\u0646\u0641\u0634", | ||||
| "Navy Blue": "\u0633\u0631\u0645\u0647\u200c\u0627\u06cc", | ||||
| "Dark Turquoise": "\u0641\u06cc\u0631\u0648\u0632\u0647\u200c\u0627\u06cc \u062a\u06cc\u0631\u0647", | ||||
| "Dark Green": "\u0633\u0628\u0632 \u062a\u06cc\u0631\u0647", | ||||
| "Medium Blue": "\u0622\u0628\u06cc \u0633\u06cc\u0631", | ||||
| "Medium Purple": "\u0622\u0628\u06cc \u0628\u0646\u0641\u0634", | ||||
| "Midnight Blue": "\u0622\u0628\u06cc \u0646\u0641\u062a\u06cc", | ||||
| "Yellow": "\u0632\u0631\u062f", | ||||
| "Orange": "\u0646\u0627\u0631\u0646\u062c\u06cc", | ||||
| "Red": "\u0642\u0631\u0645\u0632", | ||||
| "Light Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc \u0631\u0648\u0634\u0646", | ||||
| "Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc", | ||||
| "Dark Yellow": "\u0632\u0631\u062f \u062a\u06cc\u0631\u0647", | ||||
| "Dark Orange": "\u0646\u0627\u0631\u0646\u062c\u06cc \u062a\u06cc\u0631\u0647", | ||||
| "Dark Red": "\u0642\u0631\u0645\u0632 \u062a\u06cc\u0631\u0647", | ||||
| "Medium Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc \u0646\u06cc\u0645\u0647\u200c\u0631\u0648\u0634\u0646", | ||||
| "Dark Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc \u062a\u06cc\u0631\u0647", | ||||
| "Light Green": "\u0633\u0628\u0632 \u0631\u0648\u0634\u0646", | ||||
| "Light Yellow": "\u0632\u0631\u062f \u0631\u0648\u0634\u0646", | ||||
| "Light Red": "\u0642\u0631\u0645\u0632 \u0631\u0648\u0634\u0646", | ||||
| "Light Purple": "\u0628\u0646\u0641\u0634 \u0631\u0648\u0634\u0646", | ||||
| "Light Blue": "\u0622\u0628\u06cc \u0631\u0648\u0634\u0646", | ||||
| "Dark Purple": "\u0628\u0646\u0641\u0634 \u062a\u06cc\u0631\u0647", | ||||
| "Dark Blue": "\u0622\u0628\u06cc \u062a\u06cc\u0631\u0647", | ||||
| "Black": "\u0633\u06cc\u0627\u0647", | ||||
| "White": "\u0633\u0641\u06cc\u062f", | ||||
| "Switch to or from fullscreen mode": "\u062a\u063a\u06cc\u06cc\u0631 \u0627\u0632 \u062d\u0627\u0644\u062a \u062a\u0645\u0627\u0645\u200c\u0635\u0641\u062d\u0647 \u06cc\u0627 \u0628\u0647 \u062d\u0627\u0644\u062a \u062a\u0645\u0627\u0645\u200c\u0635\u0641\u062d\u0647", | ||||
| "Open help dialog": "\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u06a9\u0627\u062f\u0631 \u0631\u0627\u0647\u0646\u0645\u0627", | ||||
| "history": "\u062a\u0627\u0631\u06cc\u062e\u0686\u0647", | ||||
| "styles": "\u0633\u0628\u06a9\u200c\u0647\u0627", | ||||
| "formatting": "\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc", | ||||
| "alignment": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc", | ||||
| "indentation": "\u062a\u0648\u0631\u0641\u062a\u06af\u06cc", | ||||
| "permanent pen": "\u0642\u0644\u0645 \u062f\u0627\u0626\u0645\u06cc", | ||||
| "comments": "\u0646\u0638\u0631\u0627\u062a", | ||||
| "Format Painter": "\u0646\u0642\u0627\u0634 \u0641\u0631\u0645\u062a", | ||||
| "Insert\/edit iframe": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 iframe", | ||||
| "Capitalization": "\u062d\u0631\u0648\u0641 \u0628\u0632\u0631\u06af", | ||||
| "lowercase": "\u062d\u0631\u0648\u0641 \u06a9\u0648\u0686\u06a9", | ||||
| "UPPERCASE": "\u062d\u0631\u0648\u0641 \u0628\u0632\u0631\u06af", | ||||
| "Title Case": "\u062d\u0631\u0648\u0641 \u062a\u06cc\u062a\u0631\u06cc", | ||||
| "Permanent Pen Properties": "\u0645\u0634\u062e\u0635\u0627\u062a \u062f\u0627\u0626\u0645\u06cc \u0642\u0644\u0645", | ||||
| "Permanent pen properties...": "\u0645\u0634\u062e\u0635\u0627\u062a \u062f\u0627\u0626\u0645\u06cc \u0642\u0644\u0645...", | ||||
| "Font": "\u0641\u0648\u0646\u062a", | ||||
| "Size": "\u0627\u0646\u062f\u0627\u0632\u0647", | ||||
| "More...": "\u0628\u06cc\u0634\u062a\u0631...", | ||||
| "Spellcheck Language": "\u0632\u0628\u0627\u0646 \u0686\u06a9 \u0627\u0633\u067e\u0644\u06cc\u0646\u06af", | ||||
| "Select...": "\u0627\u0646\u062a\u062e\u0627\u0628...", | ||||
| "Preferences": "\u062a\u0631\u062c\u06cc\u062d\u0627\u062a", | ||||
| "Yes": "\u0628\u0644\u0647", | ||||
| "No": "\u062e\u06cc\u0631", | ||||
| "Keyboard Navigation": "\u0645\u0631\u0648\u0631 \u0628\u0627 \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u062f", | ||||
| "Version": "\u0646\u0633\u062e\u0647", | ||||
| "Anchor": "\u0644\u0646\u06af\u0631 - \u0644\u06cc\u0646\u06a9", | ||||
| "Special character": "\u06a9\u0627\u0631\u0627\u06a9\u062a\u0631 \u0647\u0627\u06cc \u062e\u0627\u0635", | ||||
| "Color": "Color", | ||||
| "Emoticons": "\u0634\u06a9\u0644\u06a9\u200c\u0647\u0627", | ||||
| "Document properties": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0633\u0646\u062f", | ||||
| "Image": "\u0639\u06a9\u0633", | ||||
| "Insert link": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0644\u06cc\u0646\u06a9", | ||||
| "Link": "Link", | ||||
| "Target": "\u0646\u062d\u0648\u0647 \u0628\u0627\u0632 \u0634\u062f\u0646 \u062f\u0631 \u0645\u0631\u0648\u0631\u06af\u0631", | ||||
| "Media": "Media", | ||||
| "Poster": "\u067e\u0648\u0633\u062a\u0631", | ||||
| "Print": "\u0686\u0627\u067e", | ||||
| "Whole words": "\u0647\u0645\u0647 \u06a9\u0644\u0645\u0647\u200c\u0647\u0627", | ||||
| "Find and replace": "\u062c\u0633\u062a\u200c\u0648\u200c\u062c\u0648 \u0648 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646", | ||||
| "Prev": "\u0642\u0628\u0644\u06cc", | ||||
| "Spellcheck": "\u0628\u0631\u0631\u0633\u06cc \u0627\u0645\u0644\u0627\u06cc\u06cc", | ||||
| "Caption": "\u0639\u0646\u0648\u0627\u0646", | ||||
| "Insert template": "\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0627\u0644\u06af\u0648", | ||||
| "_dir": "rtl" | ||||
| }); | ||||
							
								
								
									
										390
									
								
								Modules/TinyMCE/langs/fa_IR.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										390
									
								
								Modules/TinyMCE/langs/fa_IR.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,390 @@ | ||||
| tinymce.addI18n('fa_IR',{ | ||||
| "Redo": "\u0628\u0627\u0632\u0627\u0646\u062c\u0627\u0645", | ||||
| "Undo": "\u0648\u0627\u06af\u0631\u062f", | ||||
| "Cut": "\u0628\u0631\u0634", | ||||
| "Copy": "\u06a9\u067e\u06cc", | ||||
| "Paste": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646", | ||||
| "Select all": "\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647", | ||||
| "New document": "\u0633\u0646\u062f \u062c\u062f\u06cc\u062f", | ||||
| "Ok": "\u062a\u0623\u06cc\u06cc\u062f", | ||||
| "Cancel": "\u0644\u063a\u0648", | ||||
| "Visual aids": "\u06a9\u0645\u06a9\u200c\u0647\u0627\u06cc \u0628\u0635\u0631\u06cc", | ||||
| "Bold": "\u067e\u0631\u0631\u0646\u06af", | ||||
| "Italic": "\u06a9\u062c", | ||||
| "Underline": "\u0632\u06cc\u0631 \u062e\u0637 \u062f\u0627\u0631", | ||||
| "Strikethrough": "\u062e\u0637 \u0632\u062f\u0646", | ||||
| "Superscript": "\u0628\u0627\u0644\u0627\u0646\u06af\u0627\u0634\u062a", | ||||
| "Subscript": "\u0632\u06cc\u0631\u0646\u06af\u0627\u0634\u062a", | ||||
| "Clear formatting": "\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc", | ||||
| "Align left": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc \u0627\u0632 \u0686\u067e", | ||||
| "Align center": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc \u0627\u0632 \u0648\u0633\u0637", | ||||
| "Align right": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc \u0627\u0632 \u0631\u0627\u0633\u062a", | ||||
| "Justify": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc \u062f\u0648\u0637\u0631\u0641\u0647", | ||||
| "Bullet list": "\u0641\u0647\u0631\u0633\u062a \u0646\u0634\u0627\u0646\u0647\u200c\u062f\u0627\u0631", | ||||
| "Numbered list": "\u0641\u0647\u0631\u0633\u062a \u0634\u0645\u0627\u0631\u0647\u200c\u062f\u0627\u0631", | ||||
| "Decrease indent": "\u06a9\u0627\u0647\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc", | ||||
| "Increase indent": "\u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc", | ||||
| "Close": "\u0628\u0633\u062a\u0646", | ||||
| "Formats": "\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc\u200c\u0647\u0627", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0645\u0631\u0648\u0631\u06af\u0631 \u0634\u0645\u0627 \u0627\u0632 \u062f\u0633\u062a\u0631\u0633\u06cc \u0645\u0633\u062a\u0642\u06cc\u0645 \u0628\u0647 \u06a9\u0644\u06cc\u067e\u200c\u0628\u0648\u0631\u062f \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f\u060c \u0644\u0637\u0641\u0627\u064b \u0627\u0632 \u0645\u06cc\u0627\u0646\u0628\u0631\u0647\u0627\u06cc Ctrl+X\/C\/V \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f.", | ||||
| "Headers": "\u0633\u0631\u0628\u0631\u06af\u200c\u0647\u0627", | ||||
| "Header 1": "\u0633\u0631\u0628\u0631\u06af 1", | ||||
| "Header 2": "\u0633\u0631\u0628\u0631\u06af 2", | ||||
| "Header 3": "\u0633\u0631\u0628\u0631\u06af 3", | ||||
| "Header 4": "\u0633\u0631\u0628\u0631\u06af 4", | ||||
| "Header 5": "\u0633\u0631\u0628\u0631\u06af 5", | ||||
| "Header 6": "\u0633\u0631\u0628\u0631\u06af 6", | ||||
| "Headings": "\u0633\u0631\u0641\u0635\u0644\u200c\u0647\u0627", | ||||
| "Heading 1": "\u0633\u0631\u0641\u0635\u0644\u200c 1", | ||||
| "Heading 2": "\u0633\u0631\u0641\u0635\u0644 2", | ||||
| "Heading 3": "\u0633\u0631\u0641\u0635\u0644 3", | ||||
| "Heading 4": "\u0633\u0631\u0641\u0635\u0644 4", | ||||
| "Heading 5": "\u0633\u0631\u0641\u0635\u0644 5", | ||||
| "Heading 6": "\u0633\u0631\u0641\u0635\u0644 6", | ||||
| "Preformatted": "\u0627\u0632 \u067e\u06cc\u0634 \u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc\u200c\u0634\u062f\u0647", | ||||
| "Div": "\u0628\u062e\u0634", | ||||
| "Pre": "\u067e\u06cc\u0634", | ||||
| "Code": "\u06a9\u062f", | ||||
| "Paragraph": "\u067e\u0627\u0631\u0627\u06af\u0631\u0627\u0641", | ||||
| "Blockquote": "\u0646\u0642\u0644 \u0642\u0648\u0644 \u0628\u0644\u0648\u06a9\u06cc", | ||||
| "Inline": "\u0647\u0645\u200c\u0631\u0627\u0633\u062a\u0627", | ||||
| "Blocks": "\u0628\u0644\u0648\u06a9\u200c\u0647\u0627", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0627\u0645\u06a9\u0627\u0646 \u0686\u0633\u0628\u0627\u0646\u062f\u0646\u060c \u062f\u0631 \u062d\u0627\u0644\u062a \u0645\u062a\u0646 \u062e\u0627\u0644\u0635 \u062a\u0646\u0638\u06cc\u0645 \u06af\u0634\u062a\u0647. \u062a\u0627 \u0632\u0645\u0627\u0646 \u062a\u063a\u06cc\u06cc\u0631 \u0627\u06cc\u0646 \u062d\u0627\u0644\u062a\u060c \u0645\u062d\u062a\u0648\u0627\u06cc \u0645\u0648\u0631\u062f \u0686\u0633\u0628\u0627\u0646\u062f\u0646\u060c \u0628\u0647 \u0635\u0648\u0631\u062a \u0645\u062a\u0646 \u062e\u0627\u0644\u0635 \u062e\u0648\u0627\u0647\u062f \u0686\u0633\u0628\u06cc\u062f.", | ||||
| "Fonts": "\u0641\u0648\u0646\u062a\u200c\u200c\u0647\u0627", | ||||
| "Font Sizes": "\u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0641\u0648\u0646\u062a", | ||||
| "Class": "\u0637\u0628\u0642\u0647", | ||||
| "Browse for an image": "\u06af\u0634\u062a\u0646 \u0628\u0631\u0627\u06cc \u0639\u06a9\u0633 \u0645\u0648\u0631\u062f \u0646\u0638\u0631", | ||||
| "OR": "\u06cc\u0627", | ||||
| "Drop an image here": "\u062a\u0635\u0648\u06cc\u0631 \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u0631\u0627 \u0627\u06cc\u0646\u062c\u0627 \u0631\u0647\u0627 \u06a9\u0646\u06cc\u062f", | ||||
| "Upload": "\u0622\u067e\u0644\u0648\u062f", | ||||
| "Block": "\u0628\u0644\u0648\u06a9", | ||||
| "Align": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc", | ||||
| "Default": "\u067e\u06cc\u0634 \u0641\u0631\u0636", | ||||
| "Circle": "\u062f\u0627\u06cc\u0631\u0647", | ||||
| "Disc": "\u062f\u0627\u06cc\u0631\u0647\u0621 \u062a\u0648\u067e\u0631", | ||||
| "Square": "\u0686\u0647\u0627\u0631 \u06af\u0648\u0634", | ||||
| "Lower Alpha": "\u062d\u0631\u0648\u0641 \u06a9\u0648\u0686\u06a9", | ||||
| "Lower Greek": "\u062d\u0631\u0648\u0641 \u06a9\u0648\u0686\u06a9 \u06cc\u0648\u0646\u0627\u0646\u06cc", | ||||
| "Lower Roman": "\u0627\u0631\u0642\u0627\u0645 \u06a9\u0648\u0686\u06a9 \u0631\u0648\u0645\u06cc", | ||||
| "Upper Alpha": "\u062d\u0631\u0648\u0641 \u0628\u0632\u0631\u06af", | ||||
| "Upper Roman": "\u0627\u0631\u0642\u0627\u0645 \u0628\u0632\u0631\u06af \u0631\u0648\u0645\u06cc", | ||||
| "Anchor...": "\u0642\u0644\u0627\u0628...", | ||||
| "Name": "\u0646\u0627\u0645", | ||||
| "Id": "\u0634\u0646\u0627\u0633\u0647", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u0634\u0646\u0627\u0633\u0647 \u0645\u06cc \u0628\u0627\u06cc\u0633\u062a \u0628\u0627 \u06cc\u06a9 \u062d\u0631\u0641 \u0627\u0644\u0641\u0628\u0627 \u0622\u063a\u0627\u0632 \u0648 \u0628\u0627 \u062f\u0646\u0628\u0627\u0644\u0647 \u0627\u06cc \u0627\u0632 \u062d\u0631\u0648\u0641\u060c \u0627\u0639\u062f\u0627\u062f\u060c \u0639\u0644\u0627\u0645\u062a \u0645\u0650\u0646\u0647\u0627\u060c \u0646\u0642\u0637\u0647\u060c \u062f\u0648 \u0646\u0642\u0637\u0647 \u06cc\u0627 \u062e\u0637 \u062a\u06cc\u0631\u0647 \u0627\u062f\u0627\u0645\u0647 \u06cc\u0627\u0628\u062f.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0634\u0645\u0627 \u0630\u062e\u06cc\u0631\u0647 \u0646\u0634\u062f\u0647 \u0627\u0646\u062f\u060c \u0622\u06cc\u0627 \u062c\u0647\u062a \u062e\u0631\u0648\u062c \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u062f\u0627\u0631\u06cc\u062f\u061f", | ||||
| "Restore last draft": "\u0628\u0627\u0632\u06cc\u0627\u0628\u06cc \u0622\u062e\u0631\u06cc\u0646 \u067e\u06cc\u0634 \u0646\u0648\u06cc\u0633", | ||||
| "Special characters...": "\u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627\u06cc \u0648\u06cc\u0698\u0647...", | ||||
| "Source code": "\u0645\u062a\u0646 \u06a9\u062f \u0645\u0646\u0628\u0639", | ||||
| "Insert\/Edit code sample": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0646\u0645\u0648\u0646\u0647\u0621 \u06a9\u062f", | ||||
| "Language": "\u0632\u0628\u0627\u0646", | ||||
| "Code sample...": "\u0646\u0645\u0648\u0646\u0647 \u06a9\u062f...", | ||||
| "Color Picker": "\u0627\u0646\u062a\u062e\u0627\u0628\u200c\u06a9\u0646\u0646\u062f\u0647 \u0631\u0646\u06af", | ||||
| "R": "\u0642\u0631\u0645\u0632", | ||||
| "G": "\u0633\u0628\u0632", | ||||
| "B": "\u0622\u0628\u06cc", | ||||
| "Left to right": "\u0686\u067e \u0628\u0647 \u0631\u0627\u0633\u062a", | ||||
| "Right to left": "\u0631\u0627\u0633\u062a \u0628\u0647 \u0686\u067e", | ||||
| "Emoticons...": "\u0635\u0648\u0631\u062a\u06a9\u200c\u0647\u0627...", | ||||
| "Metadata and Document Properties": "\u0641\u0631\u0627\u062f\u0627\u062f\u0647 \u0648 \u0645\u0634\u062e\u0635\u0627\u062a \u0633\u0646\u062f", | ||||
| "Title": "\u0639\u0646\u0648\u0627\u0646", | ||||
| "Keywords": "\u0648\u0627\u0698\u06af\u0627\u0646 \u06a9\u0644\u06cc\u062f\u06cc", | ||||
| "Description": "\u062a\u0648\u0636\u06cc\u062d", | ||||
| "Robots": "\u0631\u0648\u0628\u0627\u062a\u0647\u0627", | ||||
| "Author": "\u0645\u0648\u0644\u0641", | ||||
| "Encoding": "\u06a9\u062f\u06af\u0632\u0627\u0631\u06cc \u0645\u062a\u0646", | ||||
| "Fullscreen": "\u062a\u0645\u0627\u0645 \u0635\u0641\u062d\u0647", | ||||
| "Action": "\u0639\u0645\u0644", | ||||
| "Shortcut": "\u0645\u06cc\u0627\u0646\u0628\u064f\u0631", | ||||
| "Help": "\u0631\u0627\u0647\u0646\u0645\u0627", | ||||
| "Address": "\u0646\u0634\u0627\u0646\u06cc", | ||||
| "Focus to menubar": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0646\u0648\u0627\u0631 \u0645\u0646\u0648", | ||||
| "Focus to toolbar": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631", | ||||
| "Focus to element path": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0645\u0633\u06cc\u0631 \u0627\u0650\u0644\u0650\u0645\u0627\u0646", | ||||
| "Focus to contextual toolbar": "\u062a\u0645\u0631\u06a9\u0632 \u0628\u0631 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 \u0645\u062a\u0646\u06cc", | ||||
| "Insert link (if link plugin activated)": "\u062f\u0631\u062c \u067e\u06cc\u0648\u0646\u062f (\u0627\u06af\u0631 \u0627\u0641\u0632\u0648\u0646\u0647\u0621 \u067e\u06cc\u0648\u0646\u062f \u0641\u0639\u0627\u0644 \u0634\u062f)", | ||||
| "Save (if save plugin activated)": "\u062b\u0628\u062a\u00a0(\u0627\u06af\u0631 \u0627\u0641\u0632\u0648\u0646\u0647\u0621 \u0630\u062e\u06cc\u0631\u0647 \u0633\u0627\u0632\u06cc \u0641\u0639\u0627\u0644 \u0634\u062f)", | ||||
| "Find (if searchreplace plugin activated)": "\u06cc\u0627\u0641\u062a\u0646 (\u0627\u06af\u0631 \u0627\u0641\u0632\u0648\u0646\u0647\u0621 \u062c\u0633\u062a\u062c\u0648\/\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u0641\u0639\u0627\u0644 \u0634\u062f)", | ||||
| "Plugins installed ({0}):": "\u0627\u0641\u0632\u0648\u0646\u0647 \u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0646\u0635\u0628 \u0634\u062f\u0646\u062f ({0}):", | ||||
| "Premium plugins:": "\u0627\u0641\u0632\u0648\u0646\u0647 \u0647\u0627\u06cc \u0645\u062e\u0635\u0648\u0635:", | ||||
| "Learn more...": "\u06cc\u0627\u062f\u06af\u06cc\u0631\u06cc \u0628\u06cc\u0634\u062a\u0631...", | ||||
| "You are using {0}": "\u0634\u0645\u0627 \u062f\u0631 \u062d\u0627\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 {0} \u0645\u06cc \u0628\u0627\u0634\u06cc\u062f", | ||||
| "Plugins": "\u0627\u0641\u0632\u0648\u0646\u0647 \u0647\u0627", | ||||
| "Handy Shortcuts": "\u0645\u06cc\u0627\u0646\u0628\u064f\u0631\u0647\u0627\u06cc \u0633\u0648\u062f\u0645\u0646\u062f", | ||||
| "Horizontal line": "\u062e\u0637 \u0627\u0641\u0642\u06cc", | ||||
| "Insert\/edit image": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u062a\u0635\u0648\u06cc\u0631", | ||||
| "Image description": "\u062a\u0648\u0635\u06cc\u0641 \u062a\u0635\u0648\u06cc\u0631", | ||||
| "Source": "\u0645\u0646\u0628\u0639", | ||||
| "Dimensions": "\u0627\u0628\u0639\u0627\u062f", | ||||
| "Constrain proportions": "\u062d\u0641\u0638 \u062a\u0646\u0627\u0633\u0628", | ||||
| "General": "\u0639\u0645\u0648\u0645\u06cc", | ||||
| "Advanced": "\u067e\u06cc\u0634\u0631\u0641\u062a\u0647", | ||||
| "Style": "\u0633\u0628\u06a9", | ||||
| "Vertical space": "\u0641\u0636\u0627\u06cc \u0639\u0645\u0648\u062f\u06cc", | ||||
| "Horizontal space": "\u0641\u0636\u0627\u06cc \u0627\u0641\u0642\u06cc", | ||||
| "Border": "\u0644\u0628\u0647", | ||||
| "Insert image": "\u062f\u0631\u062c \u062a\u0635\u0648\u06cc\u0631", | ||||
| "Image...": "\u062a\u0635\u0648\u06cc\u0631...", | ||||
| "Image list": "\u0641\u0647\u0631\u0633\u062a \u062a\u0635\u0648\u06cc\u0631\u06cc", | ||||
| "Rotate counterclockwise": "\u062f\u064e\u0648\u064e\u0631\u0627\u0646 \u067e\u0627\u062f \u0633\u0627\u0639\u062a \u06af\u0631\u062f", | ||||
| "Rotate clockwise": "\u062f\u064e\u0648\u064e\u0631\u0627\u0646 \u0633\u0627\u0639\u062a \u06af\u0631\u062f", | ||||
| "Flip vertically": "\u0642\u0631\u06cc\u0646\u0647 \u0639\u0645\u0648\u062f\u06cc", | ||||
| "Flip horizontally": "\u0642\u0631\u06cc\u0646\u0647 \u0627\u0641\u0642\u06cc", | ||||
| "Edit image": "\u0648\u06cc\u0631\u0627\u0633\u062a \u062a\u0635\u0648\u06cc\u0631", | ||||
| "Image options": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062a\u0635\u0648\u06cc\u0631", | ||||
| "Zoom in": "\u0628\u0632\u0631\u06af \u0646\u0645\u0627\u06cc\u06cc", | ||||
| "Zoom out": "\u06a9\u0648\u0686\u06a9 \u0646\u0645\u0627\u06cc\u06cc", | ||||
| "Crop": "\u0628\u064f\u0631\u0634 \u062f\u064f\u0648\u0631", | ||||
| "Resize": "\u062a\u063a\u06cc\u06cc\u0631 \u0627\u0646\u062f\u0627\u0632\u0647", | ||||
| "Orientation": "\u06af\u0650\u0631\u0627", | ||||
| "Brightness": "\u0631\u0648\u0634\u0646\u0627\u06cc\u06cc", | ||||
| "Sharpen": "\u0628\u0647\u0628\u0648\u062f \u0644\u0628\u0647", | ||||
| "Contrast": "\u062a\u0636\u0627\u062f \u0631\u0646\u06af", | ||||
| "Color levels": "\u0633\u0637\u0648\u062d \u0631\u0646\u06af", | ||||
| "Gamma": "\u06af\u0627\u0645\u0627", | ||||
| "Invert": "\u0628\u0631\u06af\u0634\u062a \u0631\u0646\u06af", | ||||
| "Apply": "\u0627\u0650\u0639\u0645\u0627\u0644", | ||||
| "Back": "\u0628\u0627\u0632\u06af\u0634\u062a", | ||||
| "Insert date\/time": "\u062f\u0631\u062c \u062a\u0627\u0631\u06cc\u062e\/\u0632\u0645\u0627\u0646", | ||||
| "Date\/time": "\u062a\u0627\u0631\u06cc\u062e\/\u0632\u0645\u0627\u0646", | ||||
| "Insert\/Edit Link": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u067e\u06cc\u0648\u0646\u062f", | ||||
| "Insert\/edit link": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u067e\u06cc\u0648\u0646\u062f", | ||||
| "Text to display": "\u0645\u062a\u0646 \u0646\u0645\u0627\u06cc\u0634\u06cc", | ||||
| "Url": "\u0622\u062f\u0631\u0633", | ||||
| "Open link in...": "\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u067e\u06cc\u0648\u0646\u062f \u062f\u0631...", | ||||
| "Current window": "\u067e\u0646\u062c\u0631\u0647 \u062c\u0627\u0631\u06cc", | ||||
| "None": "\u0647\u06cc\u0686", | ||||
| "New window": "\u067e\u0646\u062c\u0631\u0647\u0621 \u062c\u062f\u06cc\u062f", | ||||
| "Remove link": "\u062d\u0630\u0641 \u067e\u06cc\u0648\u0646\u062f", | ||||
| "Anchors": "\u0642\u0644\u0627\u0628 \u0647\u0627", | ||||
| "Link...": "\u067e\u06cc\u0648\u0646\u062f...", | ||||
| "Paste or type a link": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u06cc\u0627 \u062a\u0627\u06cc\u067e \u067e\u06cc\u0648\u0646\u062f", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0628\u0647 \u0646\u0638\u0631 \u0645\u06cc \u0631\u0633\u062f \u0622\u062f\u0631\u0633 \u0648\u0631\u0648\u062f\u06cc \u06cc\u06a9 \u0631\u0627\u06cc\u0627\u0646\u0627\u0645\u0647 \u0628\u0627\u0634\u062f. \u0622\u06cc\u0627 \u062a\u0645\u0627\u06cc\u0644 \u0628\u0647 \u0627\u0641\u0632\u0648\u0631\u062f\u0646 \u067e\u06cc\u0634\u0648\u0646\u062f mailto: \u062f\u0627\u0631\u06cc\u062f\u061f", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0628\u0647 \u0646\u0638\u0631 \u0645\u06cc \u0631\u0633\u062f \u0622\u062f\u0631\u0633 \u0648\u0631\u0648\u062f\u06cc \u0627\u0631\u062c\u0627\u0639\u06cc \u0628\u0647 \u062e\u0627\u0631\u062c \u0627\u0632 \u0627\u06cc\u0646 \u0633\u0627\u06cc\u062a \u0645\u06cc \u0628\u0627\u0634\u062f. \u0622\u06cc\u0627 \u062a\u0645\u0627\u06cc\u0644 \u0628\u0647 \u0627\u0641\u0632\u0648\u0631\u062f\u0646 \u067e\u06cc\u0634\u0648\u0646\u062f http:\/\/ \u062f\u0627\u0631\u06cc\u062f\u061f", | ||||
| "Link list": "\u0641\u0647\u0631\u0633\u062a \u067e\u06cc\u0648\u0646\u062f", | ||||
| "Insert video": "\u062f\u0631\u062c \u0648\u06cc\u062f\u06cc\u0648", | ||||
| "Insert\/edit video": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0648\u06cc\u062f\u06cc\u0648", | ||||
| "Insert\/edit media": "\u062f\u0631\u062c\/\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0631\u0633\u0627\u0646\u0647", | ||||
| "Alternative source": "\u0645\u0646\u0628\u0639 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646", | ||||
| "Alternative source URL": "\u0646\u0634\u0627\u0646\u06cc \u0648\u0628 \u0645\u0646\u0628\u0639 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646", | ||||
| "Media poster (Image URL)": "\u067e\u0648\u0633\u062a\u0631 \u0631\u0633\u0627\u0646\u0647 (\u0646\u0634\u0627\u0646\u06cc \u0648\u0628 \u062a\u0635\u0648\u06cc\u0631)", | ||||
| "Paste your embed code below:": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u06a9\u062f \u062c\u0627\u0633\u0627\u0632\u06cc \u0634\u0645\u0627 \u062f\u0631 \u0632\u06cc\u0631: ", | ||||
| "Embed": "\u062c\u0627\u0633\u0627\u0632\u06cc", | ||||
| "Media...": "\u0631\u0633\u0627\u0646\u0647...", | ||||
| "Nonbreaking space": "\u0641\u0636\u0627\u06cc \u062e\u0627\u0644\u06cc \u0628\u0631\u0634 \u0646\u0627\u067e\u0630\u06cc\u0631", | ||||
| "Page break": "\u0628\u0631\u0634 \u0635\u0641\u062d\u0647", | ||||
| "Paste as text": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0645\u062a\u0646", | ||||
| "Preview": "\u067e\u06cc\u0634 \u0646\u0645\u0627\u06cc\u0634", | ||||
| "Print...": "\u0686\u0627\u067e...", | ||||
| "Save": "\u0630\u062e\u06cc\u0631\u0647", | ||||
| "Find": "\u062c\u0633\u062a\u062c\u0648", | ||||
| "Replace with": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u0628\u0627", | ||||
| "Replace": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc", | ||||
| "Replace all": "\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u0647\u0645\u0647", | ||||
| "Previous": "\u0642\u0628\u0644\u06cc", | ||||
| "Next": "\u0628\u0639\u062f\u06cc", | ||||
| "Find and replace...": "\u06cc\u0627\u0641\u062a\u0646 \u0648 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646...", | ||||
| "Could not find the specified string.": "\u0631\u0634\u062a\u0647\u0621 \u0645\u0648\u0631\u062f \u0646\u0638\u0631 \u06cc\u0627\u0641\u062a \u0646\u06af\u0631\u062f\u06cc\u062f.", | ||||
| "Match case": "\u062a\u0637\u0627\u0628\u0642 \u062d\u0631\u0648\u0641", | ||||
| "Find whole words only": "\u06cc\u0627\u0641\u062a\u0646 \u062f\u0642\u06cc\u0642\u0627\u064b \u06a9\u0644 \u0648\u0627\u0698\u0647", | ||||
| "Spell check": "\u0628\u0631\u0631\u0633\u06cc \u0627\u0645\u0644\u0627", | ||||
| "Ignore": "\u0628\u06cc \u062e\u06cc\u0627\u0644", | ||||
| "Ignore all": "\u0628\u06cc \u062e\u06cc\u0627\u0644 \u0647\u0645\u0647", | ||||
| "Finish": "\u0627\u062a\u0645\u0627\u0645", | ||||
| "Add to Dictionary": "\u0628\u0647 \u0648\u0627\u0698\u0647 \u0646\u0627\u0645\u0647 \u0628\u06cc \u0627\u0641\u0632\u0627", | ||||
| "Insert table": "\u062f\u0631\u062c \u062c\u062f\u0648\u0644", | ||||
| "Table properties": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062c\u062f\u0648\u0644", | ||||
| "Delete table": "\u062d\u0630\u0641 \u062c\u062f\u0648\u0644", | ||||
| "Cell": "\u0633\u0644\u0648\u0644", | ||||
| "Row": "\u0633\u0637\u0631", | ||||
| "Column": "\u0633\u062a\u0648\u0646", | ||||
| "Cell properties": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0633\u0644\u0648\u0644", | ||||
| "Merge cells": "\u067e\u06cc\u0648\u0646\u062f \u0633\u0644\u0648\u0644 \u0647\u0627", | ||||
| "Split cell": "\u062c\u062f\u0627 \u0633\u0627\u0632\u06cc \u0633\u0644\u0648\u0644", | ||||
| "Insert row before": "\u062f\u0631\u062c \u0633\u0637\u0631 \u062f\u0631 \u0628\u0627\u0644\u0627", | ||||
| "Insert row after": "\u062f\u0631\u062c \u0633\u0637\u0631 \u062f\u0631 \u067e\u0627\u06cc\u06cc\u0646", | ||||
| "Delete row": "\u062d\u0630\u0641 \u0633\u0637\u0631", | ||||
| "Row properties": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0633\u0637\u0631", | ||||
| "Cut row": "\u0628\u0631\u0634 \u0633\u0637\u0631", | ||||
| "Copy row": "\u0631\u0648\u0646\u0648\u06cc\u0633\u06cc \u0633\u0637\u0631", | ||||
| "Paste row before": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631 \u062f\u0631 \u0628\u0627\u0644\u0627", | ||||
| "Paste row after": "\u0686\u0633\u0628\u0627\u0646\u062f\u0646 \u0633\u0637\u0631 \u062f\u0631 \u067e\u0627\u06cc\u06cc\u0646", | ||||
| "Insert column before": "\u062f\u0631\u062c \u0633\u062a\u0648\u0646 \u0642\u0628\u0644", | ||||
| "Insert column after": "\u062f\u0631\u062c \u0633\u062a\u0648\u0646 \u0628\u0639\u062f", | ||||
| "Delete column": "\u062d\u0630\u0641 \u0633\u062a\u0648\u0646", | ||||
| "Cols": "\u0633\u062a\u0648\u0646 \u0647\u0627", | ||||
| "Rows": "\u0633\u0637\u0631 \u0647\u0627", | ||||
| "Width": "\u0639\u0631\u0636", | ||||
| "Height": "\u0627\u0631\u062a\u0641\u0627\u0639", | ||||
| "Cell spacing": "\u0641\u0627\u0635\u0644\u0647 \u0645\u06cc\u0627\u0646 \u0633\u0644\u0648\u0644\u06cc", | ||||
| "Cell padding": "\u062d\u0627\u0634\u06cc\u0647 \u062f\u0631\u0648\u0646 \u0633\u0644\u0648\u0644\u06cc", | ||||
| "Show caption": "\u0646\u0645\u0627\u06cc\u0634 \u0639\u0646\u0648\u0627\u0646", | ||||
| "Left": "\u0686\u067e", | ||||
| "Center": "\u0645\u06cc\u0627\u0646\u0647", | ||||
| "Right": "\u0631\u0627\u0633\u062a", | ||||
| "Cell type": "\u0646\u0648\u0639 \u0633\u0644\u0648\u0644", | ||||
| "Scope": "\u062d\u0648\u0632\u0647", | ||||
| "Alignment": "\u0647\u0645 \u062a\u0631\u0627\u0632\u06cc", | ||||
| "H Align": "\u062a\u0631\u0627\u0632 \u0627\u0641\u0642\u06cc", | ||||
| "V Align": "\u062a\u0631\u0627\u0632 \u0639\u0645\u0648\u062f\u06cc", | ||||
| "Top": "\u0628\u0627\u0644\u0627", | ||||
| "Middle": "\u0645\u06cc\u0627\u0646\u0647", | ||||
| "Bottom": "\u067e\u0627\u06cc\u06cc\u0646", | ||||
| "Header cell": "\u0633\u0644\u0648\u0644 \u0633\u0631 \u0633\u062a\u0648\u0646", | ||||
| "Row group": "\u06af\u0631\u0648\u0647 \u0633\u0637\u0631\u06cc", | ||||
| "Column group": "\u06af\u0631\u0648\u0647 \u0633\u062a\u0648\u0646\u06cc", | ||||
| "Row type": "\u0646\u0648\u0639 \u0633\u0637\u0631", | ||||
| "Header": "\u0633\u0631 \u0622\u0645\u062f", | ||||
| "Body": "\u0628\u062f\u0646\u0647", | ||||
| "Footer": "\u067e\u0627 \u0646\u0648\u0634\u062a", | ||||
| "Border color": "\u0631\u0646\u06af \u0644\u0628\u0647", | ||||
| "Insert template...": "\u062f\u0631\u062c \u0627\u0644\u06af\u0648...", | ||||
| "Templates": "\u0627\u0644\u06af\u0648\u0647\u0627", | ||||
| "Template": "\u0627\u0644\u06af\u0648", | ||||
| "Text color": "\u0631\u0646\u06af \u0645\u062a\u0646", | ||||
| "Background color": "\u0631\u0646\u06af \u067e\u0633 \u0632\u0645\u06cc\u0646\u0647", | ||||
| "Custom...": "\u062f\u0644\u062e\u0648\u0627\u0647...", | ||||
| "Custom color": "\u0631\u0646\u06af \u062f\u0644\u062e\u0648\u0627\u0647", | ||||
| "No color": "\u0628\u062f\u0648\u0646 \u0631\u0646\u06af", | ||||
| "Remove color": "\u062d\u0630\u0641 \u0631\u0646\u06af", | ||||
| "Table of Contents": "\u0641\u0647\u0631\u0633\u062a \u0639\u0646\u0627\u0648\u06cc\u0646", | ||||
| "Show blocks": "\u0646\u0645\u0627\u06cc\u0634 \u0628\u0644\u0648\u06a9 \u0647\u0627", | ||||
| "Show invisible characters": "\u0646\u0645\u0627\u06cc\u0634 \u0646\u0648\u06cc\u0633\u0647 \u0647\u0627\u06cc \u0646\u0627\u067e\u06cc\u062f\u0627", | ||||
| "Word count": "\u062a\u0639\u062f\u0627\u062f \u0648\u0627\u0698\u0647\u200c\u0647\u0627", | ||||
| "Words: {0}": "\u0648\u0627\u0698\u0647 \u0647\u0627: {0}", | ||||
| "{0} words": "{0} \u0648\u0627\u0698\u0647", | ||||
| "File": "\u067e\u0631\u0648\u0646\u062f\u0647", | ||||
| "Edit": "\u0648\u06cc\u0631\u0627\u06cc\u0634", | ||||
| "Insert": "\u062f\u0631\u062c", | ||||
| "View": "\u0646\u0645\u0627\u06cc\u0634", | ||||
| "Format": "\u0642\u0627\u0644\u0628", | ||||
| "Table": "\u062c\u062f\u0648\u0644", | ||||
| "Tools": "\u0627\u0628\u0632\u0627\u0631\u0647\u0627", | ||||
| "Powered by {0}": "\u062a\u0648\u0627\u0646 \u06af\u0631\u0641\u062a\u0647 \u0627\u0632 {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0646\u0627\u062d\u06cc\u0647 \u0645\u062a\u0646 \u063a\u0646\u06cc.\n\u062c\u0647\u062a \u0645\u0634\u0627\u0647\u062f\u0647 \u0645\u0646\u0648 \u0627\u0632 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc \u062a\u0631\u06a9\u06cc\u0628\u06cc ALT + F9 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f.\n\u062c\u0647\u062a \u0645\u0634\u0627\u0647\u062f\u0647 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631 \u0627\u0632 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc \u062a\u0631\u06a9\u06cc\u0628\u06cc ALT + F10 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f.\n\u062c\u0647\u062a \u0645\u0634\u0627\u0647\u062f\u0647 \u0631\u0627\u0647\u0646\u0645\u0627 \u0627\u0632 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc \u062a\u0631\u06a9\u06cc\u0628\u06cc ALT + 0 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f.", | ||||
| "Image title": "\u0639\u0646\u0648\u0627\u0646 \u062a\u0635\u0648\u06cc\u0631", | ||||
| "Border width": "\u0639\u0631\u0636 \u062d\u0627\u0634\u06cc\u0647", | ||||
| "Border style": "\u0633\u0628\u06a9 \u062d\u0627\u0634\u06cc\u0647", | ||||
| "Error": "\u062e\u0637\u0627", | ||||
| "Warn": "\u0647\u0634\u062f\u0627\u0631", | ||||
| "Valid": "\u0645\u0639\u062a\u0628\u0631", | ||||
| "To open the popup, press Shift+Enter": "\u062c\u0647\u062a \u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u067e\u0646\u062c\u0631\u0647 \u0628\u0627\u0632\u0634\u0648\u060c \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc Shift + Enter \u0631\u0627 \u0641\u0634\u0627\u0631 \u062f\u0647\u06cc\u062f.", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u0646\u0627\u062d\u06cc\u0647 \u0645\u062a\u0646 \u063a\u0646\u06cc. \u062c\u0647\u062a \u0645\u0634\u0627\u0647\u062f\u0647\u0654 \u0631\u0627\u0647\u0646\u0645\u0627 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc ALT + 0 \u0631\u0627 \u0641\u0634\u0627\u0631 \u062f\u0647\u06cc\u062f.", | ||||
| "System Font": "\u0641\u0648\u0646\u062a \u0633\u06cc\u0633\u062a\u0645\u06cc", | ||||
| "Failed to upload image: {0}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u062a\u0635\u0648\u06cc\u0631: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0641\u0632\u0648\u0646\u0647: {0} \u0627\u0632 \u0646\u0634\u0627\u0646\u06cc \u0648\u0628 {1}", | ||||
| "Failed to load plugin url: {0}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0646\u0634\u0627\u0646\u06cc \u0648\u0628 \u0627\u0641\u0632\u0648\u0646\u0647: {0}", | ||||
| "Failed to initialize plugin: {0}": "\u0639\u062f\u0645 \u0645\u0648\u0641\u0642\u06cc\u062a \u062f\u0631 \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0627\u0641\u0632\u0648\u0646\u0647: {0}", | ||||
| "example": "\u0645\u062b\u0627\u0644", | ||||
| "Search": "\u062c\u0633\u062a\u062c\u0648", | ||||
| "All": "\u0647\u0645\u0647", | ||||
| "Currency": "\u0627\u0631\u0632", | ||||
| "Text": "\u0645\u062a\u0646", | ||||
| "Quotations": "\u0646\u0642\u0644\u200c\u0642\u0648\u0644\u200c\u0647\u0627", | ||||
| "Mathematical": "\u0631\u06cc\u0627\u0636\u06cc", | ||||
| "Extended Latin": "\u0644\u0627\u062a\u06cc\u0646 \u06af\u0633\u062a\u0631\u062f\u0647", | ||||
| "Symbols": "\u0646\u0645\u0627\u062f\u0647\u0627", | ||||
| "Arrows": "\u067e\u06cc\u06a9\u0627\u0646\u200c\u0647\u0627", | ||||
| "User Defined": "\u0628\u0647 \u062e\u0648\u0627\u0633\u062a \u06a9\u0627\u0631\u0628\u0631", | ||||
| "dollar sign": "\u0646\u0645\u0627\u062f \u062f\u0644\u0627\u0631", | ||||
| "currency sign": "\u0646\u0645\u0627\u062f \u0627\u0631\u0632", | ||||
| "euro-currency sign": "\u0646\u0645\u0627\u062f \u06cc\u0648\u0631\u0648", | ||||
| "colon sign": "\u0646\u0645\u0627\u062f \u062f\u0648\u0646\u0642\u0637\u0647", | ||||
| "cruzeiro sign": "\u0646\u0645\u0627\u062f \u06a9\u0631\u0648\u0632\u06cc\u0631\u0648", | ||||
| "french franc sign": "\u0646\u0645\u0627\u062f \u0641\u0631\u0627\u0646\u06a9 \u0641\u0631\u0627\u0646\u0633\u0647", | ||||
| "lira sign": "\u0646\u0645\u0627\u062f \u0644\u06cc\u0631\u0647", | ||||
| "mill sign": "\u0646\u0645\u0627\u062f \u0645\u06cc\u0644", | ||||
| "naira sign": "\u0646\u0645\u0627\u062f \u0646\u0627\u06cc\u0631\u0627", | ||||
| "peseta sign": "\u0646\u0645\u0627\u062f \u067e\u0632\u062a\u0627", | ||||
| "rupee sign": "\u0646\u0645\u0627\u062f \u0631\u0648\u067e\u06cc\u0647", | ||||
| "won sign": "\u0646\u0645\u0627\u062f \u0648\u0648\u0646", | ||||
| "new sheqel sign": "\u0646\u0645\u0627\u062f \u0634\u06a9\u0644 \u062c\u062f\u06cc\u062f", | ||||
| "dong sign": "\u0646\u0645\u0627\u062f \u062f\u0627\u0646\u06af", | ||||
| "kip sign": "\u0646\u0645\u0627\u062f \u06a9\u06cc\u067e", | ||||
| "tugrik sign": "\u0646\u0645\u0627\u062f \u062a\u0648\u06af\u0631\u0648\u06af", | ||||
| "drachma sign": "\u0646\u0645\u0627\u062f \u062f\u0631\u0627\u062e\u0645\u0627", | ||||
| "german penny symbol": "\u0646\u0645\u0627\u062f \u067e\u0646\u06cc \u0622\u0644\u0645\u0627\u0646\u06cc", | ||||
| "peso sign": "\u0646\u0645\u0627\u062f \u067e\u0632\u0648", | ||||
| "guarani sign": "\u0646\u0645\u0627\u062f \u06af\u0648\u0627\u0631\u0627\u0646\u06cc", | ||||
| "austral sign": "\u0646\u0645\u0627\u062f \u0622\u0633\u062a\u0631\u0627\u0644", | ||||
| "hryvnia sign": "\u0646\u0645\u0627\u062f \u06af\u0631\u06cc\u0648\u0646\u0627", | ||||
| "cedi sign": "\u0646\u0645\u0627\u062f \u0633\u062f\u06cc", | ||||
| "livre tournois sign": "\u0646\u0645\u0627\u062f \u0644\u06cc\u0648\u0631\u0647 \u062a\u0648\u0631\u0646\u0648\u0627", | ||||
| "spesmilo sign": "\u0646\u0645\u0627\u062f \u0627\u0633\u067e\u0633\u0645\u06cc\u0644\u0648", | ||||
| "tenge sign": "\u0646\u0645\u0627\u062f \u062a\u0646\u06af\u0647", | ||||
| "indian rupee sign": "\u0646\u0645\u0627\u062f \u0631\u0648\u067e\u06cc\u0647 \u0647\u0646\u062f\u06cc", | ||||
| "turkish lira sign": "\u0646\u0645\u0627\u062f \u0644\u06cc\u0631\u0647 \u062a\u0631\u06a9\u06cc", | ||||
| "nordic mark sign": "\u0646\u0645\u0627\u062f \u0645\u0627\u0631\u06a9 \u0646\u0631\u0648\u0698", | ||||
| "manat sign": "\u0646\u0645\u0627\u062f \u0645\u0646\u0627\u062a", | ||||
| "ruble sign": "\u0646\u0645\u0627\u062f \u0631\u0648\u0628\u0644", | ||||
| "yen character": "\u0646\u0648\u06cc\u0633\u0647 \u06cc\u0646", | ||||
| "yuan character": "\u0646\u0648\u06cc\u0633\u0647 \u06cc\u0648\u0627\u0646", | ||||
| "yuan character, in hong kong and taiwan": "\u0646\u0648\u06cc\u0633\u0647 \u06cc\u0648\u0627\u0646\u060c \u062f\u0631 \u0647\u0646\u06af\u200c\u06a9\u0646\u06af \u0648 \u062a\u0627\u06cc\u0648\u0627\u0646", | ||||
| "yen\/yuan character variant one": "\u0646\u0648\u06cc\u0633\u0647 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06cc\u0646\/\u06cc\u0648\u0627\u0646", | ||||
| "Loading emoticons...": "\u062f\u0631 \u062d\u0627\u0644 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0634\u06a9\u0644\u06a9\u200c\u0647\u0627...", | ||||
| "Could not load emoticons": "\u0634\u06a9\u0644\u06a9\u200c\u0647\u0627 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0646\u0634\u062f\u0646\u062f", | ||||
| "People": "\u0627\u0641\u0631\u0627\u062f", | ||||
| "Animals and Nature": "\u062d\u06cc\u0648\u0627\u0646\u0627\u062a \u0648 \u0637\u0628\u06cc\u0639\u062a", | ||||
| "Food and Drink": "\u063a\u0630\u0627 \u0648 \u0646\u0648\u0634\u06cc\u062f\u0646\u06cc", | ||||
| "Activity": "\u0641\u0639\u0627\u0644\u06cc\u062a", | ||||
| "Travel and Places": "\u0633\u0641\u0631 \u0648 \u0627\u0645\u0627\u06a9\u0646", | ||||
| "Objects": "\u0627\u0634\u06cc\u0627", | ||||
| "Flags": "\u067e\u0631\u0686\u0645\u200c\u0647\u0627", | ||||
| "Characters": "\u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627", | ||||
| "Characters (no spaces)": "\u0646\u0648\u06cc\u0633\u0647 \u0647\u0627 (\u0628\u062f\u0648\u0646 \u0641\u0627\u0635\u0644\u0647)", | ||||
| "Error: Form submit field collision.": "\u062e\u0637\u0627: \u062a\u062f\u0627\u062e\u0644 \u062f\u0631 \u062b\u0628\u062a \u0641\u0631\u0645.", | ||||
| "Error: No form element found.": "\u062e\u0637\u0627: \u0647\u06cc\u0686 \u0627\u0644\u0645\u0627\u0646 \u0641\u0631\u0645\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f.", | ||||
| "Update": "\u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc", | ||||
| "Color swatch": "\u0646\u0645\u0648\u0646\u0647 \u0631\u0646\u06af", | ||||
| "Turquoise": "\u0641\u06cc\u0631\u0648\u0632\u0647\u200c\u0627\u06cc", | ||||
| "Green": "\u0633\u0628\u0632", | ||||
| "Blue": "\u0622\u0628\u06cc", | ||||
| "Purple": "\u0628\u0646\u0641\u0634", | ||||
| "Navy Blue": "\u0633\u0631\u0645\u0647\u200c\u0627\u06cc", | ||||
| "Dark Turquoise": "\u0641\u06cc\u0631\u0648\u0632\u0647\u200c\u0627\u06cc \u062a\u06cc\u0631\u0647", | ||||
| "Dark Green": "\u0633\u0628\u0632 \u062a\u06cc\u0631\u0647", | ||||
| "Medium Blue": "\u0622\u0628\u06cc \u0633\u06cc\u0631", | ||||
| "Medium Purple": "\u0622\u0628\u06cc \u0628\u0646\u0641\u0634", | ||||
| "Midnight Blue": "\u0622\u0628\u06cc \u0646\u0641\u062a\u06cc", | ||||
| "Yellow": "\u0632\u0631\u062f", | ||||
| "Orange": "\u0646\u0627\u0631\u0646\u062c\u06cc", | ||||
| "Red": "\u0642\u0631\u0645\u0632", | ||||
| "Light Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc \u0631\u0648\u0634\u0646", | ||||
| "Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc", | ||||
| "Dark Yellow": "\u0632\u0631\u062f \u062a\u06cc\u0631\u0647", | ||||
| "Dark Orange": "\u0646\u0627\u0631\u0646\u062c\u06cc \u062a\u06cc\u0631\u0647", | ||||
| "Dark Red": "\u0642\u0631\u0645\u0632 \u062a\u06cc\u0631\u0647", | ||||
| "Medium Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc \u0646\u06cc\u0645\u0647\u200c\u0631\u0648\u0634\u0646", | ||||
| "Dark Gray": "\u062e\u0627\u06a9\u0633\u062a\u0631\u06cc \u062a\u06cc\u0631\u0647", | ||||
| "Black": "\u0633\u06cc\u0627\u0647", | ||||
| "White": "\u0633\u0641\u06cc\u062f", | ||||
| "Switch to or from fullscreen mode": "\u062a\u063a\u06cc\u06cc\u0631 \u0627\u0632 \u062d\u0627\u0644\u062a \u062a\u0645\u0627\u0645\u200c\u0635\u0641\u062d\u0647 \u06cc\u0627 \u0628\u0647 \u062d\u0627\u0644\u062a \u062a\u0645\u0627\u0645\u200c\u0635\u0641\u062d\u0647", | ||||
| "Open help dialog": "\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u06a9\u0627\u062f\u0631 \u0631\u0627\u0647\u0646\u0645\u0627", | ||||
| "history": "\u062a\u0627\u0631\u06cc\u062e\u0686\u0647", | ||||
| "styles": "\u0633\u0628\u06a9\u200c\u0647\u0627", | ||||
| "formatting": "\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc", | ||||
| "alignment": "\u062a\u0631\u0627\u0632\u0628\u0646\u062f\u06cc", | ||||
| "indentation": "\u062a\u0648\u0631\u0641\u062a\u06af\u06cc", | ||||
| "permanent pen": "\u0642\u0644\u0645 \u062f\u0627\u0626\u0645\u06cc", | ||||
| "comments": "\u0646\u0638\u0631\u0627\u062a", | ||||
| "Anchor": "\u0642\u0644\u0627\u0628", | ||||
| "Special character": "\u0646\u0648\u06cc\u0633\u0647 \u0647\u0627\u06cc \u062e\u0627\u0635", | ||||
| "Code sample": "\u0646\u0645\u0648\u0646\u0647 \u06a9\u064f\u062f", | ||||
| "Color": "\u0631\u0646\u06af", | ||||
| "Emoticons": "\u0635\u0648\u0631\u062a\u06a9 \u0647\u0627", | ||||
| "Document properties": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0633\u0646\u062f", | ||||
| "Image": "\u062a\u0635\u0648\u06cc\u0631", | ||||
| "Insert link": "\u062f\u0631\u062c \u067e\u06cc\u0648\u0646\u062f", | ||||
| "Target": "\u0645\u0642\u0635\u062f", | ||||
| "Link": "\u067e\u06cc\u0648\u0646\u062f", | ||||
| "Poster": "\u067e\u0648\u0633\u062a\u0631", | ||||
| "Media": "\u0631\u0633\u0627\u0646\u0647", | ||||
| "Print": "\u0686\u0627\u067e", | ||||
| "Prev": "\u0642\u0628\u0644\u06cc", | ||||
| "Find and replace": "\u062c\u0633\u062a\u062c\u0648 \u0648 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc", | ||||
| "Whole words": "\u062a\u0645\u0627\u0645 \u0648\u0627\u0698\u06af\u0627\u0646", | ||||
| "Spellcheck": "\u0628\u0631\u0631\u0633\u06cc \u0627\u0645\u0644\u0627\u0621", | ||||
| "Caption": "\u0639\u0646\u0648\u0627\u0646", | ||||
| "Insert template": "\u062f\u0631\u062c \u0627\u0644\u06af\u0648", | ||||
| "_dir": "rtl" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/fi.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/fi.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('fi',{ | ||||
| "Redo": "Tee uudelleen", | ||||
| "Undo": "Kumoa", | ||||
| "Cut": "Leikkaa", | ||||
| "Copy": "Kopioi", | ||||
| "Paste": "Liit\u00e4", | ||||
| "Select all": "Valitse kaikki", | ||||
| "New document": "Uusi asiakirja", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Peruuta", | ||||
| "Visual aids": "Visuaaliset neuvot", | ||||
| "Bold": "Lihavoitu", | ||||
| "Italic": "Kursivoitu", | ||||
| "Underline": "Alleviivaus", | ||||
| "Strikethrough": "Yliviivaus", | ||||
| "Superscript": "Yl\u00e4indeksi", | ||||
| "Subscript": "Alaindeksi", | ||||
| "Clear formatting": "Poista muotoilu", | ||||
| "Align left": "Tasaa vasemmalle", | ||||
| "Align center": "Tasaa keskelle", | ||||
| "Align right": "Tasaa oikealle", | ||||
| "Justify": "Tasaus", | ||||
| "Bullet list": "J\u00e4rjest\u00e4m\u00e4t\u00f6n lista", | ||||
| "Numbered list": "J\u00e4rjestetty lista", | ||||
| "Decrease indent": "Sisenn\u00e4", | ||||
| "Increase indent": "Loitonna", | ||||
| "Close": "Sulje", | ||||
| "Formats": "Muotoilut", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Selaimesi ei tue leikep\u00f6yd\u00e4n suoraa k\u00e4ytt\u00e4mist\u00e4. Ole hyv\u00e4 ja k\u00e4yt\u00e4 n\u00e4pp\u00e4imist\u00f6n Ctrl+X\/C\/V n\u00e4pp\u00e4inyhdistelmi\u00e4.", | ||||
| "Headers": "Otsikot", | ||||
| "Header 1": "Otsikko 1", | ||||
| "Header 2": "Otsikko 2", | ||||
| "Header 3": "Otsikko 3", | ||||
| "Header 4": "Otsikko 4", | ||||
| "Header 5": "Otsikko 5", | ||||
| "Header 6": "Otsikko 6", | ||||
| "Headings": "Otsikot", | ||||
| "Heading 1": "Otsikko 1", | ||||
| "Heading 2": "Otsikko 2", | ||||
| "Heading 3": "Otsikko 3", | ||||
| "Heading 4": "Otsikko 4", | ||||
| "Heading 5": "Otsikko 5", | ||||
| "Heading 6": "Otsikko 6", | ||||
| "Preformatted": "Esimuotoiltu", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Koodi", | ||||
| "Paragraph": "Kappale", | ||||
| "Blockquote": "Lohkolainaus", | ||||
| "Inline": "Samalla rivill\u00e4", | ||||
| "Blocks": "Lohkot", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Liitt\u00e4minen on nyt pelk\u00e4n tekstin -tilassa. Sis\u00e4ll\u00f6t liitet\u00e4\u00e4n nyt pelkk\u00e4n\u00e4 tekstin\u00e4, kunnes otat vaihtoehdon pois k\u00e4yt\u00f6st\u00e4.", | ||||
| "Fonts": "Fontti", | ||||
| "Font Sizes": "Fonttikoko", | ||||
| "Class": "Luokka", | ||||
| "Browse for an image": "Selaa kuvia", | ||||
| "OR": "TAI", | ||||
| "Drop an image here": "Pudota kuva t\u00e4h\u00e4n", | ||||
| "Upload": "Vie", | ||||
| "Block": "Lohko", | ||||
| "Align": "Tasaa", | ||||
| "Default": "Oletus", | ||||
| "Circle": "Pallo", | ||||
| "Disc": "Ympyr\u00e4", | ||||
| "Square": "Neli\u00f6", | ||||
| "Lower Alpha": "pienet kirjaimet: a, b, c", | ||||
| "Lower Greek": "pienet kirjaimet: \u03b1, \u03b2, \u03b3", | ||||
| "Lower Roman": "pienet kirjaimet: i, ii, iii", | ||||
| "Upper Alpha": "isot kirjaimet: A, B, C", | ||||
| "Upper Roman": "isot kirjaimet: I, II, III", | ||||
| "Anchor...": "Ankkuri...", | ||||
| "Name": "Nimi", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id voi alkaa kirjaimella, sen j\u00e4lkeen voi k\u00e4ytt\u00e4\u00e4 kirjaimia, numeroja, viivoja, pisteit\u00e4, kaksoispistett\u00e4 ja alaviivausta", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Sinulla on tallentamattomia muutoksia, haluatko varmasti siirty\u00e4 toiselle sivulle?", | ||||
| "Restore last draft": "Palauta aiempi luonnos", | ||||
| "Special character...": "Erikoismerkki...", | ||||
| "Source code": "L\u00e4hdekoodi", | ||||
| "Insert\/Edit code sample": "Lis\u00e4\u00e4\/muokkaa koodiesimerkki", | ||||
| "Language": "Kieli", | ||||
| "Code sample...": "Koodin\u00e4yte...", | ||||
| "Color Picker": "V\u00e4rivalitsin", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Vasemmalta oikealle", | ||||
| "Right to left": "Oikealta vasemmalle", | ||||
| "Emoticons...": "Emoticonit...", | ||||
| "Metadata and Document Properties": "Metadata ja asiakirjan ominaisuudet", | ||||
| "Title": "Otsikko", | ||||
| "Keywords": "Avainsanat", | ||||
| "Description": "Kuvaus", | ||||
| "Robots": "Robotit", | ||||
| "Author": "Tekij\u00e4", | ||||
| "Encoding": "Merkist\u00f6", | ||||
| "Fullscreen": "Koko ruutu", | ||||
| "Action": "Toiminto", | ||||
| "Shortcut": "Oikotie", | ||||
| "Help": "Ohje", | ||||
| "Address": "Osoite", | ||||
| "Focus to menubar": "Kohdistus valikkoon", | ||||
| "Focus to toolbar": "Kohdistus ty\u00f6kalupalkkiin", | ||||
| "Focus to element path": "Kohdistus elementtiin", | ||||
| "Focus to contextual toolbar": "Kohdistus kontekstuaaliseen ty\u00f6kalupalkkiin", | ||||
| "Insert link (if link plugin activated)": "Lis\u00e4\u00e4 linkki (jos linkki-liit\u00e4nn\u00e4inen aktiivinen)", | ||||
| "Save (if save plugin activated)": "Tallenna (jos tallenna-liit\u00e4nn\u00e4inen aktiivinen)", | ||||
| "Find (if searchreplace plugin activated)": "Etsi (jos etsikorvaa-liit\u00e4nn\u00e4inen aktiivinen)", | ||||
| "Plugins installed ({0}):": "Asennetut liit\u00e4nn\u00e4iset ({0}):", | ||||
| "Premium plugins:": "Premium liit\u00e4nn\u00e4iset:", | ||||
| "Learn more...": "Lis\u00e4tietoja...", | ||||
| "You are using {0}": "K\u00e4yt\u00e4t {0}", | ||||
| "Plugins": "Liit\u00e4nn\u00e4iset", | ||||
| "Handy Shortcuts": "K\u00e4tev\u00e4t pikan\u00e4pp\u00e4imet", | ||||
| "Horizontal line": "Vaakasuora viiva", | ||||
| "Insert\/edit image": "Lis\u00e4\u00e4\/muokkaa kuva", | ||||
| "Image description": "Kuvaus", | ||||
| "Source": "L\u00e4hde", | ||||
| "Dimensions": "Mittasuhteet", | ||||
| "Constrain proportions": "S\u00e4ilyt\u00e4 mittasuhteet", | ||||
| "General": "Yleiset", | ||||
| "Advanced": "Lis\u00e4asetukset", | ||||
| "Style": "Tyyli", | ||||
| "Vertical space": "Vertikaalinen tila", | ||||
| "Horizontal space": "Horisontaalinen tila", | ||||
| "Border": "Reunus", | ||||
| "Insert image": "Lis\u00e4\u00e4 kuva", | ||||
| "Image...": "Kuva...", | ||||
| "Image list": "Kuvalista", | ||||
| "Rotate counterclockwise": "Kierr\u00e4 vastap\u00e4iv\u00e4\u00e4n", | ||||
| "Rotate clockwise": "Kierr\u00e4 my\u00f6t\u00e4p\u00e4iv\u00e4\u00e4n", | ||||
| "Flip vertically": "K\u00e4\u00e4nn\u00e4 pystysuunnassa", | ||||
| "Flip horizontally": "K\u00e4\u00e4nn\u00e4 vaakasuunnassa", | ||||
| "Edit image": "Muokkaa kuvaa", | ||||
| "Image options": "Kuvan asetukset", | ||||
| "Zoom in": "L\u00e4henn\u00e4", | ||||
| "Zoom out": "Loitonna", | ||||
| "Crop": "Rajaa valintaan", | ||||
| "Resize": "Kuvan koon muutos", | ||||
| "Orientation": "Suunta", | ||||
| "Brightness": "Kirkkaus", | ||||
| "Sharpen": "Ter\u00e4vyys", | ||||
| "Contrast": "Kontrasti", | ||||
| "Color levels": "V\u00e4ritasot", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "K\u00e4\u00e4nteinen", | ||||
| "Apply": "Aseta", | ||||
| "Back": "Takaisin", | ||||
| "Insert date\/time": "Lis\u00e4\u00e4 p\u00e4iv\u00e4m\u00e4\u00e4r\u00e4 tai aika", | ||||
| "Date\/time": "P\u00e4iv\u00e4m\u00e4\u00e4r\u00e4\/aika", | ||||
| "Insert\/Edit Link": "Lis\u00e4\u00e4 linkki\/muokkaa linkki\u00e4", | ||||
| "Insert\/edit link": "Lis\u00e4\u00e4\/muokkaa linkki", | ||||
| "Text to display": "N\u00e4ytett\u00e4v\u00e4 teksti", | ||||
| "Url": "Osoite", | ||||
| "Open link in...": "Avaa linkki...", | ||||
| "Current window": "Nykyinen ikkuna", | ||||
| "None": "Ei mit\u00e4\u00e4n", | ||||
| "New window": "Uusi ikkuna", | ||||
| "Remove link": "Poista linkki", | ||||
| "Anchors": "Ankkurit", | ||||
| "Link...": "Linkki...", | ||||
| "Paste or type a link": "Sijoita tai kirjoita linkki", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Antamasi osoite n\u00e4ytt\u00e4\u00e4 olevan s\u00e4hk\u00f6postiosoite. Haluatko lis\u00e4t\u00e4 osoitteeseen vaaditun mailto: -etuliitteen?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Antamasi osoite n\u00e4ytt\u00e4\u00e4 olevan ulkoinen linkki. Haluatko lis\u00e4t\u00e4 osoitteeseen vaaditun http:\/\/ -etuliitteen?", | ||||
| "Link list": "Linkkilista", | ||||
| "Insert video": "Lis\u00e4\u00e4 video", | ||||
| "Insert\/edit video": "Lis\u00e4\u00e4\/muokkaa video", | ||||
| "Insert\/edit media": "Lis\u00e4\u00e4\/muokkaa media", | ||||
| "Alternative source": "Vaihtoehtoinen l\u00e4hde", | ||||
| "Alternative source URL": "Vaihtoehtoinen l\u00e4hde-URL", | ||||
| "Media poster (Image URL)": "Median julkaisija (kuvan URL)", | ||||
| "Paste your embed code below:": "Liit\u00e4 upotuskoodisi alapuolelle:", | ||||
| "Embed": "Upota", | ||||
| "Media...": "Media...", | ||||
| "Nonbreaking space": "Sitova v\u00e4lily\u00f6nti", | ||||
| "Page break": "Sivunvaihto", | ||||
| "Paste as text": "Liit\u00e4 tekstin\u00e4", | ||||
| "Preview": "Esikatselu", | ||||
| "Print...": "Tulosta", | ||||
| "Save": "Tallenna", | ||||
| "Find": "Etsi", | ||||
| "Replace with": "Korvaa", | ||||
| "Replace": "Korvaa", | ||||
| "Replace all": "Korvaa kaikki", | ||||
| "Previous": "Edellinen", | ||||
| "Next": "Seur.", | ||||
| "Find and replace...": "Etsi ja korvaa...", | ||||
| "Could not find the specified string.": "Haettua merkkijonoa ei l\u00f6ytynyt.", | ||||
| "Match case": "Erota isot ja pienet kirjaimet", | ||||
| "Find whole words only": "Etsi vain kokonaisia sanoja", | ||||
| "Spell check": "Oikeinkirjoituksen tarkistus", | ||||
| "Ignore": "\u00c4l\u00e4 huomioi", | ||||
| "Ignore all": "\u00c4l\u00e4 huomioi mit\u00e4\u00e4n", | ||||
| "Finish": "Lopeta", | ||||
| "Add to Dictionary": "Lis\u00e4\u00e4 sanakirjaan", | ||||
| "Insert table": "Lis\u00e4\u00e4 taulukko", | ||||
| "Table properties": "Taulukon ominaisuudet", | ||||
| "Delete table": "Poista taulukko", | ||||
| "Cell": "Solu", | ||||
| "Row": "Rivi", | ||||
| "Column": "Sarake", | ||||
| "Cell properties": "Solun ominaisuudet", | ||||
| "Merge cells": "Yhdist\u00e4 solut", | ||||
| "Split cell": "Jaa solu", | ||||
| "Insert row before": "Lis\u00e4\u00e4 rivi ennen", | ||||
| "Insert row after": "Lis\u00e4\u00e4 rivi j\u00e4lkeen", | ||||
| "Delete row": "Poista rivi", | ||||
| "Row properties": "Rivin ominaisuudet", | ||||
| "Cut row": "Leikkaa rivi", | ||||
| "Copy row": "Kopioi rivi", | ||||
| "Paste row before": "Liit\u00e4 rivi ennen", | ||||
| "Paste row after": "Liit\u00e4 rivi j\u00e4lkeen", | ||||
| "Insert column before": "Lis\u00e4\u00e4 rivi ennen", | ||||
| "Insert column after": "Lis\u00e4\u00e4 rivi j\u00e4lkeen", | ||||
| "Delete column": "Poista sarake", | ||||
| "Cols": "Sarakkeet", | ||||
| "Rows": "Rivit", | ||||
| "Width": "Leveys", | ||||
| "Height": "Korkeus", | ||||
| "Cell spacing": "Solun v\u00e4li", | ||||
| "Cell padding": "Solun tyhj\u00e4 tila", | ||||
| "Show caption": "N\u00e4yt\u00e4 kuvateksti", | ||||
| "Left": "Vasen", | ||||
| "Center": "Keskell\u00e4", | ||||
| "Right": "Oikea", | ||||
| "Cell type": "Solun tyyppi", | ||||
| "Scope": "Laajuus", | ||||
| "Alignment": "Tasaus", | ||||
| "H Align": "H tasaus", | ||||
| "V Align": "V tasaus", | ||||
| "Top": "Yl\u00e4reuna", | ||||
| "Middle": "Keskikohta", | ||||
| "Bottom": "Alareuna", | ||||
| "Header cell": "Otsikkosolu", | ||||
| "Row group": "Riviryhm\u00e4", | ||||
| "Column group": "Sarakeryhm\u00e4", | ||||
| "Row type": "Rivityyppi", | ||||
| "Header": "Otsikko", | ||||
| "Body": "Runko", | ||||
| "Footer": "Alaosa", | ||||
| "Border color": "Reunuksen v\u00e4ri", | ||||
| "Insert template...": "Lis\u00e4\u00e4 malli...", | ||||
| "Templates": "Pohjat", | ||||
| "Template": "Pohja", | ||||
| "Text color": "Tekstin v\u00e4ri", | ||||
| "Background color": "Taustan v\u00e4ri", | ||||
| "Custom...": "Mukauta...", | ||||
| "Custom color": "Mukautettu v\u00e4ri", | ||||
| "No color": "Ei v\u00e4ri\u00e4", | ||||
| "Remove color": "Poista v\u00e4ri", | ||||
| "Table of Contents": "Sis\u00e4llysluettelo", | ||||
| "Show blocks": "N\u00e4yt\u00e4 lohkot", | ||||
| "Show invisible characters": "N\u00e4yt\u00e4 n\u00e4kym\u00e4tt\u00f6m\u00e4t merkit", | ||||
| "Word count": "Sanam\u00e4\u00e4r\u00e4", | ||||
| "Count": "M\u00e4\u00e4r\u00e4", | ||||
| "Document": "Tiedosto", | ||||
| "Selection": "Valinta", | ||||
| "Words": "Sanaa", | ||||
| "Words: {0}": "Sanat: {0}", | ||||
| "{0} words": "{0} sanaa", | ||||
| "File": "Tiedosto", | ||||
| "Edit": "Muokkaa", | ||||
| "Insert": "Lis\u00e4\u00e4", | ||||
| "View": "N\u00e4yt\u00e4", | ||||
| "Format": "Muotoilu", | ||||
| "Table": "Taulukko", | ||||
| "Tools": "Ty\u00f6kalut", | ||||
| "Powered by {0}": "Tehty {0}:ll\u00e4", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rikastetun tekstin alue. Paina ALT-F9 valikkoon. Paina ALT-F10 ty\u00f6kaluriviin. Paina ALT-0 ohjeeseen.", | ||||
| "Image title": "Kuvan otsikko", | ||||
| "Border width": "Reunuksen leveys", | ||||
| "Border style": "Reunuksen tyyli", | ||||
| "Error": "Virhe", | ||||
| "Warn": "Varoitus", | ||||
| "Valid": "Voimassa", | ||||
| "To open the popup, press Shift+Enter": "Avaa ponnahdusikkuna painamalla Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Rikastetun tekstin alue. Avaa ohje painamalla ALT-0.", | ||||
| "System Font": "J\u00e4rjestelm\u00e4fontti", | ||||
| "Failed to upload image: {0}": "Kuvan lataus ep\u00e4onnistui: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Liit\u00e4nn\u00e4isen lataus ep\u00e4onnistui: {0} url:st\u00e4 {1}", | ||||
| "Failed to load plugin url: {0}": "Liit\u00e4nn\u00e4isen url:n lataus ep\u00e4onnistui: {0}", | ||||
| "Failed to initialize plugin: {0}": "Liit\u00e4nn\u00e4isen alustus ep\u00e4onnistui: {0}", | ||||
| "example": "esimerkki", | ||||
| "Search": "Etsi", | ||||
| "All": "Kaikki", | ||||
| "Currency": "Valuutta", | ||||
| "Text": "Teksti", | ||||
| "Quotations": "Lainaukset", | ||||
| "Mathematical": "Matemaattiset", | ||||
| "Extended Latin": "Laajennettu latina", | ||||
| "Symbols": "Symbolit", | ||||
| "Arrows": "Nuolet", | ||||
| "User Defined": "K\u00e4ytt\u00e4j\u00e4m\u00e4\u00e4ritetty", | ||||
| "dollar sign": "dollarimerkki", | ||||
| "currency sign": "valuuttamerkki", | ||||
| "euro-currency sign": "eurovaluuttamerkki", | ||||
| "colon sign": "kaksoispisteen merkki", | ||||
| "cruzeiro sign": "cruzeiro-merkki", | ||||
| "french franc sign": "ranskalaisen frangin merkki", | ||||
| "lira sign": "liiran merkki", | ||||
| "mill sign": "millin merkki", | ||||
| "naira sign": "nairan merkki", | ||||
| "peseta sign": "pesetan merkki", | ||||
| "rupee sign": "rupian merkki", | ||||
| "won sign": "wonin merkki", | ||||
| "new sheqel sign": "uuden sekelin merkki", | ||||
| "dong sign": "dongin merkki", | ||||
| "kip sign": "kipin merkki", | ||||
| "tugrik sign": "tugrikin merkki", | ||||
| "drachma sign": "drakman merkki", | ||||
| "german penny symbol": "saksalaisen pennin merkki", | ||||
| "peso sign": "peson merkki", | ||||
| "guarani sign": "guaranin merkki", | ||||
| "austral sign": "australin merkki", | ||||
| "hryvnia sign": "hryvnian merkki", | ||||
| "cedi sign": "cedin merkki", | ||||
| "livre tournois sign": "livre tournoisin merkki", | ||||
| "spesmilo sign": "spesmilon merkki", | ||||
| "tenge sign": "tengen merkki", | ||||
| "indian rupee sign": "intialaisen rupian merkki", | ||||
| "turkish lira sign": "turkkilaisen liiran merkki", | ||||
| "nordic mark sign": "pohjoismaisen markan merkki", | ||||
| "manat sign": "manatin merkki", | ||||
| "ruble sign": "ruplan merkki", | ||||
| "yen character": "jenin merkki", | ||||
| "yuan character": "juanin merkki", | ||||
| "yuan character, in hong kong and taiwan": "juanin merkki, Hongkongissa ja Taiwanissa", | ||||
| "yen\/yuan character variant one": "jenin\/juanin merkin variantti", | ||||
| "Loading emoticons...": "Ladataan emoticoneja...", | ||||
| "Could not load emoticons": "Emoticoneja ei voitu ladata", | ||||
| "People": "Ihmiset", | ||||
| "Animals and Nature": "El\u00e4imet ja luonto", | ||||
| "Food and Drink": "Ruoka ja juoma", | ||||
| "Activity": "Aktiviteetit", | ||||
| "Travel and Places": "Matkailu ja paikat", | ||||
| "Objects": "Esineet", | ||||
| "Flags": "Liput", | ||||
| "Characters": "Merkki\u00e4", | ||||
| "Characters (no spaces)": "Merkki\u00e4 (ilman v\u00e4lily\u00f6ntej\u00e4)", | ||||
| "{0} characters": "{0} merkki\u00e4", | ||||
| "Error: Form submit field collision.": "Virhe: lomakkeen l\u00e4hetyskent\u00e4n t\u00f6rm\u00e4ys.", | ||||
| "Error: No form element found.": "Virhe: muotoelementti\u00e4 ei l\u00f6ytynyt.", | ||||
| "Update": "P\u00e4ivit\u00e4", | ||||
| "Color swatch": "V\u00e4rin\u00e4yte", | ||||
| "Turquoise": "Turkoosi", | ||||
| "Green": "Vihre\u00e4", | ||||
| "Blue": "Sininen", | ||||
| "Purple": "Purppura", | ||||
| "Navy Blue": "Laivastonsininen", | ||||
| "Dark Turquoise": "Tumma turkoosi", | ||||
| "Dark Green": "Tumma vihre\u00e4", | ||||
| "Medium Blue": "Keskitumma sininen", | ||||
| "Medium Purple": "Keskitumma purppura", | ||||
| "Midnight Blue": "keskiy\u00f6n sininen", | ||||
| "Yellow": "Keltainen", | ||||
| "Orange": "Oranssi", | ||||
| "Red": "Punainen", | ||||
| "Light Gray": "Vaaleanharmaa", | ||||
| "Gray": "Harmaa", | ||||
| "Dark Yellow": "Tummankeltainen", | ||||
| "Dark Orange": "Tumma oranssi", | ||||
| "Dark Red": "Tumma punainen", | ||||
| "Medium Gray": "Keskiharmaa", | ||||
| "Dark Gray": "Tummanharmaa", | ||||
| "Light Green": "Vaaleanvihre\u00e4", | ||||
| "Light Yellow": "Vaaleankeltainen", | ||||
| "Light Red": "Vaaleanpunainen", | ||||
| "Light Purple": "Liila", | ||||
| "Light Blue": "Vaaleansininen", | ||||
| "Dark Purple": "Tummanvioletti", | ||||
| "Dark Blue": "Tummansininen", | ||||
| "Black": "Musta", | ||||
| "White": "Valkoinen", | ||||
| "Switch to or from fullscreen mode": "Vaihda kokon\u00e4ytt\u00f6\u00f6n tai kokon\u00e4yt\u00f6st\u00e4", | ||||
| "Open help dialog": "Avaa ohjeen valintaikkuna", | ||||
| "history": "historia", | ||||
| "styles": "tyylit", | ||||
| "formatting": "muotoiltu", | ||||
| "alignment": "tasaus", | ||||
| "indentation": "sisennys", | ||||
| "permanent pen": "pysyv\u00e4 kyn\u00e4", | ||||
| "comments": "kommentit", | ||||
| "Format Painter": "Muotoilusivellin", | ||||
| "Insert\/edit iframe": "Lis\u00e4\u00e4\/muokkaa iframe-kehyst\u00e4", | ||||
| "Capitalization": "Kapitalisointi", | ||||
| "lowercase": "pienaakkoset", | ||||
| "UPPERCASE": "SUURAAKKOSET", | ||||
| "Title Case": "Otsikon kapitalisointi", | ||||
| "Permanent Pen Properties": "Pysyv\u00e4t kyn\u00e4n ominaisuudet", | ||||
| "Permanent pen properties...": "Pysyv\u00e4t kyn\u00e4n ominaisuudet...", | ||||
| "Font": "Fontti", | ||||
| "Size": "Koko", | ||||
| "More...": "Lis\u00e4\u00e4...", | ||||
| "Spellcheck Language": "Oikoluvun kieli", | ||||
| "Select...": "Valitse...", | ||||
| "Preferences": "Asetukset", | ||||
| "Yes": "Kyll\u00e4", | ||||
| "No": "Ei", | ||||
| "Keyboard Navigation": "Navigointi n\u00e4pp\u00e4imist\u00f6ll\u00e4", | ||||
| "Version": "Versio", | ||||
| "Anchor": "Ankkuri", | ||||
| "Special character": "Erikoismerkki", | ||||
| "Code sample": "Koodiesimerkki", | ||||
| "Color": "V\u00e4ri", | ||||
| "Emoticons": "Hymi\u00f6t", | ||||
| "Document properties": "Dokumentin ominaisuudet", | ||||
| "Image": "Kuva", | ||||
| "Insert link": "Lis\u00e4\u00e4 linkki", | ||||
| "Target": "Kohde", | ||||
| "Link": "Linkki", | ||||
| "Poster": "L\u00e4hett\u00e4j\u00e4", | ||||
| "Media": "Media", | ||||
| "Print": "Tulosta", | ||||
| "Prev": "Edel.", | ||||
| "Find and replace": "Etsi ja korvaa", | ||||
| "Whole words": "Koko sanat", | ||||
| "Spellcheck": "Oikolue", | ||||
| "Caption": "Seloste", | ||||
| "Insert template": "Lis\u00e4\u00e4 pohja" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/fr_FR.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/fr_FR.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('fr_FR',{ | ||||
| "Redo": "R\u00e9tablir", | ||||
| "Undo": "Annuler", | ||||
| "Cut": "Couper", | ||||
| "Copy": "Copier", | ||||
| "Paste": "Coller", | ||||
| "Select all": "S\u00e9lectionner tout", | ||||
| "New document": "Nouveau document", | ||||
| "Ok": "OK", | ||||
| "Cancel": "Annuler", | ||||
| "Visual aids": "Aides visuelles", | ||||
| "Bold": "Gras", | ||||
| "Italic": "Italique", | ||||
| "Underline": "Soulign\u00e9", | ||||
| "Strikethrough": "Barr\u00e9", | ||||
| "Superscript": "Exposant", | ||||
| "Subscript": "Indice", | ||||
| "Clear formatting": "Effacer la mise en forme", | ||||
| "Align left": "Aligner \u00e0 gauche", | ||||
| "Align center": "Centrer", | ||||
| "Align right": "Aligner \u00e0 droite", | ||||
| "Justify": "Justifier", | ||||
| "Bullet list": "Liste \u00e0 puces", | ||||
| "Numbered list": "Liste num\u00e9rot\u00e9e", | ||||
| "Decrease indent": "R\u00e9duire le retrait", | ||||
| "Increase indent": "Augmenter le retrait", | ||||
| "Close": "Fermer", | ||||
| "Formats": "Formats", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Votre navigateur ne supporte pas l\u2019acc\u00e8s direct au presse-papiers. Merci d'utiliser les raccourcis clavier Ctrl+X\/C\/V.", | ||||
| "Headers": "En-t\u00eates", | ||||
| "Header 1": "En-t\u00eate 1", | ||||
| "Header 2": "En-t\u00eate 2", | ||||
| "Header 3": "En-t\u00eate 3", | ||||
| "Header 4": "En-t\u00eate 4", | ||||
| "Header 5": "En-t\u00eate 5", | ||||
| "Header 6": "En-t\u00eate 6", | ||||
| "Headings": "Titres", | ||||
| "Heading 1": "Titre\u00a01", | ||||
| "Heading 2": "Titre\u00a02", | ||||
| "Heading 3": "Titre\u00a03", | ||||
| "Heading 4": "Titre\u00a04", | ||||
| "Heading 5": "Titre\u00a05", | ||||
| "Heading 6": "Titre\u00a06", | ||||
| "Preformatted": "Pr\u00e9format\u00e9", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Code", | ||||
| "Paragraph": "Paragraphe", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "En ligne", | ||||
| "Blocks": "Blocs", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Le presse-papiers est maintenant en mode \"texte plein\". Les contenus seront coll\u00e9s sans retenir les formatages jusqu'\u00e0 ce que vous d\u00e9sactiviez cette option.", | ||||
| "Fonts": "Polices", | ||||
| "Font Sizes": "Tailles de police", | ||||
| "Class": "Classe", | ||||
| "Browse for an image": "Rechercher une image", | ||||
| "OR": "OU", | ||||
| "Drop an image here": "D\u00e9poser une image ici", | ||||
| "Upload": "T\u00e9l\u00e9charger", | ||||
| "Block": "Bloc", | ||||
| "Align": "Aligner", | ||||
| "Default": "Par d\u00e9faut", | ||||
| "Circle": "Cercle", | ||||
| "Disc": "Disque", | ||||
| "Square": "Carr\u00e9", | ||||
| "Lower Alpha": "Alpha minuscule", | ||||
| "Lower Greek": "Grec minuscule", | ||||
| "Lower Roman": "Romain minuscule", | ||||
| "Upper Alpha": "Alpha majuscule", | ||||
| "Upper Roman": "Romain majuscule", | ||||
| "Anchor...": "Ancre...", | ||||
| "Name": "Nom", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "L'Id doit commencer par une lettre suivi par des lettres, nombres, tirets, points, deux-points ou underscores", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Vous avez des modifications non enregistr\u00e9es, \u00eates-vous s\u00fbr de quitter la page?", | ||||
| "Restore last draft": "Restaurer le dernier brouillon", | ||||
| "Special character...": "Caract\u00e8re sp\u00e9cial...", | ||||
| "Source code": "Code source", | ||||
| "Insert\/Edit code sample": "Ins\u00e9rer \/ modifier une exemple de code", | ||||
| "Language": "Langue", | ||||
| "Code sample...": "Exemple de code...", | ||||
| "Color Picker": "S\u00e9lecteur de couleurs", | ||||
| "R": "R", | ||||
| "G": "V", | ||||
| "B": "B", | ||||
| "Left to right": "Gauche \u00e0 droite", | ||||
| "Right to left": "Droite \u00e0 gauche", | ||||
| "Emoticons...": "\u00c9motic\u00f4nes...", | ||||
| "Metadata and Document Properties": "M\u00e9tadonn\u00e9es et propri\u00e9t\u00e9s du document", | ||||
| "Title": "Titre", | ||||
| "Keywords": "Mots-cl\u00e9s", | ||||
| "Description": "Description", | ||||
| "Robots": "Robots", | ||||
| "Author": "Auteur", | ||||
| "Encoding": "Encodage", | ||||
| "Fullscreen": "Plein \u00e9cran", | ||||
| "Action": "Action", | ||||
| "Shortcut": "Raccourci", | ||||
| "Help": "Aide", | ||||
| "Address": "Adresse", | ||||
| "Focus to menubar": "Cibler la barre de menu", | ||||
| "Focus to toolbar": "Cibler la barre d'outils", | ||||
| "Focus to element path": "Cibler le chemin vers l'\u00e9l\u00e9ment", | ||||
| "Focus to contextual toolbar": "Cibler la barre d'outils contextuelle", | ||||
| "Insert link (if link plugin activated)": "Ins\u00e9rer un lien (si le module link est activ\u00e9)", | ||||
| "Save (if save plugin activated)": "Enregistrer (si le module save est activ\u00e9)", | ||||
| "Find (if searchreplace plugin activated)": "Rechercher (si le module searchreplace est activ\u00e9)", | ||||
| "Plugins installed ({0}):": "Modules install\u00e9s ({0}) : ", | ||||
| "Premium plugins:": "Modules premium :", | ||||
| "Learn more...": "En savoir plus...", | ||||
| "You are using {0}": "Vous utilisez {0}", | ||||
| "Plugins": "Plugins", | ||||
| "Handy Shortcuts": "Raccourcis utiles", | ||||
| "Horizontal line": "Ligne horizontale", | ||||
| "Insert\/edit image": "Ins\u00e9rer\/modifier une image", | ||||
| "Image description": "Description de l'image", | ||||
| "Source": "Source", | ||||
| "Dimensions": "Dimensions", | ||||
| "Constrain proportions": "Conserver les proportions", | ||||
| "General": "G\u00e9n\u00e9ral", | ||||
| "Advanced": "Avanc\u00e9", | ||||
| "Style": "Style", | ||||
| "Vertical space": "Espacement vertical", | ||||
| "Horizontal space": "Espacement horizontal", | ||||
| "Border": "Bordure", | ||||
| "Insert image": "Ins\u00e9rer une image", | ||||
| "Image...": "Image...", | ||||
| "Image list": "Liste d'images", | ||||
| "Rotate counterclockwise": "Rotation anti-horaire", | ||||
| "Rotate clockwise": "Rotation horaire", | ||||
| "Flip vertically": "Retournement vertical", | ||||
| "Flip horizontally": "Retournement horizontal", | ||||
| "Edit image": "Modifier l'image", | ||||
| "Image options": "Options de l'image", | ||||
| "Zoom in": "Zoomer", | ||||
| "Zoom out": "D\u00e9zoomer", | ||||
| "Crop": "Rogner", | ||||
| "Resize": "Redimensionner", | ||||
| "Orientation": "Orientation", | ||||
| "Brightness": "Luminosit\u00e9", | ||||
| "Sharpen": "Affiner", | ||||
| "Contrast": "Contraste", | ||||
| "Color levels": "Niveaux de couleur", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Inverser", | ||||
| "Apply": "Appliquer", | ||||
| "Back": "Retour", | ||||
| "Insert date\/time": "Ins\u00e9rer date\/heure", | ||||
| "Date\/time": "Date\/heure", | ||||
| "Insert\/Edit Link": "Ins\u00e9rer\/Modifier lien", | ||||
| "Insert\/edit link": "Ins\u00e9rer\/modifier un lien", | ||||
| "Text to display": "Texte \u00e0 afficher", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Ouvrir le lien dans...", | ||||
| "Current window": "Fen\u00eatre active", | ||||
| "None": "n\/a", | ||||
| "New window": "Nouvelle fen\u00eatre", | ||||
| "Remove link": "Enlever le lien", | ||||
| "Anchors": "Ancres", | ||||
| "Link...": "Lien...", | ||||
| "Paste or type a link": "Coller ou taper un lien", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre une adresse e-mail. Voulez-vous ajouter le pr\u00e9fixe mailto: n\u00e9cessaire?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe http:\/\/ n\u00e9cessaire?", | ||||
| "Link list": "Liste de liens", | ||||
| "Insert video": "Ins\u00e9rer une vid\u00e9o", | ||||
| "Insert\/edit video": "Ins\u00e9rer\/modifier une vid\u00e9o", | ||||
| "Insert\/edit media": "Ins\u00e9rer\/modifier un m\u00e9dia", | ||||
| "Alternative source": "Source alternative", | ||||
| "Alternative source URL": "URL de la source alternative", | ||||
| "Media poster (Image URL)": "Affiche de m\u00e9dia (URL de l'image)", | ||||
| "Paste your embed code below:": "Collez votre code d'int\u00e9gration ci-dessous :", | ||||
| "Embed": "Int\u00e9grer", | ||||
| "Media...": "M\u00e9dia...", | ||||
| "Nonbreaking space": "Espace ins\u00e9cable", | ||||
| "Page break": "Saut de page", | ||||
| "Paste as text": "Coller comme texte", | ||||
| "Preview": "Pr\u00e9visualiser", | ||||
| "Print...": "Imprimer...", | ||||
| "Save": "Enregistrer", | ||||
| "Find": "Chercher", | ||||
| "Replace with": "Remplacer par", | ||||
| "Replace": "Remplacer", | ||||
| "Replace all": "Tout remplacer", | ||||
| "Previous": "Pr\u00e9c\u00e9dente", | ||||
| "Next": "Suiv", | ||||
| "Find and replace...": "Trouver et remplacer...", | ||||
| "Could not find the specified string.": "Impossible de trouver la cha\u00eene sp\u00e9cifi\u00e9e.", | ||||
| "Match case": "Respecter la casse", | ||||
| "Find whole words only": "Mot entier", | ||||
| "Spell check": "V\u00e9rification de l'orthographe", | ||||
| "Ignore": "Ignorer", | ||||
| "Ignore all": "Tout ignorer", | ||||
| "Finish": "Finie", | ||||
| "Add to Dictionary": "Ajouter au dictionnaire", | ||||
| "Insert table": "Ins\u00e9rer un tableau", | ||||
| "Table properties": "Propri\u00e9t\u00e9s du tableau", | ||||
| "Delete table": "Supprimer le tableau", | ||||
| "Cell": "Cellule", | ||||
| "Row": "Ligne", | ||||
| "Column": "Colonne", | ||||
| "Cell properties": "Propri\u00e9t\u00e9s de la cellule", | ||||
| "Merge cells": "Fusionner les cellules", | ||||
| "Split cell": "Diviser la cellule", | ||||
| "Insert row before": "Ins\u00e9rer une ligne avant", | ||||
| "Insert row after": "Ins\u00e9rer une ligne apr\u00e8s", | ||||
| "Delete row": "Effacer la ligne", | ||||
| "Row properties": "Propri\u00e9t\u00e9s de la ligne", | ||||
| "Cut row": "Couper la ligne", | ||||
| "Copy row": "Copier la ligne", | ||||
| "Paste row before": "Coller la ligne avant", | ||||
| "Paste row after": "Coller la ligne apr\u00e8s", | ||||
| "Insert column before": "Ins\u00e9rer une colonne avant", | ||||
| "Insert column after": "Ins\u00e9rer une colonne apr\u00e8s", | ||||
| "Delete column": "Effacer la colonne", | ||||
| "Cols": "Colonnes", | ||||
| "Rows": "Lignes", | ||||
| "Width": "Largeur", | ||||
| "Height": "Hauteur", | ||||
| "Cell spacing": "Espacement inter-cellulles", | ||||
| "Cell padding": "Espacement interne cellule", | ||||
| "Show caption": "Afficher le sous-titrage", | ||||
| "Left": "Gauche", | ||||
| "Center": "Centr\u00e9", | ||||
| "Right": "Droite", | ||||
| "Cell type": "Type de cellule", | ||||
| "Scope": "Etendue", | ||||
| "Alignment": "Alignement", | ||||
| "H Align": "Alignement H", | ||||
| "V Align": "Alignement V", | ||||
| "Top": "Haut", | ||||
| "Middle": "Milieu", | ||||
| "Bottom": "Bas", | ||||
| "Header cell": "Cellule d'en-t\u00eate", | ||||
| "Row group": "Groupe de lignes", | ||||
| "Column group": "Groupe de colonnes", | ||||
| "Row type": "Type de ligne", | ||||
| "Header": "En-t\u00eate", | ||||
| "Body": "Corps", | ||||
| "Footer": "Pied", | ||||
| "Border color": "Couleur de la bordure", | ||||
| "Insert template...": "Ins\u00e9rer un mod\u00e8le...", | ||||
| "Templates": "Th\u00e8mes", | ||||
| "Template": "Mod\u00e8le", | ||||
| "Text color": "Couleur du texte", | ||||
| "Background color": "Couleur d'arri\u00e8re-plan", | ||||
| "Custom...": "Personnalis\u00e9...", | ||||
| "Custom color": "Couleur personnalis\u00e9e", | ||||
| "No color": "Aucune couleur", | ||||
| "Remove color": "Supprimer la couleur", | ||||
| "Table of Contents": "Table des mati\u00e8res", | ||||
| "Show blocks": "Afficher les blocs", | ||||
| "Show invisible characters": "Afficher les caract\u00e8res invisibles", | ||||
| "Word count": "Nombre de mots", | ||||
| "Count": "Total", | ||||
| "Document": "Document", | ||||
| "Selection": "S\u00e9lection", | ||||
| "Words": "Mots", | ||||
| "Words: {0}": "Mots : {0}", | ||||
| "{0} words": "{0} mots", | ||||
| "File": "Fichier", | ||||
| "Edit": "Editer", | ||||
| "Insert": "Ins\u00e9rer", | ||||
| "View": "Voir", | ||||
| "Format": "Format", | ||||
| "Table": "Tableau", | ||||
| "Tools": "Outils", | ||||
| "Powered by {0}": "Propuls\u00e9 par {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zone Texte Riche. Appuyer sur ALT-F9 pour le menu. Appuyer sur ALT-F10 pour la barre d'outils. Appuyer sur ALT-0 pour de l'aide.", | ||||
| "Image title": "Titre d'image", | ||||
| "Border width": "\u00c9paisseur de la bordure", | ||||
| "Border style": "Style de la bordure", | ||||
| "Error": "Erreur", | ||||
| "Warn": "Avertir", | ||||
| "Valid": "Valide", | ||||
| "To open the popup, press Shift+Enter": "Pour ouvrir la popup, appuyez sur Maj+Entr\u00e9e", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Zone de texte riche. Appuyez sur ALT-0 pour l'aide.", | ||||
| "System Font": "Police syst\u00e8me", | ||||
| "Failed to upload image: {0}": "\u00c9chec d'envoi de l'image\u00a0: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u00c9chec de chargement du plug-in\u00a0: {0} \u00e0 partir de l\u2019URL {1}", | ||||
| "Failed to load plugin url: {0}": "\u00c9chec de chargement de l'URL du plug-in\u00a0: {0}", | ||||
| "Failed to initialize plugin: {0}": "\u00c9chec d'initialisation du plug-in\u00a0: {0}", | ||||
| "example": "exemple", | ||||
| "Search": "Rechercher", | ||||
| "All": "Tout", | ||||
| "Currency": "Devise", | ||||
| "Text": "Texte", | ||||
| "Quotations": "Citations", | ||||
| "Mathematical": "Op\u00e9rateurs math\u00e9matiques", | ||||
| "Extended Latin": "Latin \u00e9tendu", | ||||
| "Symbols": "Symboles", | ||||
| "Arrows": "Fl\u00e8ches", | ||||
| "User Defined": "D\u00e9fini par l'utilisateur", | ||||
| "dollar sign": "Symbole dollar", | ||||
| "currency sign": "Symbole devise", | ||||
| "euro-currency sign": "Symbole euro", | ||||
| "colon sign": "Symbole col\u00f3n", | ||||
| "cruzeiro sign": "Symbole cruzeiro", | ||||
| "french franc sign": "Symbole franc fran\u00e7ais", | ||||
| "lira sign": "Symbole lire", | ||||
| "mill sign": "Symbole milli\u00e8me", | ||||
| "naira sign": "Symbole naira", | ||||
| "peseta sign": "Symbole peseta", | ||||
| "rupee sign": "Symbole roupie", | ||||
| "won sign": "Symbole won", | ||||
| "new sheqel sign": "Symbole nouveau ch\u00e9kel", | ||||
| "dong sign": "Symbole dong", | ||||
| "kip sign": "Symbole kip", | ||||
| "tugrik sign": "Symbole tougrik", | ||||
| "drachma sign": "Symbole drachme", | ||||
| "german penny symbol": "Symbole pfennig", | ||||
| "peso sign": "Symbole peso", | ||||
| "guarani sign": "Symbole guarani", | ||||
| "austral sign": "Symbole austral", | ||||
| "hryvnia sign": "Symbole hryvnia", | ||||
| "cedi sign": "Symbole cedi", | ||||
| "livre tournois sign": "Symbole livre tournois", | ||||
| "spesmilo sign": "Symbole spesmilo", | ||||
| "tenge sign": "Symbole tenge", | ||||
| "indian rupee sign": "Symbole roupie indienne", | ||||
| "turkish lira sign": "Symbole lire turque", | ||||
| "nordic mark sign": "Symbole du mark nordique", | ||||
| "manat sign": "Symbole manat", | ||||
| "ruble sign": "Symbole rouble", | ||||
| "yen character": "Sinogramme Yen", | ||||
| "yuan character": "Sinogramme Yuan", | ||||
| "yuan character, in hong kong and taiwan": "Sinogramme Yuan, Hong Kong et Taiwan", | ||||
| "yen\/yuan character variant one": "Sinogramme Yen\/Yuan, premi\u00e8re variante", | ||||
| "Loading emoticons...": "Chargement des \u00e9motic\u00f4nes en cours...", | ||||
| "Could not load emoticons": "\u00c9chec de chargement des \u00e9motic\u00f4nes", | ||||
| "People": "Personnes", | ||||
| "Animals and Nature": "Animaux & nature", | ||||
| "Food and Drink": "Nourriture & boissons", | ||||
| "Activity": "Activit\u00e9", | ||||
| "Travel and Places": "Voyages & lieux", | ||||
| "Objects": "Objets", | ||||
| "Flags": "Drapeaux", | ||||
| "Characters": "Caract\u00e8res", | ||||
| "Characters (no spaces)": "Caract\u00e8res (espaces non compris)", | ||||
| "{0} characters": "{0}\u00a0caract\u00e8res", | ||||
| "Error: Form submit field collision.": "Erreur\u00a0: conflit de champs lors de la soumission du formulaire.", | ||||
| "Error: No form element found.": "Erreur : aucun \u00e9l\u00e9ment de formulaire trouv\u00e9.", | ||||
| "Update": "Mettre \u00e0 jour", | ||||
| "Color swatch": "\u00c9chantillon de couleurs", | ||||
| "Turquoise": "Turquoise", | ||||
| "Green": "Vert", | ||||
| "Blue": "Bleu", | ||||
| "Purple": "Violet", | ||||
| "Navy Blue": "Bleu marine", | ||||
| "Dark Turquoise": "Turquoise fonc\u00e9", | ||||
| "Dark Green": "Vert fonc\u00e9", | ||||
| "Medium Blue": "Bleu moyen", | ||||
| "Medium Purple": "Violet moyen", | ||||
| "Midnight Blue": "Bleu de minuit", | ||||
| "Yellow": "Jaune", | ||||
| "Orange": "Orange", | ||||
| "Red": "Rouge", | ||||
| "Light Gray": "Gris clair", | ||||
| "Gray": "Gris", | ||||
| "Dark Yellow": "Jaune fonc\u00e9", | ||||
| "Dark Orange": "Orange fonc\u00e9", | ||||
| "Dark Red": "Rouge fonc\u00e9", | ||||
| "Medium Gray": "Gris moyen", | ||||
| "Dark Gray": "Gris fonc\u00e9", | ||||
| "Light Green": "Vert clair", | ||||
| "Light Yellow": "Jaune clair", | ||||
| "Light Red": "Rouge clair", | ||||
| "Light Purple": "Violet clair", | ||||
| "Light Blue": "Bleu clair", | ||||
| "Dark Purple": "Violet fonc\u00e9", | ||||
| "Dark Blue": "Bleu fonc\u00e9", | ||||
| "Black": "Noir", | ||||
| "White": "Blanc", | ||||
| "Switch to or from fullscreen mode": "Passer en ou quitter le mode plein \u00e9cran", | ||||
| "Open help dialog": "Ouvrir la bo\u00eete de dialogue d'aide", | ||||
| "history": "historique", | ||||
| "styles": "styles", | ||||
| "formatting": "mise en forme", | ||||
| "alignment": "alignement", | ||||
| "indentation": "retrait", | ||||
| "permanent pen": "feutre ind\u00e9l\u00e9bile", | ||||
| "comments": "commentaires", | ||||
| "Format Painter": "Reproduire la mise en forme", | ||||
| "Insert\/edit iframe": "Ins\u00e9rer\/modifier iframe", | ||||
| "Capitalization": "Mise en majuscules", | ||||
| "lowercase": "minuscule", | ||||
| "UPPERCASE": "MAJUSCULE", | ||||
| "Title Case": "Casse du titre", | ||||
| "Permanent Pen Properties": "Propri\u00e9t\u00e9s du feutre ind\u00e9l\u00e9bile", | ||||
| "Permanent pen properties...": "Propri\u00e9t\u00e9s du feutre ind\u00e9l\u00e9bile...", | ||||
| "Font": "Police", | ||||
| "Size": "Taille", | ||||
| "More...": "Plus...", | ||||
| "Spellcheck Language": "Langue du correcteur orthographique", | ||||
| "Select...": "S\u00e9lectionner...", | ||||
| "Preferences": "Pr\u00e9f\u00e9rences", | ||||
| "Yes": "Oui", | ||||
| "No": "Non", | ||||
| "Keyboard Navigation": "Navigation au clavier", | ||||
| "Version": "Version", | ||||
| "Anchor": "Ancre", | ||||
| "Special character": "Caract\u00e8res sp\u00e9ciaux", | ||||
| "Code sample": "Extrait de code", | ||||
| "Color": "Couleur", | ||||
| "Emoticons": "Emotic\u00f4nes", | ||||
| "Document properties": "Propri\u00e9t\u00e9 du document", | ||||
| "Image": "Image", | ||||
| "Insert link": "Ins\u00e9rer un lien", | ||||
| "Target": "Cible", | ||||
| "Link": "Lien", | ||||
| "Poster": "Publier", | ||||
| "Media": "M\u00e9dia", | ||||
| "Print": "Imprimer", | ||||
| "Prev": "Pr\u00e9c ", | ||||
| "Find and replace": "Trouver et remplacer", | ||||
| "Whole words": "Mots entiers", | ||||
| "Spellcheck": "V\u00e9rification orthographique", | ||||
| "Caption": "Titre", | ||||
| "Insert template": "Ajouter un th\u00e8me" | ||||
| }); | ||||
							
								
								
									
										388
									
								
								Modules/TinyMCE/langs/gl.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										388
									
								
								Modules/TinyMCE/langs/gl.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,388 @@ | ||||
| tinymce.addI18n('gl',{ | ||||
| "Redo": "Refacer", | ||||
| "Undo": "Desfacer", | ||||
| "Cut": "Cortar", | ||||
| "Copy": "Copiar", | ||||
| "Paste": "Pegar", | ||||
| "Select all": "Seleccionar todo", | ||||
| "New document": "Novo documento", | ||||
| "Ok": "Aceptar", | ||||
| "Cancel": "Cancelar", | ||||
| "Visual aids": "Axudas visuais", | ||||
| "Bold": "Negra", | ||||
| "Italic": "Cursiva", | ||||
| "Underline": "Subli\u00f1ado", | ||||
| "Strikethrough": "Riscado", | ||||
| "Superscript": "Super\u00edndice", | ||||
| "Subscript": "Sub\u00edndice", | ||||
| "Clear formatting": "Limpar o formato", | ||||
| "Align left": "Ali\u00f1ar \u00e1 esquerda", | ||||
| "Align center": "Ali\u00f1ar ao centro", | ||||
| "Align right": "Ali\u00f1ar \u00e1 dereita", | ||||
| "Justify": "Xustificar", | ||||
| "Bullet list": "Lista de vi\u00f1etas", | ||||
| "Numbered list": "Lista numerada", | ||||
| "Decrease indent": "Reducir a sangr\u00eda", | ||||
| "Increase indent": "Aumentar a sangr\u00eda", | ||||
| "Close": "Pechar", | ||||
| "Formats": "Formatos", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "O seu navegador non admite o acceso directo ao portapapeis. Empregue os atallos de teclado Ctrl+X\/C\/V no seu canto.", | ||||
| "Headers": "Cabeceiras", | ||||
| "Header 1": "Cabeceira 1", | ||||
| "Header 2": "Cabeceira 2", | ||||
| "Header 3": "Cabeceira 3", | ||||
| "Header 4": "Cabeceira 4", | ||||
| "Header 5": "Cabeceira 5", | ||||
| "Header 6": "Cabeceira 6", | ||||
| "Headings": "T\u00edtulo", | ||||
| "Heading 1": "T\u00edtulo 1", | ||||
| "Heading 2": "T\u00edtulo 2", | ||||
| "Heading 3": "T\u00edtulo 3", | ||||
| "Heading 4": "T\u00edtulo 4", | ||||
| "Heading 5": "T\u00edtulo 5", | ||||
| "Heading 6": "T\u00edtulo 6", | ||||
| "Preformatted": "Preformatado", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "C\u00f3digo", | ||||
| "Paragraph": "Par\u00e1grafo", | ||||
| "Blockquote": "Bloque entre comi\u00f1as", | ||||
| "Inline": "En li\u00f1a", | ||||
| "Blocks": "Bloques", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Neste momento o pegado est\u00e1 definido en modo de texto simple. Os contidos p\u00e9garanse como texto sen formato ata que se active esta opci\u00f3n.", | ||||
| "Fonts": "Tipos de letra", | ||||
| "Font Sizes": "Tama\u00f1o da letra", | ||||
| "Class": "Clase", | ||||
| "Browse for an image": "Buscar unha imaxe", | ||||
| "OR": "OU", | ||||
| "Drop an image here": "Soltar unha imaxe", | ||||
| "Upload": "Cargar", | ||||
| "Block": "Bloque", | ||||
| "Align": "Ali\u00f1amento", | ||||
| "Default": "Predeterminada", | ||||
| "Circle": "Circulo", | ||||
| "Disc": "Disco", | ||||
| "Square": "Cadrado", | ||||
| "Lower Alpha": "Alfa min\u00fascula", | ||||
| "Lower Greek": "Grega min\u00fascula", | ||||
| "Lower Roman": "Romana min\u00fascula", | ||||
| "Upper Alpha": "Alfa mai\u00fascula", | ||||
| "Upper Roman": "Romana mai\u00fascula", | ||||
| "Anchor...": "Ancoraxe...", | ||||
| "Name": "Nome", | ||||
| "Id": "ID", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "O ID debe comezar cunha letra, seguida s\u00f3 por letras, n\u00fameros, gui\u00f3ns, puntos, dos puntos ou gui\u00f3ns baixos.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Ten cambios sen gardar. Confirma que quere sa\u00edr?", | ||||
| "Restore last draft": "Restaurar o \u00faltimo borrador", | ||||
| "Special characters...": "Caracteres especiais...", | ||||
| "Source code": "C\u00f3digo fonte", | ||||
| "Insert\/Edit code sample": "Inserir\/editar mostra de c\u00f3digo", | ||||
| "Language": "Idioma", | ||||
| "Code sample...": "Mostra de c\u00f3digo...", | ||||
| "Color Picker": "Selector de cor", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "De esquerda a dereita", | ||||
| "Right to left": "De dereita a esquerda", | ||||
| "Emoticons...": "Emoticonas...", | ||||
| "Metadata and Document Properties": "Metadatos e propiedades do documento", | ||||
| "Title": "T\u00edtulo", | ||||
| "Keywords": "Palabras clave", | ||||
| "Description": "Descrici\u00f3n", | ||||
| "Robots": "Robots", | ||||
| "Author": "Autor", | ||||
| "Encoding": "Codificaci\u00f3n", | ||||
| "Fullscreen": "Pantalla completa", | ||||
| "Action": "Action", | ||||
| "Shortcut": "Shortcut", | ||||
| "Help": "Help", | ||||
| "Address": "Address", | ||||
| "Focus to menubar": "Focus to menubar", | ||||
| "Focus to toolbar": "Focus to toolbar", | ||||
| "Focus to element path": "Focus to element path", | ||||
| "Focus to contextual toolbar": "Focus to contextual toolbar", | ||||
| "Insert link (if link plugin activated)": "Insert link (if link plugin activated)", | ||||
| "Save (if save plugin activated)": "Save (if save plugin activated)", | ||||
| "Find (if searchreplace plugin activated)": "Find (if searchreplace plugin activated)", | ||||
| "Plugins installed ({0}):": "Plugins installed ({0}):", | ||||
| "Premium plugins:": "Premium plugins:", | ||||
| "Learn more...": "Learn more...", | ||||
| "You are using {0}": "You are using {0}", | ||||
| "Plugins": "Engadidos", | ||||
| "Handy Shortcuts": "Atallos \u00fatiles", | ||||
| "Horizontal line": "Li\u00f1a horizontal", | ||||
| "Insert\/edit image": "Inserir\/editar imaxe", | ||||
| "Image description": "Descrici\u00f3n da imaxe", | ||||
| "Source": "Orixe", | ||||
| "Dimensions": "Dimensi\u00f3ns", | ||||
| "Constrain proportions": "Restrinxir as proporci\u00f3ns", | ||||
| "General": "Xeral", | ||||
| "Advanced": "Avanzado", | ||||
| "Style": "Estilo", | ||||
| "Vertical space": "Espazo vertical", | ||||
| "Horizontal space": "Espazo horizontal", | ||||
| "Border": "Bordo", | ||||
| "Insert image": "Inserir imaxe", | ||||
| "Image...": "Imaxe...", | ||||
| "Image list": "Lista de imaxes", | ||||
| "Rotate counterclockwise": "Rotate counterclockwise", | ||||
| "Rotate clockwise": "Rotate clockwise", | ||||
| "Flip vertically": "Flip vertically", | ||||
| "Flip horizontally": "Flip horizontally", | ||||
| "Edit image": "Edit image", | ||||
| "Image options": "Image options", | ||||
| "Zoom in": "Zoom in", | ||||
| "Zoom out": "Zoom out", | ||||
| "Crop": "Crop", | ||||
| "Resize": "Resize", | ||||
| "Orientation": "Orientation", | ||||
| "Brightness": "Brightness", | ||||
| "Sharpen": "Sharpen", | ||||
| "Contrast": "Contrast", | ||||
| "Color levels": "Color levels", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Invert", | ||||
| "Apply": "Apply", | ||||
| "Back": "Back", | ||||
| "Insert date\/time": "Inserir data\/hora", | ||||
| "Date\/time": "Data\/hora", | ||||
| "Insert\/Edit Link": "Inserir\/editar ligaz\u00f3n", | ||||
| "Insert\/edit link": "Inserir\/editar ligaz\u00f3n", | ||||
| "Text to display": "Texto que amosar", | ||||
| "Url": "URL", | ||||
| "Open link in...": "Abrir a ligaz\u00f3n en...", | ||||
| "Current window": "Xanela actual", | ||||
| "None": "Ning\u00fan", | ||||
| "New window": "Nova xanela", | ||||
| "Remove link": "Retirar a ligaz\u00f3n", | ||||
| "Anchors": "Ancoraxes", | ||||
| "Link...": "Ligaz\u00f3n...", | ||||
| "Paste or type a link": "Pegue ou escriba unha ligaz\u00f3n", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "O URL que introduciu semella seren un enderezo de correo. Quere engadirlle o prefixo mailto: requirido?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "O URL que introduciu semella seren unha ligaz\u00f3n externa. Quere engadirlle o prefixo http:\/\/ requirido?", | ||||
| "Link list": "Lista de ligaz\u00f3ns", | ||||
| "Insert video": "Inserir v\u00eddeo", | ||||
| "Insert\/edit video": "Inserir\/editar v\u00eddeo", | ||||
| "Insert\/edit media": "Inserir\/editar medios", | ||||
| "Alternative source": "Orixe alternativa", | ||||
| "Alternative source URL": "URL da orixe alternativa", | ||||
| "Media poster (Image URL)": "Cartel multimedia (URL da imaxe)", | ||||
| "Paste your embed code below:": "Pegue embaixo o c\u00f3digo integrado:", | ||||
| "Embed": "Integrado", | ||||
| "Media...": "Multimedia...", | ||||
| "Nonbreaking space": "Espazo irromp\u00edbel", | ||||
| "Page break": "Quebra de p\u00e1xina", | ||||
| "Paste as text": "Pegar como texto", | ||||
| "Preview": "Vista previa", | ||||
| "Print...": "Imprimir...", | ||||
| "Save": "Gardar", | ||||
| "Find": "Buscar", | ||||
| "Replace with": "Substitu\u00edr con", | ||||
| "Replace": "Substitu\u00edr", | ||||
| "Replace all": "Substitu\u00edr todo", | ||||
| "Previous": "Anterior", | ||||
| "Next": "Seguinte", | ||||
| "Find and replace...": "Atopar e substitu\u00edr...", | ||||
| "Could not find the specified string.": "Non foi pos\u00edbel atopar a cadea de texto especificada.", | ||||
| "Match case": "Distinguir mai\u00fasculas", | ||||
| "Find whole words only": "Atopar unicamente as palabras enteiras", | ||||
| "Spell check": "Corrector ortogr\u00e1fico", | ||||
| "Ignore": "Ignorar", | ||||
| "Ignore all": "Ignorar todo", | ||||
| "Finish": "Rematar", | ||||
| "Add to Dictionary": "Engadir ao dicionario", | ||||
| "Insert table": "Inserir t\u00e1boa", | ||||
| "Table properties": "Propiedades da t\u00e1boa", | ||||
| "Delete table": "Eliminar t\u00e1boa", | ||||
| "Cell": "Cela", | ||||
| "Row": "Fila", | ||||
| "Column": "Columna", | ||||
| "Cell properties": "Propiedades da cela", | ||||
| "Merge cells": "Combinar celas", | ||||
| "Split cell": "Dividir celas", | ||||
| "Insert row before": "Inserir unha fila enriba", | ||||
| "Insert row after": "Inserir unha fila embaixo", | ||||
| "Delete row": "Eliminar fila", | ||||
| "Row properties": "Propiedades das filas", | ||||
| "Cut row": "Cortar fila", | ||||
| "Copy row": "Copiar fila", | ||||
| "Paste row before": "Pegar fila embaixo", | ||||
| "Paste row after": "Pegar fila enriba", | ||||
| "Insert column before": "Inserir columna \u00e1 esquerda", | ||||
| "Insert column after": "Inserir columna \u00e1 dereita", | ||||
| "Delete column": "Eliminar columna", | ||||
| "Cols": "Cols.", | ||||
| "Rows": "Filas", | ||||
| "Width": "Largo", | ||||
| "Height": "Alto", | ||||
| "Cell spacing": "Marxe entre celas", | ||||
| "Cell padding": "Marxe interior da cela", | ||||
| "Show caption": "Amosar subt\u00edtulo", | ||||
| "Left": "Esquerda", | ||||
| "Center": "Centro", | ||||
| "Right": "Dereita", | ||||
| "Cell type": "Tipo de cela", | ||||
| "Scope": "\u00c1mbito", | ||||
| "Alignment": "Ali\u00f1amento", | ||||
| "H Align": "Ali\u00f1amento H", | ||||
| "V Align": "Ali\u00f1amento V", | ||||
| "Top": "Arriba", | ||||
| "Middle": "Medio", | ||||
| "Bottom": "Abaixo", | ||||
| "Header cell": "Cela de cabeceira", | ||||
| "Row group": "Grupo de filas", | ||||
| "Column group": "Grupo de columnas", | ||||
| "Row type": "Tipo de fila", | ||||
| "Header": "Cabeceira", | ||||
| "Body": "Corpo", | ||||
| "Footer": "Rodap\u00e9", | ||||
| "Border color": "Cor do bordo", | ||||
| "Insert template...": "Inserir modelo...", | ||||
| "Templates": "Modelos", | ||||
| "Template": "Modelo", | ||||
| "Text color": "Cor do texto", | ||||
| "Background color": "Cor do fondo", | ||||
| "Custom...": "Personalizado...", | ||||
| "Custom color": "Cor personalizado", | ||||
| "No color": "Sen cor", | ||||
| "Remove color": "Retirar a cor", | ||||
| "Table of Contents": "\u00cdndice de contidos", | ||||
| "Show blocks": "Amosar os bloques", | ||||
| "Show invisible characters": "Amosar caracteres invis\u00edbeis", | ||||
| "Word count": "Reconto de palabras", | ||||
| "Words: {0}": "Palabras: {0}", | ||||
| "{0} words": "{0} palabras", | ||||
| "File": "Ficheiro", | ||||
| "Edit": "Editar", | ||||
| "Insert": "Inserir", | ||||
| "View": "Ver", | ||||
| "Format": "Formato", | ||||
| "Table": "T\u00e1boa", | ||||
| "Tools": "Ferramentas", | ||||
| "Powered by {0}": "Coa tecnolox\u00eda de {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto mellorado. Prema ALT-F9 para o men\u00fa. Prema ALT-F10 para a barra de ferramentas. Prema ALT-0 para a axuda", | ||||
| "Image title": "T\u00edtulo da imaxe", | ||||
| "Border width": "Largo do bordo", | ||||
| "Border style": "Estilo do bordo", | ||||
| "Error": "Erro", | ||||
| "Warn": "Aviso", | ||||
| "Valid": "V\u00e1lido", | ||||
| "To open the popup, press Shift+Enter": "Para abrir a xanela emerxente, prema Mai\u00fas+Intro", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u00c1rea de texto mellorado. PremaALT-0 para obter axuda.", | ||||
| "System Font": "Tipo de letra do sistema", | ||||
| "Failed to upload image: {0}": "Produciuse un fallo ao cargar a imaxe: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Produciuse un fallo ao cargar a o engadido: {0} dende o URL {1}", | ||||
| "Failed to load plugin url: {0}": "Produciuse un fallo ao cargar a o URL do engadido: {0}", | ||||
| "Failed to initialize plugin: {0}": "Produciuse un fallo ao iniciar o engadido: {0}", | ||||
| "example": "exemplo", | ||||
| "Search": "Buscar", | ||||
| "All": "Todo", | ||||
| "Currency": "Moeda", | ||||
| "Text": "Texto", | ||||
| "Quotations": "Citas", | ||||
| "Mathematical": "Matem\u00e1tico", | ||||
| "Extended Latin": "Latino extendido", | ||||
| "Symbols": "S\u00edmbolos", | ||||
| "Arrows": "Frechas", | ||||
| "User Defined": "Definido polo usuario", | ||||
| "dollar sign": "S\u00edmbolo do dolar", | ||||
| "currency sign": "S\u00edmbolo de moeda", | ||||
| "euro-currency sign": "S\u00edmbolo do euro", | ||||
| "colon sign": "S\u00edmbolo do col\u00f3n", | ||||
| "cruzeiro sign": "S\u00edmbolo do cruzeiro", | ||||
| "french franc sign": "S\u00edmbolo do franco franc\u00e9s", | ||||
| "lira sign": "S\u00edmbolo da lira", | ||||
| "mill sign": "S\u00edmbolo do mill", | ||||
| "naira sign": "S\u00edmbolo da naira", | ||||
| "peseta sign": "S\u00edmbolo da peseta", | ||||
| "rupee sign": "S\u00edmbolo da rupia", | ||||
| "won sign": "S\u00edmbolo do won", | ||||
| "new sheqel sign": "S\u00edmbolo do novo s\u00e9quel", | ||||
| "dong sign": "S\u00edmbolo do dong", | ||||
| "kip sign": "S\u00edmbolo do kip", | ||||
| "tugrik sign": "S\u00edmbolo do tugrik", | ||||
| "drachma sign": "S\u00edmbolo do dracma", | ||||
| "german penny symbol": "S\u00edmbolo do penique alem\u00e1n", | ||||
| "peso sign": "S\u00edmbolo do peso", | ||||
| "guarani sign": "S\u00edmbolo do guaran\u00ed", | ||||
| "austral sign": "S\u00edmbolo do austral", | ||||
| "hryvnia sign": "S\u00edmbolo do grivna", | ||||
| "cedi sign": "S\u00edmbolo do cedi", | ||||
| "livre tournois sign": "S\u00edmbolo da libre tournois", | ||||
| "spesmilo sign": "S\u00edmbolo do spesmilo", | ||||
| "tenge sign": "S\u00edmbolo do tengue", | ||||
| "indian rupee sign": "S\u00edmbolo da rupia india", | ||||
| "turkish lira sign": "S\u00edmbolo da lira turca", | ||||
| "nordic mark sign": "S\u00edmbolo do marco n\u00f3rdico", | ||||
| "manat sign": "S\u00edmbolo do manat", | ||||
| "ruble sign": "S\u00edmbolo do rublo", | ||||
| "yen character": "Car\u00e1cter do ien", | ||||
| "yuan character": "Car\u00e1cter do yuan", | ||||
| "yuan character, in hong kong and taiwan": "Car\u00e1cter do yuan, en Hong Kong e Taiwan", | ||||
| "yen\/yuan character variant one": "Variante  1 do car\u00e1cter do ien\/yuan", | ||||
| "Loading emoticons...": "Cargando emoticonas...", | ||||
| "Could not load emoticons": "Non foi pos\u00edbel cargar as emoticonas", | ||||
| "People": "Xente", | ||||
| "Animals and Nature": "Animais e natureza", | ||||
| "Food and Drink": "Comida e bebida", | ||||
| "Activity": "Actividade", | ||||
| "Travel and Places": "Viaxes e lugares", | ||||
| "Objects": "Obxectos", | ||||
| "Flags": "Bandeiras", | ||||
| "Characters": "Caracteres", | ||||
| "Characters (no spaces)": "Caracteres (sen espazos)", | ||||
| "Error: Form submit field collision.": "Erro: conflito de campo ao enviar o formulario ", | ||||
| "Error: No form element found.": "Erro: non se atopou ning\u00fan elemento de formulario", | ||||
| "Update": "Actualizar", | ||||
| "Color swatch": "Mostra de cores", | ||||
| "Turquoise": "Turquesa", | ||||
| "Green": "Verde", | ||||
| "Blue": "Azul", | ||||
| "Purple": "P\u00farpura", | ||||
| "Navy Blue": "Azul mari\u00f1o", | ||||
| "Dark Turquoise": "Turquesa escuro", | ||||
| "Dark Green": "Verde escuro", | ||||
| "Medium Blue": "Azul medio", | ||||
| "Medium Purple": "P\u00farpura medio", | ||||
| "Midnight Blue": "Azul noite", | ||||
| "Yellow": "Amarelo", | ||||
| "Orange": "Laranxa", | ||||
| "Red": "Vermello", | ||||
| "Light Gray": "Gris claro", | ||||
| "Gray": "Gris", | ||||
| "Dark Yellow": "Amarelo escuro", | ||||
| "Dark Orange": "Laranxa escuro", | ||||
| "Dark Red": "Vermello escuro", | ||||
| "Medium Gray": "Gris medio", | ||||
| "Dark Gray": "Gris escuro", | ||||
| "Black": "Negro", | ||||
| "White": "Branco", | ||||
| "Switch to or from fullscreen mode": "Activar ou desactivar o modo de pantalla completa", | ||||
| "Open help dialog": "Abrir o di\u00e1logo de axuda", | ||||
| "history": "historial", | ||||
| "styles": "estilos", | ||||
| "formatting": "formatado", | ||||
| "alignment": "ali\u00f1amento", | ||||
| "indentation": "sangrado", | ||||
| "permanent pen": "rotulador permanente", | ||||
| "comments": "comentarios", | ||||
| "Anchor": "Ancoraxe", | ||||
| "Special character": "Car\u00e1cter especial", | ||||
| "Color": "Cor", | ||||
| "Emoticons": "Emoticonas", | ||||
| "Document properties": "Propiedades do documento", | ||||
| "Image": "Imaxe", | ||||
| "Insert link": "Inserir ligaz\u00f3n", | ||||
| "Target": "Destino", | ||||
| "Link": "Ligaz\u00f3n", | ||||
| "Poster": "Cartel", | ||||
| "Media": "Medios", | ||||
| "Print": "Imprimir", | ||||
| "Prev": "Anterior", | ||||
| "Find and replace": "Buscar e substitu\u00edr", | ||||
| "Whole words": "Palabras completas", | ||||
| "Spellcheck": "Corrector ortogr\u00e1fico", | ||||
| "Caption": "Subt\u00edtulo", | ||||
| "Insert template": "Inserir modelo" | ||||
| }); | ||||
							
								
								
									
										420
									
								
								Modules/TinyMCE/langs/he_IL.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										420
									
								
								Modules/TinyMCE/langs/he_IL.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,420 @@ | ||||
| tinymce.addI18n('he_IL',{ | ||||
| "Redo": "\u05d1\u05e6\u05e2 \u05e9\u05d5\u05d1", | ||||
| "Undo": "\u05d1\u05d8\u05dc", | ||||
| "Cut": "\u05d2\u05d6\u05d5\u05e8", | ||||
| "Copy": "\u05d4\u05e2\u05ea\u05e7", | ||||
| "Paste": "\u05d4\u05d3\u05d1\u05e7", | ||||
| "Select all": "\u05d1\u05d7\u05e8 \u05d4\u05db\u05dc", | ||||
| "New document": "\u05de\u05e1\u05de\u05da \u05d7\u05d3\u05e9", | ||||
| "Ok": "\u05d0\u05d9\u05e9\u05d5\u05e8", | ||||
| "Cancel": "\u05d1\u05d9\u05d8\u05d5\u05dc", | ||||
| "Visual aids": "\u05e2\u05d6\u05e8\u05d9\u05dd \u05d7\u05d6\u05d5\u05ea\u05d9\u05d9\u05dd", | ||||
| "Bold": "\u05de\u05d5\u05d3\u05d2\u05e9", | ||||
| "Italic": "\u05e0\u05d8\u05d5\u05d9", | ||||
| "Underline": "\u05e7\u05d5 \u05ea\u05d7\u05ea\u05d5\u05df", | ||||
| "Strikethrough": "\u05e7\u05d5 \u05d7\u05d5\u05e6\u05d4", | ||||
| "Superscript": "\u05db\u05ea\u05d1 \u05e2\u05d9\u05dc\u05d9", | ||||
| "Subscript": "\u05db\u05ea\u05d1 \u05ea\u05d7\u05ea\u05d9", | ||||
| "Clear formatting": "\u05e0\u05e7\u05d4 \u05e2\u05d9\u05e6\u05d5\u05d1", | ||||
| "Align left": "\u05d9\u05e9\u05e8 \u05dc\u05e9\u05de\u05d0\u05dc", | ||||
| "Align center": "\u05de\u05e8\u05db\u05d6", | ||||
| "Align right": "\u05d9\u05e9\u05e8 \u05dc\u05d9\u05de\u05d9\u05df", | ||||
| "Justify": "\u05d9\u05d9\u05e9\u05e8", | ||||
| "Bullet list": "\u05e8\u05e9\u05d9\u05de\u05ea \u05ea\u05d1\u05dc\u05d9\u05d8\u05d9\u05dd", | ||||
| "Numbered list": "\u05e8\u05e9\u05d9\u05de\u05d4 \u05de\u05de\u05d5\u05e1\u05e4\u05e8\u05ea", | ||||
| "Decrease indent": "\u05d4\u05e7\u05d8\u05df \u05d4\u05d6\u05d7\u05d4", | ||||
| "Increase indent": "\u05d4\u05d2\u05d3\u05dc \u05d4\u05d6\u05d7\u05d4", | ||||
| "Close": "\u05e1\u05d2\u05d5\u05e8", | ||||
| "Formats": "\u05e2\u05d9\u05e6\u05d5\u05d1\u05d9\u05dd", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u05d4\u05d3\u05e4\u05d3\u05e4\u05df \u05e9\u05dc\u05da \u05d0\u05d9\u05e0\u05d5 \u05de\u05d0\u05e4\u05e9\u05e8 \u05d2\u05d9\u05e9\u05d4 \u05d9\u05e9\u05d9\u05e8\u05d4 \u05dc\u05dc\u05d5\u05d7. \u05d0\u05e0\u05d0 \u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e7\u05d9\u05e6\u05d5\u05e8\u05d9 \u05d4\u05de\u05e7\u05dc\u05d3\u05ea Ctrl+X\/C\/V \u05d1\u05de\u05e7\u05d5\u05dd.", | ||||
| "Headers": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea", | ||||
| "Header 1": "\u05db\u05d5\u05ea\u05e8\u05ea 1", | ||||
| "Header 2": "\u05db\u05d5\u05ea\u05e8\u05ea 2", | ||||
| "Header 3": "\u05db\u05d5\u05ea\u05e8\u05ea 3", | ||||
| "Header 4": "\u05db\u05d5\u05ea\u05e8\u05ea 4", | ||||
| "Header 5": "\u05db\u05d5\u05ea\u05e8\u05ea 5", | ||||
| "Header 6": "\u05db\u05d5\u05ea\u05e8\u05ea 6", | ||||
| "Headings": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea", | ||||
| "Heading 1": "\u05db\u05d5\u05ea\u05e8\u05ea 1", | ||||
| "Heading 2": "\u05db\u05d5\u05ea\u05e8\u05ea 2", | ||||
| "Heading 3": "\u05db\u05d5\u05ea\u05e8\u05ea 3", | ||||
| "Heading 4": "\u05db\u05d5\u05ea\u05e8\u05ea 4", | ||||
| "Heading 5": "\u05db\u05d5\u05ea\u05e8\u05ea 5", | ||||
| "Heading 6": "\u05db\u05d5\u05ea\u05e8\u05ea 6", | ||||
| "Preformatted": "\u05de\u05e2\u05d5\u05e6\u05d1 \u05de\u05e8\u05d0\u05e9", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "\u05e7\u05d5\u05d3", | ||||
| "Paragraph": "\u05e4\u05e1\u05e7\u05d4", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "\u05d1\u05ea\u05d5\u05da \u05e9\u05d5\u05e8\u05d4", | ||||
| "Blocks": "\u05d1\u05dc\u05d5\u05e7\u05d9\u05dd", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u05d4\u05d3\u05d1\u05e7\u05d4 \u05d1\u05de\u05e6\u05d1 \u05d8\u05e7\u05e1\u05d8 \u05e8\u05d2\u05d9\u05dc. \u05ea\u05db\u05e0\u05d9\u05dd \u05d9\u05d5\u05d3\u05d1\u05e7\u05d5 \u05de\u05e2\u05ea\u05d4 \u05db\u05d8\u05e7\u05e1\u05d8 \u05e8\u05d2\u05d9\u05dc \u05e2\u05d3 \u05e9\u05ea\u05db\u05d1\u05d4 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5.", | ||||
| "Fonts": "\u05d2\u05d5\u05e4\u05e0\u05d9\u05dd", | ||||
| "Font Sizes": "\u05d2\u05d5\u05d3\u05dc \u05d2\u05d5\u05e4\u05e0\u05d9\u05dd", | ||||
| "Class": "\u05de\u05d7\u05dc\u05e7\u05d4", | ||||
| "Browse for an image": "\u05d7\u05e4\u05e9 \u05ea\u05de\u05d5\u05e0\u05d4", | ||||
| "OR": "OR", | ||||
| "Drop an image here": "\u05e9\u05d7\u05e8\u05e8 \u05ea\u05de\u05d5\u05e0\u05d4 \u05db\u05d0\u05df", | ||||
| "Upload": "\u05d4\u05e2\u05dc\u05d4", | ||||
| "Block": "\u05d1\u05dc\u05d5\u05e7", | ||||
| "Align": "\u05d9\u05e9\u05e8", | ||||
| "Default": "\u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc", | ||||
| "Circle": "\u05e2\u05d9\u05d2\u05d5\u05dc", | ||||
| "Disc": "\u05d7\u05d9\u05e9\u05d5\u05e7", | ||||
| "Square": "\u05e8\u05d9\u05d1\u05d5\u05e2", | ||||
| "Lower Alpha": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d0\u05e0\u05d2\u05dc\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea", | ||||
| "Lower Greek": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d9\u05d5\u05d5\u05e0\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea", | ||||
| "Lower Roman": "\u05e1\u05e4\u05e8\u05d5\u05ea \u05e8\u05d5\u05de\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea", | ||||
| "Upper Alpha": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d0\u05e0\u05d2\u05dc\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc\u05d5\u05ea", | ||||
| "Upper Roman": "\u05e1\u05e4\u05e8\u05d5\u05ea \u05e8\u05d5\u05de\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc\u05d5\u05ea", | ||||
| "Anchor...": "\u05e2\u05d5\u05d2\u05df...", | ||||
| "Name": "\u05e9\u05dd", | ||||
| "Id": "\u05de\u05d6\u05d4\u05d4", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u05d4\u05de\u05d6\u05d4\u05d4 \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05d1\u05d0\u05d5\u05ea \u05d5\u05dc\u05d0\u05d7\u05e8\u05d9\u05d4 \u05e8\u05e7 \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea, \u05de\u05e1\u05e4\u05e8\u05d9\u05dd, \u05de\u05e7\u05e4\u05d9\u05dd, \u05e0\u05e7\u05d5\u05d3\u05d5\u05ea, \u05e0\u05e7\u05d5\u05d3\u05ea\u05d9\u05d9\u05dd \u05d0\u05d5 \u05e7\u05d5\u05d5\u05d9\u05dd \u05ea\u05d7\u05ea\u05d9\u05d9\u05dd.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u05d4\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05dc\u05d0 \u05e0\u05e9\u05de\u05e8\u05d5. \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05e6\u05d0\u05ea \u05de\u05d4\u05d3\u05e3?", | ||||
| "Restore last draft": "\u05e9\u05d7\u05d6\u05e8 \u05d8\u05d9\u05d5\u05d8\u05d4 \u05d0\u05d7\u05e8\u05d5\u05e0\u05d4", | ||||
| "Special character...": "\u05ea\u05d5\u05d5\u05d9\u05dd \u05de\u05d9\u05d5\u05d7\u05d3\u05d9\u05dd...", | ||||
| "Source code": "\u05e7\u05d5\u05d3 \u05de\u05e7\u05d5\u05e8", | ||||
| "Insert\/Edit code sample": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05d3\u05d5\u05d2\u05de\u05ea \u05e7\u05d5\u05d3", | ||||
| "Language": "\u05e9\u05e4\u05d4", | ||||
| "Code sample...": "\u05d3\u05d5\u05d2\u05de\u05ea \u05e7\u05d5\u05d3...", | ||||
| "Color Picker": "\u05d1\u05d5\u05e8\u05e8 \u05e6\u05d1\u05e2\u05d9\u05dd", | ||||
| "R": "\u05d0'", | ||||
| "G": "\u05d9'", | ||||
| "B": "\u05db'", | ||||
| "Left to right": "\u05de\u05e9\u05de\u05d0\u05dc \u05dc\u05d9\u05de\u05d9\u05df", | ||||
| "Right to left": "\u05de\u05d9\u05de\u05d9\u05df \u05dc\u05e9\u05de\u05d0\u05dc", | ||||
| "Emoticons...": "\u05e1\u05de\u05dc\u05d9 \u05d4\u05d1\u05e2\u05d4...", | ||||
| "Metadata and Document Properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05de\u05d8\u05d4-\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05d5\u05de\u05e1\u05de\u05da", | ||||
| "Title": "\u05db\u05d5\u05ea\u05e8\u05ea", | ||||
| "Keywords": "\u05de\u05d9\u05dc\u05d5\u05ea \u05de\u05e4\u05ea\u05d7", | ||||
| "Description": "\u05ea\u05d9\u05d0\u05d5\u05e8", | ||||
| "Robots": "\u05e8\u05d5\u05d1\u05d5\u05d8\u05d9\u05dd", | ||||
| "Author": "\u05de\u05d7\u05d1\u05e8", | ||||
| "Encoding": "\u05e7\u05d9\u05d3\u05d5\u05d3", | ||||
| "Fullscreen": "\u05de\u05e1\u05da \u05de\u05dc\u05d0", | ||||
| "Action": "\u05e4\u05e2\u05d5\u05dc\u05d4", | ||||
| "Shortcut": "\u05e7\u05d9\u05e6\u05d5\u05e8", | ||||
| "Help": "\u05e2\u05d6\u05e8\u05d4", | ||||
| "Address": "\u05db\u05ea\u05d5\u05d1\u05ea", | ||||
| "Focus to menubar": "\u05d4\u05e2\u05d1\u05e8 \u05de\u05d9\u05e7\u05d5\u05d3 \u05dc\u05e1\u05e8\u05d2\u05dc \u05d4\u05ea\u05e4\u05e8\u05d8\u05d9\u05dd", | ||||
| "Focus to toolbar": "\u05d4\u05e2\u05d1\u05e8 \u05de\u05d9\u05e7\u05d5\u05d3 \u05dc\u05e1\u05e8\u05d2\u05dc \u05d4\u05db\u05dc\u05d9\u05dd", | ||||
| "Focus to element path": "\u05e2\u05d1\u05e8 \u05de\u05d9\u05e7\u05d5\u05d3 \u05dc\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05e4\u05e8\u05d9\u05d8", | ||||
| "Focus to contextual toolbar": "\u05d4\u05e2\u05d1\u05e8 \u05de\u05d9\u05e7\u05d5\u05d3 \u05dc\u05e1\u05e8\u05d2\u05dc \u05ea\u05d5\u05db\u05df", | ||||
| "Insert link (if link plugin activated)": "\u05d4\u05db\u05e0\u05e1 \u05e7\u05d9\u05e9\u05d5\u05e8 (\u05d0\u05dd \u05ea\u05d5\u05e1\u05e3 \"\u05e7\u05d9\u05e9\u05d5\u05e8\u05d9\u05dd\" \u05e4\u05e2\u05d9\u05dc)", | ||||
| "Save (if save plugin activated)": "\u05e9\u05de\u05d5\u05e8 (\u05d0\u05dd \u05ea\u05d5\u05e1\u05e3 \"\u05e9\u05de\u05d9\u05e8\u05d4\" \u05e4\u05e2\u05d9\u05dc)", | ||||
| "Find (if searchreplace plugin activated)": "\u05d7\u05e4\u05e9 (\u05d0\u05dd \u05ea\u05d5\u05e1\u05e3 \"\u05d7\u05e4\u05e9 \u05d5\u05d4\u05d7\u05dc\u05e3\" \u05e4\u05e2\u05d9\u05dc)", | ||||
| "Plugins installed ({0}):": "\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05de\u05d5\u05ea\u05e7\u05e0\u05d9\u05dd ({0}):", | ||||
| "Premium plugins:": "\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05d1\u05ea\u05e9\u05dc\u05d5\u05dd:", | ||||
| "Learn more...": "\u05dc\u05de\u05d3 \u05e2\u05d5\u05d3...", | ||||
| "You are using {0}": "\u05d0\u05ea\\\u05d4 \u05de\u05e9\u05ea\u05de\u05e9\\\u05ea {0}", | ||||
| "Plugins": "\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd", | ||||
| "Handy Shortcuts": "\u05e7\u05d9\u05e6\u05d5\u05e8\u05d9\u05dd \u05e9\u05d9\u05de\u05d5\u05e9\u05d9\u05d9\u05dd", | ||||
| "Horizontal line": "\u05e7\u05d5 \u05d0\u05d5\u05e4\u05e7\u05d9", | ||||
| "Insert\/edit image": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05ea\u05de\u05d5\u05e0\u05d4", | ||||
| "Image description": "\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d4\u05ea\u05de\u05d5\u05e0\u05d4", | ||||
| "Source": "\u05de\u05e7\u05d5\u05e8", | ||||
| "Dimensions": "\u05de\u05d9\u05de\u05d3\u05d9\u05dd", | ||||
| "Constrain proportions": "\u05d4\u05d2\u05d1\u05dc\u05ea \u05e4\u05e8\u05d5\u05e4\u05d5\u05e8\u05e6\u05d9\u05d5\u05ea", | ||||
| "General": "\u05db\u05dc\u05dc\u05d9", | ||||
| "Advanced": "\u05de\u05ea\u05e7\u05d3\u05dd", | ||||
| "Style": "\u05e1\u05d2\u05e0\u05d5\u05df", | ||||
| "Vertical space": "\u05de\u05e8\u05d5\u05d5\u05d7 \u05d0\u05e0\u05db\u05d9", | ||||
| "Horizontal space": "\u05de\u05e8\u05d5\u05d5\u05d7 \u05d0\u05d5\u05e4\u05e7\u05d9", | ||||
| "Border": "\u05de\u05e1\u05d2\u05e8\u05ea", | ||||
| "Insert image": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05de\u05d5\u05e0\u05d4", | ||||
| "Image...": "\u05ea\u05de\u05d5\u05e0\u05d4...", | ||||
| "Image list": "\u05e8\u05e9\u05d9\u05de\u05ea \u05ea\u05de\u05d5\u05e0\u05d5\u05ea", | ||||
| "Rotate counterclockwise": "\u05e1\u05d5\u05d1\u05d1 \u05d1\u05db\u05d9\u05d5\u05d5\u05df \u05d4\u05e4\u05d5\u05da \u05dc\u05e9\u05e2\u05d5\u05df", | ||||
| "Rotate clockwise": "\u05e1\u05d5\u05d1\u05d1 \u05d1\u05db\u05d9\u05d5\u05d5\u05df \u05d4\u05e9\u05e2\u05d5\u05df", | ||||
| "Flip vertically": "\u05d4\u05e4\u05d5\u05da \u05d0\u05e0\u05db\u05d9\u05ea", | ||||
| "Flip horizontally": "\u05d4\u05e4\u05d5\u05da \u05d0\u05d5\u05e4\u05e7\u05d9\u05ea", | ||||
| "Edit image": "\u05e2\u05e8\u05d5\u05da \u05ea\u05de\u05d5\u05e0\u05d4", | ||||
| "Image options": "\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05ea\u05de\u05d5\u05e0\u05d4", | ||||
| "Zoom in": "\u05d4\u05d2\u05d3\u05dc \u05ea\u05e6\u05d5\u05d2\u05d4", | ||||
| "Zoom out": "\u05d4\u05e7\u05d8\u05df \u05ea\u05e6\u05d5\u05d2\u05d4", | ||||
| "Crop": "\u05e7\u05e6\u05e5", | ||||
| "Resize": "\u05e9\u05e0\u05d4 \u05d2\u05d5\u05d3\u05dc", | ||||
| "Orientation": "\u05db\u05d9\u05d5\u05d5\u05df \u05dc\u05d0\u05d5\u05e8\u05da \/ \u05dc\u05e8\u05d5\u05d7\u05d1", | ||||
| "Brightness": "\u05d1\u05d4\u05d9\u05e8\u05d5\u05ea", | ||||
| "Sharpen": "\u05d7\u05d3\u05d3", | ||||
| "Contrast": "\u05e0\u05d9\u05d2\u05d5\u05d3\u05d9\u05d5\u05ea", | ||||
| "Color levels": "\u05e8\u05de\u05d5\u05ea \u05e6\u05d1\u05e2\u05d9\u05dd", | ||||
| "Gamma": "\u05d2\u05d0\u05de\u05d4", | ||||
| "Invert": "\u05d4\u05d9\u05e4\u05d5\u05da \u05e6\u05d1\u05e2\u05d9\u05dd", | ||||
| "Apply": "\u05d9\u05d9\u05e9\u05dd", | ||||
| "Back": "\u05d7\u05d6\u05d5\u05e8", | ||||
| "Insert date\/time": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05d0\u05e8\u05d9\u05da\/\u05e9\u05e2\u05d4", | ||||
| "Date\/time": "\u05ea\u05d0\u05e8\u05d9\u05da\/\u05e9\u05e2\u05d4", | ||||
| "Insert\/Edit Link": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05e7\u05d9\u05e9\u05d5\u05e8", | ||||
| "Insert\/edit link": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05e7\u05d9\u05e9\u05d5\u05e8", | ||||
| "Text to display": "\u05d8\u05e7\u05e1\u05d8 \u05dc\u05d4\u05e6\u05d2\u05d4", | ||||
| "Url": "\u05db\u05ea\u05d5\u05d1\u05ea \u05e7\u05d9\u05e9\u05d5\u05e8", | ||||
| "Open link in...": "\u05e4\u05ea\u05d7 \u05e7\u05d9\u05e9\u05d5\u05e8 \u05d1...", | ||||
| "Current window": "\u05d7\u05dc\u05d5\u05df \u05e0\u05d5\u05db\u05d7\u05d9", | ||||
| "None": "\u05dc\u05dc\u05d0", | ||||
| "New window": "\u05d7\u05dc\u05d5\u05df \u05d7\u05d3\u05e9", | ||||
| "Remove link": "\u05de\u05d7\u05e7 \u05e7\u05d9\u05e9\u05d5\u05e8", | ||||
| "Anchors": "\u05e2\u05d5\u05d2\u05e0\u05d9\u05dd", | ||||
| "Link...": "\u05e7\u05d9\u05e9\u05d5\u05e8...", | ||||
| "Paste or type a link": "\u05d4\u05d3\u05d1\u05e7 \u05d0\u05d5 \u05d4\u05e7\u05dc\u05d3 \u05e7\u05d9\u05e9\u05d5\u05e8", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u05e0\u05e8\u05d0\u05d4 \u05e9\u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05e9\u05d4\u05db\u05e0\u05e1\u05ea \u05d4\u05d9\u05d0 \u05db\u05ea\u05d5\u05d1\u05ea \u05d0\u05d9\u05de\u05d9\u05d9\u05dc. \u05d4\u05d0\u05dd \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d0\u05ea \u05d4\u05e7\u05d9\u05d3\u05d5\u05de\u05ea :mailto?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u05e0\u05e8\u05d0\u05d4 \u05e9\u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05e9\u05d4\u05db\u05e0\u05e1\u05ea \u05d4\u05d9\u05d0 \u05e7\u05d9\u05e9\u05d5\u05e8 \u05d7\u05d9\u05e6\u05d5\u05e0\u05d9 \u05d4\u05d0\u05dd \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05e7\u05d9\u05d3\u05d5\u05de\u05ea http:\/\/?", | ||||
| "Link list": "\u05e8\u05e9\u05d9\u05de\u05ea \u05e7\u05d9\u05e9\u05d5\u05e8\u05d9\u05dd", | ||||
| "Insert video": "\u05d4\u05db\u05e0\u05e1 \u05e1\u05e8\u05d8\u05d5\u05df", | ||||
| "Insert\/edit video": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05e1\u05e8\u05d8\u05d5\u05df", | ||||
| "Insert\/edit media": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05de\u05d3\u05d9\u05d4", | ||||
| "Alternative source": "\u05de\u05e7\u05d5\u05e8 \u05de\u05e9\u05e0\u05d9", | ||||
| "Alternative source URL": "\u05db\u05ea\u05d5\u05d1\u05ea URL \u05dc\u05de\u05e7\u05d5\u05e8 \u05d7\u05dc\u05d5\u05e4\u05d9", | ||||
| "Media poster (Image URL)": "\u05e4\u05d5\u05e1\u05d8\u05e8 \u05de\u05d3\u05d9\u05d4 (\u05db\u05ea\u05d5\u05d1\u05ea URL \u05dc\u05ea\u05de\u05d5\u05e0\u05d4)", | ||||
| "Paste your embed code below:": "\u05d4\u05d3\u05d1\u05e7 \u05e7\u05d5\u05d3 \u05d4\u05d8\u05de\u05e2\u05d4 \u05de\u05ea\u05d7\u05ea:", | ||||
| "Embed": "\u05d4\u05d8\u05de\u05e2", | ||||
| "Media...": "\u05de\u05d3\u05d9\u05d4...", | ||||
| "Nonbreaking space": "\u05e8\u05d5\u05d5\u05d7 (\u05dc\u05dc\u05d0 \u05e9\u05d1\u05d9\u05e8\u05ea \u05e9\u05d5\u05e8\u05d4)", | ||||
| "Page break": "\u05d3\u05e3 \u05d7\u05d3\u05e9", | ||||
| "Paste as text": "\u05d4\u05d3\u05d1\u05e7 \u05db\u05d8\u05e7\u05e1\u05d8", | ||||
| "Preview": "\u05ea\u05e6\u05d5\u05d2\u05d4 \u05de\u05e7\u05d3\u05d9\u05de\u05d4", | ||||
| "Print...": "\u05d4\u05d3\u05e4\u05e1...", | ||||
| "Save": "\u05e9\u05de\u05d9\u05e8\u05d4", | ||||
| "Find": "\u05d7\u05e4\u05e9", | ||||
| "Replace with": "\u05d4\u05d7\u05dc\u05e3 \u05d1", | ||||
| "Replace": "\u05d4\u05d7\u05dc\u05e3", | ||||
| "Replace all": "\u05d4\u05d7\u05dc\u05e3 \u05d4\u05db\u05dc", | ||||
| "Previous": "\u05d4\u05e7\u05d5\u05d3\u05dd", | ||||
| "Next": "\u05d4\u05d1\u05d0", | ||||
| "Find and replace...": "\u05d7\u05d9\u05e4\u05d5\u05e9 \u05d5\u05d4\u05d7\u05dc\u05e4\u05d4...", | ||||
| "Could not find the specified string.": "\u05de\u05d7\u05e8\u05d5\u05d6\u05ea \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d4", | ||||
| "Match case": "\u05d4\u05d1\u05d7\u05df \u05d1\u05d9\u05df \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea \u05dc\u05d2\u05d3\u05d5\u05dc\u05d5\u05ea", | ||||
| "Find whole words only": "\u05d7\u05e4\u05e9 \u05de\u05d9\u05dc\u05d9\u05dd \u05e9\u05dc\u05de\u05d5\u05ea \u05d1\u05dc\u05d1\u05d3", | ||||
| "Spell check": "\u05d1\u05d3\u05d9\u05e7\u05ea \u05d0\u05d9\u05d5\u05ea", | ||||
| "Ignore": "\u05d4\u05ea\u05e2\u05dc\u05dd", | ||||
| "Ignore all": "\u05d4\u05ea\u05e2\u05dc\u05dd \u05de\u05d4\u05db\u05dc", | ||||
| "Finish": "\u05e1\u05d9\u05d9\u05dd", | ||||
| "Add to Dictionary": "\u05d4\u05d5\u05e1\u05e3 \u05dc\u05de\u05d9\u05dc\u05d5\u05df", | ||||
| "Insert table": "\u05d4\u05db\u05e0\u05e1 \u05d8\u05d1\u05dc\u05d4", | ||||
| "Table properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05d8\u05d1\u05dc\u05d4", | ||||
| "Delete table": "\u05de\u05d7\u05e7 \u05d8\u05d1\u05dc\u05d4", | ||||
| "Cell": "\u05ea\u05d0", | ||||
| "Row": "\u05e9\u05d5\u05e8\u05d4", | ||||
| "Column": "\u05e2\u05de\u05d5\u05d3\u05d4", | ||||
| "Cell properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05ea\u05d0", | ||||
| "Merge cells": "\u05de\u05d6\u05d2 \u05ea\u05d0\u05d9\u05dd", | ||||
| "Split cell": "\u05e4\u05e6\u05dc \u05ea\u05d0", | ||||
| "Insert row before": "\u05d4\u05d5\u05e1\u05e3 \u05e9\u05d5\u05e8\u05d4 \u05dc\u05e4\u05e0\u05d9", | ||||
| "Insert row after": "\u05d4\u05d5\u05e1\u05e3 \u05e9\u05d5\u05e8\u05d4 \u05d0\u05d7\u05e8\u05d9", | ||||
| "Delete row": "\u05de\u05d7\u05e7 \u05e9\u05d5\u05e8\u05d4", | ||||
| "Row properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05e9\u05d5\u05e8\u05d4", | ||||
| "Cut row": "\u05d2\u05d6\u05d5\u05e8 \u05e9\u05d5\u05e8\u05d4", | ||||
| "Copy row": "\u05d4\u05e2\u05ea\u05e7 \u05e9\u05d5\u05e8\u05d4", | ||||
| "Paste row before": "\u05d4\u05d3\u05d1\u05e7 \u05e9\u05d5\u05e8\u05d4 \u05dc\u05e4\u05e0\u05d9", | ||||
| "Paste row after": "\u05d4\u05e2\u05ea\u05e7 \u05e9\u05d5\u05e8\u05d4 \u05d0\u05d7\u05e8\u05d9", | ||||
| "Insert column before": "\u05d4\u05e2\u05ea\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4 \u05dc\u05e4\u05e0\u05d9", | ||||
| "Insert column after": "\u05d4\u05e2\u05ea\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4 \u05d0\u05d7\u05e8\u05d9", | ||||
| "Delete column": "\u05de\u05d7\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4", | ||||
| "Cols": "\u05e2\u05de\u05d5\u05d3\u05d5\u05ea", | ||||
| "Rows": "\u05e9\u05d5\u05e8\u05d5\u05ea", | ||||
| "Width": "\u05e8\u05d5\u05d7\u05d1", | ||||
| "Height": "\u05d2\u05d5\u05d1\u05d4", | ||||
| "Cell spacing": "\u05e9\u05d5\u05dc\u05d9\u05d9\u05dd \u05d7\u05d9\u05e6\u05d5\u05e0\u05d9\u05dd \u05dc\u05ea\u05d0", | ||||
| "Cell padding": "\u05e9\u05d5\u05dc\u05d9\u05d9\u05dd \u05e4\u05e0\u05d9\u05de\u05d9\u05d9\u05dd \u05dc\u05ea\u05d0", | ||||
| "Show caption": "\u05d4\u05e6\u05d2 \u05db\u05ea\u05d5\u05d1\u05d9\u05ea", | ||||
| "Left": "\u05e9\u05de\u05d0\u05dc", | ||||
| "Center": "\u05de\u05e8\u05db\u05d6", | ||||
| "Right": "\u05d9\u05de\u05d9\u05df", | ||||
| "Cell type": "\u05e1\u05d5\u05d2 \u05ea\u05d0", | ||||
| "Scope": "\u05d4\u05d9\u05e7\u05e3", | ||||
| "Alignment": "\u05d9\u05d9\u05e9\u05d5\u05e8", | ||||
| "H Align": "\u05d9\u05d9\u05e9\u05d5\u05e8 \u05d0\u05d5\u05e4\u05e7\u05d9", | ||||
| "V Align": "\u05d9\u05d9\u05e9\u05d5\u05e8 \u05d0\u05e0\u05db\u05d9", | ||||
| "Top": "\u05e2\u05dc\u05d9\u05d5\u05df", | ||||
| "Middle": "\u05d0\u05de\u05e6\u05e2", | ||||
| "Bottom": "\u05ea\u05d7\u05ea\u05d9\u05ea", | ||||
| "Header cell": "\u05db\u05d5\u05ea\u05e8\u05ea \u05dc\u05ea\u05d0", | ||||
| "Row group": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05e9\u05d5\u05e8\u05d5\u05ea", | ||||
| "Column group": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05e2\u05de\u05d5\u05d3\u05d5\u05ea", | ||||
| "Row type": "\u05e1\u05d5\u05d2 \u05e9\u05d5\u05e8\u05d4", | ||||
| "Header": "\u05db\u05d5\u05ea\u05e8\u05ea", | ||||
| "Body": "\u05d2\u05d5\u05e3 \u05d4\u05d8\u05d1\u05dc\u05d0", | ||||
| "Footer": "\u05db\u05d5\u05ea\u05e8\u05ea \u05ea\u05d7\u05ea\u05d5\u05e0\u05d4", | ||||
| "Border color": "\u05e6\u05d1\u05e2 \u05d2\u05d1\u05d5\u05dc", | ||||
| "Insert template...": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05d1\u05e0\u05d9\u05ea...", | ||||
| "Templates": "\u05ea\u05d1\u05e0\u05d9\u05d5\u05ea", | ||||
| "Template": "\u05ea\u05d1\u05e0\u05d9\u05ea", | ||||
| "Text color": "\u05e6\u05d1\u05e2 \u05d4\u05db\u05ea\u05d1", | ||||
| "Background color": "\u05e6\u05d1\u05e2 \u05e8\u05e7\u05e2", | ||||
| "Custom...": "\u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea...", | ||||
| "Custom color": "\u05e6\u05d1\u05e2 \u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea", | ||||
| "No color": "\u05dc\u05dc\u05d0 \u05e6\u05d1\u05e2", | ||||
| "Remove color": "\u05d4\u05e1\u05e8 \u05e6\u05d1\u05e2", | ||||
| "Table of Contents": "\u05ea\u05d5\u05db\u05df \u05e2\u05e0\u05d9\u05d9\u05e0\u05d9\u05dd", | ||||
| "Show blocks": "\u05d4\u05e6\u05d2 \u05ea\u05d9\u05d1\u05d5\u05ea", | ||||
| "Show invisible characters": "\u05d4\u05e6\u05d2 \u05ea\u05d5\u05d5\u05d9\u05dd \u05dc\u05d0 \u05e0\u05e8\u05d0\u05d9\u05dd", | ||||
| "Word count": "\u05e1\u05e4\u05d9\u05e8\u05ea \u05de\u05d9\u05dc\u05d9\u05dd", | ||||
| "Count": "\u05e1\u05e4\u05d9\u05e8\u05d4", | ||||
| "Document": "\u05de\u05e1\u05de\u05da", | ||||
| "Selection": "\u05d1\u05d7\u05d9\u05e8\u05d4", | ||||
| "Words": "\u05de\u05d9\u05dc\u05d9\u05dd", | ||||
| "Words: {0}": "\u05de\u05d9\u05dc\u05d9\u05dd: {0}", | ||||
| "{0} words": "{0} \u05de\u05d9\u05dc\u05d9\u05dd", | ||||
| "File": "\u05e7\u05d5\u05d1\u05e5", | ||||
| "Edit": "\u05e2\u05e8\u05d9\u05db\u05d4", | ||||
| "Insert": "\u05d4\u05d5\u05e1\u05e4\u05d4", | ||||
| "View": "\u05ea\u05e6\u05d5\u05d2\u05d4", | ||||
| "Format": "\u05e4\u05d5\u05e8\u05de\u05d8", | ||||
| "Table": "\u05d8\u05d1\u05dc\u05d4", | ||||
| "Tools": "\u05db\u05dc\u05d9\u05dd", | ||||
| "Powered by {0}": "\u05de\u05d5\u05e4\u05e2\u05dc \u05e2\"\u05d9 {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u05ea\u05d9\u05d1\u05ea \u05e2\u05e8\u05d9\u05db\u05d4 \u05d7\u05db\u05de\u05d4. \u05dc\u05d7\u05e5 Alt-F9 \u05dc\u05ea\u05e4\u05e8\u05d9\u05d8. Alt-F10 \u05dc\u05ea\u05e6\u05d5\u05d2\u05ea \u05db\u05e4\u05ea\u05d5\u05e8\u05d9\u05dd, Alt-0 \u05dc\u05e2\u05d6\u05e8\u05d4", | ||||
| "Image title": "\u05db\u05d5\u05ea\u05e8\u05ea \u05ea\u05de\u05d5\u05e0\u05d4", | ||||
| "Border width": "\u05e8\u05d5\u05d7\u05d1 \u05d2\u05d1\u05d5\u05dc", | ||||
| "Border style": "\u05e1\u05d2\u05e0\u05d5\u05df \u05d2\u05d1\u05d5\u05dc", | ||||
| "Error": "\u05e9\u05d2\u05d9\u05d0\u05d4", | ||||
| "Warn": "\u05d0\u05d6\u05d4\u05e8\u05d4", | ||||
| "Valid": "\u05d7\u05d5\u05e7\u05d9", | ||||
| "To open the popup, press Shift+Enter": "\u05db\u05d3\u05d9 \u05dc\u05e4\u05ea\u05d5\u05d7 \u05d0\u05ea \u05d4\u05e4\u05e8\u05d9\u05d8 \u05d4\u05de\u05d5\u05e7\u05e4\u05e5, \u05d4\u05e7\u05e9 \u05e2\u05dc Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u05d0\u05d6\u05d5\u05e8 \u05d8\u05e7\u05e1\u05d8 \u05e2\u05e9\u05d9\u05e8. \u05d4\u05e7\u05e9 \u05e2\u05dc ALT-0 \u05dc\u05e2\u05d6\u05e8\u05d4.", | ||||
| "System Font": "\u05d2\u05d5\u05e4\u05df \u05de\u05e2\u05e8\u05db\u05ea", | ||||
| "Failed to upload image: {0}": "\u05db\u05e9\u05dc \u05d1\u05d4\u05e2\u05dc\u05d0\u05ea \u05ea\u05de\u05d5\u05e0\u05d4: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u05db\u05e9\u05dc \u05d1\u05d8\u05e2\u05d9\u05e0\u05ea \u05d9\u05d9\u05e9\u05d5\u05dd Plugin: {0} \u05de\u05db\u05ea\u05d5\u05d1\u05ea URL\u200f {1}", | ||||
| "Failed to load plugin url: {0}": "\u05db\u05e9\u05dc \u05d1\u05d8\u05e2\u05d9\u05e0\u05ea \u05db\u05ea\u05d5\u05d1\u05ea URL \u05e9\u05dc \u05d9\u05d9\u05e9\u05d5\u05dd Plugin\u200f: {0}", | ||||
| "Failed to initialize plugin: {0}": "\u05db\u05e9\u05dc \u05d1\u05d0\u05ea\u05d7\u05d5\u05dc \u05d9\u05d9\u05e9\u05d5\u05dd Plugin\u200f: {0}", | ||||
| "example": "\u05d3\u05d5\u05d2\u05de\u05d4", | ||||
| "Search": "\u05d7\u05e4\u05e9", | ||||
| "All": "\u05d4\u05db\u05dc", | ||||
| "Currency": "\u05de\u05d8\u05d1\u05e2", | ||||
| "Text": "\u05d8\u05e7\u05e1\u05d8", | ||||
| "Quotations": "\u05e9\u05d0\u05dc\u05d5\u05ea", | ||||
| "Mathematical": "\u05de\u05ea\u05de\u05d8\u05d9", | ||||
| "Extended Latin": "\u05dc\u05d8\u05d9\u05e0\u05d9\u05ea \u05de\u05d5\u05e8\u05d7\u05d1\u05ea", | ||||
| "Symbols": "\u05e1\u05de\u05dc\u05d9\u05dd", | ||||
| "Arrows": "\u05d7\u05d9\u05e6\u05d9\u05dd", | ||||
| "User Defined": "\u05de\u05d5\u05d2\u05d3\u05e8 \u05e2\u05dc-\u05d9\u05d3\u05d9 \u05d4\u05de\u05e9\u05ea\u05de\u05e9", | ||||
| "dollar sign": "\u05e1\u05d9\u05de\u05df \u05d3\u05d5\u05dc\u05e8", | ||||
| "currency sign": "\u05e1\u05d9\u05de\u05df \u05de\u05d8\u05d1\u05e2", | ||||
| "euro-currency sign": "\u05e1\u05d9\u05de\u05df \u05de\u05d8\u05d1\u05e2 \u05d0\u05d9\u05e8\u05d5", | ||||
| "colon sign": "\u05e1\u05d9\u05de\u05df \u05e7\u05d5\u05dc\u05d5\u05df", | ||||
| "cruzeiro sign": "\u05e1\u05d9\u05de\u05df \u05e7\u05e8\u05d5\u05d6\u05e8\u05d5", | ||||
| "french franc sign": "\u05e1\u05d9\u05de\u05df \u05e4\u05e8\u05e0\u05e7 \u05e6\u05e8\u05e4\u05ea\u05d9", | ||||
| "lira sign": "\u05e1\u05d9\u05de\u05df \u05dc\u05d9\u05e8\u05d4", | ||||
| "mill sign": "\u05e1\u05d9\u05de\u05df \u05de\u05d9\u05dc", | ||||
| "naira sign": "\u05e1\u05d9\u05de\u05df \u05e0\u05d0\u05d9\u05e8\u05d4", | ||||
| "peseta sign": "\u05e1\u05d9\u05de\u05df \u05e4\u05d6\u05d8\u05d4", | ||||
| "rupee sign": "\u05e1\u05d9\u05de\u05df \u05e8\u05d5\u05e4\u05d9", | ||||
| "won sign": "\u05e1\u05d9\u05de\u05df \u05d5\u05d5\u05df", | ||||
| "new sheqel sign": "\u05e1\u05d9\u05de\u05df \u05e9\u05e7\u05dc \u05d7\u05d3\u05e9", | ||||
| "dong sign": "\u05e1\u05d9\u05de\u05df \u05d3\u05d5\u05e0\u05d2", | ||||
| "kip sign": "\u05e1\u05d9\u05de\u05df \u05e7\u05d9\u05e4", | ||||
| "tugrik sign": "\u05e1\u05d9\u05de\u05df \u05d8\u05d5\u05d2\u05e8\u05d9\u05e7", | ||||
| "drachma sign": "\u05e1\u05d9\u05de\u05df \u05d3\u05e8\u05db\u05de\u05d4", | ||||
| "german penny symbol": "\u05e1\u05de\u05dc \u05e4\u05e0\u05d9 \u05d2\u05e8\u05de\u05e0\u05d9", | ||||
| "peso sign": "\u05e1\u05d9\u05de\u05df \u05e4\u05d6\u05d5", | ||||
| "guarani sign": "\u05e1\u05d9\u05de\u05df \u05d2\u05d5\u05d0\u05e8\u05e0\u05d9\u05ea", | ||||
| "austral sign": "\u05e1\u05d9\u05de\u05df \u05d0\u05d5\u05e1\u05d8\u05e8\u05dc", | ||||
| "hryvnia sign": "\u05e1\u05d9\u05de\u05df \u05e8\u05d9\u05d1\u05e0\u05d9\u05d4", | ||||
| "cedi sign": "\u05e1\u05d9\u05de\u05df \u05e1\u05d3\u05d9", | ||||
| "livre tournois sign": "\u05e1\u05d9\u05de\u05df \u05dc\u05d1\u05e8\u05d4 \u05d8\u05d5\u05e8\u05e0\u05d5", | ||||
| "spesmilo sign": "\u05e1\u05d9\u05de\u05df \u05e1\u05e4\u05e1\u05de\u05d9\u05dc\u05d5", | ||||
| "tenge sign": "\u05e1\u05d9\u05de\u05df \u05d8\u05e0\u05d2\u05d4", | ||||
| "indian rupee sign": "\u05e1\u05d9\u05de\u05df \u05e8\u05d5\u05e4\u05d9 \u05d4\u05d5\u05d3\u05d9", | ||||
| "turkish lira sign": "\u05e1\u05d9\u05de\u05df \u05dc\u05d9\u05e8\u05d4 \u05d8\u05d5\u05e8\u05e7\u05d9\u05ea", | ||||
| "nordic mark sign": "\u05e1\u05d9\u05de\u05df \u05de\u05d0\u05e8\u05e7 \u05e1\u05e7\u05e0\u05d3\u05d9\u05e0\u05d1\u05d9", | ||||
| "manat sign": "\u05e1\u05d9\u05de\u05df \u05de\u05d0\u05e0\u05d0\u05d8", | ||||
| "ruble sign": "\u05e1\u05d9\u05de\u05df \u05e8\u05d5\u05d1\u05dc", | ||||
| "yen character": "\u05ea\u05d5 \u05d9\u05df", | ||||
| "yuan character": "\u05ea\u05d5 \u05d9\u05d5\u05d0\u05df", | ||||
| "yuan character, in hong kong and taiwan": "\u05ea\u05d5 \u05d9\u05d5\u05d0\u05df, \u05d1\u05d4\u05d5\u05e0\u05d2 \u05e7\u05d5\u05e0\u05d2 \u05d5\u05d1\u05d8\u05d9\u05d9\u05d5\u05d5\u05d0\u05df", | ||||
| "yen\/yuan character variant one": "\u05de\u05e9\u05ea\u05e0\u05d4 \u05d0\u05d7\u05d3 \u05e9\u05dc \u05ea\u05d5 \u05d9\u05d5\u05d0\u05df\/\u05d9\u05df", | ||||
| "Loading emoticons...": "\u05d8\u05d5\u05e2\u05df \u05e1\u05de\u05dc\u05d9 \u05d4\u05d1\u05e2\u05d4...", | ||||
| "Could not load emoticons": "\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05d4\u05d9\u05d4 \u05dc\u05d8\u05e2\u05d5\u05df \u05e1\u05de\u05dc\u05d9 \u05d4\u05d1\u05e2\u05d4", | ||||
| "People": "\u05d0\u05e0\u05e9\u05d9\u05dd", | ||||
| "Animals and Nature": "\u05d1\u05e2\u05dc\u05d9-\u05d7\u05d9\u05d9\u05dd \u05d5\u05d8\u05d1\u05e2", | ||||
| "Food and Drink": "\u05d0\u05d5\u05db\u05dc \u05d5\u05e9\u05ea\u05d9\u05d9\u05d4", | ||||
| "Activity": "\u05e4\u05e2\u05d9\u05dc\u05d5\u05ea", | ||||
| "Travel and Places": "\u05e0\u05e1\u05d9\u05e2\u05d4 \u05d5\u05de\u05e7\u05d5\u05de\u05d5\u05ea", | ||||
| "Objects": "\u05d0\u05d5\u05d1\u05d9\u05d9\u05e7\u05d8\u05d9\u05dd", | ||||
| "Flags": "\u05d3\u05d2\u05dc\u05d9\u05dd", | ||||
| "Characters": "\u05ea\u05d5\u05d5\u05d9\u05dd", | ||||
| "Characters (no spaces)": "\u05ea\u05d5\u05d5\u05d9\u05dd (\u05dc\u05dc\u05d0 \u05e8\u05d5\u05d5\u05d7\u05d9\u05dd)", | ||||
| "{0} characters": "{0} \u05ea\u05d5\u05d5\u05d9\u05dd", | ||||
| "Error: Form submit field collision.": "\u05e9\u05d2\u05d9\u05d0\u05d4: \u05d4\u05ea\u05e0\u05d2\u05e9\u05d5\u05ea \u05d1\u05e9\u05d3\u05d4 \u05e9\u05dc\u05d9\u05d7\u05ea \u05d8\u05d5\u05e4\u05e1.", | ||||
| "Error: No form element found.": "\u05e9\u05d2\u05d9\u05d0\u05d4: \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0 \u05e8\u05db\u05d9\u05d1 \u05d8\u05d5\u05e4\u05e1.", | ||||
| "Update": "\u05e2\u05d3\u05db\u05df", | ||||
| "Color swatch": "\u05d3\u05d5\u05d2\u05de\u05d0\u05d5\u05ea \u05e6\u05d1\u05e2", | ||||
| "Turquoise": "\u05d8\u05d5\u05e8\u05e7\u05d9\u05d6", | ||||
| "Green": "\u05d9\u05e8\u05d5\u05e7", | ||||
| "Blue": "\u05db\u05d7\u05d5\u05dc", | ||||
| "Purple": "\u05e1\u05d2\u05d5\u05dc", | ||||
| "Navy Blue": "\u05db\u05d7\u05d5\u05dc \u05e6\u05d9", | ||||
| "Dark Turquoise": "\u05d8\u05d5\u05e8\u05e7\u05d9\u05d6 \u05db\u05d4\u05d4", | ||||
| "Dark Green": "\u05d9\u05e8\u05d5\u05e7 \u05db\u05d4\u05d4", | ||||
| "Medium Blue": "\u05db\u05d7\u05d5\u05dc \u05d1\u05d9\u05e0\u05d5\u05e0\u05d9", | ||||
| "Medium Purple": "\u05e1\u05d2\u05d5\u05dc \u05d1\u05d9\u05e0\u05d5\u05e0\u05d9", | ||||
| "Midnight Blue": "\u05db\u05d7\u05d5\u05dc \u05d7\u05e6\u05d5\u05ea", | ||||
| "Yellow": "\u05e6\u05d4\u05d5\u05d1", | ||||
| "Orange": "\u05db\u05ea\u05d5\u05dd", | ||||
| "Red": "\u05d0\u05d3\u05d5\u05dd", | ||||
| "Light Gray": "\u05d0\u05e4\u05d5\u05e8 \u05d1\u05d4\u05d9\u05e8", | ||||
| "Gray": "\u05d0\u05e4\u05d5\u05e8", | ||||
| "Dark Yellow": "\u05e6\u05d4\u05d5\u05d1 \u05db\u05d4\u05d4", | ||||
| "Dark Orange": "\u05db\u05ea\u05d5\u05dd \u05db\u05d4\u05d4", | ||||
| "Dark Red": "\u05d0\u05d3\u05d5\u05dd \u05db\u05d4\u05d4", | ||||
| "Medium Gray": "\u05d0\u05e4\u05d5\u05e8 \u05d1\u05d9\u05e0\u05d5\u05e0\u05d9", | ||||
| "Dark Gray": "\u05d0\u05e4\u05d5\u05e8 \u05db\u05d4\u05d4", | ||||
| "Light Green": "\u05d9\u05e8\u05d5\u05e7 \u05d1\u05d4\u05d9\u05e8", | ||||
| "Light Yellow": "\u05e6\u05d4\u05d5\u05d1 \u05d1\u05d4\u05d9\u05e8", | ||||
| "Light Red": "\u05d0\u05d3\u05d5\u05dd \u05d1\u05d4\u05d9\u05e8", | ||||
| "Light Purple": "\u05e1\u05d2\u05d5\u05dc \u05d1\u05d4\u05d9\u05e8", | ||||
| "Light Blue": "\u05db\u05d7\u05d5\u05dc \u05d1\u05d4\u05d9\u05e8", | ||||
| "Dark Purple": "\u05e1\u05d2\u05d5\u05dc \u05db\u05d4\u05d4", | ||||
| "Dark Blue": "\u05db\u05d7\u05d5\u05dc \u05db\u05d4\u05d4", | ||||
| "Black": "\u05e9\u05d7\u05d5\u05e8", | ||||
| "White": "\u05dc\u05d1\u05df", | ||||
| "Switch to or from fullscreen mode": "\u05d4\u05d7\u05dc\u05e3 \u05dc\u05de\u05e6\u05d1 \u05de\u05e1\u05da \u05de\u05dc\u05d0 \u05d0\u05d5 \u05e6\u05d0 \u05de\u05de\u05e0\u05d5", | ||||
| "Open help dialog": "\u05e4\u05ea\u05d7 \u05ea\u05d9\u05d1\u05ea \u05d3\u05d5-\u05e9\u05d9\u05d7 \u05e9\u05dc \u05e2\u05d6\u05e8\u05d4", | ||||
| "history": "\u05d4\u05d9\u05e1\u05d8\u05d5\u05e8\u05d9\u05d4", | ||||
| "styles": "\u05e1\u05d2\u05e0\u05d5\u05e0\u05d5\u05ea", | ||||
| "formatting": "\u05e2\u05d9\u05e6\u05d5\u05d1", | ||||
| "alignment": "\u05d9\u05d9\u05e9\u05d5\u05e8", | ||||
| "indentation": "\u05d4\u05d6\u05d7\u05d4", | ||||
| "permanent pen": "\u05e2\u05d8 \u05e7\u05d1\u05d5\u05e2", | ||||
| "comments": "\u05d4\u05e2\u05e8\u05d5\u05ea", | ||||
| "Format Painter": "\u05e6\u05d9\u05d9\u05e8 \u05e2\u05d9\u05e6\u05d5\u05d1", | ||||
| "Insert\/edit iframe": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05d7\u05dc\u05d5\u05df \u05de\u05e1\u05d2\u05e8\u05ea", | ||||
| "Capitalization": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05e8\u05d9\u05e9\u05d9\u05d5\u05ea", | ||||
| "lowercase": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea", | ||||
| "UPPERCASE": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05e8\u05d9\u05e9\u05d9\u05d5\u05ea", | ||||
| "Title Case": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05db\u05d5\u05ea\u05e8\u05ea", | ||||
| "Permanent Pen Properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05e2\u05d8 \u05e7\u05d1\u05d5\u05e2\u05d9\u05dd", | ||||
| "Permanent pen properties...": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05e2\u05d8 \u05e7\u05d1\u05d5\u05e2\u05d9\u05dd...", | ||||
| "Font": "\u05d2\u05d5\u05e4\u05df", | ||||
| "Size": "\u05d2\u05d5\u05d3\u05dc", | ||||
| "More...": "\u05e2\u05d5\u05d3...", | ||||
| "Spellcheck Language": "\u05e9\u05e4\u05ea \u05d1\u05d3\u05d9\u05e7\u05ea \u05d0\u05d9\u05d5\u05ea", | ||||
| "Select...": "\u05d1\u05d7\u05e8...", | ||||
| "Preferences": "\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea", | ||||
| "Yes": "\u05db\u05df", | ||||
| "No": "\u05dc\u05d0", | ||||
| "Keyboard Navigation": "\u05e0\u05d9\u05d5\u05d5\u05d8 \u05d1\u05de\u05e7\u05dc\u05d3\u05ea", | ||||
| "Version": "\u05d2\u05e8\u05e1\u05d4", | ||||
| "Anchor": "\u05de\u05e7\u05d5\u05dd \u05e2\u05d9\u05d2\u05d5\u05df", | ||||
| "Special character": "\u05ea\u05d5\u05d5\u05d9\u05dd \u05de\u05d9\u05d5\u05d7\u05d3\u05d9\u05dd", | ||||
| "Code sample": "\u05d3\u05d5\u05d2\u05de\u05ea \u05e7\u05d5\u05d3", | ||||
| "Color": "\u05e6\u05d1\u05e2", | ||||
| "Emoticons": "\u05de\u05d7\u05d5\u05d5\u05ea", | ||||
| "Document properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05de\u05e1\u05de\u05da", | ||||
| "Image": "\u05ea\u05de\u05d5\u05e0\u05d4", | ||||
| "Insert link": "\u05d4\u05db\u05e0\u05e1 \u05e7\u05d9\u05e9\u05d5\u05e8", | ||||
| "Target": "\u05de\u05d8\u05e8\u05d4", | ||||
| "Link": "\u05e7\u05d9\u05e9\u05d5\u05e8", | ||||
| "Poster": "\u05e4\u05d5\u05e1\u05d8\u05e8", | ||||
| "Media": "\u05de\u05d3\u05d9\u05d4", | ||||
| "Print": "\u05d4\u05d3\u05e4\u05e1", | ||||
| "Prev": "\u05e7\u05d5\u05d3\u05dd", | ||||
| "Find and replace": "\u05d7\u05e4\u05e9 \u05d5\u05d4\u05d7\u05dc\u05e3", | ||||
| "Whole words": "\u05de\u05d9\u05dc\u05d4 \u05e9\u05dc\u05de\u05d4", | ||||
| "Spellcheck": "\u05d1\u05d5\u05d3\u05e7 \u05d0\u05d9\u05d5\u05ea", | ||||
| "Caption": "\u05db\u05d9\u05ea\u05d5\u05d1", | ||||
| "Insert template": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05d1\u05e0\u05d9\u05ea", | ||||
| "_dir": "rtl" | ||||
| }); | ||||
							
								
								
									
										418
									
								
								Modules/TinyMCE/langs/hr.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										418
									
								
								Modules/TinyMCE/langs/hr.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,418 @@ | ||||
| tinymce.addI18n('hr',{ | ||||
| "Redo": "Ponovi", | ||||
| "Undo": "Poni\u0161ti", | ||||
| "Cut": "Izre\u017ei", | ||||
| "Copy": "Kopiraj", | ||||
| "Paste": "Zalijepi", | ||||
| "Select all": "Odaberi sve", | ||||
| "New document": "Novi dokument", | ||||
| "Ok": "U redu", | ||||
| "Cancel": "Odustani", | ||||
| "Visual aids": "Vizualna pomo\u0107", | ||||
| "Bold": "Podebljano", | ||||
| "Italic": "Kurziv", | ||||
| "Underline": "Podcrtaj", | ||||
| "Strikethrough": "Prekri\u017ei", | ||||
| "Superscript": "Eksponent", | ||||
| "Subscript": "Indeks", | ||||
| "Clear formatting": "Izbri\u0161i oblikovanje", | ||||
| "Align left": "Poravnaj lijevo", | ||||
| "Align center": "Poravnaj po sredini", | ||||
| "Align right": "Poravnaj desno", | ||||
| "Justify": "Obostrano poravnanje", | ||||
| "Bullet list": "Popis s oznakama", | ||||
| "Numbered list": "Numerirani popis", | ||||
| "Decrease indent": "Smanji uvla\u010denje", | ||||
| "Increase indent": "Pove\u0107aj uvla\u010denje", | ||||
| "Close": "Zatvori", | ||||
| "Formats": "Formati", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Va\u0161 preglednik ne podr\u017eava izravan pristup me\u0111uspremniku. Umjesto toga upotrijebite tipkovni\u010dke pre\u010dace Ctrl\u00a0+\u00a0X\/C\/V.", | ||||
| "Headers": "Zaglavlja", | ||||
| "Header 1": "Zaglavlje 1", | ||||
| "Header 2": "Zaglavlje 2", | ||||
| "Header 3": "Zaglavlje 3", | ||||
| "Header 4": "Zaglavlje 4", | ||||
| "Header 5": "Zaglavlje 5", | ||||
| "Header 6": "Zaglavlje 6", | ||||
| "Headings": "Zaglavlja", | ||||
| "Heading 1": "Zaglavlje 1", | ||||
| "Heading 2": "Zaglavlje 2", | ||||
| "Heading 3": "Zaglavlje 3", | ||||
| "Heading 4": "Zaglavlje 4", | ||||
| "Heading 5": "Zaglavlje 5", | ||||
| "Heading 6": "Zaglavlje 6", | ||||
| "Preformatted": "Prethodno oblikovano", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Kod", | ||||
| "Paragraph": "Odlomak", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "U retku", | ||||
| "Blocks": "Blokovi", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Akcija zalijepi od sada lijepi \u010disti tekst. Sadr\u017eaj \u0107e biti zaljepljen kao \u010disti tekst sve dok ne isklju\u010dite ovu opciju.", | ||||
| "Fonts": "Fontovi", | ||||
| "Font Sizes": "Veli\u010dine fonta", | ||||
| "Class": "Razred", | ||||
| "Browse for an image": "Potra\u017eite sliku", | ||||
| "OR": "ILI", | ||||
| "Drop an image here": "Ispustite sliku ovdje", | ||||
| "Upload": "U\u010ditaj", | ||||
| "Block": "Blok", | ||||
| "Align": "Poravnaj", | ||||
| "Default": "Zadano", | ||||
| "Circle": "Krug", | ||||
| "Disc": "To\u010dka", | ||||
| "Square": "Kvadrat", | ||||
| "Lower Alpha": "Mala slova", | ||||
| "Lower Greek": "Mala gr\u010dka slova", | ||||
| "Lower Roman": "Mala rimska slova", | ||||
| "Upper Alpha": "Velika slova", | ||||
| "Upper Roman": "Velika rimska slova", | ||||
| "Anchor...": "Fiksna to\u010dka...", | ||||
| "Name": "Ime", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id treba po\u010dinjati slovom, a nakon toga slijede samo slova, brojevi, crtice, to\u010dke, dvoto\u010dke i podvlake.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Postoje ne pohranjene izmjene, jeste li sigurni da \u017eelite oti\u0107i?", | ||||
| "Restore last draft": "Vrati posljednju skicu", | ||||
| "Special character...": "Poseban znak...", | ||||
| "Source code": "Izvorni kod", | ||||
| "Insert\/Edit code sample": "Umetni\/Uredi primjer k\u00f4da", | ||||
| "Language": "Jezik", | ||||
| "Code sample...": "Primjerak k\u00f4da...", | ||||
| "Color Picker": "Izabira\u010d boja", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "S lijeva na desno", | ||||
| "Right to left": "S desna na lijevo", | ||||
| "Emoticons...": "Emotikoni...", | ||||
| "Metadata and Document Properties": "Metapodaci i svojstva dokumenta", | ||||
| "Title": "Naslov", | ||||
| "Keywords": "Klju\u010dne rije\u010di", | ||||
| "Description": "Opis", | ||||
| "Robots": "Roboti pretra\u017eiva\u010da", | ||||
| "Author": "Autor", | ||||
| "Encoding": "Kodna stranica", | ||||
| "Fullscreen": "Cijeli ekran", | ||||
| "Action": "Action", | ||||
| "Shortcut": "Shortcut", | ||||
| "Help": "Help", | ||||
| "Address": "Address", | ||||
| "Focus to menubar": "Focus to menubar", | ||||
| "Focus to toolbar": "Focus to toolbar", | ||||
| "Focus to element path": "Focus to element path", | ||||
| "Focus to contextual toolbar": "Focus to contextual toolbar", | ||||
| "Insert link (if link plugin activated)": "Insert link (if link plugin activated)", | ||||
| "Save (if save plugin activated)": "Save (if save plugin activated)", | ||||
| "Find (if searchreplace plugin activated)": "Find (if searchreplace plugin activated)", | ||||
| "Plugins installed ({0}):": "Plugins installed ({0}):", | ||||
| "Premium plugins:": "Premium plugins:", | ||||
| "Learn more...": "Learn more...", | ||||
| "You are using {0}": "You are using {0}", | ||||
| "Plugins": "Dodaci", | ||||
| "Handy Shortcuts": "Korisni pre\u010daci", | ||||
| "Horizontal line": "Horizontalna linija", | ||||
| "Insert\/edit image": "Umetni\/izmijeni sliku", | ||||
| "Image description": "Opis slike", | ||||
| "Source": "Izvor", | ||||
| "Dimensions": "Dimenzije", | ||||
| "Constrain proportions": "Zadr\u017ei proporcije", | ||||
| "General": "Op\u0107enito", | ||||
| "Advanced": "Napredno", | ||||
| "Style": "Stil", | ||||
| "Vertical space": "Okomit razmak", | ||||
| "Horizontal space": "Horizontalan razmak", | ||||
| "Border": "Rub", | ||||
| "Insert image": "Umetni sliku", | ||||
| "Image...": "Slika...", | ||||
| "Image list": "Image list", | ||||
| "Rotate counterclockwise": "Rotiraj lijevo", | ||||
| "Rotate clockwise": "Rotiraj desno", | ||||
| "Flip vertically": "Obrni vertikalno", | ||||
| "Flip horizontally": "Obrni horizontalno", | ||||
| "Edit image": "Uredi sliku", | ||||
| "Image options": "Opcije slike", | ||||
| "Zoom in": "Pove\u0107aj", | ||||
| "Zoom out": "Smanji", | ||||
| "Crop": "Obre\u017ei", | ||||
| "Resize": "Promjeni veli\u010dinu", | ||||
| "Orientation": "Orijentacija", | ||||
| "Brightness": "Svjetlina", | ||||
| "Sharpen": "Izo\u0161travanje", | ||||
| "Contrast": "Kontrast", | ||||
| "Color levels": "Razine boje", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Invertiraj", | ||||
| "Apply": "Primijeni", | ||||
| "Back": "Natrag", | ||||
| "Insert date\/time": "Umetni datum\/vrijeme", | ||||
| "Date\/time": "Datum\/vrijeme", | ||||
| "Insert\/Edit Link": "Umetni\/uredi poveznicu", | ||||
| "Insert\/edit link": "Umetni\/izmijeni poveznicu", | ||||
| "Text to display": "Tekst za prikaz", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Otvori poveznicu u...", | ||||
| "Current window": "Trenuta\u010dni prozor", | ||||
| "None": "Ni\u0161ta", | ||||
| "New window": "Novi prozor", | ||||
| "Remove link": "Ukloni poveznicu", | ||||
| "Anchors": "Kra\u0107e poveznice", | ||||
| "Link...": "Poveznica...", | ||||
| "Paste or type a link": "Zalijepi ili upi\u0161i link", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Izgleda da je URL koji ste upisali e-mail adresa. \u017delite li dodati obavezan mailto: prefiks?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Izgleda da je URL koji ste upisali vanjski link. \u017delite li dodati obavezan http:\/\/ prefiks?", | ||||
| "Link list": "Link list", | ||||
| "Insert video": "Umetni video", | ||||
| "Insert\/edit video": "Umetni\/izmijeni video", | ||||
| "Insert\/edit media": "Umetni\/uredi mediju", | ||||
| "Alternative source": "Alternativni izvor", | ||||
| "Alternative source URL": "URL alternativnog izvora", | ||||
| "Media poster (Image URL)": "Medijski poster (URL slike)", | ||||
| "Paste your embed code below:": "Umetnite va\u0161 kod za ugradnju ispod:", | ||||
| "Embed": "Ugradi", | ||||
| "Media...": "Mediji...", | ||||
| "Nonbreaking space": "Neprekidaju\u0107i razmak", | ||||
| "Page break": "Prijelom stranice", | ||||
| "Paste as text": "Zalijepi kao tekst", | ||||
| "Preview": "Pregled", | ||||
| "Print...": "Ispi\u0161i...", | ||||
| "Save": "Spremi", | ||||
| "Find": "Tra\u017ei", | ||||
| "Replace with": "Zamijeni s", | ||||
| "Replace": "Zamijeni", | ||||
| "Replace all": "Zamijeni sve", | ||||
| "Previous": "Prethodno", | ||||
| "Next": "Slijede\u0107i", | ||||
| "Find and replace...": "Prona\u0111i i zamijeni...", | ||||
| "Could not find the specified string.": "Tra\u017eeni tekst nije prona\u0111en", | ||||
| "Match case": "Pazi na mala i velika slova", | ||||
| "Find whole words only": "Prona\u0111i samo cijele rije\u010di", | ||||
| "Spell check": "Provjera pravopisa", | ||||
| "Ignore": "Zanemari", | ||||
| "Ignore all": "Zanemari sve", | ||||
| "Finish": "Zavr\u0161i", | ||||
| "Add to Dictionary": "Dodaj u rje\u010dnik", | ||||
| "Insert table": "Umetni tablicu", | ||||
| "Table properties": "Svojstva tablice", | ||||
| "Delete table": "Izbri\u0161i tablicu", | ||||
| "Cell": "Polje", | ||||
| "Row": "Redak", | ||||
| "Column": "Stupac", | ||||
| "Cell properties": "Svojstva polja", | ||||
| "Merge cells": "Spoji polja", | ||||
| "Split cell": "Razdvoji polja", | ||||
| "Insert row before": "Umetni redak prije", | ||||
| "Insert row after": "Umetni redak nakon", | ||||
| "Delete row": "Izbri\u0161i redak", | ||||
| "Row properties": "Svojstva redka", | ||||
| "Cut row": "Izre\u017ei redak", | ||||
| "Copy row": "Kopiraj redak", | ||||
| "Paste row before": "Zalijepi redak prije", | ||||
| "Paste row after": "Zalijepi redak nakon", | ||||
| "Insert column before": "Umetni stupac prije", | ||||
| "Insert column after": "Umetni stupac nakon", | ||||
| "Delete column": "Izbri\u0161i stupac", | ||||
| "Cols": "Stupci", | ||||
| "Rows": "Redci", | ||||
| "Width": "\u0160irina", | ||||
| "Height": "Visina", | ||||
| "Cell spacing": "Razmak izme\u0111u polja", | ||||
| "Cell padding": "Razmak unutar polja", | ||||
| "Show caption": "Prika\u017ei natpis", | ||||
| "Left": "Lijevo", | ||||
| "Center": "Sredina", | ||||
| "Right": "Desno", | ||||
| "Cell type": "Vrsta polja", | ||||
| "Scope": "Doseg", | ||||
| "Alignment": "Poravnanje", | ||||
| "H Align": "H Poravnavanje", | ||||
| "V Align": "V Poravnavanje", | ||||
| "Top": "Vrh", | ||||
| "Middle": "Sredina", | ||||
| "Bottom": "Dno", | ||||
| "Header cell": "Polje zaglavlja", | ||||
| "Row group": "Grupirani redci", | ||||
| "Column group": "Grupirani stupci", | ||||
| "Row type": "Vrsta redka", | ||||
| "Header": "Zaglavlje", | ||||
| "Body": "Sadr\u017eaj", | ||||
| "Footer": "Podno\u017eje", | ||||
| "Border color": "Boja ruba", | ||||
| "Insert template...": "Umetni predlo\u017eak...", | ||||
| "Templates": "Predlo\u0161ci", | ||||
| "Template": "Predlo\u017eak", | ||||
| "Text color": "Boja teksta", | ||||
| "Background color": "Boja pozadine", | ||||
| "Custom...": "Prilago\u0111eno...", | ||||
| "Custom color": "Prilago\u0111ena boja", | ||||
| "No color": "Bez boje", | ||||
| "Remove color": "Ukloni boju", | ||||
| "Table of Contents": "Sadr\u017eaj", | ||||
| "Show blocks": "Prika\u017ei blokove", | ||||
| "Show invisible characters": "Prika\u017ei nevidljive znakove", | ||||
| "Word count": "Broj rije\u010di", | ||||
| "Count": "Broj", | ||||
| "Document": "Dokument", | ||||
| "Selection": "Odabir", | ||||
| "Words": "Rije\u010di", | ||||
| "Words: {0}": "Rije\u010di: {0}", | ||||
| "{0} words": "{0} rije\u010d(i)", | ||||
| "File": "Datoteka", | ||||
| "Edit": "Izmijeni", | ||||
| "Insert": "Umetni", | ||||
| "View": "Pogled", | ||||
| "Format": "Oblikuj", | ||||
| "Table": "Tablica", | ||||
| "Tools": "Alati", | ||||
| "Powered by {0}": "Omogu\u0107uje {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Pritisni ALT-F9 za izbornik. Pritisni ALT-F10 za alatnu traku. Pritisni ALT-0 za pomo\u0107", | ||||
| "Image title": "Naslov slike", | ||||
| "Border width": "\u0160irina granice", | ||||
| "Border style": "Stil granice", | ||||
| "Error": "Pogre\u0161ka", | ||||
| "Warn": "Upozori", | ||||
| "Valid": "Valjano", | ||||
| "To open the popup, press Shift+Enter": "Da biste otvorili sko\u010dni prozor, pritisnite Shift\u00a0+\u00a0Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Podru\u010dje oboga\u0107enog teksta. Pritisnite ALT-0 za pomo\u0107.", | ||||
| "System Font": "Font sustava", | ||||
| "Failed to upload image: {0}": "U\u010ditavanje slike nije uspjelo: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "U\u010ditavanje dodatka nije uspjelo: {0} s URL-a {1}", | ||||
| "Failed to load plugin url: {0}": "U\u010ditavanje dodatka nije uspjelo: {0}", | ||||
| "Failed to initialize plugin: {0}": "Pokretanje dodatka nije uspjelo: {0}", | ||||
| "example": "primjer", | ||||
| "Search": "Tra\u017ei", | ||||
| "All": "Svi", | ||||
| "Currency": "Valuta", | ||||
| "Text": "Tekst", | ||||
| "Quotations": "Navodnici", | ||||
| "Mathematical": "Matemati\u010dki", | ||||
| "Extended Latin": "Pro\u0161ireni latinski", | ||||
| "Symbols": "Simboli", | ||||
| "Arrows": "Strelice", | ||||
| "User Defined": "Korisni\u010dki definirano", | ||||
| "dollar sign": "znak za dolar", | ||||
| "currency sign": "znak za valutu", | ||||
| "euro-currency sign": "znak za valutu \u2013 euro", | ||||
| "colon sign": "znak za kolon", | ||||
| "cruzeiro sign": "znak za cruzeiro", | ||||
| "french franc sign": "znak za francuski franak", | ||||
| "lira sign": "znak za liru", | ||||
| "mill sign": "znak za mill", | ||||
| "naira sign": "znak za nairu", | ||||
| "peseta sign": "znak za pezetu", | ||||
| "rupee sign": "znak za rupiju", | ||||
| "won sign": "znak za von", | ||||
| "new sheqel sign": "znak za novi \u0161ekel", | ||||
| "dong sign": "znak za dong", | ||||
| "kip sign": "znak za kip", | ||||
| "tugrik sign": "znak za tugrik", | ||||
| "drachma sign": "znak za drahmu", | ||||
| "german penny symbol": "simbol za njema\u010dki peni", | ||||
| "peso sign": "znak za pezo", | ||||
| "guarani sign": "znak za gvarani", | ||||
| "austral sign": "znak za austral", | ||||
| "hryvnia sign": "znak za grivnju", | ||||
| "cedi sign": "znak za cedi", | ||||
| "livre tournois sign": "znak za livre tournois", | ||||
| "spesmilo sign": "znak za spesmilo", | ||||
| "tenge sign": "znak za tengu", | ||||
| "indian rupee sign": "znak za indijsku rupiju", | ||||
| "turkish lira sign": "znak za tursku liru", | ||||
| "nordic mark sign": "znak za nordijsku marku", | ||||
| "manat sign": "znak za manat", | ||||
| "ruble sign": "znak za rubalj", | ||||
| "yen character": "znak za jen", | ||||
| "yuan character": "znak za juan", | ||||
| "yuan character, in hong kong and taiwan": "znak za juan, u Hong Kongu i Tajvanu", | ||||
| "yen\/yuan character variant one": "znak za jen\/juan, prva varijanta", | ||||
| "Loading emoticons...": "U\u010ditavanje emotikona...", | ||||
| "Could not load emoticons": "Nije mogu\u0107e u\u010ditati emotikone", | ||||
| "People": "Osobe", | ||||
| "Animals and Nature": "\u017divotinje i priroda", | ||||
| "Food and Drink": "Hrana i pi\u0107e", | ||||
| "Activity": "Aktivnosti", | ||||
| "Travel and Places": "Putovanje i mjesta", | ||||
| "Objects": "Predmeti", | ||||
| "Flags": "Zastave", | ||||
| "Characters": "Znakovi", | ||||
| "Characters (no spaces)": "Znakovi (bez razmaka)", | ||||
| "{0} characters": "{0} znakova", | ||||
| "Error: Form submit field collision.": "Pogre\u0161ka: sukob polja za podno\u0161enje obrasca.", | ||||
| "Error: No form element found.": "Pogre\u0161ka: nema elementa oblika.", | ||||
| "Update": "A\u017euriraj", | ||||
| "Color swatch": "Uzorak boje", | ||||
| "Turquoise": "Tirkizna", | ||||
| "Green": "Zelena", | ||||
| "Blue": "Plava", | ||||
| "Purple": "Ljubi\u010dasta", | ||||
| "Navy Blue": "Mornarsko plava", | ||||
| "Dark Turquoise": "Tamnotirkizna", | ||||
| "Dark Green": "Tamnozelena", | ||||
| "Medium Blue": "Srednje plava", | ||||
| "Medium Purple": "Srednje ljubi\u010dasta", | ||||
| "Midnight Blue": "Pono\u0107no plava", | ||||
| "Yellow": "\u017duta", | ||||
| "Orange": "Naran\u010dasta", | ||||
| "Red": "Crvena", | ||||
| "Light Gray": "Svijetlosiva", | ||||
| "Gray": "Siva", | ||||
| "Dark Yellow": "Tamno\u017euta", | ||||
| "Dark Orange": "Tamnonaran\u010dasta", | ||||
| "Dark Red": "Tamnocrvena", | ||||
| "Medium Gray": "Srednje siva", | ||||
| "Dark Gray": "Tamnosiva", | ||||
| "Light Green": "Svjetlozelena", | ||||
| "Light Yellow": "Svjetlo\u017euta", | ||||
| "Light Red": "Svjetlocrvena", | ||||
| "Light Purple": "Svjetloljubi\u010dasta", | ||||
| "Light Blue": "Svjetloplava", | ||||
| "Dark Purple": "Tamnoljubi\u010dasta", | ||||
| "Dark Blue": "Tamnoplava", | ||||
| "Black": "Crna", | ||||
| "White": "Bijela", | ||||
| "Switch to or from fullscreen mode": "Prebacivanje u prikaz preko cijelog zaslona ili iz njega", | ||||
| "Open help dialog": "Otvori dijalo\u0161ki okvir za pomo\u0107", | ||||
| "history": "povijest", | ||||
| "styles": "stilovi", | ||||
| "formatting": "oblikovanje", | ||||
| "alignment": "poravnanje", | ||||
| "indentation": "uvlaka", | ||||
| "permanent pen": "trajna olovka", | ||||
| "comments": "komentari", | ||||
| "Format Painter": "Prenositelj oblikovanja", | ||||
| "Insert\/edit iframe": "Umetni\/uredi iframe oznaku", | ||||
| "Capitalization": "Velika slova", | ||||
| "lowercase": "mala slova", | ||||
| "UPPERCASE": "VELIKA SLOVA", | ||||
| "Title Case": "Pisanje naslova", | ||||
| "Permanent Pen Properties": "Trajna svojstva olovke", | ||||
| "Permanent pen properties...": "Trajna svojstva olovke...", | ||||
| "Font": "Font", | ||||
| "Size": "Veli\u010dina", | ||||
| "More...": "Vi\u0161e...", | ||||
| "Spellcheck Language": "Jezik provjere pravopisa", | ||||
| "Select...": "Odaberi...", | ||||
| "Preferences": "Postavke", | ||||
| "Yes": "Da", | ||||
| "No": "Ne", | ||||
| "Keyboard Navigation": "Navigacija na tipkovnici", | ||||
| "Version": "Ina\u010dica", | ||||
| "Anchor": "Sidro", | ||||
| "Special character": "Poseban znak", | ||||
| "Color": "Boja", | ||||
| "Emoticons": "Emotikoni", | ||||
| "Document properties": "Svojstva dokumenta", | ||||
| "Image": "Slika", | ||||
| "Insert link": "Umetni poveznicu", | ||||
| "Target": "Meta", | ||||
| "Link": "Link", | ||||
| "Poster": "Poster", | ||||
| "Media": "Media", | ||||
| "Print": "Ispis", | ||||
| "Prev": "Prethodni", | ||||
| "Find and replace": "Prona\u0111i i zamijeni", | ||||
| "Whole words": "Cijele rije\u010di", | ||||
| "Spellcheck": "Provjeri pravopis", | ||||
| "Caption": "Natpis", | ||||
| "Insert template": "Umetni predlo\u017eak" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/hu_HU.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/hu_HU.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('hu_HU',{ | ||||
| "Redo": "Ism\u00e9t", | ||||
| "Undo": "Visszavon\u00e1s", | ||||
| "Cut": "Kiv\u00e1g\u00e1s", | ||||
| "Copy": "M\u00e1sol\u00e1s", | ||||
| "Paste": "Beilleszt\u00e9s", | ||||
| "Select all": "Minden kijel\u00f6l\u00e9se", | ||||
| "New document": "\u00daj dokumentum", | ||||
| "Ok": "Rendben", | ||||
| "Cancel": "M\u00e9gse", | ||||
| "Visual aids": "Vizu\u00e1lis seg\u00e9deszk\u00f6z\u00f6k", | ||||
| "Bold": "F\u00e9lk\u00f6v\u00e9r", | ||||
| "Italic": "D\u0151lt", | ||||
| "Underline": "Al\u00e1h\u00fazott", | ||||
| "Strikethrough": "\u00c1th\u00fazott", | ||||
| "Superscript": "Fels\u0151 index", | ||||
| "Subscript": "Als\u00f3 index", | ||||
| "Clear formatting": "Form\u00e1z\u00e1s t\u00f6rl\u00e9se", | ||||
| "Align left": "Balra igaz\u00edt", | ||||
| "Align center": "K\u00f6z\u00e9pre igaz\u00edt", | ||||
| "Align right": "Jobbra igaz\u00edt", | ||||
| "Justify": "Sorkiz\u00e1rt", | ||||
| "Bullet list": "Listajeles lista", | ||||
| "Numbered list": "Sz\u00e1mozott lista", | ||||
| "Decrease indent": "Beh\u00faz\u00e1s cs\u00f6kkent\u00e9se", | ||||
| "Increase indent": "Beh\u00faz\u00e1s n\u00f6vel\u00e9se", | ||||
| "Close": "Bez\u00e1r", | ||||
| "Formats": "Form\u00e1tumok", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "A b\u00f6ng\u00e9sz\u0151d nem t\u00e1mogatja a k\u00f6zvetlen hozz\u00e1f\u00e9r\u00e9st a v\u00e1g\u00f3laphoz. K\u00e9rlek, haszn\u00e1ld a Ctrl+X\/C\/V billenty\u0171ket.", | ||||
| "Headers": "C\u00edmsorok", | ||||
| "Header 1": "C\u00edmsor 1", | ||||
| "Header 2": "C\u00edmsor 2", | ||||
| "Header 3": "C\u00edmsor 3", | ||||
| "Header 4": "C\u00edmsor 4", | ||||
| "Header 5": "C\u00edmsor 5", | ||||
| "Header 6": "C\u00edmsor 6", | ||||
| "Headings": "Fejl\u00e9cek", | ||||
| "Heading 1": "1. fejl\u00e9c", | ||||
| "Heading 2": "2. fejl\u00e9c", | ||||
| "Heading 3": "3. fejl\u00e9c", | ||||
| "Heading 4": "4. fejl\u00e9c", | ||||
| "Heading 5": "5. fejl\u00e9c", | ||||
| "Heading 6": "6. fejl\u00e9c", | ||||
| "Preformatted": "El\u0151form\u00e1zott", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "K\u00f3d", | ||||
| "Paragraph": "Bekezd\u00e9s", | ||||
| "Blockquote": "Id\u00e9zetblokk", | ||||
| "Inline": "Foly\u00f3 sz\u00f6veg", | ||||
| "Blocks": "Blokkok", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Beilleszt\u00e9s mostant\u00f3l egyszer\u0171 sz\u00f6veg m\u00f3dban. A tartalmak mostant\u00f3l egyszer\u0171 sz\u00f6vegk\u00e9nt lesznek beillesztve, am\u00edg nem kapcsolod ki ezt az opci\u00f3t.", | ||||
| "Fonts": "Bet\u0171t\u00edpusok", | ||||
| "Font Sizes": "Bet\u0171m\u00e9retek", | ||||
| "Class": "Oszt\u00e1ly", | ||||
| "Browse for an image": "K\u00e9p keres\u00e9se tall\u00f3z\u00e1ssal", | ||||
| "OR": "VAGY", | ||||
| "Drop an image here": "H\u00fazz ide egy k\u00e9pet", | ||||
| "Upload": "Felt\u00f6lt\u00e9s", | ||||
| "Block": "Blokk", | ||||
| "Align": "Igaz\u00edt\u00e1s", | ||||
| "Default": "Alap\u00e9rtelmezett", | ||||
| "Circle": "K\u00f6r", | ||||
| "Disc": "Pont", | ||||
| "Square": "N\u00e9gyzet", | ||||
| "Lower Alpha": "Kisbet\u0171", | ||||
| "Lower Greek": "Kis g\u00f6r\u00f6g sz\u00e1m", | ||||
| "Lower Roman": "Kis r\u00f3mai sz\u00e1m", | ||||
| "Upper Alpha": "Nagybet\u0171", | ||||
| "Upper Roman": "Nagy r\u00f3mai sz\u00e1m", | ||||
| "Anchor...": "Horgony...", | ||||
| "Name": "N\u00e9v", | ||||
| "Id": "Azonos\u00edt\u00f3", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Az azonos\u00edt\u00f3nak bet\u0171vel kell kezd\u0151dnie, azut\u00e1n csak bet\u0171ket, sz\u00e1mokat, gondolatjeleket, pontokat, kett\u0151spontokat vagy al\u00e1h\u00faz\u00e1st tartalmazhat.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Nem mentett m\u00f3dos\u00edt\u00e1said vannak, biztos hogy el akarsz navig\u00e1lni?", | ||||
| "Restore last draft": "Utols\u00f3 piszkozat vissza\u00e1ll\u00edt\u00e1sa", | ||||
| "Special character...": "Speci\u00e1lis karakter...", | ||||
| "Source code": "Forr\u00e1sk\u00f3d", | ||||
| "Insert\/Edit code sample": "K\u00f3dminta besz\u00far\u00e1sa\/szerkeszt\u00e9se", | ||||
| "Language": "Nyelv", | ||||
| "Code sample...": "K\u00f3dminta...", | ||||
| "Color Picker": "Sz\u00ednv\u00e1laszt\u00f3", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Balr\u00f3l jobbra", | ||||
| "Right to left": "Jobbr\u00f3l balra", | ||||
| "Emoticons...": "Hangulatjelek...", | ||||
| "Metadata and Document Properties": "Metaadatok \u00e9s a dokumentum tulajdons\u00e1gai", | ||||
| "Title": "C\u00edm", | ||||
| "Keywords": "Kulcsszavak", | ||||
| "Description": "Le\u00edr\u00e1s", | ||||
| "Robots": "Robotok", | ||||
| "Author": "Szerz\u0151", | ||||
| "Encoding": "K\u00f3dol\u00e1s", | ||||
| "Fullscreen": "Teljes k\u00e9perny\u0151", | ||||
| "Action": "M\u0171velet", | ||||
| "Shortcut": "Parancsikon", | ||||
| "Help": "S\u00fag\u00f3", | ||||
| "Address": "C\u00edm", | ||||
| "Focus to menubar": "F\u00f3kusz a men\u00fcre", | ||||
| "Focus to toolbar": "F\u00f3kusz az eszk\u00f6zt\u00e1rra", | ||||
| "Focus to element path": "F\u00f3kusz az elemek \u00fatvonal\u00e1ra", | ||||
| "Focus to contextual toolbar": "F\u00f3kusz a k\u00f6rnyezetf\u00fcgg\u0151 eszk\u00f6zt\u00e1rra", | ||||
| "Insert link (if link plugin activated)": "Hivatkoz\u00e1s besz\u00far\u00e1sa (ha a hivatkoz\u00e1s b\u0151v\u00edtm\u00e9ny enged\u00e9lyezett)", | ||||
| "Save (if save plugin activated)": "Ment\u00e9s (ha a ment\u00e9s b\u0151v\u00edtm\u00e9ny enged\u00e9lyezett)", | ||||
| "Find (if searchreplace plugin activated)": "Keres\u00e9s (ha a keres\u00e9s \u00e9s csere b\u0151v\u00edtm\u00e9ny enged\u00e9lyezett)", | ||||
| "Plugins installed ({0}):": "Telep\u00edtett b\u0151v\u00edtm\u00e9nyek ({0}):", | ||||
| "Premium plugins:": "Pr\u00e9mium b\u0151v\u00edtm\u00e9nyek:", | ||||
| "Learn more...": "Tudj meg t\u00f6bbet...", | ||||
| "You are using {0}": "Haszn\u00e1latban: {0}", | ||||
| "Plugins": "Pluginek", | ||||
| "Handy Shortcuts": "Hasznos linkek", | ||||
| "Horizontal line": "V\u00edzszintes vonal", | ||||
| "Insert\/edit image": "K\u00e9p beilleszt\u00e9se\/szerkeszt\u00e9se", | ||||
| "Image description": "K\u00e9p le\u00edr\u00e1sa", | ||||
| "Source": "Forr\u00e1s", | ||||
| "Dimensions": "M\u00e9retek", | ||||
| "Constrain proportions": "M\u00e9retar\u00e1ny", | ||||
| "General": "\u00c1ltal\u00e1nos", | ||||
| "Advanced": "Halad\u00f3", | ||||
| "Style": "St\u00edlus", | ||||
| "Vertical space": "Vertik\u00e1lis hely", | ||||
| "Horizontal space": "Horizont\u00e1lis hely", | ||||
| "Border": "Szeg\u00e9ly", | ||||
| "Insert image": "K\u00e9p beilleszt\u00e9se", | ||||
| "Image...": "K\u00e9p...", | ||||
| "Image list": "K\u00e9p lista", | ||||
| "Rotate counterclockwise": "Forgat\u00e1s az \u00f3ramutat\u00f3 j\u00e1r\u00e1s\u00e1val ellent\u00e9tesen", | ||||
| "Rotate clockwise": "Forgat\u00e1s az \u00f3ramutat\u00f3 j\u00e1r\u00e1s\u00e1val megegyez\u0151en", | ||||
| "Flip vertically": "F\u00fcgg\u0151leges t\u00fckr\u00f6z\u00e9s", | ||||
| "Flip horizontally": "V\u00edzszintes t\u00fckr\u00f6z\u00e9s", | ||||
| "Edit image": "K\u00e9p szerkeszt\u00e9se", | ||||
| "Image options": "K\u00e9p be\u00e1ll\u00edt\u00e1sok", | ||||
| "Zoom in": "Nagy\u00edt\u00e1s", | ||||
| "Zoom out": "Kicsiny\u00edt\u00e9s", | ||||
| "Crop": "K\u00e9p v\u00e1g\u00e1s", | ||||
| "Resize": "\u00c1tm\u00e9retez\u00e9s", | ||||
| "Orientation": "K\u00e9p t\u00e1jol\u00e1s", | ||||
| "Brightness": "F\u00e9nyer\u0151", | ||||
| "Sharpen": "\u00c9less\u00e9g", | ||||
| "Contrast": "Kontraszt", | ||||
| "Color levels": "Sz\u00ednszint", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Inverz k\u00e9p", | ||||
| "Apply": "Ment\u00e9s", | ||||
| "Back": "Vissza", | ||||
| "Insert date\/time": "D\u00e1tum\/id\u0151 beilleszt\u00e9se", | ||||
| "Date\/time": "D\u00e1tum\/id\u0151", | ||||
| "Insert\/Edit Link": "Hivatkoz\u00e1s beilleszt\u00e9se\/szerkeszt\u00e9se", | ||||
| "Insert\/edit link": "Hivatkoz\u00e1s beilleszt\u00e9se\/szerkeszt\u00e9se", | ||||
| "Text to display": "Megjelen\u0151 sz\u00f6veg", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Hivatkoz\u00e1s megnyit\u00e1sa...", | ||||
| "Current window": "Jelenlegi ablak", | ||||
| "None": "Nincs", | ||||
| "New window": "\u00daj ablak", | ||||
| "Remove link": "Hivatkoz\u00e1s t\u00f6rl\u00e9se", | ||||
| "Anchors": "Horgonyok", | ||||
| "Link...": "Hivatkoz\u00e1s...", | ||||
| "Paste or type a link": "Hivatkoz\u00e1s be\u00edr\u00e1sa vagy beilleszt\u00e9se", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "A megadott URL email c\u00edmnek t\u0171nik. Szeretn\u00e9d hozz\u00e1adni a sz\u00fcks\u00e9ges mailto: el\u0151tagot?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "A megadott URL k\u00fcls\u0151 c\u00edmnek t\u0171nik. Szeretn\u00e9d hozz\u00e1adni a sz\u00fcks\u00e9ges http:\/\/ el\u0151tagot?", | ||||
| "Link list": "Hivatkoz\u00e1slista", | ||||
| "Insert video": "Vide\u00f3 beilleszt\u00e9se", | ||||
| "Insert\/edit video": "Vide\u00f3 beilleszt\u00e9se\/szerkeszt\u00e9se", | ||||
| "Insert\/edit media": "M\u00e9dia besz\u00far\u00e1sa\/beilleszt\u00e9se", | ||||
| "Alternative source": "Alternat\u00edv forr\u00e1s", | ||||
| "Alternative source URL": "Alternat\u00edv forr\u00e1s URL", | ||||
| "Media poster (Image URL)": "M\u00e9dia poszter (k\u00e9p URL)", | ||||
| "Paste your embed code below:": "Illeszd be a be\u00e1gyaz\u00f3 k\u00f3dot alulra:", | ||||
| "Embed": "Be\u00e1gyaz\u00e1s", | ||||
| "Media...": "M\u00e9dia...", | ||||
| "Nonbreaking space": "Nem t\u00f6rhet\u0151 sz\u00f3k\u00f6z", | ||||
| "Page break": "Oldalt\u00f6r\u00e9s", | ||||
| "Paste as text": "Beilleszt\u00e9s sz\u00f6vegk\u00e9nt", | ||||
| "Preview": "El\u0151n\u00e9zet", | ||||
| "Print...": "Nyomtat\u00e1s...", | ||||
| "Save": "Ment\u00e9s", | ||||
| "Find": "Keres\u00e9s", | ||||
| "Replace with": "Csere erre", | ||||
| "Replace": "Csere", | ||||
| "Replace all": "Az \u00f6sszes cser\u00e9je", | ||||
| "Previous": "El\u0151z\u0151", | ||||
| "Next": "K\u00f6vetkez\u0151", | ||||
| "Find and replace...": "Keres\u00e9s \u00e9s csere...", | ||||
| "Could not find the specified string.": "A be\u00edrt kifejez\u00e9s nem tal\u00e1lhat\u00f3.", | ||||
| "Match case": "Kis \u00e9s nagybet\u0171k megk\u00fcl\u00f6nb\u00f6ztet\u00e9se", | ||||
| "Find whole words only": "Csak teljes szavak keres\u00e9se", | ||||
| "Spell check": "Helyes\u00edr\u00e1s-ellen\u0151rz\u00e9s", | ||||
| "Ignore": "Figyelmen k\u00edv\u00fcl hagy", | ||||
| "Ignore all": "Mindent figyelmen k\u00edv\u00fcl hagy", | ||||
| "Finish": "Befejez\u00e9s", | ||||
| "Add to Dictionary": "Sz\u00f3t\u00e1rhoz ad", | ||||
| "Insert table": "T\u00e1bl\u00e1zat beilleszt\u00e9se", | ||||
| "Table properties": "T\u00e1bl\u00e1zat tulajdons\u00e1gok", | ||||
| "Delete table": "T\u00e1bl\u00e1zat t\u00f6rl\u00e9se", | ||||
| "Cell": "Cella", | ||||
| "Row": "Sor", | ||||
| "Column": "Oszlop", | ||||
| "Cell properties": "Cella tulajdons\u00e1gok", | ||||
| "Merge cells": "Cell\u00e1k egyes\u00edt\u00e9se", | ||||
| "Split cell": "Cell\u00e1k sz\u00e9tv\u00e1laszt\u00e1sa", | ||||
| "Insert row before": "Sor besz\u00far\u00e1sa el\u00e9", | ||||
| "Insert row after": "Sor besz\u00far\u00e1sa m\u00f6g\u00e9", | ||||
| "Delete row": "Sor t\u00f6rl\u00e9se", | ||||
| "Row properties": "Sor tulajdons\u00e1gai", | ||||
| "Cut row": "Sor kiv\u00e1g\u00e1sa", | ||||
| "Copy row": "Sor m\u00e1sol\u00e1sa", | ||||
| "Paste row before": "Sor beilleszt\u00e9se el\u00e9", | ||||
| "Paste row after": "Sor beilleszt\u00e9se m\u00f6g\u00e9", | ||||
| "Insert column before": "Oszlop besz\u00far\u00e1sa el\u00e9", | ||||
| "Insert column after": "Oszlop besz\u00far\u00e1sa m\u00f6g\u00e9", | ||||
| "Delete column": "Oszlop t\u00f6rl\u00e9se", | ||||
| "Cols": "Oszlopok", | ||||
| "Rows": "Sorok", | ||||
| "Width": "Sz\u00e9less\u00e9g", | ||||
| "Height": "Magass\u00e1g", | ||||
| "Cell spacing": "Cell\u00e1k t\u00e1vols\u00e1ga", | ||||
| "Cell padding": "Cella m\u00e9rete", | ||||
| "Show caption": "C\u00edm megjelen\u00edt\u00e9se", | ||||
| "Left": "Bal", | ||||
| "Center": "K\u00f6z\u00e9p", | ||||
| "Right": "Jobb", | ||||
| "Cell type": "Cella t\u00edpusa", | ||||
| "Scope": "Hat\u00f3k\u00f6r", | ||||
| "Alignment": "Igaz\u00edt\u00e1s", | ||||
| "H Align": "V\u00edzszintes igaz\u00edt\u00e1s", | ||||
| "V Align": "F\u00fcgg\u0151leges igaz\u00edt\u00e1s", | ||||
| "Top": "Fel\u00fcl", | ||||
| "Middle": "K\u00f6z\u00e9pen", | ||||
| "Bottom": "Alul", | ||||
| "Header cell": "Fejl\u00e9c cella", | ||||
| "Row group": "Sor csoport", | ||||
| "Column group": "Oszlop csoport", | ||||
| "Row type": "Sor t\u00edpus", | ||||
| "Header": "Fejl\u00e9c", | ||||
| "Body": "Sz\u00f6vegt\u00f6rzs", | ||||
| "Footer": "L\u00e1bl\u00e9c", | ||||
| "Border color": "Szeg\u00e9ly sz\u00edne", | ||||
| "Insert template...": "Sablon besz\u00far\u00e1sa...", | ||||
| "Templates": "Sablonok", | ||||
| "Template": "Sablon", | ||||
| "Text color": "Sz\u00f6veg sz\u00edne", | ||||
| "Background color": "H\u00e1tt\u00e9r sz\u00edn", | ||||
| "Custom...": "Egy\u00e9ni...", | ||||
| "Custom color": "Egy\u00e9ni sz\u00edn", | ||||
| "No color": "Nincs sz\u00edn", | ||||
| "Remove color": "Sz\u00edn t\u00f6rl\u00e9se", | ||||
| "Table of Contents": "Tartalomjegyz\u00e9k", | ||||
| "Show blocks": "Blokkok mutat\u00e1sa", | ||||
| "Show invisible characters": "L\u00e1thatatlan karakterek mutat\u00e1sa", | ||||
| "Word count": "Szavak sz\u00e1ma", | ||||
| "Count": "Sz\u00e1m", | ||||
| "Document": "Dokumentum", | ||||
| "Selection": "Kiv\u00e1laszt\u00e1s", | ||||
| "Words": "Szavak", | ||||
| "Words: {0}": "Szavak: {0}", | ||||
| "{0} words": "{0} sz\u00f3", | ||||
| "File": "F\u00e1jl", | ||||
| "Edit": "Szerkeszt\u00e9s", | ||||
| "Insert": "Beilleszt\u00e9s", | ||||
| "View": "N\u00e9zet", | ||||
| "Format": "Form\u00e1tum", | ||||
| "Table": "T\u00e1bl\u00e1zat", | ||||
| "Tools": "Eszk\u00f6z\u00f6k", | ||||
| "Powered by {0}": "\u00dczemelteti: {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text ter\u00fclet. Nyomj ALT-F9-et a men\u00fch\u00f6z. Nyomj ALT-F10-et az eszk\u00f6zt\u00e1rhoz. Nyomj ALT-0-t a s\u00fag\u00f3hoz", | ||||
| "Image title": "K\u00e9p c\u00edme", | ||||
| "Border width": "Szeg\u00e9ly vastags\u00e1ga", | ||||
| "Border style": "Szeg\u00e9ly st\u00edlusa", | ||||
| "Error": "Hiba", | ||||
| "Warn": "Figyelmeztet\u00e9s", | ||||
| "Valid": "\u00c9rv\u00e9nyes", | ||||
| "To open the popup, press Shift+Enter": "A felugr\u00f3 ablak megnyit\u00e1s\u00e1hoz nyomja meg a Shift+Enter billenty\u0171t", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Vizu\u00e1lis szerkeszt\u0151 ter\u00fclet. Nyomjon ALT-0-t a s\u00fag\u00f3hoz.", | ||||
| "System Font": "Rendszer-bet\u0171t\u00edpus", | ||||
| "Failed to upload image: {0}": "Nem siker\u00fclt felt\u00f6lteni a k\u00e9pet: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Nem siker\u00fclt bet\u00f6lteni a be\u00e9p\u00fcl\u0151 modult: {0} err\u0151l a webc\u00edmr\u0151l: {1}", | ||||
| "Failed to load plugin url: {0}": "Nem siker\u00fclt bet\u00f6lteni a be\u00e9p\u00fcl\u0151 modul url-\u00e9t: {0}", | ||||
| "Failed to initialize plugin: {0}": "Nem siker\u00fclt inicializ\u00e1lni a be\u00e9p\u00fcl\u0151 modult: {0}", | ||||
| "example": "p\u00e9lda", | ||||
| "Search": "Keres\u00e9s", | ||||
| "All": "Minden", | ||||
| "Currency": "P\u00e9nznem", | ||||
| "Text": "Sz\u00f6veg", | ||||
| "Quotations": "Id\u00e9z\u0151jelek", | ||||
| "Mathematical": "Matematikai", | ||||
| "Extended Latin": "B\u0151v\u00edtett latin", | ||||
| "Symbols": "Szimb\u00f3lumok", | ||||
| "Arrows": "Nyilak", | ||||
| "User Defined": "Felhaszn\u00e1l\u00f3 \u00e1ltal meghat\u00e1rozott", | ||||
| "dollar sign": "doll\u00e1r jel", | ||||
| "currency sign": "valuta jel", | ||||
| "euro-currency sign": "euro-valuta jel", | ||||
| "colon sign": "kett\u0151spont", | ||||
| "cruzeiro sign": "cruzeiro jel", | ||||
| "french franc sign": "francia frank jel", | ||||
| "lira sign": "l\u00edra jel", | ||||
| "mill sign": "mill jel", | ||||
| "naira sign": "naira jel", | ||||
| "peseta sign": "peseta jel", | ||||
| "rupee sign": "r\u00fapia jel", | ||||
| "won sign": "won jel", | ||||
| "new sheqel sign": "\u00faj shekel jel", | ||||
| "dong sign": "dong jel", | ||||
| "kip sign": "kip jel", | ||||
| "tugrik sign": "tugrik jel", | ||||
| "drachma sign": "drachma jel", | ||||
| "german penny symbol": "n\u00e9met penny jel", | ||||
| "peso sign": "peso jel", | ||||
| "guarani sign": "guarani jel", | ||||
| "austral sign": "austral jel", | ||||
| "hryvnia sign": "hrivnya jel", | ||||
| "cedi sign": "cedi jel", | ||||
| "livre tournois sign": "livre tournois jel", | ||||
| "spesmilo sign": "spesmilo jel", | ||||
| "tenge sign": "tenge jel", | ||||
| "indian rupee sign": "r\u00fapel jel", | ||||
| "turkish lira sign": "t\u00f6r\u00f6k l\u00edra jel", | ||||
| "nordic mark sign": "\u00e9szaki m\u00e1rka jel", | ||||
| "manat sign": "manat jel", | ||||
| "ruble sign": "rubel jel", | ||||
| "yen character": "jen karakter", | ||||
| "yuan character": "j\u00fcan karakter", | ||||
| "yuan character, in hong kong and taiwan": "hongkongi \u00e9s tajvani j\u00fcan karakter", | ||||
| "yen\/yuan character variant one": "jen\/j\u00fcan karaktervari\u00e1ns", | ||||
| "Loading emoticons...": "Hangulatjelek bet\u00f6lt\u00e9se...", | ||||
| "Could not load emoticons": "Nem siker\u00fclt a hangulatjelek bet\u00f6lt\u00e9se", | ||||
| "People": "Emberek", | ||||
| "Animals and Nature": "\u00c1llatok \u00e9s term\u00e9szet", | ||||
| "Food and Drink": "\u00c9tel, ital", | ||||
| "Activity": "Tev\u00e9kenys\u00e9gek", | ||||
| "Travel and Places": "Utaz\u00e1s \u00e9s helyek", | ||||
| "Objects": "T\u00e1rgyak", | ||||
| "Flags": "Z\u00e1szl\u00f3k", | ||||
| "Characters": "Karakterek", | ||||
| "Characters (no spaces)": "Karakterek (sz\u00f3k\u00f6z\u00f6k n\u00e9lk\u00fcl)", | ||||
| "{0} characters": "{0} karakter", | ||||
| "Error: Form submit field collision.": "Hiba: \u00dctk\u00f6z\u00e9s t\u00f6rt\u00e9nt az \u0171rlap elk\u00fcld\u00e9sekor.", | ||||
| "Error: No form element found.": "Hiba: Nem tal\u00e1lhat\u00f3 \u0171rlap elem.", | ||||
| "Update": "Friss\u00edt\u00e9s", | ||||
| "Color swatch": "Sz\u00ednpaletta", | ||||
| "Turquoise": "T\u00fcrkiz", | ||||
| "Green": "Z\u00f6ld", | ||||
| "Blue": "K\u00e9k", | ||||
| "Purple": "Lila", | ||||
| "Navy Blue": "Tengerk\u00e9k", | ||||
| "Dark Turquoise": "S\u00f6t\u00e9tt\u00fcrkiz", | ||||
| "Dark Green": "S\u00f6t\u00e9tz\u00f6ld", | ||||
| "Medium Blue": "Kir\u00e1lyk\u00e9k", | ||||
| "Medium Purple": "K\u00f6z\u00e9plila", | ||||
| "Midnight Blue": "\u00c9jf\u00e9lk\u00e9k", | ||||
| "Yellow": "S\u00e1rga", | ||||
| "Orange": "Narancss\u00e1rga", | ||||
| "Red": "Piros", | ||||
| "Light Gray": "Vil\u00e1gossz\u00fcrke", | ||||
| "Gray": "Sz\u00fcrke", | ||||
| "Dark Yellow": "S\u00f6t\u00e9ts\u00e1rga", | ||||
| "Dark Orange": "S\u00f6t\u00e9t narancss\u00e1rga", | ||||
| "Dark Red": "S\u00f6t\u00e9tv\u00f6r\u00f6s", | ||||
| "Medium Gray": "K\u00f6z\u00e9psz\u00fcrke", | ||||
| "Dark Gray": "S\u00f6t\u00e9tsz\u00fcrke", | ||||
| "Light Green": "Vil\u00e1gosz\u00f6ld", | ||||
| "Light Yellow": "Vil\u00e1goss\u00e1rga", | ||||
| "Light Red": "Vil\u00e1gospiros", | ||||
| "Light Purple": "Vil\u00e1goslila", | ||||
| "Light Blue": "Vil\u00e1gosk\u00e9k", | ||||
| "Dark Purple": "S\u00f6t\u00e9tlila", | ||||
| "Dark Blue": "S\u00f6t\u00e9tk\u00e9k", | ||||
| "Black": "Fekete", | ||||
| "White": "Feh\u00e9r", | ||||
| "Switch to or from fullscreen mode": "Teljes vagy norm\u00e1l k\u00e9perny\u0151s m\u00f3dra v\u00e1lt\u00e1s", | ||||
| "Open help dialog": "S\u00fag\u00f3ablak megnyit\u00e1sa", | ||||
| "history": "el\u0151zm\u00e9nyek", | ||||
| "styles": "st\u00edlusok", | ||||
| "formatting": "form\u00e1z\u00e1s", | ||||
| "alignment": "igaz\u00edt\u00e1s", | ||||
| "indentation": "beh\u00faz\u00e1s", | ||||
| "permanent pen": "sz\u00f6vegkiemel\u0151", | ||||
| "comments": "megjegyz\u00e9sek", | ||||
| "Format Painter": "Form\u00e1tumm\u00e1sol\u00f3", | ||||
| "Insert\/edit iframe": "iframe besz\u00far\u00e1sa\/szerkeszt\u00e9se", | ||||
| "Capitalization": "Nagybet\u0171s \u00edr\u00e1s", | ||||
| "lowercase": "kisbet\u0171s", | ||||
| "UPPERCASE": "NAGYBET\u0170S", | ||||
| "Title Case": "C\u00edm szerinti \u00edr\u00e1sm\u00f3d", | ||||
| "Permanent Pen Properties": "Tart\u00f3s toll tulajdons\u00e1gai", | ||||
| "Permanent pen properties...": "Tart\u00f3s toll tulajdons\u00e1gai...", | ||||
| "Font": "Bet\u0171t\u00edpus", | ||||
| "Size": "M\u00e9ret", | ||||
| "More...": "Tov\u00e1bbiak...", | ||||
| "Spellcheck Language": "Helyes\u00edr\u00e1s-ellen\u0151rz\u00e9s nyelve", | ||||
| "Select...": "V\u00e1lasszon...", | ||||
| "Preferences": "Preferenci\u00e1k", | ||||
| "Yes": "Igen", | ||||
| "No": "Nem", | ||||
| "Keyboard Navigation": "Billenty\u0171zettel val\u00f3 navig\u00e1l\u00e1s", | ||||
| "Version": "Verzi\u00f3", | ||||
| "Anchor": "Horgony", | ||||
| "Special character": "Speci\u00e1lis karakter", | ||||
| "Code sample": "K\u00f3d p\u00e9lda", | ||||
| "Color": "Sz\u00edn", | ||||
| "Emoticons": "Vigyorok", | ||||
| "Document properties": "Dokumentum tulajdons\u00e1gai", | ||||
| "Image": "K\u00e9p", | ||||
| "Insert link": "Hivatkoz\u00e1s beilleszt\u00e9se", | ||||
| "Target": "C\u00e9l", | ||||
| "Link": "Hivatkoz\u00e1s", | ||||
| "Poster": "El\u0151n\u00e9zeti k\u00e9p", | ||||
| "Media": "M\u00e9dia", | ||||
| "Print": "Nyomtat\u00e1s", | ||||
| "Prev": "El\u0151z\u0151", | ||||
| "Find and replace": "Keres\u00e9s \u00e9s csere", | ||||
| "Whole words": "Csak ha ez a teljes sz\u00f3", | ||||
| "Spellcheck": "Helyes\u00edr\u00e1s ellen\u0151rz\u00e9s", | ||||
| "Caption": "Felirat", | ||||
| "Insert template": "Sablon beilleszt\u00e9se" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/id.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/id.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('id',{ | ||||
| "Redo": "Ulang", | ||||
| "Undo": "Batalkan", | ||||
| "Cut": "Potong", | ||||
| "Copy": "Salin", | ||||
| "Paste": "Rekat", | ||||
| "Select all": "Pilih semua", | ||||
| "New document": "Dokumen baru", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Batal", | ||||
| "Visual aids": "Alat bantu visual", | ||||
| "Bold": "Tebal", | ||||
| "Italic": "Miring", | ||||
| "Underline": "Garis bawah", | ||||
| "Strikethrough": "Coret", | ||||
| "Superscript": "Superskrip", | ||||
| "Subscript": "Subskrip", | ||||
| "Clear formatting": "Kosongkan format", | ||||
| "Align left": "Rata kiri", | ||||
| "Align center": "Rata tengah", | ||||
| "Align right": "Rata kanan", | ||||
| "Justify": "Rata penuh", | ||||
| "Bullet list": "Daftar bersimbol", | ||||
| "Numbered list": "Daftar bernomor", | ||||
| "Decrease indent": "Kurangi inden", | ||||
| "Increase indent": "Tambah inden", | ||||
| "Close": "Tutup", | ||||
| "Formats": "Format", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Browser anda tidak mendukung akses langsung ke papan klip. Silakan gunakan pintasan Ctrl+X\/C\/V dari keyboard.", | ||||
| "Headers": "Judul", | ||||
| "Header 1": "Judul 1", | ||||
| "Header 2": "Judul 2", | ||||
| "Header 3": "Judul 3", | ||||
| "Header 4": "Judul 4", | ||||
| "Header 5": "Judul 5", | ||||
| "Header 6": "Judul 6", | ||||
| "Headings": "Kepala", | ||||
| "Heading 1": "Kepala 1", | ||||
| "Heading 2": "Kepala 2", | ||||
| "Heading 3": "Kepala 3", | ||||
| "Heading 4": "Kepala 4", | ||||
| "Heading 5": "Kepala 5", | ||||
| "Heading 6": "Kepala 6", | ||||
| "Preformatted": "Praformat", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Kode", | ||||
| "Paragraph": "Paragraf", | ||||
| "Blockquote": "Kutipan", | ||||
| "Inline": "Baris", | ||||
| "Blocks": "Blok", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Penempelan sekarang dalam modus teks biasa. Konten sekarang akan disisipkan sebagai teks biasa sampai Anda memadamkan pilihan ini.", | ||||
| "Fonts": "Huruf", | ||||
| "Font Sizes": "Ukuran Huruf", | ||||
| "Class": "Kelas", | ||||
| "Browse for an image": "Jelajahi gambar", | ||||
| "OR": "ATAU", | ||||
| "Drop an image here": "Simpan gambar di sini", | ||||
| "Upload": "Unggah", | ||||
| "Block": "Blok", | ||||
| "Align": "Sejajarkan", | ||||
| "Default": "Bawaan", | ||||
| "Circle": "Lingkaran", | ||||
| "Disc": "Cakram", | ||||
| "Square": "Kotak", | ||||
| "Lower Alpha": "Huruf Kecil", | ||||
| "Lower Greek": "Huruf Kecil Yunani", | ||||
| "Lower Roman": "Huruf Kecil Romawi", | ||||
| "Upper Alpha": "Huruf Besar", | ||||
| "Upper Roman": "Huruf Besar Romawi", | ||||
| "Anchor...": "Jangkar..", | ||||
| "Name": "Nama", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id harus dimulai dengan huruf, dan hanya diikuti oleh huruf, angka, koma, titik, titik koma atau garis bawah.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Anda memiliki perubahan yang belum disimpan, yakin ingin beralih ?", | ||||
| "Restore last draft": "Muat kembali draft sebelumnya", | ||||
| "Special character...": "Karakter khusus...", | ||||
| "Source code": "Kode sumber", | ||||
| "Insert\/Edit code sample": "Tambah\/Edit contoh kode", | ||||
| "Language": "Bahasa", | ||||
| "Code sample...": "Sampel kode...", | ||||
| "Color Picker": "Pemilih warna", | ||||
| "R": "M", | ||||
| "G": "H", | ||||
| "B": "B", | ||||
| "Left to right": "Kiri ke kanan", | ||||
| "Right to left": "Kanan ke kiri", | ||||
| "Emoticons...": "Emotikon...", | ||||
| "Metadata and Document Properties": "Metadata dan Properti Dokumen", | ||||
| "Title": "Judul", | ||||
| "Keywords": "Kata kunci", | ||||
| "Description": "Deskripsi", | ||||
| "Robots": "Robot", | ||||
| "Author": "Penulis", | ||||
| "Encoding": "Enkoding", | ||||
| "Fullscreen": "Layar penuh", | ||||
| "Action": "Tindakan", | ||||
| "Shortcut": "Pintasan", | ||||
| "Help": "Bantuan", | ||||
| "Address": "Alamat", | ||||
| "Focus to menubar": "Fokus ke menubar", | ||||
| "Focus to toolbar": "Fokus ke toolbar", | ||||
| "Focus to element path": "Fokus ke jalur elemen", | ||||
| "Focus to contextual toolbar": "Fokus ke toolbar kontekstual", | ||||
| "Insert link (if link plugin activated)": "Masukan link (jika plugin diaktifkan)", | ||||
| "Save (if save plugin activated)": "Simpan (jika plugin simpan diaktifkan)", | ||||
| "Find (if searchreplace plugin activated)": "Cari (jika plugin searchplace diaktifkan)", | ||||
| "Plugins installed ({0}):": "Plugin terpasang ({0})", | ||||
| "Premium plugins:": "Plugin premium:", | ||||
| "Learn more...": "Pelajari selengkapnya...", | ||||
| "You are using {0}": "Anda menggunakan {0}", | ||||
| "Plugins": "Plugin", | ||||
| "Handy Shortcuts": "Pintasan Praktis", | ||||
| "Horizontal line": "Garis horisontal", | ||||
| "Insert\/edit image": "Sisip\/sunting gambar", | ||||
| "Image description": "Deskripsi gambar", | ||||
| "Source": "Sumber", | ||||
| "Dimensions": "Dimensi", | ||||
| "Constrain proportions": "Samakan proporsi", | ||||
| "General": "Umum", | ||||
| "Advanced": "Lanjutan", | ||||
| "Style": "Gaya", | ||||
| "Vertical space": "Spasi vertikal", | ||||
| "Horizontal space": "Spasi horisontal", | ||||
| "Border": "Batas", | ||||
| "Insert image": "Sisipkan gambar", | ||||
| "Image...": "Gambar...", | ||||
| "Image list": "Daftar gambar", | ||||
| "Rotate counterclockwise": "Putar berlawananjarumjam", | ||||
| "Rotate clockwise": "Putar searahjarumjam", | ||||
| "Flip vertically": "Balik vertikal", | ||||
| "Flip horizontally": "Balik horisontal", | ||||
| "Edit image": "Sunting gambar", | ||||
| "Image options": "Opsi gambar", | ||||
| "Zoom in": "Perbesar", | ||||
| "Zoom out": "Perkecil", | ||||
| "Crop": "Krop", | ||||
| "Resize": "Ubah ukuran", | ||||
| "Orientation": "Orientasi", | ||||
| "Brightness": "Kecerahan", | ||||
| "Sharpen": "Ketajaman", | ||||
| "Contrast": "Kontras", | ||||
| "Color levels": "Tingakt warna", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Kebalikan", | ||||
| "Apply": "Terapkan", | ||||
| "Back": "Kembali", | ||||
| "Insert date\/time": "Sisipkan tanggal\/waktu", | ||||
| "Date\/time": "Tanggal\/waktu", | ||||
| "Insert\/Edit Link": "Masukkan\/Edit Tautan", | ||||
| "Insert\/edit link": "Sisip\/sunting tautan", | ||||
| "Text to display": "Teks yang ditampilkan", | ||||
| "Url": "Tautan", | ||||
| "Open link in...": "Buka tautan dalam...", | ||||
| "Current window": "Jendela saat ini", | ||||
| "None": "Tidak ada", | ||||
| "New window": "Jendela baru", | ||||
| "Remove link": "Buang tautan", | ||||
| "Anchors": "Jangkar", | ||||
| "Link...": "Tautan...", | ||||
| "Paste or type a link": "Tempel atau ketik sebuah tautan", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Tautan yang anda masukkan sepertinya adalah alamat email. Apakah Anda ingin menambahkan prefiks mailto: yang dibutuhkan?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Tautan yang anda masukkan sepertinya adalah tautan eksternal. Apakah Anda ingin menambahkan prefiks http:\/\/ yang dibutuhkan?", | ||||
| "Link list": "Daftar tautan", | ||||
| "Insert video": "Sisipkan video", | ||||
| "Insert\/edit video": "Sisip\/sunting video", | ||||
| "Insert\/edit media": "Sisip\/sunting media", | ||||
| "Alternative source": "Sumber alternatif", | ||||
| "Alternative source URL": "URL Sumber alternatif", | ||||
| "Media poster (Image URL)": "Poster media (URL gambar)", | ||||
| "Paste your embed code below:": "Tempel kode yang diembed dibawah ini:", | ||||
| "Embed": "Embed", | ||||
| "Media...": "Media...", | ||||
| "Nonbreaking space": "Spasi", | ||||
| "Page break": "Baris baru", | ||||
| "Paste as text": "Tempel sebagai teks biasa", | ||||
| "Preview": "Pratinjau", | ||||
| "Print...": "Cetak...", | ||||
| "Save": "Simpan", | ||||
| "Find": "Cari", | ||||
| "Replace with": "Ganti dengan", | ||||
| "Replace": "Ganti", | ||||
| "Replace all": "Ganti semua", | ||||
| "Previous": "Sebelumnya", | ||||
| "Next": "Berikutnya", | ||||
| "Find and replace...": "Cari dan ganti...", | ||||
| "Could not find the specified string.": "Tidak dapat menemukan string yang dimaksud.", | ||||
| "Match case": "Samakan besar kecil huruf", | ||||
| "Find whole words only": "Cari hanya kata utuh", | ||||
| "Spell check": "Periksa ejaan", | ||||
| "Ignore": "Abaikan", | ||||
| "Ignore all": "Abaikan semua", | ||||
| "Finish": "Selesai", | ||||
| "Add to Dictionary": "Tambahkan ke kamus", | ||||
| "Insert table": "Sisipkan tabel", | ||||
| "Table properties": "Properti tabel", | ||||
| "Delete table": "Hapus tabel", | ||||
| "Cell": "Sel", | ||||
| "Row": "Baris", | ||||
| "Column": "Kolom", | ||||
| "Cell properties": "Properti sel", | ||||
| "Merge cells": "Gabung sel", | ||||
| "Split cell": "Bagi sel", | ||||
| "Insert row before": "Sisipkan baris sebelum", | ||||
| "Insert row after": "Sisipkan baris setelah", | ||||
| "Delete row": "Hapus baris", | ||||
| "Row properties": "Properti baris", | ||||
| "Cut row": "Penggal baris", | ||||
| "Copy row": "Salin baris", | ||||
| "Paste row before": "Tempel baris sebelum", | ||||
| "Paste row after": "Tempel baris setelah", | ||||
| "Insert column before": "Sisipkan kolom sebelum", | ||||
| "Insert column after": "Sisipkan kolom setelah", | ||||
| "Delete column": "Hapus kolom", | ||||
| "Cols": "Kolom", | ||||
| "Rows": "Baris", | ||||
| "Width": "Lebar", | ||||
| "Height": "Tinggi", | ||||
| "Cell spacing": "Spasi sel ", | ||||
| "Cell padding": "Lapisan sel", | ||||
| "Show caption": "Perlihatkan keterangan", | ||||
| "Left": "Kiri", | ||||
| "Center": "Tengah", | ||||
| "Right": "Kanan", | ||||
| "Cell type": "Tipe sel", | ||||
| "Scope": "Skup", | ||||
| "Alignment": "Penjajaran", | ||||
| "H Align": "Rata Samping", | ||||
| "V Align": "Rata Atas", | ||||
| "Top": "Atas", | ||||
| "Middle": "Tengah", | ||||
| "Bottom": "Bawah", | ||||
| "Header cell": "Judul sel", | ||||
| "Row group": "Kelompok baris", | ||||
| "Column group": "Kelompok kolom", | ||||
| "Row type": "Tipe baris", | ||||
| "Header": "Judul", | ||||
| "Body": "Body", | ||||
| "Footer": "Footer", | ||||
| "Border color": "Warna batas", | ||||
| "Insert template...": "Masukkan template...", | ||||
| "Templates": "Templat", | ||||
| "Template": "Templat", | ||||
| "Text color": "Warna teks", | ||||
| "Background color": "Warna latar", | ||||
| "Custom...": "Atur sendiri...", | ||||
| "Custom color": "Warna sendiri", | ||||
| "No color": "Tidak berwarna", | ||||
| "Remove color": "Hapus warna", | ||||
| "Table of Contents": "Daftar Isi", | ||||
| "Show blocks": "Tampilkan blok", | ||||
| "Show invisible characters": "Tampilkan karakter tak tampak", | ||||
| "Word count": "Hitungan kata", | ||||
| "Count": "Hitungan", | ||||
| "Document": "Dokumen", | ||||
| "Selection": "Pemilihan", | ||||
| "Words": "Kata", | ||||
| "Words: {0}": "Kata: {0}", | ||||
| "{0} words": "{0} kata", | ||||
| "File": "Berkas", | ||||
| "Edit": "Sunting", | ||||
| "Insert": "Sisip", | ||||
| "View": "Tampilan", | ||||
| "Format": "Format", | ||||
| "Table": "Tabel", | ||||
| "Tools": "Alat", | ||||
| "Powered by {0}": "Didukung oleh {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Area teks kaya. Tekan ALT-F9 untuk menu. Tekan ALT-F10 untuk toolbar. Tekan ALT-0 untuk bantuan", | ||||
| "Image title": "Judul gambar", | ||||
| "Border width": "Lebar pinggiran", | ||||
| "Border style": "Gaya pinggiran", | ||||
| "Error": "Kesalahan", | ||||
| "Warn": "Peringatkan", | ||||
| "Valid": "Valid", | ||||
| "To open the popup, press Shift+Enter": "Untuk membuka popup, tekan Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Area Teks Kaya. Tekan ALT-0 untuk bantuan.", | ||||
| "System Font": "Huruf Sistem", | ||||
| "Failed to upload image: {0}": "Gagal mengunggah gambar: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Gagal memuat plugin: {0} dari url {1}", | ||||
| "Failed to load plugin url: {0}": "Gagal memuat url plugin: {0}", | ||||
| "Failed to initialize plugin: {0}": "Gagal memulai plugin: {0}", | ||||
| "example": "contoh", | ||||
| "Search": "Cari", | ||||
| "All": "Semua", | ||||
| "Currency": "Mata Uang", | ||||
| "Text": "Teks", | ||||
| "Quotations": "Kutipan", | ||||
| "Mathematical": "Matematis", | ||||
| "Extended Latin": "Latin Diperluas", | ||||
| "Symbols": "Simbol", | ||||
| "Arrows": "Panah", | ||||
| "User Defined": "Ditentukan Pengguna", | ||||
| "dollar sign": "tanda dolar", | ||||
| "currency sign": "tanda mata uang", | ||||
| "euro-currency sign": "tanda mata uang eropa", | ||||
| "colon sign": "tanda titik dua", | ||||
| "cruzeiro sign": "tanda cruzeiro", | ||||
| "french franc sign": "tanda franc prancis", | ||||
| "lira sign": "tanda lira", | ||||
| "mill sign": "tanda mill", | ||||
| "naira sign": "tanda naira", | ||||
| "peseta sign": "tanda peseta", | ||||
| "rupee sign": "tanda rupee", | ||||
| "won sign": "tanda won", | ||||
| "new sheqel sign": "tanda sheqel baru", | ||||
| "dong sign": "tanda dong", | ||||
| "kip sign": "tanda kip", | ||||
| "tugrik sign": "tanda tugrik", | ||||
| "drachma sign": "tanda drachma", | ||||
| "german penny symbol": "simbol penny jerman", | ||||
| "peso sign": "tanda peso", | ||||
| "guarani sign": "tanda guarani", | ||||
| "austral sign": "tanda austral", | ||||
| "hryvnia sign": "tanda hryvnia", | ||||
| "cedi sign": "tanda cedi", | ||||
| "livre tournois sign": "tanda livre tournois", | ||||
| "spesmilo sign": "tanda spesmilo", | ||||
| "tenge sign": "tanda tenge", | ||||
| "indian rupee sign": "tanda rupee india", | ||||
| "turkish lira sign": "tanda lira turki", | ||||
| "nordic mark sign": "tanda mark nordik", | ||||
| "manat sign": "tanda manat", | ||||
| "ruble sign": "tanda ruble", | ||||
| "yen character": "karakter yen", | ||||
| "yuan character": "karakter yuan", | ||||
| "yuan character, in hong kong and taiwan": "karakter yuan, di hong kong dan taiwan", | ||||
| "yen\/yuan character variant one": "varian satu karakter yen\/yuan", | ||||
| "Loading emoticons...": "Memuat emotikon...", | ||||
| "Could not load emoticons": "Tidak dapat memuat emotikon", | ||||
| "People": "Orang", | ||||
| "Animals and Nature": "Hewan dan Alam", | ||||
| "Food and Drink": "Makanan dan Minuman", | ||||
| "Activity": "Aktivitas", | ||||
| "Travel and Places": "Perjalanan dan Lokasi", | ||||
| "Objects": "Objek", | ||||
| "Flags": "Bendera", | ||||
| "Characters": "Karakter", | ||||
| "Characters (no spaces)": "Karakter (tanpa spasi)", | ||||
| "{0} characters": "{0} karakter", | ||||
| "Error: Form submit field collision.": "Kesalahan: Benturan bidang pengiriman bentuk.", | ||||
| "Error: No form element found.": "Kesalahan: tidak ditemukan elemen bentuk.", | ||||
| "Update": "Perbarui", | ||||
| "Color swatch": "Contoh warna", | ||||
| "Turquoise": "Turquoise", | ||||
| "Green": "Hijau", | ||||
| "Blue": "Biru", | ||||
| "Purple": "Ungu", | ||||
| "Navy Blue": "Biru Navy", | ||||
| "Dark Turquoise": "Turquoise Gelap", | ||||
| "Dark Green": "Hijau Gelap", | ||||
| "Medium Blue": "Biru Medium", | ||||
| "Medium Purple": "Ungu Medium", | ||||
| "Midnight Blue": "Biru Midnight", | ||||
| "Yellow": "Kuning", | ||||
| "Orange": "Jingga", | ||||
| "Red": "Merah", | ||||
| "Light Gray": "Abu Muda", | ||||
| "Gray": "Abu-abu", | ||||
| "Dark Yellow": "Kuning Gelap", | ||||
| "Dark Orange": "Jingga Gelap", | ||||
| "Dark Red": "Merah Gelap", | ||||
| "Medium Gray": "Abu Medium", | ||||
| "Dark Gray": "Abu Gelap", | ||||
| "Light Green": "Hijau Muda", | ||||
| "Light Yellow": "Kuning Muda", | ||||
| "Light Red": "Merah Muda", | ||||
| "Light Purple": "Ungu Muda", | ||||
| "Light Blue": "Biru Muda", | ||||
| "Dark Purple": "Ungu Gelap", | ||||
| "Dark Blue": "Biru Gelap", | ||||
| "Black": "Hitam", | ||||
| "White": "Putih", | ||||
| "Switch to or from fullscreen mode": "Alihkan ke atau dari mode layar penuh", | ||||
| "Open help dialog": "Buka dialog bantuan", | ||||
| "history": "riwayat", | ||||
| "styles": "gaya", | ||||
| "formatting": "pemformatan", | ||||
| "alignment": "penyejajaran", | ||||
| "indentation": "indentasi", | ||||
| "permanent pen": "pena permanen", | ||||
| "comments": "komentar", | ||||
| "Format Painter": "Format Pelukis", | ||||
| "Insert\/edit iframe": "Masukkan\/edit iframe", | ||||
| "Capitalization": "Kapitalisasi", | ||||
| "lowercase": "huruf kecil", | ||||
| "UPPERCASE": "HURUF BESAR", | ||||
| "Title Case": "Huruf Judul", | ||||
| "Permanent Pen Properties": "Properti Pena Permanen", | ||||
| "Permanent pen properties...": "Properti pena permanen...", | ||||
| "Font": "Huruf", | ||||
| "Size": "Ukuran", | ||||
| "More...": "Lainnya...", | ||||
| "Spellcheck Language": "Periksa Ejaan Bahasa", | ||||
| "Select...": "Pilih...", | ||||
| "Preferences": "Preferensi", | ||||
| "Yes": "Ya", | ||||
| "No": "Tidak", | ||||
| "Keyboard Navigation": "Navigasi Keyboard", | ||||
| "Version": "Versi", | ||||
| "Anchor": "Jangkar", | ||||
| "Special character": "Spesial karakter", | ||||
| "Code sample": "Contoh kode", | ||||
| "Color": "Warna", | ||||
| "Emoticons": "Emotikon", | ||||
| "Document properties": "Properti dokumwn", | ||||
| "Image": "Gambar", | ||||
| "Insert link": "Sisipkan tautan", | ||||
| "Target": "Jendela tujuan", | ||||
| "Link": "Tautan", | ||||
| "Poster": "Penulis", | ||||
| "Media": "Media", | ||||
| "Print": "Cetak", | ||||
| "Prev": "Sebelumnya", | ||||
| "Find and replace": "Cari dan ganti", | ||||
| "Whole words": "Semua kata", | ||||
| "Spellcheck": "Periksa ejaan", | ||||
| "Caption": "Caption", | ||||
| "Insert template": "Sisipkan templat" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/it.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/it.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('it',{ | ||||
| "Redo": "Ripristina", | ||||
| "Undo": "Annulla", | ||||
| "Cut": "Taglia", | ||||
| "Copy": "Copia", | ||||
| "Paste": "Incolla", | ||||
| "Select all": "Seleziona tutto", | ||||
| "New document": "Nuovo documento", | ||||
| "Ok": "OK", | ||||
| "Cancel": "Annulla", | ||||
| "Visual aids": "Aiuti visivi", | ||||
| "Bold": "Grassetto", | ||||
| "Italic": "Corsivo", | ||||
| "Underline": "Sottolineato", | ||||
| "Strikethrough": "Barrato", | ||||
| "Superscript": "Apice", | ||||
| "Subscript": "Pedice", | ||||
| "Clear formatting": "Cancella la formattazione", | ||||
| "Align left": "Allinea a sinistra", | ||||
| "Align center": "Allinea al centro", | ||||
| "Align right": "Allinea a destra", | ||||
| "Justify": "Giustifica", | ||||
| "Bullet list": "Elenco puntato", | ||||
| "Numbered list": "Elenco numerato", | ||||
| "Decrease indent": "Riduci rientro", | ||||
| "Increase indent": "Aumenta rientro", | ||||
| "Close": "Chiudi", | ||||
| "Formats": "Formati", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Il browser non supporta l'accesso diretto alla cartella degli appunti. Usare i tasti di scelta rapida Ctrl+X\/C\/V.", | ||||
| "Headers": "Intestazioni", | ||||
| "Header 1": "Intestazione 1", | ||||
| "Header 2": "Intestazione 2", | ||||
| "Header 3": "Intestazione 3", | ||||
| "Header 4": "Intestazione 4", | ||||
| "Header 5": "Intestazione 5", | ||||
| "Header 6": "Intestazione 6", | ||||
| "Headings": "Titoli", | ||||
| "Heading 1": "Titolo 1", | ||||
| "Heading 2": "Titolo 2", | ||||
| "Heading 3": "Titolo 3", | ||||
| "Heading 4": "Titolo 4", | ||||
| "Heading 5": "Titolo 5", | ||||
| "Heading 6": "Titolo 6", | ||||
| "Preformatted": "Preformattato", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Codice", | ||||
| "Paragraph": "Paragrafo", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "In linea", | ||||
| "Blocks": "Blocchi", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Incolla \u00e8 in modalit\u00e0 testo normale. I contenuti sono incollati come testo normale se non disattivi l'opzione.", | ||||
| "Fonts": "Caratteri", | ||||
| "Font Sizes": "Dimensioni caratteri", | ||||
| "Class": "Classe", | ||||
| "Browse for an image": "Cerca un'immagine", | ||||
| "OR": "OPPURE", | ||||
| "Drop an image here": "Rilasciare un'immagine qui", | ||||
| "Upload": "Carica", | ||||
| "Block": "Blocco", | ||||
| "Align": "Allinea", | ||||
| "Default": "Default", | ||||
| "Circle": "Cerchio", | ||||
| "Disc": "Disco", | ||||
| "Square": "Quadrato", | ||||
| "Lower Alpha": "Alpha Minore", | ||||
| "Lower Greek": "Greek Minore", | ||||
| "Lower Roman": "Roman Minore", | ||||
| "Upper Alpha": "Alpha Superiore", | ||||
| "Upper Roman": "Roman Superiore", | ||||
| "Anchor...": "Ancoraggio...", | ||||
| "Name": "Nome", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "L'id dovrebbe cominciare con una lettera, seguito solo da lettere, numeri, linee, punti, virgole.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Non hai salvato delle modifiche, sei sicuro di andartene?", | ||||
| "Restore last draft": "Ripristina l'ultima bozza.", | ||||
| "Special character...": "Carattere speciale...", | ||||
| "Source code": "Codice Sorgente", | ||||
| "Insert\/Edit code sample": "Inserisci\/Modifica esempio di codice", | ||||
| "Language": "Lingua", | ||||
| "Code sample...": "Esempio di codice...", | ||||
| "Color Picker": "Selezione colori", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Da Sinistra a Destra", | ||||
| "Right to left": "Da Destra a Sinistra", | ||||
| "Emoticons...": "Emoticon...", | ||||
| "Metadata and Document Properties": "Metadata e propriet\u00e0 del documento", | ||||
| "Title": "Titolo", | ||||
| "Keywords": "Parola Chiave", | ||||
| "Description": "Descrizione", | ||||
| "Robots": "Robot", | ||||
| "Author": "Autore", | ||||
| "Encoding": "Codifica", | ||||
| "Fullscreen": "Schermo Intero", | ||||
| "Action": "Azione", | ||||
| "Shortcut": "Scorciatoia", | ||||
| "Help": "Aiuto", | ||||
| "Address": "Indirizzo", | ||||
| "Focus to menubar": "Focus sulla barra del menu", | ||||
| "Focus to toolbar": "Focus sulla barra degli strumenti", | ||||
| "Focus to element path": "Focus sul percorso dell'elemento", | ||||
| "Focus to contextual toolbar": "Focus sulla barra degli strumenti contestuale", | ||||
| "Insert link (if link plugin activated)": "Inserisci link (se il plugin link \u00e8 attivato)", | ||||
| "Save (if save plugin activated)": "Salva (se il plugin save \u00e8 attivato)", | ||||
| "Find (if searchreplace plugin activated)": "Trova (se il plugin searchreplace \u00e8 attivato)", | ||||
| "Plugins installed ({0}):": "Plugin installati ({0}):", | ||||
| "Premium plugins:": "Plugin Premium:", | ||||
| "Learn more...": "Per saperne di pi\u00f9...", | ||||
| "You are using {0}": "Stai usando {0}", | ||||
| "Plugins": "Plugin", | ||||
| "Handy Shortcuts": "Scorciatoia pratica", | ||||
| "Horizontal line": "Linea Orizzontale", | ||||
| "Insert\/edit image": "Aggiungi\/Modifica Immagine", | ||||
| "Image description": "Descrizione Immagine", | ||||
| "Source": "Fonte", | ||||
| "Dimensions": "Dimenzioni", | ||||
| "Constrain proportions": "Mantieni Proporzioni", | ||||
| "General": "Generale", | ||||
| "Advanced": "Avanzato", | ||||
| "Style": "Stile", | ||||
| "Vertical space": "Spazio Verticale", | ||||
| "Horizontal space": "Spazio Orizzontale", | ||||
| "Border": "Bordo", | ||||
| "Insert image": "Inserisci immagine", | ||||
| "Image...": "Immagine...", | ||||
| "Image list": "Elenco immagini", | ||||
| "Rotate counterclockwise": "Ruota in senso antiorario", | ||||
| "Rotate clockwise": "Ruota in senso orario", | ||||
| "Flip vertically": "Rifletti verticalmente", | ||||
| "Flip horizontally": "Rifletti orizzontalmente", | ||||
| "Edit image": "Modifica immagine", | ||||
| "Image options": "Opzioni immagine", | ||||
| "Zoom in": "Ingrandisci", | ||||
| "Zoom out": "Rimpicciolisci", | ||||
| "Crop": "Taglia", | ||||
| "Resize": "Ridimensiona", | ||||
| "Orientation": "Orientamento", | ||||
| "Brightness": "Luminosit\u00e0", | ||||
| "Sharpen": "Contrasta", | ||||
| "Contrast": "Contrasto", | ||||
| "Color levels": "Livelli colore", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Inverti", | ||||
| "Apply": "Applica", | ||||
| "Back": "Indietro", | ||||
| "Insert date\/time": "Inserisci Data\/Ora", | ||||
| "Date\/time": "Data\/Ora", | ||||
| "Insert\/Edit Link": "Inserisci\/modifica collegamento", | ||||
| "Insert\/edit link": "Inserisci\/Modifica Link", | ||||
| "Text to display": "Testo da Visualizzare", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Apri collegamento in...", | ||||
| "Current window": "Finestra corrente", | ||||
| "None": "No", | ||||
| "New window": "Nuova Finestra", | ||||
| "Remove link": "Rimuovi link", | ||||
| "Anchors": "Anchors", | ||||
| "Link...": "Collegamento...", | ||||
| "Paste or type a link": "Incolla o digita un collegamento", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL inserito sembra essere un indirizzo email. Vuoi aggiungere il prefisso necessario mailto:?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL inserito sembra essere un collegamento esterno. Vuoi aggiungere il prefisso necessario http:\/\/?", | ||||
| "Link list": "Elenco link", | ||||
| "Insert video": "Inserisci Video", | ||||
| "Insert\/edit video": "Inserisci\/Modifica Video", | ||||
| "Insert\/edit media": "Inserisci\/Modifica Media", | ||||
| "Alternative source": "Alternativo", | ||||
| "Alternative source URL": "URL sorgente alternativa", | ||||
| "Media poster (Image URL)": "Poster dell'oggetto multimediale (URL dell'immagine)", | ||||
| "Paste your embed code below:": "Incolla il codice d'incorporamento qui:", | ||||
| "Embed": "Incorporare", | ||||
| "Media...": "Oggetto multimediale...", | ||||
| "Nonbreaking space": "Spazio unificatore", | ||||
| "Page break": "Interruzione di pagina", | ||||
| "Paste as text": "incolla come testo", | ||||
| "Preview": "Anteprima", | ||||
| "Print...": "Stampa...", | ||||
| "Save": "Salva", | ||||
| "Find": "Trova", | ||||
| "Replace with": "Sostituisci Con", | ||||
| "Replace": "Sostituisci", | ||||
| "Replace all": "Sostituisci Tutto", | ||||
| "Previous": "Indietro", | ||||
| "Next": "Successivo", | ||||
| "Find and replace...": "Trova e sostituisci...", | ||||
| "Could not find the specified string.": "Impossibile trovare la parola specifica.", | ||||
| "Match case": "Maiuscole\/Minuscole ", | ||||
| "Find whole words only": "Trova solo parole intere", | ||||
| "Spell check": "Controllo ortografia", | ||||
| "Ignore": "Ignora", | ||||
| "Ignore all": "Ignora Tutto", | ||||
| "Finish": "Termina", | ||||
| "Add to Dictionary": "Aggiungi al Dizionario", | ||||
| "Insert table": "Inserisci Tabella", | ||||
| "Table properties": "Propiet\u00e0 della Tabella", | ||||
| "Delete table": "Cancella Tabella", | ||||
| "Cell": "Cella", | ||||
| "Row": "Riga", | ||||
| "Column": "Colonna", | ||||
| "Cell properties": "Propiet\u00e0 della Cella", | ||||
| "Merge cells": "Unisci Cella", | ||||
| "Split cell": "Dividi Cella", | ||||
| "Insert row before": "Inserisci una Riga Prima", | ||||
| "Insert row after": "Inserisci una Riga Dopo", | ||||
| "Delete row": "Cancella Riga", | ||||
| "Row properties": "Propriet\u00e0 della Riga", | ||||
| "Cut row": "Taglia Riga", | ||||
| "Copy row": "Copia Riga", | ||||
| "Paste row before": "Incolla una Riga Prima", | ||||
| "Paste row after": "Incolla una Riga Dopo", | ||||
| "Insert column before": "Inserisci una Colonna Prima", | ||||
| "Insert column after": "Inserisci una Colonna Dopo", | ||||
| "Delete column": "Cancella Colonna", | ||||
| "Cols": "Colonne", | ||||
| "Rows": "Righe", | ||||
| "Width": "Larghezza", | ||||
| "Height": "Altezza", | ||||
| "Cell spacing": "Spaziatura della Cella", | ||||
| "Cell padding": "Padding della Cella", | ||||
| "Show caption": "Mostra didascalia", | ||||
| "Left": "Sinistra", | ||||
| "Center": "Centro", | ||||
| "Right": "Destra", | ||||
| "Cell type": "Tipo di Cella", | ||||
| "Scope": "Campo", | ||||
| "Alignment": "Allineamento", | ||||
| "H Align": "Allineamento H", | ||||
| "V Align": "Allineamento V", | ||||
| "Top": "In alto", | ||||
| "Middle": "In mezzo", | ||||
| "Bottom": "In fondo", | ||||
| "Header cell": "cella d'intestazione", | ||||
| "Row group": "Gruppo di Righe", | ||||
| "Column group": "Gruppo di Colonne", | ||||
| "Row type": "Tipo di Riga", | ||||
| "Header": "Header", | ||||
| "Body": "Body", | ||||
| "Footer": "Footer", | ||||
| "Border color": "Colore bordo", | ||||
| "Insert template...": "Inserisci modello...", | ||||
| "Templates": "Template", | ||||
| "Template": "Modello", | ||||
| "Text color": "Colore Testo", | ||||
| "Background color": "Colore Background", | ||||
| "Custom...": "Personalizzato...", | ||||
| "Custom color": "Colore personalizzato", | ||||
| "No color": "Nessun colore", | ||||
| "Remove color": "Rimuovi colore", | ||||
| "Table of Contents": "Tabella dei contenuti", | ||||
| "Show blocks": "Mostra Blocchi", | ||||
| "Show invisible characters": "Mostra Caratteri Invisibili", | ||||
| "Word count": "Conteggio parole", | ||||
| "Count": "Conteggio", | ||||
| "Document": "Documento", | ||||
| "Selection": "Selezione", | ||||
| "Words": "Parole", | ||||
| "Words: {0}": "Parole: {0}", | ||||
| "{0} words": "{0} parole", | ||||
| "File": "File", | ||||
| "Edit": "Modifica", | ||||
| "Insert": "Inserisci", | ||||
| "View": "Visualiza", | ||||
| "Format": "Formato", | ||||
| "Table": "Tabella", | ||||
| "Tools": "Strumenti", | ||||
| "Powered by {0}": "Fornito da {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Premi ALT-F9 per il men\u00f9. Premi ALT-F10 per la barra degli strumenti. Premi ALT-0 per l'aiuto.", | ||||
| "Image title": "Titolo immagine", | ||||
| "Border width": "Larghezza del bordo", | ||||
| "Border style": "Stile del bordo", | ||||
| "Error": "Errore", | ||||
| "Warn": "Avviso", | ||||
| "Valid": "Valido", | ||||
| "To open the popup, press Shift+Enter": "Per aprire il popup, premere Shift+Invio", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Area di testo RTF. Premere ALT-0 per la guida.", | ||||
| "System Font": "Carattere di sistema", | ||||
| "Failed to upload image: {0}": "Caricamento immagine fallito: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Caricamento plugin fallito: {0} dall'URL {1}", | ||||
| "Failed to load plugin url: {0}": "Caricamento URL plugin fallito: {0}", | ||||
| "Failed to initialize plugin: {0}": "Inizializzazione plugin fallita: {0}", | ||||
| "example": "esempio", | ||||
| "Search": "Cerca", | ||||
| "All": "Tutto", | ||||
| "Currency": "Valuta", | ||||
| "Text": "Testo", | ||||
| "Quotations": "Citazioni", | ||||
| "Mathematical": "Caratteri matematici", | ||||
| "Extended Latin": "Latino esteso", | ||||
| "Symbols": "Simboli", | ||||
| "Arrows": "Frecce", | ||||
| "User Defined": "Definito dall'utente", | ||||
| "dollar sign": "simbolo del dollaro", | ||||
| "currency sign": "simbolo di valuta", | ||||
| "euro-currency sign": "simbolo dell'euro", | ||||
| "colon sign": "simbolo del col\u00f3n", | ||||
| "cruzeiro sign": "simbolo del cruzeiro", | ||||
| "french franc sign": "simbolo del franco francese", | ||||
| "lira sign": "simbolo della lira", | ||||
| "mill sign": "simbolo del mill", | ||||
| "naira sign": "simbolo della naira", | ||||
| "peseta sign": "simbolo della peseta", | ||||
| "rupee sign": "simbolo della rup\u00eca", | ||||
| "won sign": "simbolo del won", | ||||
| "new sheqel sign": "simbolo del nuovo shekel", | ||||
| "dong sign": "simbolo del dong", | ||||
| "kip sign": "simbolo del kip", | ||||
| "tugrik sign": "simbolo del tugrik", | ||||
| "drachma sign": "simbolo della dracma", | ||||
| "german penny symbol": "simbolo del pfennig tedesco", | ||||
| "peso sign": "simbolo del peso", | ||||
| "guarani sign": "simbolo del guaran\u00ec", | ||||
| "austral sign": "simbolo dell'austral", | ||||
| "hryvnia sign": "simbolo della hryvnia", | ||||
| "cedi sign": "simbolo del cedi", | ||||
| "livre tournois sign": "simbolo della lira di Tours", | ||||
| "spesmilo sign": "simbolo dello spesmilo", | ||||
| "tenge sign": "simbolo del tenge", | ||||
| "indian rupee sign": "simbolo della rup\u00eca indiana", | ||||
| "turkish lira sign": "simbolo della lira turca", | ||||
| "nordic mark sign": "simbolo del marco nordico", | ||||
| "manat sign": "simbolo del manat", | ||||
| "ruble sign": "simbolo del rublo", | ||||
| "yen character": "simbolo dello yen", | ||||
| "yuan character": "simbolo dello yuan", | ||||
| "yuan character, in hong kong and taiwan": "simbolo dello yuan, Hong Kong e Taiwan", | ||||
| "yen\/yuan character variant one": "simbolo yen\/yuan variante uno", | ||||
| "Loading emoticons...": "Caricamento emoticon in corso", | ||||
| "Could not load emoticons": "Impossibile caricare emoticon", | ||||
| "People": "Persone", | ||||
| "Animals and Nature": "Animali e natura", | ||||
| "Food and Drink": "Cibi e bevande", | ||||
| "Activity": "Attivit\u00e0", | ||||
| "Travel and Places": "Viaggi e luoghi", | ||||
| "Objects": "Oggetti", | ||||
| "Flags": "Bandiere", | ||||
| "Characters": "Caratteri", | ||||
| "Characters (no spaces)": "Caratteri (senza spazi)", | ||||
| "{0} characters": "{0} caratteri", | ||||
| "Error: Form submit field collision.": "Errore: Conflitto di campi nel modulo inviato.", | ||||
| "Error: No form element found.": "Errore: Nessun elemento di modulo trovato.", | ||||
| "Update": "Aggiorna", | ||||
| "Color swatch": "Campione di colore", | ||||
| "Turquoise": "Turchese", | ||||
| "Green": "Verde", | ||||
| "Blue": "Blu", | ||||
| "Purple": "Viola", | ||||
| "Navy Blue": "Blu scuro", | ||||
| "Dark Turquoise": "Turchese scuro", | ||||
| "Dark Green": "Verde scuro", | ||||
| "Medium Blue": "Blu medio", | ||||
| "Medium Purple": "Viola medio", | ||||
| "Midnight Blue": "Blu notte", | ||||
| "Yellow": "Giallo", | ||||
| "Orange": "Arancio", | ||||
| "Red": "Rosso", | ||||
| "Light Gray": "Grigio chiaro", | ||||
| "Gray": "Grigio", | ||||
| "Dark Yellow": "Giallo scuro", | ||||
| "Dark Orange": "Arancio scuro", | ||||
| "Dark Red": "Rosso scuro", | ||||
| "Medium Gray": "Grigio medio", | ||||
| "Dark Gray": "Grigio scuro", | ||||
| "Light Green": "Verde chiaro", | ||||
| "Light Yellow": "Giallo chiaro", | ||||
| "Light Red": "Rosso chiaro", | ||||
| "Light Purple": "Viola chiaro", | ||||
| "Light Blue": "Azzurro", | ||||
| "Dark Purple": "Viola scuro", | ||||
| "Dark Blue": "Blu scuro", | ||||
| "Black": "Nero", | ||||
| "White": "Bianco", | ||||
| "Switch to or from fullscreen mode": "Attiva\/disattiva la modalit\u00e0 schermo intero", | ||||
| "Open help dialog": "Apri la finestra di aiuto", | ||||
| "history": "cronologia", | ||||
| "styles": "stili", | ||||
| "formatting": "formattazione", | ||||
| "alignment": "allineamento", | ||||
| "indentation": "indentazione", | ||||
| "permanent pen": "penna indelebile", | ||||
| "comments": "commenti", | ||||
| "Format Painter": "Copia formattazione", | ||||
| "Insert\/edit iframe": "Inserisci\/modifica iframe", | ||||
| "Capitalization": "Maiuscole\/minuscole", | ||||
| "lowercase": "minuscole", | ||||
| "UPPERCASE": "MAIUSCOLE", | ||||
| "Title Case": "Iniziali Maiuscole", | ||||
| "Permanent Pen Properties": "Propriet\u00e0 penna indelebile", | ||||
| "Permanent pen properties...": "Propriet\u00e0 penna indelebile...", | ||||
| "Font": "Carattere", | ||||
| "Size": "Dimensione carattere", | ||||
| "More...": "Altro\u2026", | ||||
| "Spellcheck Language": "Lingua controllo ortografico", | ||||
| "Select...": "Seleziona...", | ||||
| "Preferences": "Preferenze", | ||||
| "Yes": "S\u00ec", | ||||
| "No": "No", | ||||
| "Keyboard Navigation": "Navigazione tramite tastiera", | ||||
| "Version": "Versione", | ||||
| "Anchor": "Fissa", | ||||
| "Special character": "Carattere Speciale", | ||||
| "Code sample": "Esempio di codice", | ||||
| "Color": "Colore", | ||||
| "Emoticons": "Emoction", | ||||
| "Document properties": "Propriet\u00e0 Documento", | ||||
| "Image": "Immagine", | ||||
| "Insert link": "Inserisci il Link", | ||||
| "Target": "Target", | ||||
| "Link": "Collegamento", | ||||
| "Poster": "Anteprima", | ||||
| "Media": "Media", | ||||
| "Print": "Stampa", | ||||
| "Prev": "Precedente", | ||||
| "Find and replace": "Trova e Sostituisci", | ||||
| "Whole words": "Parole Sbagliate", | ||||
| "Spellcheck": "Controllo ortografico", | ||||
| "Caption": "Didascalia", | ||||
| "Insert template": "Inserisci Template" | ||||
| }); | ||||
							
								
								
									
										370
									
								
								Modules/TinyMCE/langs/it_IT.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										370
									
								
								Modules/TinyMCE/langs/it_IT.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,370 @@ | ||||
| tinymce.addI18n('it_IT',{ | ||||
| "Redo": "Ripristina", | ||||
| "Undo": "Annulla", | ||||
| "Cut": "Taglia", | ||||
| "Copy": "Copia", | ||||
| "Paste": "Incolla", | ||||
| "Select all": "Seleziona tutto", | ||||
| "New document": "Nuovo documento", | ||||
| "Ok": "OK", | ||||
| "Cancel": "Annulla", | ||||
| "Visual aids": "Aiuti visivi", | ||||
| "Bold": "Grassetto", | ||||
| "Italic": "Corsivo", | ||||
| "Underline": "Sottolineato", | ||||
| "Strikethrough": "Barrato", | ||||
| "Superscript": "Apice", | ||||
| "Subscript": "Pedice", | ||||
| "Clear formatting": "Cancella la formattazione", | ||||
| "Align left": "Allinea a sinistra", | ||||
| "Align center": "Allinea al centro", | ||||
| "Align right": "Allinea a destra", | ||||
| "Justify": "Giustifica", | ||||
| "Bullet list": "Elenco puntato", | ||||
| "Numbered list": "Elenco numerato", | ||||
| "Decrease indent": "Riduci rientro", | ||||
| "Increase indent": "Aumenta rientro", | ||||
| "Close": "Chiudi", | ||||
| "Formats": "Formati", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Il browser non supporta l'accesso diretto alla cartella degli appunti. Usare i tasti di scelta rapida Ctrl+X\/C\/V.", | ||||
| "Headers": "Intestazioni", | ||||
| "Header 1": "Intestazione 1", | ||||
| "Header 2": "Intestazione 2", | ||||
| "Header 3": "Intestazione 3", | ||||
| "Header 4": "Intestazione 4", | ||||
| "Header 5": "Intestazione 5", | ||||
| "Header 6": "Intestazione 6", | ||||
| "Headings": "Titoli", | ||||
| "Heading 1": "Titolo 1", | ||||
| "Heading 2": "Titolo 2", | ||||
| "Heading 3": "Titolo 3", | ||||
| "Heading 4": "Titolo 4", | ||||
| "Heading 5": "Titolo 5", | ||||
| "Heading 6": "Titolo 6", | ||||
| "Preformatted": "Preformattato", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Codice", | ||||
| "Paragraph": "Paragrafo", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "In linea", | ||||
| "Blocks": "Blocchi", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Incolla \u00e8 in modalit\u00e0 testo normale. I contenuti saranno incollati come testo normale se non viene disattivata questa opzione.", | ||||
| "Fonts": "Caratteri", | ||||
| "Font Sizes": "Dimensioni caratteri", | ||||
| "Class": "Classe", | ||||
| "Browse for an image": "Cerca un'immagine", | ||||
| "OR": "OPPURE", | ||||
| "Drop an image here": "Rilasciare un'immagine qui", | ||||
| "Upload": "Carica", | ||||
| "Block": "Blocco", | ||||
| "Align": "Allinea", | ||||
| "Default": "Predefinito", | ||||
| "Circle": "Circolo", | ||||
| "Disc": "Disco", | ||||
| "Square": "Quadrato", | ||||
| "Lower Alpha": "Alfabetico minuscolo", | ||||
| "Lower Greek": "Greco minuscolo", | ||||
| "Lower Roman": "Romano minuscolo", | ||||
| "Upper Alpha": "Alfabetico maiuscolo", | ||||
| "Upper Roman": "Romano maiuscolo", | ||||
| "Anchor...": "Ancoraggio...", | ||||
| "Name": "Nome", | ||||
| "Id": "ID", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "L'ID dovrebbe cominciare con una lettera, seguita unicamente da lettere, numeri, linee, punti, due punti o caratteri di sottolineatura.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Ci sono modifiche non salvate, si \u00e8 sicuro di volere uscire?", | ||||
| "Restore last draft": "Ripristina l'ultima bozza", | ||||
| "Special characters...": "Caratteri speciali...", | ||||
| "Source code": "Codice sorgente", | ||||
| "Insert\/Edit code sample": "Inserisci\/modifica esempio di codice", | ||||
| "Language": "Lingua", | ||||
| "Code sample...": "Esempio di codice...", | ||||
| "Color Picker": "Selezione colori", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Da sinistra a destra", | ||||
| "Right to left": "Da destra a sinistra", | ||||
| "Emoticons...": "Emoticon...", | ||||
| "Metadata and Document Properties": "Metadata e propriet\u00e0 del documento", | ||||
| "Title": "Titolo", | ||||
| "Keywords": "Parole chiave", | ||||
| "Description": "Descrizione", | ||||
| "Robots": "Robot", | ||||
| "Author": "Autore", | ||||
| "Encoding": "Codifica", | ||||
| "Fullscreen": "A tutto schermo", | ||||
| "Action": "Azione", | ||||
| "Shortcut": "Collegamento", | ||||
| "Help": "Guida", | ||||
| "Address": "Indirizzo", | ||||
| "Focus to menubar": "Imposta stato attivo per la barra dei menu", | ||||
| "Focus to toolbar": "Imposta stato attivo per la barra degli strumenti", | ||||
| "Focus to element path": "Imposta stato attivo per il percorso dell'elemento", | ||||
| "Focus to contextual toolbar": "Imposta stato attivo per la barra degli strumenti contestuale", | ||||
| "Insert link (if link plugin activated)": "Inserisci un collegamento (se \u00e8 attivato l'apposito plugin)", | ||||
| "Save (if save plugin activated)": "Salva (se \u00e8 attivato l'apposito plugin)", | ||||
| "Find (if searchreplace plugin activated)": "Trova (se \u00e8 attivato l'apposito plugin)", | ||||
| "Plugins installed ({0}):": "Plugin installati ({0}):", | ||||
| "Premium plugins:": "Plugin Premium:", | ||||
| "Learn more...": "Maggiori informazioni...", | ||||
| "You are using {0}": "Si sta utilizzando {0}", | ||||
| "Plugins": "Plugin", | ||||
| "Handy Shortcuts": "Scorciatoie utili", | ||||
| "Horizontal line": "Linea orizzontale", | ||||
| "Insert\/edit image": "Inserisci\/modifica immagine", | ||||
| "Image description": "Descrizione immagine", | ||||
| "Source": "Fonte", | ||||
| "Dimensions": "Dimensioni", | ||||
| "Constrain proportions": "Mantieni proporzioni", | ||||
| "General": "Generali", | ||||
| "Advanced": "Avanzate", | ||||
| "Style": "Stile", | ||||
| "Vertical space": "Spazio verticale", | ||||
| "Horizontal space": "Spazio orizzontale", | ||||
| "Border": "Bordo", | ||||
| "Insert image": "Inserisci immagine", | ||||
| "Image...": "Immagine...", | ||||
| "Image list": "Elenco immagini", | ||||
| "Rotate counterclockwise": "Ruota in senso antiorario", | ||||
| "Rotate clockwise": "Ruota in senso orario", | ||||
| "Flip vertically": "Rifletti verticalmente", | ||||
| "Flip horizontally": "Rifletti orizzontalmente", | ||||
| "Edit image": "Modifica immagine", | ||||
| "Image options": "Opzioni immagine", | ||||
| "Zoom in": "Ingrandisci", | ||||
| "Zoom out": "Zoom indietro", | ||||
| "Crop": "Ritaglia", | ||||
| "Resize": "Ridimensiona", | ||||
| "Orientation": "Orientamento", | ||||
| "Brightness": "Luminosit\u00e0", | ||||
| "Sharpen": "Nitidezza", | ||||
| "Contrast": "Contrasto", | ||||
| "Color levels": "Livelli di colore", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Inverti", | ||||
| "Apply": "Applica", | ||||
| "Back": "Indietro", | ||||
| "Insert date\/time": "Inserisci data\/ora", | ||||
| "Date\/time": "Data\/ora", | ||||
| "Insert\/Edit Link": "Inserisci\/modifica collegamento", | ||||
| "Insert\/edit link": "Inserisci\/modifica collegamento", | ||||
| "Text to display": "Testo da visualizzare", | ||||
| "Url": "URL", | ||||
| "Open link in...": "Apri collegamento in...", | ||||
| "Current window": "Finestra corrente", | ||||
| "None": "Nessuno", | ||||
| "New window": "Nuova finestra", | ||||
| "Remove link": "Rimuovi collegamento", | ||||
| "Anchors": "Ancoraggi", | ||||
| "Link...": "Collegamento...", | ||||
| "Paste or type a link": "Incolla o digita un collegamento", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL inserito sembra essere un indirizzo email. Si vuole aggiungere il necessario prefisso mailto:?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL inserito sembra essere un collegamento esterno. Si vuole aggiungere il necessario prefisso http:\/\/?", | ||||
| "Link list": "Elenco collegamenti", | ||||
| "Insert video": "Inserisci video", | ||||
| "Insert\/edit video": "Inserisci\/modifica video", | ||||
| "Insert\/edit media": "Inserisci\/modifica oggetti multimediali", | ||||
| "Alternative source": "Sorgente alternativa", | ||||
| "Alternative source URL": "URL sorgente alternativa", | ||||
| "Media poster (Image URL)": "Poster dell'oggetto multimediale (URL dell'immagine)", | ||||
| "Paste your embed code below:": "Incolla il codice d'incorporamento di seguito:", | ||||
| "Embed": "Incorpora", | ||||
| "Media...": "Oggetto multimediale...", | ||||
| "Nonbreaking space": "Spazio indivisibile", | ||||
| "Page break": "Interruzione di pagina", | ||||
| "Paste as text": "Incolla senza formattazioni", | ||||
| "Preview": "Anteprima", | ||||
| "Print...": "Stampa...", | ||||
| "Save": "Salva", | ||||
| "Find": "Trova", | ||||
| "Replace with": "Sostituisci con", | ||||
| "Replace": "Sostituisci", | ||||
| "Replace all": "Sostituisci tutto", | ||||
| "Previous": "Indietro", | ||||
| "Next": "Avanti", | ||||
| "Find and replace...": "Trova e sostituisci...", | ||||
| "Could not find the specified string.": "Impossibile trovare la stringa specificata.", | ||||
| "Match case": "Maiuscole\/minuscole", | ||||
| "Find whole words only": "Trova solo parole intere", | ||||
| "Spell check": "Controllo ortografia", | ||||
| "Ignore": "Ignora", | ||||
| "Ignore all": "Ignora tutto", | ||||
| "Finish": "Fine", | ||||
| "Add to Dictionary": "Aggiungi al dizionario", | ||||
| "Insert table": "Inserisci tabella", | ||||
| "Table properties": "Propriet\u00e0 della tabella", | ||||
| "Delete table": "Elimina tabella", | ||||
| "Cell": "Cella", | ||||
| "Row": "Riga", | ||||
| "Column": "Colonna", | ||||
| "Cell properties": "Propriet\u00e0 cella", | ||||
| "Merge cells": "Unisci le celle", | ||||
| "Split cell": "Dividi la cella", | ||||
| "Insert row before": "Inserisci riga prima", | ||||
| "Insert row after": "Inserisci riga dopo", | ||||
| "Delete row": "Elimina riga", | ||||
| "Row properties": "Propriet\u00e0 della riga", | ||||
| "Cut row": "Taglia riga", | ||||
| "Copy row": "Copia riga", | ||||
| "Paste row before": "Incolla riga prima", | ||||
| "Paste row after": "Incolla riga dopo", | ||||
| "Insert column before": "Inserisci colonna prima", | ||||
| "Insert column after": "Inserisci colonna dopo", | ||||
| "Delete column": "Elimina colonna", | ||||
| "Cols": "Colonne", | ||||
| "Rows": "Righe", | ||||
| "Width": "Larghezza", | ||||
| "Height": "Altezza", | ||||
| "Cell spacing": "Spaziatura tra celle", | ||||
| "Cell padding": "Spaziatura interna celle", | ||||
| "Show caption": "Mostra didascalia", | ||||
| "Left": "Sinistra", | ||||
| "Center": "Centro", | ||||
| "Right": "Destra", | ||||
| "Cell type": "Tipo di cella", | ||||
| "Scope": "Ambito", | ||||
| "Alignment": "Allineamento", | ||||
| "H Align": "Allineamento H", | ||||
| "V Align": "Allineamento V", | ||||
| "Top": "In alto", | ||||
| "Middle": "Centrato", | ||||
| "Bottom": "In basso", | ||||
| "Header cell": "Cella d'intestazione", | ||||
| "Row group": "Gruppo di righe", | ||||
| "Column group": "Gruppo di colonne", | ||||
| "Row type": "Tipo di riga", | ||||
| "Header": "Intestazione", | ||||
| "Body": "Corpo", | ||||
| "Footer": "Pi\u00e8 di pagina", | ||||
| "Border color": "Colore del bordo", | ||||
| "Insert template...": "Inserisci modello...", | ||||
| "Templates": "Modelli", | ||||
| "Template": "Modello", | ||||
| "Text color": "Colore testo", | ||||
| "Background color": "Colore dello sfondo", | ||||
| "Custom...": "Personalizzato...", | ||||
| "Custom color": "Colore personalizzato", | ||||
| "No color": "Nessun colore", | ||||
| "Remove color": "Rimuovi colore", | ||||
| "Table of Contents": "Sommario", | ||||
| "Show blocks": "Mostra blocchi", | ||||
| "Show invisible characters": "Mostra caratteri invisibili", | ||||
| "Word count": "Conteggio parole", | ||||
| "Words: {0}": "Parole: {0}", | ||||
| "{0} words": "{0} parole", | ||||
| "File": "File", | ||||
| "Edit": "Modifica", | ||||
| "Insert": "Inserisci", | ||||
| "View": "Visualizza", | ||||
| "Format": "Formato", | ||||
| "Table": "Tabella", | ||||
| "Tools": "Strumenti", | ||||
| "Powered by {0}": "Con tecnologia {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Area di testo RTF. Premere ALT-F9 per il menu. Premere ALT-F10 per la barra degli strumenti. Premere ALT-0 per la guida.", | ||||
| "Image title": "Titolo immagine", | ||||
| "Border width": "Larghezza del bordo", | ||||
| "Border style": "Stile del bordo", | ||||
| "Error": "Errore", | ||||
| "Warn": "Avviso", | ||||
| "Valid": "Valido", | ||||
| "To open the popup, press Shift+Enter": "Per aprire il popup, premere Shift+Invio", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Area di testo RTF. Premere ALT-0 per la guida.", | ||||
| "System Font": "Carattere di sistema", | ||||
| "Failed to upload image: {0}": "Caricamento immagine fallito: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Caricamento plugin fallito: {0} dall'URL {1}", | ||||
| "Failed to load plugin url: {0}": "Caricamento URL plugin fallito: {0}", | ||||
| "Failed to initialize plugin: {0}": "Inizializzazione plugin fallita: {0}", | ||||
| "example": "esempio", | ||||
| "Search": "Cerca", | ||||
| "All": "Tutto", | ||||
| "Currency": "Valuta", | ||||
| "Text": "Testo", | ||||
| "Quotations": "Citazioni", | ||||
| "Mathematical": "Caratteri matematici", | ||||
| "Extended Latin": "Latino esteso", | ||||
| "Symbols": "Simboli", | ||||
| "Arrows": "Frecce", | ||||
| "User Defined": "Definito dall'utente", | ||||
| "dollar sign": "simbolo del dollaro", | ||||
| "currency sign": "simbolo di valuta", | ||||
| "euro-currency sign": "simbolo dell'euro", | ||||
| "colon sign": "simbolo del col\u00f3n", | ||||
| "cruzeiro sign": "simbolo del cruzeiro", | ||||
| "french franc sign": "simbolo del franco francese", | ||||
| "lira sign": "simbolo della lira", | ||||
| "mill sign": "simbolo del mill", | ||||
| "naira sign": "simbolo della naira", | ||||
| "peseta sign": "simbolo della peseta", | ||||
| "rupee sign": "simbolo della rup\u00eca", | ||||
| "won sign": "simbolo del won", | ||||
| "new sheqel sign": "simbolo del nuovo shekel", | ||||
| "dong sign": "simbolo del dong", | ||||
| "kip sign": "simbolo del kip", | ||||
| "tugrik sign": "simbolo del tugrik", | ||||
| "drachma sign": "simbolo della dracma", | ||||
| "german penny symbol": "simbolo del pfennig tedesco", | ||||
| "peso sign": "simbolo del peso", | ||||
| "guarani sign": "simbolo del guaran\u00ec", | ||||
| "austral sign": "simbolo dell'austral", | ||||
| "hryvnia sign": "simbolo della hryvnia", | ||||
| "cedi sign": "simbolo del cedi", | ||||
| "livre tournois sign": "simbolo della lira di Tours", | ||||
| "spesmilo sign": "simbolo dello spesmilo", | ||||
| "tenge sign": "simbolo del tenge", | ||||
| "indian rupee sign": "simbolo della rup\u00eca indiana", | ||||
| "turkish lira sign": "simbolo della lira turca", | ||||
| "nordic mark sign": "simbolo del marco nordico", | ||||
| "manat sign": "simbolo del manat", | ||||
| "ruble sign": "simbolo del rublo", | ||||
| "yen character": "simbolo dello yen", | ||||
| "yuan character": "simbolo dello yuan", | ||||
| "yuan character, in hong kong and taiwan": "simbolo dello yuan, Hong Kong e Taiwan", | ||||
| "yen\/yuan character variant one": "simbolo yen\/yuan variante uno", | ||||
| "Loading emoticons...": "Caricamento emoticon in corso", | ||||
| "Could not load emoticons": "Impossibile caricare emoticon", | ||||
| "People": "Persone", | ||||
| "Animals and Nature": "Animali e natura", | ||||
| "Food and Drink": "Cibi e bevande", | ||||
| "Activity": "Attivit\u00e0", | ||||
| "Travel and Places": "Viaggi e luoghi", | ||||
| "Objects": "Oggetti", | ||||
| "Flags": "Bandiere", | ||||
| "Characters": "Caratteri", | ||||
| "Characters (no spaces)": "Caratteri (senza spazi)", | ||||
| "Error: Form submit field collision.": "Errore: Conflitto di campi nel modulo inviato.", | ||||
| "Error: No form element found.": "Errore: Nessun elemento di modulo trovato.", | ||||
| "Update": "Aggiorna", | ||||
| "Color swatch": "Campione di colore", | ||||
| "Turquoise": "Turchese", | ||||
| "Green": "Verde", | ||||
| "Blue": "Blu", | ||||
| "Purple": "Viola", | ||||
| "Navy Blue": "Blu scuro", | ||||
| "Dark Turquoise": "Turchese scuro", | ||||
| "Dark Green": "Verde scuro", | ||||
| "Medium Blue": "Blu medio", | ||||
| "Medium Purple": "Viola medio", | ||||
| "Midnight Blue": "Blu notte", | ||||
| "Yellow": "Giallo", | ||||
| "Orange": "Arancio", | ||||
| "Red": "Rosso", | ||||
| "Light Gray": "Grigio chiaro", | ||||
| "Gray": "Grigio", | ||||
| "Dark Yellow": "Giallo scuro", | ||||
| "Dark Orange": "Arancio scuro", | ||||
| "Dark Red": "Rosso scuro", | ||||
| "Medium Gray": "Grigio medio", | ||||
| "Dark Gray": "Grigio scuro", | ||||
| "Black": "Nero", | ||||
| "White": "Bianco", | ||||
| "Switch to or from fullscreen mode": "Attiva\/disattiva la modalit\u00e0 schermo intero", | ||||
| "Open help dialog": "Apri la finestra di aiuto", | ||||
| "history": "cronologia", | ||||
| "styles": "stili", | ||||
| "formatting": "formattazione", | ||||
| "alignment": "allineamento", | ||||
| "indentation": "indentazione", | ||||
| "permanent pen": "penna indelebile", | ||||
| "comments": "commenti" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/ja.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/ja.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('ja',{ | ||||
| "Redo": "\u3084\u308a\u76f4\u3057", | ||||
| "Undo": "\u5143\u306b\u623b\u3059", | ||||
| "Cut": "\u5207\u308a\u53d6\u308a", | ||||
| "Copy": "\u30b3\u30d4\u30fc", | ||||
| "Paste": "\u8cbc\u308a\u4ed8\u3051", | ||||
| "Select all": "\u3059\u3079\u3066\u9078\u629e", | ||||
| "New document": "\u65b0\u898f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8", | ||||
| "Ok": "OK", | ||||
| "Cancel": "\u53d6\u6d88", | ||||
| "Visual aids": "\u8868\u306e\u67a0\u7dda\u3092\u70b9\u7dda\u3067\u8868\u793a", | ||||
| "Bold": "\u592a\u5b57", | ||||
| "Italic": "\u659c\u4f53", | ||||
| "Underline": "\u4e0b\u7dda", | ||||
| "Strikethrough": "\u53d6\u6d88\u7dda", | ||||
| "Superscript": "\u4e0a\u4ed8\u304d", | ||||
| "Subscript": "\u4e0b\u4ed8\u304d", | ||||
| "Clear formatting": "\u66f8\u5f0f\u3092\u30af\u30ea\u30a2", | ||||
| "Align left": "\u5de6\u63c3\u3048", | ||||
| "Align center": "\u4e2d\u592e\u63c3\u3048", | ||||
| "Align right": "\u53f3\u63c3\u3048", | ||||
| "Justify": "\u4e21\u7aef\u63c3\u3048", | ||||
| "Bullet list": "\u7b87\u6761\u66f8\u304d", | ||||
| "Numbered list": "\u756a\u53f7\u4ed8\u304d\u7b87\u6761\u66f8\u304d", | ||||
| "Decrease indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u6e1b\u3089\u3059", | ||||
| "Increase indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u5897\u3084\u3059", | ||||
| "Close": "\u9589\u3058\u308b", | ||||
| "Formats": "\u66f8\u5f0f", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u304a\u4f7f\u3044\u306e\u30d6\u30e9\u30a6\u30b6\u3067\u306f\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u6a5f\u80fd\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002\u30ad\u30fc\u30dc\u30fc\u30c9\u306e\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\uff08Ctrl+X, Ctrl+C, Ctrl+V\uff09\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002", | ||||
| "Headers": "\u30d8\u30c3\u30c0\u30fc", | ||||
| "Header 1": "\u30d8\u30c3\u30c0\u30fc 1", | ||||
| "Header 2": "\u30d8\u30c3\u30c0\u30fc 2", | ||||
| "Header 3": "\u30d8\u30c3\u30c0\u30fc 3", | ||||
| "Header 4": "\u30d8\u30c3\u30c0\u30fc 4", | ||||
| "Header 5": "\u30d8\u30c3\u30c0\u30fc 5", | ||||
| "Header 6": "\u30d8\u30c3\u30c0\u30fc 6", | ||||
| "Headings": "\u898b\u51fa\u3057", | ||||
| "Heading 1": "\u898b\u51fa\u30571", | ||||
| "Heading 2": "\u898b\u51fa\u30572", | ||||
| "Heading 3": "\u898b\u51fa\u30573", | ||||
| "Heading 4": "\u898b\u51fa\u30574", | ||||
| "Heading 5": "\u898b\u51fa\u30575", | ||||
| "Heading 6": "\u898b\u51fa\u30576", | ||||
| "Preformatted": "\u66f8\u5f0f\u8a2d\u5b9a\u6e08\u307f", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "\u30b3\u30fc\u30c9", | ||||
| "Paragraph": "\u6bb5\u843d", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "\u30a4\u30f3\u30e9\u30a4\u30f3", | ||||
| "Blocks": "\u30d6\u30ed\u30c3\u30af", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u8cbc\u308a\u4ed8\u3051\u306f\u73fe\u5728\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u30e2\u30fc\u30c9\u3067\u3059\u3002\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u30aa\u30d5\u306b\u3057\u306a\u3044\u9650\u308a\u5185\u5bb9\u306f\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051\u3089\u308c\u307e\u3059\u3002", | ||||
| "Fonts": "\u30d5\u30a9\u30f3\u30c8", | ||||
| "Font Sizes": "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba", | ||||
| "Class": "\u30af\u30e9\u30b9", | ||||
| "Browse for an image": "\u753b\u50cf\u3092\u53c2\u7167", | ||||
| "OR": "OR", | ||||
| "Drop an image here": "\u3053\u3053\u306b\u753b\u50cf\u3092\u30c9\u30ed\u30c3\u30d7", | ||||
| "Upload": "\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9", | ||||
| "Block": "\u30d6\u30ed\u30c3\u30af", | ||||
| "Align": "\u914d\u7f6e", | ||||
| "Default": "\u30c7\u30d5\u30a9\u30eb\u30c8", | ||||
| "Circle": "\u5186", | ||||
| "Disc": "\u70b9", | ||||
| "Square": "\u56db\u89d2", | ||||
| "Lower Alpha": "\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8", | ||||
| "Lower Greek": "\u5c0f\u6587\u5b57\u306e\u30ae\u30ea\u30b7\u30e3\u6587\u5b57", | ||||
| "Lower Roman": "\u5c0f\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57", | ||||
| "Upper Alpha": "\u5927\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8", | ||||
| "Upper Roman": "\u5927\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57", | ||||
| "Anchor...": "\u30a2\u30f3\u30ab\u30fc...", | ||||
| "Name": "\u30a2\u30f3\u30ab\u30fc\u540d", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID\u306f\u6587\u5b57\u3067\u59cb\u307e\u308a\u3001\u6587\u5b57\u3001\u6570\u5b57\u3001\u30c0\u30c3\u30b7\u30e5\u3001\u30c9\u30c3\u30c8\u3001\u30b3\u30ed\u30f3\u307e\u305f\u306f\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2\u3067\u59cb\u307e\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u307e\u3060\u4fdd\u5b58\u3057\u3066\u3044\u306a\u3044\u5909\u66f4\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u672c\u5f53\u306b\u3053\u306e\u30da\u30fc\u30b8\u3092\u96e2\u308c\u307e\u3059\u304b\uff1f", | ||||
| "Restore last draft": "\u524d\u56de\u306e\u4e0b\u66f8\u304d\u3092\u5fa9\u6d3b\u3055\u305b\u308b", | ||||
| "Special character...": "\u7279\u6b8a\u6587\u5b57...", | ||||
| "Source code": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9", | ||||
| "Insert\/Edit code sample": "\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb\u306e\u633f\u5165\u30fb\u7de8\u96c6", | ||||
| "Language": "\u8a00\u8a9e", | ||||
| "Code sample...": "\u30b3\u30fc\u30c9\u306e\u30b5\u30f3\u30d7\u30eb...", | ||||
| "Color Picker": "\u30ab\u30e9\u30fc\u30d4\u30c3\u30ab\u30fc", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "\u5de6\u304b\u3089\u53f3", | ||||
| "Right to left": "\u53f3\u304b\u3089\u5de6", | ||||
| "Emoticons...": "\u7d75\u6587\u5b57...", | ||||
| "Metadata and Document Properties": "\u30e1\u30bf\u30c7\u30fc\u30bf\u3068\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30d7\u30ed\u30d1\u30c6\u30a3", | ||||
| "Title": "\u30bf\u30a4\u30c8\u30eb", | ||||
| "Keywords": "\u30ad\u30fc\u30ef\u30fc\u30c9", | ||||
| "Description": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u5185\u5bb9", | ||||
| "Robots": "\u30ed\u30dc\u30c3\u30c4", | ||||
| "Author": "\u8457\u8005", | ||||
| "Encoding": "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0", | ||||
| "Fullscreen": "\u5168\u753b\u9762\u8868\u793a", | ||||
| "Action": "\u30a2\u30af\u30b7\u30e7\u30f3", | ||||
| "Shortcut": "\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8", | ||||
| "Help": "\u30d8\u30eb\u30d7", | ||||
| "Address": "\u30a2\u30c9\u30ec\u30b9", | ||||
| "Focus to menubar": "\u30e1\u30cb\u30e5\u30fc\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9", | ||||
| "Focus to toolbar": "\u30c4\u30fc\u30eb\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9", | ||||
| "Focus to element path": "\u8981\u7d20\u30d1\u30b9\u306b\u30d5\u30a9\u30fc\u30ab\u30b9", | ||||
| "Focus to contextual toolbar": "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u30c4\u30fc\u30eb\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9", | ||||
| "Insert link (if link plugin activated)": "\u30ea\u30f3\u30af\u3092\u633f\u5165 (\u30ea\u30f3\u30af\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)", | ||||
| "Save (if save plugin activated)": "\u4fdd\u5b58 (\u4fdd\u5b58\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)", | ||||
| "Find (if searchreplace plugin activated)": "\u691c\u7d22(\u7f6e\u63db\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)", | ||||
| "Plugins installed ({0}):": "\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e08\u30d7\u30e9\u30b0\u30a4\u30f3 ({0}):", | ||||
| "Premium plugins:": "\u30d7\u30ec\u30df\u30a2\u30e0\u30d7\u30e9\u30b0\u30a4\u30f3:", | ||||
| "Learn more...": "\u8a73\u7d30...", | ||||
| "You are using {0}": "\u3042\u306a\u305f\u306f {0} \u4f7f\u7528\u4e2d", | ||||
| "Plugins": "\u30d7\u30e9\u30b0\u30a4\u30f3", | ||||
| "Handy Shortcuts": "\u4fbf\u5229\u306a\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8", | ||||
| "Horizontal line": "\u6c34\u5e73\u7f6b\u7dda", | ||||
| "Insert\/edit image": "\u753b\u50cf\u306e\u633f\u5165\u30fb\u7de8\u96c6", | ||||
| "Image description": "\u753b\u50cf\u306e\u8aac\u660e\u6587", | ||||
| "Source": "\u753b\u50cf\u306e\u30bd\u30fc\u30b9", | ||||
| "Dimensions": "\u753b\u50cf\u30b5\u30a4\u30ba\uff08\u6a2a\u30fb\u7e26\uff09", | ||||
| "Constrain proportions": "\u7e26\u6a2a\u6bd4\u3092\u4fdd\u6301\u3059\u308b", | ||||
| "General": "\u4e00\u822c", | ||||
| "Advanced": "\u8a73\u7d30\u8a2d\u5b9a", | ||||
| "Style": "\u30b9\u30bf\u30a4\u30eb", | ||||
| "Vertical space": "\u7e26\u65b9\u5411\u306e\u4f59\u767d", | ||||
| "Horizontal space": "\u6a2a\u65b9\u5411\u306e\u4f59\u767d", | ||||
| "Border": "\u67a0\u7dda", | ||||
| "Insert image": "\u753b\u50cf\u306e\u633f\u5165", | ||||
| "Image...": "\u753b\u50cf..", | ||||
| "Image list": "\u753b\u50cf\u4e00\u89a7", | ||||
| "Rotate counterclockwise": "\u53cd\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2", | ||||
| "Rotate clockwise": "\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2", | ||||
| "Flip vertically": "\u4e0a\u4e0b\u306b\u53cd\u8ee2", | ||||
| "Flip horizontally": "\u6c34\u5e73\u306b\u53cd\u8ee2", | ||||
| "Edit image": "\u753b\u50cf\u306e\u7de8\u96c6", | ||||
| "Image options": "\u753b\u50cf\u30aa\u30d7\u30b7\u30e7\u30f3", | ||||
| "Zoom in": "\u30ba\u30fc\u30e0\u30a4\u30f3", | ||||
| "Zoom out": "\u30ba\u30fc\u30e0\u30a2\u30a6\u30c8", | ||||
| "Crop": "\u30af\u30ed\u30c3\u30d7", | ||||
| "Resize": "\u30ea\u30b5\u30a4\u30ba", | ||||
| "Orientation": "\u5411\u304d", | ||||
| "Brightness": "\u660e\u308b\u3055", | ||||
| "Sharpen": "\u30b7\u30e3\u30fc\u30d7\u5316", | ||||
| "Contrast": "\u30b3\u30f3\u30c8\u30e9\u30b9\u30c8", | ||||
| "Color levels": "\u30ab\u30e9\u30fc\u30ec\u30d9\u30eb", | ||||
| "Gamma": "\u30ac\u30f3\u30de", | ||||
| "Invert": "\u53cd\u8ee2", | ||||
| "Apply": "\u9069\u7528", | ||||
| "Back": "\u623b\u308b", | ||||
| "Insert date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b", | ||||
| "Date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b", | ||||
| "Insert\/Edit Link": "\u30ea\u30f3\u30af\u306e\u633f\u5165\/\u7de8\u96c6", | ||||
| "Insert\/edit link": "\u30ea\u30f3\u30af\u306e\u633f\u5165\u30fb\u7de8\u96c6", | ||||
| "Text to display": "\u30ea\u30f3\u30af\u5143\u30c6\u30ad\u30b9\u30c8", | ||||
| "Url": "\u30ea\u30f3\u30af\u5148URL", | ||||
| "Open link in...": "\u30ea\u30f3\u30af\u306e\u958b\u304d\u65b9...", | ||||
| "Current window": "\u540c\u3058\u30a6\u30a3\u30f3\u30c9\u30a6", | ||||
| "None": "\u306a\u3057", | ||||
| "New window": "\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6", | ||||
| "Remove link": "\u30ea\u30f3\u30af\u306e\u524a\u9664", | ||||
| "Anchors": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09", | ||||
| "Link...": "\u30ea\u30f3\u30af...", | ||||
| "Paste or type a link": "\u30ea\u30f3\u30af\u3092\u30da\u30fc\u30b9\u30c8\u307e\u305f\u306f\u5165\u529b", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u3088\u3046\u3067\u3059\u3002\u300cmailto:\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u5916\u90e8\u30ea\u30f3\u30af\u306e\u3088\u3046\u3067\u3059\u3002\u300chttp:\/\/\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f", | ||||
| "Link list": "\u30ea\u30f3\u30af\u4e00\u89a7", | ||||
| "Insert video": "\u52d5\u753b", | ||||
| "Insert\/edit video": "\u52d5\u753b\u306e\u633f\u5165\u30fb\u7de8\u96c6", | ||||
| "Insert\/edit media": "\u30e1\u30c7\u30a3\u30a2\u306e\u633f\u5165\u30fb\u7de8\u96c6", | ||||
| "Alternative source": "\u4ee3\u66ff\u52d5\u753b\u306e\u5834\u6240", | ||||
| "Alternative source URL": "\u4ee3\u66ff\u30bd\u30fc\u30b9URL", | ||||
| "Media poster (Image URL)": "\u30e1\u30c7\u30a3\u30a2\u30dd\u30b9\u30bf\u30fc (\u753b\u50cfURL)", | ||||
| "Paste your embed code below:": "\u57cb\u3081\u8fbc\u307f\u7528\u30b3\u30fc\u30c9\u3092\u4e0b\u8a18\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002", | ||||
| "Embed": "\u57cb\u3081\u8fbc\u307f", | ||||
| "Media...": "\u30e1\u30c7\u30a3\u30a2\u2026", | ||||
| "Nonbreaking space": "\u56fa\u5b9a\u30b9\u30da\u30fc\u30b9\uff08 \uff09", | ||||
| "Page break": "\u30da\u30fc\u30b8\u533a\u5207\u308a", | ||||
| "Paste as text": "\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051", | ||||
| "Preview": "\u30d7\u30ec\u30d3\u30e5\u30fc", | ||||
| "Print...": "\u5370\u5237...", | ||||
| "Save": "\u4fdd\u5b58", | ||||
| "Find": "\u691c\u7d22", | ||||
| "Replace with": "\u7f6e\u304d\u63db\u3048\u308b\u6587\u5b57", | ||||
| "Replace": "\u7f6e\u304d\u63db\u3048", | ||||
| "Replace all": "\u5168\u3066\u3092\u7f6e\u304d\u63db\u3048\u308b", | ||||
| "Previous": "\u524d\u3078", | ||||
| "Next": "\u6b21", | ||||
| "Find and replace...": "\u7f6e\u63db...", | ||||
| "Could not find the specified string.": "\u304a\u63a2\u3057\u306e\u6587\u5b57\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002", | ||||
| "Match case": "\u5927\u6587\u5b57\u30fb\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3059\u308b", | ||||
| "Find whole words only": "\u8a9e\u5168\u4f53\u3092\u542b\u3080\u3082\u306e\u306e\u307f\u691c\u7d22", | ||||
| "Spell check": "\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af", | ||||
| "Ignore": "\u7121\u8996", | ||||
| "Ignore all": "\u5168\u3066\u3092\u7121\u8996", | ||||
| "Finish": "\u7d42\u4e86", | ||||
| "Add to Dictionary": "\u8f9e\u66f8\u306b\u8ffd\u52a0", | ||||
| "Insert table": "\u8868\u306e\u633f\u5165", | ||||
| "Table properties": "\u8868\u306e\u8a73\u7d30\u8a2d\u5b9a", | ||||
| "Delete table": "\u8868\u306e\u524a\u9664", | ||||
| "Cell": "\u30bb\u30eb", | ||||
| "Row": "\u884c", | ||||
| "Column": "\u5217", | ||||
| "Cell properties": "\u30bb\u30eb\u306e\u8a73\u7d30\u8a2d\u5b9a", | ||||
| "Merge cells": "\u30bb\u30eb\u306e\u7d50\u5408", | ||||
| "Split cell": "\u30bb\u30eb\u306e\u5206\u5272", | ||||
| "Insert row before": "\u4e0a\u5074\u306b\u884c\u3092\u633f\u5165", | ||||
| "Insert row after": "\u4e0b\u5074\u306b\u884c\u3092\u633f\u5165", | ||||
| "Delete row": "\u884c\u306e\u524a\u9664", | ||||
| "Row properties": "\u884c\u306e\u8a73\u7d30\u8a2d\u5b9a", | ||||
| "Cut row": "\u884c\u306e\u5207\u308a\u53d6\u308a", | ||||
| "Copy row": "\u884c\u306e\u30b3\u30d4\u30fc", | ||||
| "Paste row before": "\u4e0a\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051", | ||||
| "Paste row after": "\u4e0b\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051", | ||||
| "Insert column before": "\u5de6\u5074\u306b\u5217\u3092\u633f\u5165", | ||||
| "Insert column after": "\u53f3\u5074\u306b\u5217\u3092\u633f\u5165", | ||||
| "Delete column": "\u5217\u306e\u524a\u9664", | ||||
| "Cols": "\u5217\u6570", | ||||
| "Rows": "\u884c\u6570", | ||||
| "Width": "\u5e45", | ||||
| "Height": "\u9ad8\u3055", | ||||
| "Cell spacing": "\u30bb\u30eb\u306e\u9593\u9694", | ||||
| "Cell padding": "\u30bb\u30eb\u5185\u4f59\u767d\uff08\u30d1\u30c7\u30a3\u30f3\u30b0\uff09", | ||||
| "Show caption": "\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3\u306e\u8868\u793a", | ||||
| "Left": "\u5de6\u5bc4\u305b", | ||||
| "Center": "\u4e2d\u592e\u63c3\u3048", | ||||
| "Right": "\u53f3\u5bc4\u305b", | ||||
| "Cell type": "\u30bb\u30eb\u30bf\u30a4\u30d7", | ||||
| "Scope": "\u30b9\u30b3\u30fc\u30d7", | ||||
| "Alignment": "\u914d\u7f6e", | ||||
| "H Align": "\u6c34\u5e73\u65b9\u5411\u306e\u914d\u7f6e", | ||||
| "V Align": "\u5782\u76f4\u65b9\u5411\u306e\u914d\u7f6e", | ||||
| "Top": "\u4e0a", | ||||
| "Middle": "\u4e2d\u592e", | ||||
| "Bottom": "\u4e0b", | ||||
| "Header cell": "\u30d8\u30c3\u30c0\u30fc\u30bb\u30eb", | ||||
| "Row group": "\u884c\u30b0\u30eb\u30fc\u30d7", | ||||
| "Column group": "\u5217\u30b0\u30eb\u30fc\u30d7", | ||||
| "Row type": "\u884c\u30bf\u30a4\u30d7", | ||||
| "Header": "\u30d8\u30c3\u30c0\u30fc", | ||||
| "Body": "\u30dc\u30c7\u30a3\u30fc", | ||||
| "Footer": "\u30d5\u30c3\u30bf\u30fc", | ||||
| "Border color": "\u67a0\u7dda\u306e\u8272", | ||||
| "Insert template...": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165..", | ||||
| "Templates": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u540d", | ||||
| "Template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8", | ||||
| "Text color": "\u30c6\u30ad\u30b9\u30c8\u306e\u8272", | ||||
| "Background color": "\u80cc\u666f\u8272", | ||||
| "Custom...": "\u30ab\u30b9\u30bf\u30e0...", | ||||
| "Custom color": "\u30ab\u30b9\u30bf\u30e0\u30ab\u30e9\u30fc", | ||||
| "No color": "\u30ab\u30e9\u30fc\u306a\u3057", | ||||
| "Remove color": "\u8272\u8a2d\u5b9a\u3092\u89e3\u9664", | ||||
| "Table of Contents": "\u76ee\u6b21", | ||||
| "Show blocks": "\u6587\u7ae0\u306e\u533a\u5207\u308a\u3092\u70b9\u7dda\u3067\u8868\u793a", | ||||
| "Show invisible characters": "\u4e0d\u53ef\u8996\u6587\u5b57\u3092\u8868\u793a", | ||||
| "Word count": "\u6587\u5b57\u6570\u30ab\u30a6\u30f3\u30c8", | ||||
| "Count": "\u30ab\u30a6\u30f3\u30c8", | ||||
| "Document": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8", | ||||
| "Selection": "\u9078\u629e", | ||||
| "Words": "\u5358\u8a9e\u6570", | ||||
| "Words: {0}": "\u5358\u8a9e\u6570: {0}", | ||||
| "{0} words": "{0} \u30ef\u30fc\u30c9", | ||||
| "File": "\u30d5\u30a1\u30a4\u30eb", | ||||
| "Edit": "\u7de8\u96c6", | ||||
| "Insert": "\u633f\u5165", | ||||
| "View": "\u8868\u793a", | ||||
| "Format": "\u66f8\u5f0f", | ||||
| "Table": "\u8868", | ||||
| "Tools": "\u30c4\u30fc\u30eb", | ||||
| "Powered by {0}": "Powered by {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u66f8\u5f0f\u4ed8\u304d\u30c6\u30ad\u30b9\u30c8\u306e\u7de8\u96c6\u753b\u9762\u3002ALT-F9\u3067\u30e1\u30cb\u30e5\u30fc\u3001ALT-F10\u3067\u30c4\u30fc\u30eb\u30d0\u30fc\u3001ALT-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002", | ||||
| "Image title": "\u753b\u50cf\u30bf\u30a4\u30c8\u30eb", | ||||
| "Border width": "\u67a0\u7dda\u5e45", | ||||
| "Border style": "\u67a0\u7dda\u30b9\u30bf\u30a4\u30eb", | ||||
| "Error": "\u30a8\u30e9\u30fc", | ||||
| "Warn": "\u8b66\u544a", | ||||
| "Valid": "\u6709\u52b9", | ||||
| "To open the popup, press Shift+Enter": "\u30dd\u30c3\u30d7\u30a2\u30c3\u30d7\u3092\u958b\u304f\u306b\u306f\u3001Shift+Enter\u3092\u62bc\u3057\u3066\u304f\u3060\u3055\u3044", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u30ea\u30c3\u30c1\u30c6\u30ad\u30b9\u30c8\u30a8\u30ea\u30a2\u3002Alt-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002", | ||||
| "System Font": "\u30b7\u30b9\u30c6\u30e0\u30d5\u30a9\u30f3\u30c8", | ||||
| "Failed to upload image: {0}": "\u753b\u50cf{0}\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f", | ||||
| "Failed to load plugin: {0} from url {1}": "URL{1}\u304b\u3089\u306e\u30d7\u30e9\u30b0\u30a4\u30f3{0}\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u307e\u3057\u305f", | ||||
| "Failed to load plugin url: {0}": "\u30d7\u30e9\u30b0\u30a4\u30f3\u306eURL{0}\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f", | ||||
| "Failed to initialize plugin: {0}": "\u30d7\u30e9\u30b0\u30a4\u30f3{0}\u306e\u521d\u671f\u5316\u306b\u5931\u6557\u3057\u307e\u3057\u305f", | ||||
| "example": "\u4f8b", | ||||
| "Search": "\u691c\u7d22", | ||||
| "All": "\u3059\u3079\u3066", | ||||
| "Currency": "\u901a\u8ca8", | ||||
| "Text": "\u30c6\u30ad\u30b9\u30c8", | ||||
| "Quotations": "\u5f15\u7528", | ||||
| "Mathematical": "\u6570\u5b66\u8a18\u53f7", | ||||
| "Extended Latin": "\u30e9\u30c6\u30f3\u6587\u5b57\u62e1\u5f35", | ||||
| "Symbols": "\u8a18\u53f7", | ||||
| "Arrows": "\u77e2\u5370", | ||||
| "User Defined": "\u30e6\u30fc\u30b6\u30fc\u5b9a\u7fa9", | ||||
| "dollar sign": "\u30c9\u30eb\u8a18\u53f7", | ||||
| "currency sign": "\u901a\u8ca8\u8a18\u53f7", | ||||
| "euro-currency sign": "\u30e6\u30fc\u30ed\u8a18\u53f7", | ||||
| "colon sign": "\u30b3\u30ed\u30f3\u8a18\u53f7", | ||||
| "cruzeiro sign": "\u30af\u30eb\u30bc\u30a4\u30ed\u8a18\u53f7", | ||||
| "french franc sign": "\u30d5\u30e9\u30f3\u30b9\u30d5\u30e9\u30f3\u8a18\u53f7", | ||||
| "lira sign": "\u30ea\u30e9\u8a18\u53f7", | ||||
| "mill sign": "\u30df\u30eb\u8a18\u53f7", | ||||
| "naira sign": "\u30ca\u30a4\u30e9\u8a18\u53f7", | ||||
| "peseta sign": "\u30da\u30bb\u30bf\u8a18\u53f7", | ||||
| "rupee sign": "\u30eb\u30d4\u30fc\u8a18\u53f7", | ||||
| "won sign": "\u30a6\u30a9\u30f3\u8a18\u53f7", | ||||
| "new sheqel sign": "\u65b0\u30b7\u30a7\u30b1\u30eb\u8a18\u53f7", | ||||
| "dong sign": "\u30c9\u30f3\u8a18\u53f7", | ||||
| "kip sign": "\u30ad\u30fc\u30d7\u8a18\u53f7", | ||||
| "tugrik sign": "\u30c8\u30a5\u30b0\u30eb\u30b0\u8a18\u53f7", | ||||
| "drachma sign": "\u30c9\u30e9\u30af\u30de\u8a18\u53f7", | ||||
| "german penny symbol": "\u30c9\u30a4\u30c4\u30da\u30cb\u30fc\u8a18\u53f7", | ||||
| "peso sign": "\u30da\u30bd\u8a18\u53f7", | ||||
| "guarani sign": "\u30ac\u30e9\u30cb\u8a18\u53f7", | ||||
| "austral sign": "\u30a2\u30a6\u30b9\u30c8\u30e9\u30eb\u8a18\u53f7", | ||||
| "hryvnia sign": "\u30d5\u30ea\u30f4\u30cb\u30e3\u8a18\u53f7", | ||||
| "cedi sign": "\u30bb\u30c7\u30a3\u8a18\u53f7", | ||||
| "livre tournois sign": "\u30c8\u30a5\u30fc\u30eb\u30dd\u30f3\u30c9\u8a18\u53f7", | ||||
| "spesmilo sign": "\u30b9\u30da\u30b9\u30df\u30fc\u30ed\u8a18\u53f7", | ||||
| "tenge sign": "\u30c6\u30f3\u30b2\u8a18\u53f7", | ||||
| "indian rupee sign": "\u30a4\u30f3\u30c9\u30eb\u30d4\u30fc\u8a18\u53f7", | ||||
| "turkish lira sign": "\u30c8\u30eb\u30b3\u30ea\u30e9\u8a18\u53f7", | ||||
| "nordic mark sign": "\u5317\u6b27\u30de\u30eb\u30af\u8a18\u53f7", | ||||
| "manat sign": "\u30de\u30ca\u30c8\u8a18\u53f7", | ||||
| "ruble sign": "\u30eb\u30fc\u30d6\u30eb\u8a18\u53f7", | ||||
| "yen character": "\u5186\u8a18\u53f7", | ||||
| "yuan character": "\u4eba\u6c11\u5143\u8a18\u53f7", | ||||
| "yuan character, in hong kong and taiwan": "\u9999\u6e2f\u304a\u3088\u3073\u53f0\u6e7e\u306b\u304a\u3051\u308b\u5143\u8a18\u53f7", | ||||
| "yen\/yuan character variant one": "\u5186\/\u5143\u8a18\u53f7\u306e\u30d0\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3", | ||||
| "Loading emoticons...": "\u7d75\u6587\u5b57\u3092\u8aad\u307f\u8fbc\u3093\u3067\u3044\u307e\u3059...", | ||||
| "Could not load emoticons": "\u7d75\u6587\u5b57\u304c\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f\u3002", | ||||
| "People": "\u4eba", | ||||
| "Animals and Nature": "\u52d5\u7269\u3068\u81ea\u7136", | ||||
| "Food and Drink": "\u98df\u3079\u7269\u3068\u98f2\u307f\u7269", | ||||
| "Activity": "\u884c\u52d5", | ||||
| "Travel and Places": "\u65c5\u884c\u3068\u5834\u6240", | ||||
| "Objects": "\u7269", | ||||
| "Flags": "\u65d7", | ||||
| "Characters": "\u6587\u5b57\u6570", | ||||
| "Characters (no spaces)": "\u6587\u5b57\u6570 (\u30b9\u30da\u30fc\u30b9\u306a\u3057)", | ||||
| "{0} characters": "{0}\u6587\u5b57", | ||||
| "Error: Form submit field collision.": "\u30a8\u30e9\u30fc\uff1a\u30d5\u30a9\u30fc\u30e0\u9001\u4fe1\u30d5\u30a3\u30fc\u30eb\u30c9\u304c\u7af6\u5408\u3057\u3066\u3044\u307e\u3059\u3002", | ||||
| "Error: No form element found.": "\u30a8\u30e9\u30fc\uff1a\u30d5\u30a9\u30fc\u30e0\u8981\u7d20\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002", | ||||
| "Update": "\u66f4\u65b0", | ||||
| "Color swatch": "\u8272\u306e\u898b\u672c", | ||||
| "Turquoise": "\u30bf\u30fc\u30b3\u30a4\u30ba", | ||||
| "Green": "\u30b0\u30ea\u30fc\u30f3", | ||||
| "Blue": "\u30d6\u30eb\u30fc", | ||||
| "Purple": "\u30d1\u30fc\u30d7\u30eb", | ||||
| "Navy Blue": "\u30cd\u30a4\u30d3\u30fc", | ||||
| "Dark Turquoise": "\u30c0\u30fc\u30af\u30bf\u30fc\u30b3\u30a4\u30ba", | ||||
| "Dark Green": "\u30c0\u30fc\u30af\u30b0\u30ea\u30fc\u30f3", | ||||
| "Medium Blue": "\u30e1\u30c7\u30a3\u30a2\u30e0\u30d6\u30eb\u30fc", | ||||
| "Medium Purple": "\u30df\u30c7\u30a3\u30a2\u30e0\u30d1\u30fc\u30d7\u30eb", | ||||
| "Midnight Blue": "\u30df\u30c3\u30c9\u30ca\u30a4\u30c8\u30d6\u30eb\u30fc", | ||||
| "Yellow": "\u30a4\u30a8\u30ed\u30fc", | ||||
| "Orange": "\u30aa\u30ec\u30f3\u30b8", | ||||
| "Red": "\u30ec\u30c3\u30c9", | ||||
| "Light Gray": "\u30e9\u30a4\u30c8\u30b0\u30ec\u30fc", | ||||
| "Gray": "\u30b0\u30ec\u30fc", | ||||
| "Dark Yellow": "\u30c0\u30fc\u30af\u30a4\u30a8\u30ed\u30fc", | ||||
| "Dark Orange": "\u30c0\u30fc\u30af\u30aa\u30ec\u30f3\u30b8", | ||||
| "Dark Red": "\u30c0\u30fc\u30af\u30ec\u30c3\u30c9", | ||||
| "Medium Gray": "\u30df\u30c7\u30a3\u30a2\u30e0\u30b0\u30ec\u30fc", | ||||
| "Dark Gray": "\u30c0\u30fc\u30af\u30b0\u30ec\u30fc", | ||||
| "Light Green": "\u30e9\u30a4\u30c8\u30b0\u30ea\u30fc\u30f3", | ||||
| "Light Yellow": "\u30e9\u30a4\u30c8\u30a4\u30a8\u30ed\u30fc", | ||||
| "Light Red": "\u30e9\u30a4\u30c8\u30ec\u30c3\u30c9", | ||||
| "Light Purple": "\u30e9\u30a4\u30c8\u30d1\u30fc\u30d7\u30eb", | ||||
| "Light Blue": "\u30e9\u30a4\u30c8\u30d6\u30eb\u30fc", | ||||
| "Dark Purple": "\u30c0\u30fc\u30af\u30d1\u30fc\u30d7\u30eb", | ||||
| "Dark Blue": "\u30c0\u30fc\u30af\u30d6\u30eb\u30fc", | ||||
| "Black": "\u30d6\u30e9\u30c3\u30af", | ||||
| "White": "\u30db\u30ef\u30a4\u30c8", | ||||
| "Switch to or from fullscreen mode": "\u30d5\u30eb\u30b9\u30af\u30ea\u30fc\u30f3\u30e2\u30fc\u30c9\u5207\u66ff", | ||||
| "Open help dialog": "\u30d8\u30eb\u30d7\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u958b\u304f", | ||||
| "history": "\u5c65\u6b74", | ||||
| "styles": "\u30b9\u30bf\u30a4\u30eb", | ||||
| "formatting": "\u66f8\u5f0f", | ||||
| "alignment": "\u914d\u7f6e", | ||||
| "indentation": "\u30a4\u30f3\u30c7\u30f3\u30c8", | ||||
| "permanent pen": "\u86cd\u5149\u30da\u30f3", | ||||
| "comments": "\u30b3\u30e1\u30f3\u30c8", | ||||
| "Format Painter": "\u66f8\u5f0f\u306e\u30b3\u30d4\u30fc\/\u8cbc\u308a\u4ed8\u3051", | ||||
| "Insert\/edit iframe": "iframe\u306e\u633f\u5165\/\u7de8\u96c6", | ||||
| "Capitalization": "\u5927\u6587\u5b57\u5316", | ||||
| "lowercase": "\u5c0f\u6587\u5b57", | ||||
| "UPPERCASE": "\u5927\u6587\u5b57", | ||||
| "Title Case": "\u30bf\u30a4\u30c8\u30eb\u6587\u5b57", | ||||
| "Permanent Pen Properties": "\u86cd\u5149\u30da\u30f3\u306e\u30d7\u30ed\u30d1\u30c6\u30a3", | ||||
| "Permanent pen properties...": "\u86cd\u5149\u30da\u30f3\u306e\u30d7\u30ed\u30d1\u30c6\u30a3...", | ||||
| "Font": "\u30d5\u30a9\u30f3\u30c8", | ||||
| "Size": "\u30b5\u30a4\u30ba", | ||||
| "More...": "\u8a73\u7d30...", | ||||
| "Spellcheck Language": "\u8a00\u8a9e\u306e\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af", | ||||
| "Select...": "\u9078\u629e...", | ||||
| "Preferences": "\u30d7\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9", | ||||
| "Yes": "\u306f\u3044", | ||||
| "No": "\u3044\u3044\u3048", | ||||
| "Keyboard Navigation": "\u30ad\u30fc\u30dc\u30fc\u30c9\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3", | ||||
| "Version": "\u30d0\u30fc\u30b8\u30e7\u30f3", | ||||
| "Anchor": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09", | ||||
| "Special character": "\u7279\u6b8a\u6587\u5b57", | ||||
| "Code sample": "\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb", | ||||
| "Color": "\u30ab\u30e9\u30fc", | ||||
| "Emoticons": "\u7d75\u6587\u5b57", | ||||
| "Document properties": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30d7\u30ed\u30d1\u30c6\u30a3", | ||||
| "Image": "\u753b\u50cf", | ||||
| "Insert link": "\u30ea\u30f3\u30af", | ||||
| "Target": "\u30bf\u30fc\u30b2\u30c3\u30c8\u5c5e\u6027", | ||||
| "Link": "\u30ea\u30f3\u30af", | ||||
| "Poster": "\u4ee3\u66ff\u753b\u50cf\u306e\u5834\u6240", | ||||
| "Media": "\u30e1\u30c7\u30a3\u30a2", | ||||
| "Print": "\u5370\u5237", | ||||
| "Prev": "\u524d", | ||||
| "Find and replace": "\u691c\u7d22\u3068\u7f6e\u304d\u63db\u3048", | ||||
| "Whole words": "\u5358\u8a9e\u5358\u4f4d\u3067\u691c\u7d22\u3059\u308b", | ||||
| "Spellcheck": "\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af", | ||||
| "Caption": "\u8868\u984c", | ||||
| "Insert template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165" | ||||
| }); | ||||
							
								
								
									
										418
									
								
								Modules/TinyMCE/langs/kk.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										418
									
								
								Modules/TinyMCE/langs/kk.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,418 @@ | ||||
| tinymce.addI18n('kk',{ | ||||
| "Redo": "\u049a\u0430\u0439\u0442\u0430\u0440\u0443", | ||||
| "Undo": "\u0411\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", | ||||
| "Cut": "\u049a\u0438\u044b\u043f \u0430\u043b\u0443", | ||||
| "Copy": "\u041a\u04e9\u0448\u0456\u0440\u0443", | ||||
| "Paste": "\u049a\u043e\u044e", | ||||
| "Select all": "\u0411\u0430\u0440\u043b\u044b\u0493\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443", | ||||
| "New document": "\u0416\u0430\u04a3\u0430 \u049b\u04b1\u0436\u0430\u0442", | ||||
| "Ok": "\u041e\u041a", | ||||
| "Cancel": "\u0411\u0430\u0441 \u0442\u0430\u0440\u0442\u0443", | ||||
| "Visual aids": "\u041a\u04e9\u0440\u043d\u0435\u043a\u0456 \u049b\u04b1\u0440\u0430\u043b\u0434\u0430\u0440", | ||||
| "Bold": "\u049a\u0430\u043b\u044b\u04a3", | ||||
| "Italic": "\u041a\u04e9\u043b\u0431\u0435\u0443", | ||||
| "Underline": "\u0410\u0441\u0442\u044b \u0441\u044b\u0437\u044b\u043b\u0493\u0430\u043d", | ||||
| "Strikethrough": "\u0421\u044b\u0437\u044b\u043b\u0493\u0430\u043d", | ||||
| "Superscript": "\u0416\u043e\u043b \u04af\u0441\u0442\u0456", | ||||
| "Subscript": "\u0416\u043e\u043b \u0430\u0441\u0442\u044b", | ||||
| "Clear formatting": "\u041f\u0456\u0448\u0456\u043c\u0434\u0435\u0443\u0434\u0456 \u0442\u0430\u0437\u0430\u043b\u0430\u0443", | ||||
| "Align left": "\u0421\u043e\u043b\u0493\u0430 \u0442\u0443\u0440\u0430\u043b\u0430\u0443", | ||||
| "Align center": "\u041e\u0440\u0442\u0430\u0441\u044b\u043d\u0430 \u0442\u0443\u0440\u0430\u043b\u0430\u0443", | ||||
| "Align right": "\u041e\u04a3\u0493\u0430 \u0442\u0443\u0440\u0430\u043b\u0430\u0443", | ||||
| "Justify": "\u0415\u043d\u0456 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0442\u0443\u0440\u0430\u043b\u0430\u0443", | ||||
| "Bullet list": "\u0422\u0430\u04a3\u0431\u0430\u043b\u0430\u043d\u0493\u0430\u043d \u0442\u0456\u0437\u0456\u043c", | ||||
| "Numbered list": "\u041d\u04e9\u043c\u0456\u0440\u043b\u0435\u043d\u0433\u0435\u043d \u0442\u0456\u0437\u0456\u043c", | ||||
| "Decrease indent": "\u0428\u0435\u0433\u0456\u043d\u0456\u0441\u0442\u0456 \u043a\u0435\u043c\u0456\u0442\u0443", | ||||
| "Increase indent": "\u0428\u0435\u0433\u0456\u043d\u0456\u0441\u0442\u0456 \u0430\u0440\u0442\u0442\u044b\u0440\u0443", | ||||
| "Close": "\u0416\u0430\u0431\u0443", | ||||
| "Formats": "\u041f\u0456\u0448\u0456\u043c\u0434\u0435\u0440", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0411\u0440\u0430\u0443\u0437\u0435\u0440\u0456\u04a3\u0456\u0437 \u0430\u0440\u0430\u043b\u044b\u049b \u0441\u0430\u049b\u0442\u0430\u0493\u044b\u0448\u049b\u0430 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u049b\u0430\u0442\u044b\u043d\u0430\u0439 \u0430\u043b\u043c\u0430\u0439\u0434\u044b. Ctrl+X\/C\/V \u043f\u0435\u0440\u043d\u0435\u043b\u0435\u0440 \u0442\u0456\u0440\u043a\u0435\u0441\u0456\u043c\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437.", | ||||
| "Headers": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430\u043b\u0430\u0440", | ||||
| "Header 1": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 1", | ||||
| "Header 2": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 2", | ||||
| "Header 3": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 3", | ||||
| "Header 4": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 4", | ||||
| "Header 5": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 5", | ||||
| "Header 6": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 6", | ||||
| "Headings": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u0430\u0440", | ||||
| "Heading 1": "1-\u0442\u0430\u049b\u044b\u0440\u044b\u043f", | ||||
| "Heading 2": "2-\u0442\u0430\u049b\u044b\u0440\u044b\u043f", | ||||
| "Heading 3": "3-\u0442\u0430\u049b\u044b\u0440\u044b\u043f", | ||||
| "Heading 4": "4-\u0442\u0430\u049b\u044b\u0440\u044b\u043f", | ||||
| "Heading 5": "5-\u0442\u0430\u049b\u044b\u0440\u044b\u043f", | ||||
| "Heading 6": "6-\u0442\u0430\u049b\u044b\u0440\u044b\u043f", | ||||
| "Preformatted": "\u0410\u043b\u0434\u044b\u043d \u0430\u043b\u0430 \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u043b\u0433\u0435\u043d", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "\u041a\u043e\u0434", | ||||
| "Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444", | ||||
| "Blockquote": "\u0414\u04d9\u0439\u0435\u043a\u0441\u04e9\u0437", | ||||
| "Inline": "\u041a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d", | ||||
| "Blocks": "\u0411\u043b\u043e\u043a\u0442\u0430\u0440", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u041e\u0441\u044b \u043e\u043f\u0446\u0438\u044f \u04e9\u0448\u0456\u0440\u0456\u043b\u043c\u0435\u0433\u0435\u043d\u0448\u0435, \u0431\u0443\u0444\u0435\u0440\u0434\u0435\u0433\u0456 \u043c\u04d9\u0442\u0456\u043d \u043a\u04d9\u0434\u0456\u043c\u0433\u0456 \u043c\u04d9\u0442\u0456\u043d \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u049b\u043e\u0439\u044b\u043b\u0430\u0434\u044b.", | ||||
| "Fonts": "\u049a\u0430\u0440\u0456\u043f\u0442\u0435\u0440", | ||||
| "Font Sizes": "\u049a\u0430\u0440\u0456\u043f \u04e9\u043b\u0448\u0435\u043c\u0434\u0435\u0440\u0456", | ||||
| "Class": "\u0421\u044b\u043d\u044b\u043f", | ||||
| "Browse for an image": "\u041a\u0435\u0441\u043a\u0456\u043d\u0434\u0456 \u0448\u043e\u043b\u0443", | ||||
| "OR": "\u041d\u0415\u041c\u0415\u0421\u0415", | ||||
| "Drop an image here": "\u041a\u0435\u0441\u043a\u0456\u043d\u0434\u0456 \u043e\u0441\u044b \u0436\u0435\u0440\u0434\u0435 \u0442\u0430\u0441\u0442\u0430\u04a3\u044b\u0437", | ||||
| "Upload": "\u0416\u04af\u043a\u0442\u0435\u043f \u0441\u0430\u043b\u0443", | ||||
| "Block": "\u0411\u043b\u043e\u043a", | ||||
| "Align": "\u0422\u0443\u0440\u0430\u043b\u0430\u0443", | ||||
| "Default": "\u04d8\u0434\u0435\u043f\u043a\u0456", | ||||
| "Circle": "\u0428\u0435\u04a3\u0431\u0435\u0440", | ||||
| "Disc": "\u0414\u0438\u0441\u043a", | ||||
| "Square": "\u0428\u0430\u0440\u0448\u044b", | ||||
| "Lower Alpha": "\u041a\u0456\u0448\u0456 \u04d9\u0440\u0456\u043f\u0442\u0435\u0440", | ||||
| "Lower Greek": "\u041a\u0456\u0448\u0456 \u0433\u0440\u0435\u043a \u04d9\u0440\u0456\u043f\u0442\u0435\u0440\u0456", | ||||
| "Lower Roman": "\u041a\u0456\u0448\u0456 \u0440\u0438\u043c \u0446\u0438\u0444\u0440\u043b\u0430\u0440\u044b", | ||||
| "Upper Alpha": "\u0411\u0430\u0441 \u04d9\u0440\u0456\u043f\u0442\u0435\u0440", | ||||
| "Upper Roman": "\u0411\u0430\u0441 \u0440\u0438\u043c \u0446\u0438\u0444\u0440\u043b\u0430\u0440\u044b", | ||||
| "Anchor...": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435...", | ||||
| "Name": "\u0410\u0442\u044b", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u04d9\u0440\u0456\u043f\u0442\u0435\u043d \u0431\u0430\u0441\u0442\u0430\u043b\u044b\u043f, \u04d9\u0440\u0456\u043f\u0442\u0435\u0440, \u0441\u0430\u043d\u0434\u0430\u0440, \u0441\u044b\u0437\u044b\u049b\u0448\u0430\u043b\u0430\u0440, \u043d\u04af\u043a\u0442\u0435\u043b\u0435\u0440 \u0436\u04d9\u043d\u0435 \u0442.\u0431 \u0436\u0430\u043b\u0493\u0430\u0441\u0443\u044b \u0442\u0438\u0456\u0441.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u0421\u0430\u049b\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u04e9\u0437\u0433\u0435\u0440\u0456\u0441\u0442\u0435\u0440 \u0431\u0430\u0440. \u0421\u0456\u0437 \u0448\u044b\u043d\u044b\u043c\u0435\u043d \u0431\u0430\u0441\u049b\u0430 \u0436\u0435\u0440\u0433\u0435 \u043a\u0435\u0442\u0443\u0434\u0456 \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430?", | ||||
| "Restore last draft": "\u0421\u043e\u04a3\u0493\u044b \u0441\u0430\u049b\u0442\u0430\u043b\u0493\u0430\u043d\u0434\u044b \u049b\u0430\u043b\u043f\u044b\u043d\u0430 \u043a\u0435\u043b\u0442\u0456\u0440\u0443", | ||||
| "Special character...": "\u0410\u0440\u043d\u0430\u0439\u044b \u0442\u0430\u04a3\u0431\u0430...", | ||||
| "Source code": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u043a\u043e\u0434", | ||||
| "Insert\/Edit code sample": "\u041a\u043e\u0434 \u04af\u043b\u0433\u0456\u0441\u0456\u043d \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443\/\u0442\u04af\u0437\u0435\u0442\u0443", | ||||
| "Language": "\u0422\u0456\u043b", | ||||
| "Code sample...": "\u041a\u043e\u0434 \u04af\u043b\u0433\u0456\u0441\u0456...", | ||||
| "Color Picker": "\u0422\u04af\u0441 \u0442\u0430\u04a3\u0434\u0430\u0443 \u049b\u04b1\u0440\u0430\u043b\u044b", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "\u0421\u043e\u043b\u0434\u0430\u043d \u043e\u04a3\u0493\u0430", | ||||
| "Right to left": "\u041e\u04a3\u043d\u0430\u043d \u0441\u043e\u043b\u0493\u0430", | ||||
| "Emoticons...": "\u042d\u043c\u043e\u0442\u0438\u043a\u043e\u043d\u0434\u0430\u0440...", | ||||
| "Metadata and Document Properties": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0436\u04d9\u043d\u0435 \u049b\u04b1\u0436\u0430\u0442 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440\u044b", | ||||
| "Title": "\u0410\u0442\u0430\u0443\u044b", | ||||
| "Keywords": "Meta-keywords", | ||||
| "Description": "\u0421\u0438\u043f\u0430\u0442\u0442\u0430\u043c\u0430\u0441\u044b", | ||||
| "Robots": "Meta-robots", | ||||
| "Author": "Meta-author", | ||||
| "Encoding": "Meta-charset", | ||||
| "Fullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d", | ||||
| "Action": "\u04d8\u0440\u0435\u043a\u0435\u0442", | ||||
| "Shortcut": "\u041f\u0435\u0440\u043d\u0435\u043b\u0435\u0440 \u0442\u0456\u0440\u043a\u0435\u0441\u0456\u043c\u0456", | ||||
| "Help": "\u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430", | ||||
| "Address": "\u041c\u0435\u043a\u0435\u043d\u0436\u0430\u0439", | ||||
| "Focus to menubar": "\u041c\u04d9\u0437\u0456\u0440 \u0436\u043e\u043b\u0430\u0493\u044b\u043d \u0444\u043e\u043a\u0443\u0441\u0442\u0430\u0443", | ||||
| "Focus to toolbar": "\u049a\u04b1\u0440\u0430\u043b\u0434\u0430\u0440 \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d \u0444\u043e\u043a\u0443\u0441\u0442\u0430\u0443", | ||||
| "Focus to element path": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0436\u043e\u043b\u044b\u043d \u0444\u043e\u043a\u0443\u0441\u0442\u0430\u0443", | ||||
| "Focus to contextual toolbar": "\u041c\u04d9\u0442\u0456\u043d\u043c\u04d9\u043d\u0434\u0456\u043a \u049b\u04b1\u0440\u0430\u043b\u0434\u0430\u0440 \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d \u0444\u043e\u043a\u0443\u0441\u0442\u0430\u0443", | ||||
| "Insert link (if link plugin activated)": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435\u043d\u0456 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443 (\u0441\u0456\u043b\u0442\u0435\u043c\u0435 \u049b\u043e\u0441\u044b\u043b\u0430\u0442\u044b\u043d \u043c\u043e\u0434\u0443\u043b\u0456 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0431\u043e\u043b\u0441\u0430)", | ||||
| "Save (if save plugin activated)": "\u0421\u0430\u049b\u0442\u0430\u0443 (\u0441\u0430\u049b\u0442\u0430\u0443 \u049b\u043e\u0441\u044b\u043b\u0430\u0442\u044b\u043d \u049b\u043e\u0441\u044b\u043b\u0430\u0442\u044b\u043d \u043c\u043e\u0434\u0443\u043b\u0456 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0431\u043e\u043b\u0441\u0430)", | ||||
| "Find (if searchreplace plugin activated)": "\u0422\u0430\u0431\u0443 (\u0456\u0437\u0434\u0435\u0443\/\u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443 \u049b\u043e\u0441\u044b\u043b\u0430\u0442\u044b\u043d \u043c\u043e\u0434\u0443\u043b\u0456 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0431\u043e\u043b\u0441\u0430)", | ||||
| "Plugins installed ({0}):": "\u041e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u049b\u043e\u0441\u044b\u043b\u0430\u0442\u044b\u043d \u043c\u043e\u0434\u0443\u043b\u044c\u0434\u0435\u0440 ({0}):", | ||||
| "Premium plugins:": "\u041f\u0440\u0435\u043c\u0438\u0443\u043c \u049b\u043e\u0441\u044b\u043b\u0430\u0442\u044b\u043d \u043c\u043e\u0434\u0443\u043b\u044c\u0434\u0435\u0440:", | ||||
| "Learn more...": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440...", | ||||
| "You are using {0}": "\u0421\u0456\u0437 {0} \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430\u0441\u044b\u0437", | ||||
| "Plugins": "\u049a\u043e\u0441\u044b\u043b\u0430\u0442\u044b\u043d \u043c\u043e\u0434\u0443\u043b\u044c\u0434\u0435\u0440", | ||||
| "Handy Shortcuts": "\u042b\u04a3\u0493\u0430\u0439\u043b\u044b \u043f\u0435\u0440\u043d\u0435\u043b\u0435\u0440 \u0442\u0456\u0440\u043a\u0435\u0441\u0456\u043c\u0434\u0435\u0440\u0456", | ||||
| "Horizontal line": "\u041a\u04e9\u043b\u0434\u0435\u043d\u0435\u04a3 \u0441\u044b\u0437\u044b\u049b", | ||||
| "Insert\/edit image": "\u0421\u0443\u0440\u0435\u0442 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443\/\u0442\u04af\u0437\u0435\u0442\u0443", | ||||
| "Image description": "\u0421\u0443\u0440\u0435\u0442 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u043c\u0430\u0441\u044b", | ||||
| "Source": "\u0410\u0434\u0440\u0435\u0441\u0456", | ||||
| "Dimensions": "\u04e8\u043b\u0448\u0435\u043c\u0434\u0435\u0440\u0456", | ||||
| "Constrain proportions": "\u041f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u044f\u043b\u0430\u0440\u0434\u044b \u0441\u0430\u049b\u0442\u0430\u0443", | ||||
| "General": "\u0416\u0430\u043b\u043f\u044b", | ||||
| "Advanced": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430", | ||||
| "Style": "\u0421\u0442\u0438\u043b\u0456", | ||||
| "Vertical space": "\u0422\u0456\u043a \u043a\u0435\u04a3\u0434\u0456\u0433\u0456", | ||||
| "Horizontal space": "\u041a\u04e9\u043b\u0434\u0435\u043d\u0435\u04a3\u0456\u043d\u0435\u043d \u049b\u0430\u043b\u0430\u0442\u044b\u043d \u043e\u0440\u044b\u043d", | ||||
| "Border": "\u0416\u0438\u0435\u0433\u0456", | ||||
| "Insert image": "\u0421\u0443\u0440\u0435\u0442 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", | ||||
| "Image...": "\u041a\u0435\u0441\u043a\u0456\u043d...", | ||||
| "Image list": "\u041a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440 \u0442\u0456\u0437\u0456\u043c\u0456", | ||||
| "Rotate counterclockwise": "\u0421\u0430\u0493\u0430\u0442 \u0442\u0456\u043b\u0456\u043d\u0456\u04a3 \u0431\u0430\u0493\u044b\u0442\u044b\u043d\u0430 \u049b\u0430\u0440\u0441\u044b \u0431\u04b1\u0440\u0443", | ||||
| "Rotate clockwise": "\u0421\u0430\u0493\u0430\u0442 \u0442\u0456\u043b\u0456\u043d\u0456\u04a3 \u0431\u0430\u0493\u044b\u0442\u044b\u043c\u0435\u043d \u0431\u04b1\u0440\u0443", | ||||
| "Flip vertically": "\u0422\u0456\u0433\u0456\u043d\u0435\u043d \u0430\u0443\u0434\u0430\u0440\u0443", | ||||
| "Flip horizontally": "\u041a\u04e9\u043b\u0434\u0435\u043d\u0435\u04a3\u043d\u0435\u043d \u0430\u0443\u0434\u0430\u0440\u0443", | ||||
| "Edit image": "\u0421\u0443\u0440\u0435\u0442\u0442\u0456 \u04e9\u0437\u0433\u0435\u0440\u0442\u0443", | ||||
| "Image options": "\u0421\u0443\u0440\u0435\u0442 \u0431\u0430\u043f\u0442\u0430\u0443\u043b\u0430\u0440\u044b", | ||||
| "Zoom in": "\u0416\u0430\u049b\u044b\u043d\u0434\u0430\u0442\u0443", | ||||
| "Zoom out": "\u0410\u043b\u044b\u0441\u0442\u0430\u0442\u0443", | ||||
| "Crop": "\u041a\u0435\u0441\u0443", | ||||
| "Resize": "\u04e8\u043b\u0448\u0435\u043c\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0443", | ||||
| "Orientation": "\u0411\u0430\u0493\u0434\u0430\u0440", | ||||
| "Brightness": "\u0410\u0448\u044b\u049b\u0442\u0430\u0443", | ||||
| "Sharpen": "\u041d\u0430\u049b\u0442\u044b\u043b\u0430\u0443", | ||||
| "Contrast": "\u049a\u043e\u044e\u043b\u0430\u0442\u0443", | ||||
| "Color levels": "\u0422\u04af\u0441 \u0434\u0435\u04a3\u0433\u0435\u0439\u043b\u0435\u0440\u0456", | ||||
| "Gamma": "\u0413\u0430\u043c\u043c\u0430", | ||||
| "Invert": "\u041a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", | ||||
| "Apply": "\u0421\u0430\u049b\u0442\u0430\u0443", | ||||
| "Back": "\u0410\u0440\u0442\u049b\u0430", | ||||
| "Insert date\/time": "\u041a\u04af\u043d\/\u0443\u0430\u049b\u044b\u0442 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", | ||||
| "Date\/time": "\u041a\u04af\u043d\/\u0443\u0430\u049b\u044b\u0442", | ||||
| "Insert\/Edit Link": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443\/\u04e9\u04a3\u0434\u0435\u0443", | ||||
| "Insert\/edit link": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443\/\u0442\u04af\u0437\u0435\u0442\u0443", | ||||
| "Text to display": "\u041a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435\u0442\u0456\u043d \u043c\u04d9\u0442\u0456\u043d", | ||||
| "Url": "URL-\u0430\u0434\u0440\u0435\u0441\u0456", | ||||
| "Open link in...": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435\u043d\u0456 \u0430\u0448\u0443...", | ||||
| "Current window": "\u0410\u0493\u044b\u043c\u0434\u0430\u0493\u044b \u0442\u0435\u0440\u0435\u0437\u0435", | ||||
| "None": "\u0416\u043e\u049b", | ||||
| "New window": "\u0416\u0430\u04a3\u0430 \u0442\u0435\u0440\u0435\u0437\u0435", | ||||
| "Remove link": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435\u043d\u0456 \u0430\u043b\u044b\u043f \u0442\u0430\u0441\u0442\u0430\u0443", | ||||
| "Anchors": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435\u043b\u0435\u0440", | ||||
| "Link...": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435...", | ||||
| "Paste or type a link": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435\u043d\u0456 \u049b\u043e\u0439\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u0435\u0440\u0456\u04a3\u0456\u0437", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0421\u0456\u0437 \u0435\u04a3\u0433\u0456\u0437\u0456\u043f \u0442\u04b1\u0440\u0493\u0430\u043d URL e-mail \u0430\u0434\u0440\u0435\u0441\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u0410\u043b\u0434\u044b\u043d\u0430 mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441\u0456\u043d \u049b\u043e\u0441\u0443\u0434\u044b \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0421\u0456\u0437 \u0435\u04a3\u0433\u0456\u0437\u0456\u043f \u0442\u04b1\u0440\u0493\u0430\u043d URL \u0441\u044b\u0440\u0442\u049b\u044b \u0441\u0456\u043b\u0442\u0435\u043c\u0435 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u0410\u043b\u0434\u044b\u043d\u0430 http:\/\/ \u043f\u0440\u0435\u0444\u0438\u043a\u0441\u0456\u043d \u049b\u043e\u0441\u0443\u0434\u044b \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430?", | ||||
| "Link list": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435\u043b\u0435\u0440 \u0442\u0456\u0437\u0456\u043c\u0456", | ||||
| "Insert video": "\u0412\u0438\u0434\u0435\u043e \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", | ||||
| "Insert\/edit video": "\u0412\u0438\u0434\u0435\u043e \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443\/\u0442\u04af\u0437\u0435\u0442\u0443", | ||||
| "Insert\/edit media": "\u041c\u0435\u0434\u0438\u0430 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443\/\u0442\u04af\u0437\u0435\u0442\u0443", | ||||
| "Alternative source": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u0430\u0434\u0440\u0435\u0441\u0456", | ||||
| "Alternative source URL": "\u0411\u0430\u043b\u0430\u043c\u0430\u043b\u044b \u043a\u04e9\u0437\u0434\u0456\u04a3 URL \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b", | ||||
| "Media poster (Image URL)": "\u041c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u0434\u044b \u0436\u0430\u0440\u0438\u044f\u043b\u0430\u0443\u0448\u044b (\u043a\u0435\u0441\u043a\u0456\u043d\u043d\u0456\u04a3 URL \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b)", | ||||
| "Paste your embed code below:": "\u0422\u04e9\u043c\u0435\u043d\u0434\u0435\u0433\u0456 \u043a\u043e\u0434\u0442\u044b \u043a\u04e9\u0448\u0456\u0440\u0456\u043f \u0430\u043b\u044b\u043f, \u049b\u043e\u0439\u044b\u04a3\u044b\u0437:", | ||||
| "Embed": "\u0415\u043d\u0434\u0456\u0440\u0443", | ||||
| "Media...": "\u041c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b...", | ||||
| "Nonbreaking space": "\u04ae\u0437\u0434\u0456\u043a\u0441\u0456\u0437 \u0431\u043e\u0441 \u043e\u0440\u044b\u043d", | ||||
| "Page break": "\u0411\u0435\u0442 \u04af\u0437\u0456\u043b\u0456\u043c\u0456", | ||||
| "Paste as text": "\u041c\u04d9\u0442\u0456\u043d \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u049b\u043e\u044e", | ||||
| "Preview": "\u0410\u043b\u0434\u044b\u043d-\u0430\u043b\u0430 \u049b\u0430\u0440\u0430\u0443", | ||||
| "Print...": "\u0411\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443...", | ||||
| "Save": "\u0421\u0430\u049b\u0442\u0430\u0443", | ||||
| "Find": "\u0422\u0430\u0431\u044b\u043b\u0430\u0442\u044b\u043d \u043c\u04d9\u0442\u0456\u043d", | ||||
| "Replace with": "\u0410\u0443\u044b\u0441\u0442\u044b\u0440\u0430\u0442\u044b\u043d \u043c\u04d9\u0442\u0456\u043d", | ||||
| "Replace": "\u0410\u0443\u044b\u0441\u0442\u044b\u0440\u0443", | ||||
| "Replace all": "\u0411\u0430\u0440\u043b\u044b\u0493\u044b\u043d \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443", | ||||
| "Previous": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b", | ||||
| "Next": "\u041a\u0435\u043b\u0435\u0441\u0456", | ||||
| "Find and replace...": "\u0422\u0430\u0431\u0443 \u0436\u04d9\u043d\u0435 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443...", | ||||
| "Could not find the specified string.": "\u041a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0433\u0435\u043d \u0436\u043e\u043b \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.", | ||||
| "Match case": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0434\u0456 \u0435\u0441\u043a\u0435\u0440\u0443", | ||||
| "Find whole words only": "\u0422\u0435\u043a \u0431\u04af\u0442\u0456\u043d \u0441\u04e9\u0437\u0434\u0435\u0440\u0434\u0456 \u0442\u0430\u0431\u0443", | ||||
| "Spell check": "\u0415\u043c\u043b\u0435\u043d\u0456 \u0442\u0435\u043a\u0441\u0435\u0440\u0443", | ||||
| "Ignore": "\u0415\u043b\u0435\u043c\u0435\u0443", | ||||
| "Ignore all": "\u0415\u0448\u049b\u0430\u0439\u0441\u044b\u0441\u044b\u043d \u0435\u043b\u0435\u043c\u0435\u0443", | ||||
| "Finish": "\u0410\u044f\u049b\u0442\u0430\u0443", | ||||
| "Add to Dictionary": "\u0421\u04e9\u0437\u0434\u0456\u043a\u043a\u0435 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", | ||||
| "Insert table": "\u041a\u0435\u0441\u0442\u0435 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", | ||||
| "Table properties": "\u041a\u0435\u0441\u0442\u0435 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440\u044b", | ||||
| "Delete table": "\u041a\u0435\u0441\u0442\u0435\u043d\u0456 \u0436\u043e\u044e", | ||||
| "Cell": "\u04b0\u044f\u0448\u044b\u049b", | ||||
| "Row": "\u0416\u043e\u043b", | ||||
| "Column": "\u0411\u0430\u0493\u0430\u043d", | ||||
| "Cell properties": "\u04b0\u044f\u0448\u044b\u049b \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440\u044b", | ||||
| "Merge cells": "\u04b0\u044f\u0448\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0443", | ||||
| "Split cell": "\u04b0\u044f\u0448\u044b\u049b\u0442\u044b \u0431\u04e9\u043b\u0443", | ||||
| "Insert row before": "\u04ae\u0441\u0442\u0456\u043d\u0435 \u0436\u043e\u043b \u049b\u043e\u0441\u0443", | ||||
| "Insert row after": "\u0410\u0441\u0442\u044b\u043d\u0430 \u0436\u043e\u043b \u049b\u043e\u0441\u0443", | ||||
| "Delete row": "\u0416\u043e\u043b\u0434\u044b \u0436\u043e\u044e", | ||||
| "Row properties": "\u0416\u043e\u043b \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440\u044b", | ||||
| "Cut row": "\u0416\u043e\u043b\u0434\u044b \u049b\u0438\u044b\u043f \u0430\u043b\u0443", | ||||
| "Copy row": "\u0416\u043e\u043b\u0434\u044b \u043a\u04e9\u0448\u0456\u0440\u0443", | ||||
| "Paste row before": "\u0416\u043e\u043b\u0434\u044b\u04a3 \u04af\u0441\u0442\u0456\u043d\u0435 \u049b\u043e\u044e", | ||||
| "Paste row after": "\u0416\u043e\u043b\u0434\u044b\u04a3 \u0430\u0441\u0442\u044b\u043d\u0430 \u049b\u043e\u044e", | ||||
| "Insert column before": "\u0410\u043b\u0434\u044b\u043d\u0430 \u0431\u0430\u0493\u0430\u043d \u049b\u043e\u0441\u0443", | ||||
| "Insert column after": "\u0410\u0440\u0442\u044b\u043d\u0430 \u0431\u0430\u0493\u0430\u043d \u049b\u043e\u0441\u0443", | ||||
| "Delete column": "\u0411\u0430\u0493\u0430\u043d\u0434\u044b \u0436\u043e\u044e", | ||||
| "Cols": "\u0411\u0430\u0493\u0430\u043d\u044b", | ||||
| "Rows": "\u0416\u043e\u043b\u044b", | ||||
| "Width": "\u04b0\u0437\u044b\u043d\u0434\u044b\u0493\u044b", | ||||
| "Height": "\u0411\u0438\u0456\u043a\u0442\u0456\u0433\u0456", | ||||
| "Cell spacing": "\u04b0\u044f\u0448\u044b\u049b \u0430\u0440\u0430\u043b\u044b\u0493\u044b", | ||||
| "Cell padding": "\u04b0\u044f\u0448\u044b\u049b \u043a\u0435\u04a3\u0434\u0456\u0433\u0456", | ||||
| "Show caption": "\u0416\u0430\u0437\u0431\u0430\u043d\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0443", | ||||
| "Left": "\u0421\u043e\u043b\u0493\u0430", | ||||
| "Center": "\u041e\u0440\u0442\u0430\u0441\u044b\u043d\u0430", | ||||
| "Right": "\u041e\u04a3\u0493\u0430", | ||||
| "Cell type": "\u04b0\u044f\u0448\u044b\u049b \u0442\u0438\u043f\u0456", | ||||
| "Scope": "\u0410\u0443\u043c\u0430\u0493\u044b", | ||||
| "Alignment": "\u041e\u0440\u043d\u0430\u043b\u0430\u0441\u0443\u044b", | ||||
| "H Align": "\u041a\u04e9\u043b\u0434\u0435\u043d\u0435\u04a3\u043d\u0435\u043d \u0442\u0443\u0440\u0430\u043b\u0430\u0443", | ||||
| "V Align": "\u0422\u0456\u0433\u0456\u043d\u0435\u043d \u0442\u0443\u0440\u0430\u043b\u0430\u0443", | ||||
| "Top": "\u04ae\u0441\u0442\u0456", | ||||
| "Middle": "\u041e\u0440\u0442\u0430\u0441\u044b", | ||||
| "Bottom": "\u0410\u0441\u0442\u044b", | ||||
| "Header cell": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0448\u0430 \u04b1\u044f\u0448\u044b\u049b", | ||||
| "Row group": "\u0416\u043e\u043b \u0442\u043e\u0431\u044b", | ||||
| "Column group": "\u0411\u0430\u0493\u0430\u043d \u0442\u043e\u0431\u044b", | ||||
| "Row type": "\u0416\u043e\u043b \u0442\u0438\u043f\u0456", | ||||
| "Header": "\u0411\u0430\u0441 \u0436\u0430\u0493\u044b", | ||||
| "Body": "\u041d\u0435\u0433\u0456\u0437\u0433\u0456 \u0431\u04e9\u043b\u0456\u0433\u0456", | ||||
| "Footer": "\u0410\u044f\u049b \u0436\u0430\u0493\u044b", | ||||
| "Border color": "\u0416\u0438\u0435\u043a \u0442\u04af\u0441\u0456", | ||||
| "Insert template...": "\u04ae\u043b\u0433\u0456 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443...", | ||||
| "Templates": "\u04ae\u043b\u0433\u0456\u043b\u0435\u0440", | ||||
| "Template": "\u04ae\u043b\u0433\u0456", | ||||
| "Text color": "\u041c\u04d9\u0442\u0456\u043d \u0442\u04af\u0441\u0456", | ||||
| "Background color": "\u04e8\u04a3\u0456\u043d\u0456\u04a3 \u0442\u04af\u0441\u0456", | ||||
| "Custom...": "\u04e8\u0437\u0433\u0435\u0440\u0442\u0443", | ||||
| "Custom color": "\u0422\u04af\u0441 \u04e9\u0437\u0433\u0435\u0440\u0442\u0443", | ||||
| "No color": "\u0422\u04af\u0441\u0441\u0456\u0437", | ||||
| "Remove color": "\u0422\u04af\u0441\u0442\u0456 \u0436\u043e\u044e", | ||||
| "Table of Contents": "\u041c\u0430\u0437\u043c\u04b1\u043d\u0434\u0430\u0440 \u043a\u0435\u0441\u0442\u0435\u0441\u0456", | ||||
| "Show blocks": "\u0411\u043b\u043e\u043a\u0442\u0430\u0440\u0434\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0443", | ||||
| "Show invisible characters": "\u041a\u04e9\u0440\u0456\u043d\u0431\u0435\u0439\u0442\u0456\u043d \u0442\u0430\u04a3\u0431\u0430\u043b\u0430\u0440\u0434\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0443", | ||||
| "Word count": "\u0421\u04e9\u0437 \u0441\u0430\u043d\u044b", | ||||
| "Count": "\u0421\u0430\u043d\u044b", | ||||
| "Document": "\u049a\u04b1\u0436\u0430\u0442", | ||||
| "Selection": "\u0422\u0430\u04a3\u0434\u0430\u0443", | ||||
| "Words": "\u0421\u04e9\u0437\u0434\u0435\u0440", | ||||
| "Words: {0}": "\u0421\u04e9\u0437 \u0441\u0430\u043d\u044b: {0}", | ||||
| "{0} words": "{0} \u0441\u04e9\u0437", | ||||
| "File": "\u0424\u0430\u0439\u043b", | ||||
| "Edit": "\u0422\u04af\u0437\u0435\u0442\u0443", | ||||
| "Insert": "\u041a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", | ||||
| "View": "\u041a\u04e9\u0440\u0456\u043d\u0456\u0441", | ||||
| "Format": "\u0424\u043e\u0440\u043c\u0430\u0442", | ||||
| "Table": "\u041a\u0435\u0441\u0442\u0435", | ||||
| "Tools": "\u049a\u04b1\u0440\u0430\u043b\u0434\u0430\u0440", | ||||
| "Powered by {0}": "{0} \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f\u0441\u044b\u043d\u0430 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0424\u043e\u0440\u043c\u0430\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u043c\u04d9\u0442\u0456\u043d \u0430\u0443\u043c\u0430\u0493\u044b. \u041c\u0435\u043d\u044e \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d ALT-F9 \u0431\u0430\u0441\u044b\u04a3\u044b\u0437. \u049a\u04b1\u0440\u0430\u043b\u0434\u0430\u0440 \u043f\u0430\u043d\u0435\u043b\u0456\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d ALT-F10 \u0431\u0430\u0441\u044b\u04a3\u044b\u0437. \u041a\u04e9\u043c\u0435\u043a \u0430\u043b\u0443 \u04af\u0448\u0456\u043d ALT-0 \u0431\u0430\u0441\u044b\u04a3\u044b\u0437.", | ||||
| "Image title": "\u041a\u0435\u0441\u043a\u0456\u043d \u0430\u0442\u0430\u0443\u044b", | ||||
| "Border width": "\u0416\u0438\u0435\u043a \u0435\u043d\u0456", | ||||
| "Border style": "\u0416\u0438\u0435\u043a \u043c\u04d9\u043d\u0435\u0440\u0456", | ||||
| "Error": "\u049a\u0430\u0442\u0435", | ||||
| "Warn": "\u0415\u0441\u043a\u0435\u0440\u0442\u0443", | ||||
| "Valid": "\u0416\u0430\u0440\u0430\u043c\u0434\u044b", | ||||
| "To open the popup, press Shift+Enter": "\u049a\u0430\u043b\u049b\u044b\u043c\u0430\u043b\u044b \u0442\u0435\u0440\u0435\u0437\u0435\u043d\u0456 \u0430\u0448\u0443 \u04af\u0448\u0456\u043d Shift+Enter \u0431\u0430\u0441\u044b\u04a3\u044b\u0437", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u041f\u0456\u0448\u0456\u043c\u0434\u0435\u043b\u0433\u0435\u043d \u043c\u04d9\u0442\u0456\u043d \u0430\u0443\u043c\u0430\u0493\u044b. \u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430 \u0430\u043b\u0443 \u04af\u0448\u0456\u043d ALT-0 \u0431\u0430\u0441\u044b\u04a3\u044b\u0437.", | ||||
| "System Font": "\u0416\u04af\u0439\u0435 \u049b\u0430\u0440\u043f\u0456", | ||||
| "Failed to upload image: {0}": "\u041a\u0435\u0441\u043a\u0456\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0441\u0430\u043b\u044b\u043d\u0431\u0430\u0434\u044b: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u049a\u043e\u0441\u044b\u043b\u0430\u0442\u044b\u043d \u043c\u043e\u0434\u0443\u043b\u044c \u0436\u04af\u043a\u0442\u0435\u043b\u043c\u0435\u0434\u0456: {0} {1} URL \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d\u0430\u043d", | ||||
| "Failed to load plugin url: {0}": "\u049a\u043e\u0441\u044b\u043b\u0430\u0442\u044b\u043d \u043c\u043e\u0434\u0443\u043b\u044c \u0436\u04af\u043a\u0442\u0435\u043b\u043c\u0435\u0434\u0456 URL \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b: {0}", | ||||
| "Failed to initialize plugin: {0}": "\u049a\u043e\u0441\u044b\u043b\u0430\u0442\u044b\u043d \u043c\u043e\u0434\u0443\u043b\u044c \u0431\u0430\u043f\u0442\u0430\u043d\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b: {0}", | ||||
| "example": "\u043c\u044b\u0441\u0430\u043b", | ||||
| "Search": "\u0406\u0437\u0434\u0435\u0443", | ||||
| "All": "\u0411\u0430\u0440\u043b\u044b\u0493\u044b", | ||||
| "Currency": "\u0412\u0430\u043b\u044e\u0442\u0430", | ||||
| "Text": "\u041c\u04d9\u0442\u0456\u043d", | ||||
| "Quotations": "\u0422\u044b\u0440\u043d\u0430\u049b\u0448\u0430\u043b\u0430\u0440", | ||||
| "Mathematical": "\u041c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0430\u043b\u044b\u049b", | ||||
| "Extended Latin": "\u041a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d \u043b\u0430\u0442\u044b\u043d", | ||||
| "Symbols": "\u0422\u0430\u04a3\u0431\u0430\u043b\u0430\u0440", | ||||
| "Arrows": "\u041a\u04e9\u0440\u0441\u0435\u0442\u043a\u0456\u043b\u0435\u0440", | ||||
| "User Defined": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u0493\u0430\u043d", | ||||
| "dollar sign": "\u0434\u043e\u043b\u043b\u0430\u0440 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "currency sign": "\u0432\u0430\u043b\u044e\u0442\u0430 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "euro-currency sign": "\u0435\u0443\u0440\u043e \u0432\u0430\u043b\u044e\u0442\u0430\u0441\u044b\u043d\u044b\u04a3 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "colon sign": "\u049b\u043e\u0441 \u043d\u04af\u043a\u0442\u0435 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "cruzeiro sign": "\u043a\u0440\u0443\u0437\u0435\u0439\u0440\u043e \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "french franc sign": "\u0444\u0440\u0430\u043d\u0446\u0443\u0437\u0434\u044b\u049b \u0444\u0440\u0430\u043d\u043a \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "lira sign": "\u043b\u0438\u0440\u0430 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "mill sign": "\u043c\u0438\u043b\u043b \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "naira sign": "\u043d\u0430\u0439\u0440\u0430 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "peseta sign": "\u043f\u0435\u0441\u0435\u0442\u0430 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "rupee sign": "\u0440\u0443\u043f\u0438\u044f \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "won sign": "\u0432\u043e\u043d \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "new sheqel sign": "\u0436\u0430\u04a3\u0430 \u0448\u0435\u043a\u0435\u043b\u044c \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "dong sign": "\u0434\u043e\u043d\u0433 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "kip sign": "\u043a\u0438\u043f \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "tugrik sign": "\u0442\u0443\u0433\u0440\u0438\u043a \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "drachma sign": "\u0434\u0440\u0430\u0445\u043c\u0430 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "german penny symbol": "\u0433\u0435\u0440\u043c\u0430\u043d\u0434\u044b\u049b \u043f\u0435\u043d\u043d\u0438 \u0442\u0430\u04a3\u0431\u0430\u0441\u044b", | ||||
| "peso sign": "\u043f\u0435\u0441\u043e \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "guarani sign": "\u0433\u0443\u0430\u0440\u0430\u043d\u0438 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "austral sign": "\u0430\u0443\u0441\u0442\u0440\u0430\u043b \u0431\u0435\u0433\u043b\u0456\u0441\u0456", | ||||
| "hryvnia sign": "\u0433\u0440\u0438\u0432\u043d\u0430 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "cedi sign": "\u0441\u0435\u0434\u0438 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "livre tournois sign": "\u0442\u0443\u0440 \u043b\u0438\u0432\u0440\u044b \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "spesmilo sign": "\u0441\u043f\u0435\u0441\u043c\u0438\u043b\u043e \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "tenge sign": "\u0442\u0435\u04a3\u0433\u0435 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "indian rupee sign": "\u04af\u043d\u0434\u0456 \u0440\u0443\u043f\u0438\u044f\u0441\u044b \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "turkish lira sign": "\u0442\u04af\u0440\u0456\u043a \u043b\u0438\u0440\u0430\u0441\u044b \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "nordic mark sign": "\u0441\u043a\u0430\u043d\u0434\u0438\u043d\u0430\u0432\u0438\u044f\u043b\u044b\u049b \u043c\u0430\u0440\u043a\u0430 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "manat sign": "\u043c\u0430\u043d\u0430\u0442 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "ruble sign": "\u0440\u0443\u0431\u043b\u044c \u0431\u0435\u043b\u0433\u0456\u0441\u0456", | ||||
| "yen character": "\u0439\u0435\u043d\u0430 \u0442\u0430\u04a3\u0431\u0430\u0441\u044b", | ||||
| "yuan character": "\u044e\u0430\u043d\u044c \u0442\u0430\u04a3\u0431\u0430\u0441\u044b", | ||||
| "yuan character, in hong kong and taiwan": "\u044e\u0430\u043d\u044c \u0442\u0430\u04a3\u0431\u0430\u0441\u044b, \u0413\u043e\u043d\u043a\u043e\u043d\u0433 \u043f\u0435\u043d \u0422\u0430\u0439\u0432\u0430\u043d\u044c\u0434\u0430", | ||||
| "yen\/yuan character variant one": "\u0439\u0435\u043d\u0430\/\u044e\u0430\u043d\u044c \u0442\u0430\u04a3\u0431\u0430\u0441\u044b\u043d\u044b\u04a3 \u0431\u0456\u0440\u0456\u043d\u0448\u0456 \u043d\u04b1\u0441\u049b\u0430\u0441\u044b", | ||||
| "Loading emoticons...": "\u042d\u043c\u043e\u0442\u0438\u043a\u043e\u043d\u0434\u0430\u0440 \u0436\u04af\u043a\u0442\u0435\u043b\u0443\u0434\u0435...", | ||||
| "Could not load emoticons": "\u042d\u043c\u043e\u0442\u0438\u043a\u043e\u043d\u0434\u0430\u0440\u0434\u044b \u0436\u04af\u043a\u0442\u0435\u0443 \u043c\u04af\u043c\u043a\u0456\u043d \u0431\u043e\u043b\u043c\u0430\u0434\u044b", | ||||
| "People": "\u0410\u0434\u0430\u043c\u0434\u0430\u0440", | ||||
| "Animals and Nature": "\u0416\u0430\u043d\u0443\u0430\u0440\u043b\u0430\u0440 \u0436\u04d9\u043d\u0435 \u0442\u0430\u0431\u0438\u0493\u0430\u0442", | ||||
| "Food and Drink": "\u0422\u0430\u0493\u0430\u043c\u0434\u0430\u0440 \u0436\u04d9\u043d\u0435 \u0441\u0443\u0441\u044b\u043d\u0434\u0430\u0440", | ||||
| "Activity": "\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u043b\u0456\u043a", | ||||
| "Travel and Places": "\u0421\u0430\u044f\u0445\u0430\u0442 \u0436\u04d9\u043d\u0435 \u043e\u0440\u044b\u043d\u0434\u0430\u0440", | ||||
| "Objects": "\u041d\u044b\u0441\u0430\u043d\u0434\u0430\u0440", | ||||
| "Flags": "\u0422\u0443\u043b\u0430\u0440", | ||||
| "Characters": "\u0422\u0430\u04a3\u0431\u0430\u043b\u0430\u0440", | ||||
| "Characters (no spaces)": "\u0422\u0430\u04a3\u0431\u0430\u043b\u0430\u0440 (\u043e\u0440\u044b\u043d\u0434\u0430\u0440\u0441\u044b\u0437)", | ||||
| "{0} characters": "{0} \u0442\u0430\u04a3\u0431\u0430", | ||||
| "Error: Form submit field collision.": "\u049a\u0430\u0442\u0435: \u043f\u0456\u0448\u0456\u043d\u0434\u0456 \u0436\u0456\u0431\u0435\u0440\u0443 \u04e9\u0440\u0456\u0441\u0456\u043d\u0456\u04a3 \u049b\u0430\u0439\u0448\u044b\u043b\u044b\u0493\u044b.", | ||||
| "Error: No form element found.": "\u049a\u0430\u0442\u0435: \u043f\u0456\u0448\u0456\u043d \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0456 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.", | ||||
| "Update": "\u0416\u0430\u04a3\u0430\u0440\u0442\u0443", | ||||
| "Color swatch": "\u0422\u04af\u0441 \u04af\u043b\u0433\u0456\u0441\u0456", | ||||
| "Turquoise": "\u041a\u04e9\u0433\u0456\u043b\u0434\u0456\u0440", | ||||
| "Green": "\u0416\u0430\u0441\u044b\u043b", | ||||
| "Blue": "\u041a\u04e9\u043a", | ||||
| "Purple": "\u041a\u04af\u043b\u0433\u0456\u043d", | ||||
| "Navy Blue": "\u041a\u04af\u04a3\u0433\u0456\u0440\u0442 \u043a\u04e9\u043a", | ||||
| "Dark Turquoise": "\u041a\u04af\u04a3\u0433\u0456\u0440\u0442 \u043a\u04e9\u0433\u0456\u043b\u0434\u0456\u0440", | ||||
| "Dark Green": "\u041a\u04af\u04a3\u0433\u0456\u0440\u0442 \u0436\u0430\u0441\u044b\u043b", | ||||
| "Medium Blue": "\u041e\u0440\u0442\u0430\u0448\u0430 \u043a\u04e9\u043a", | ||||
| "Medium Purple": "\u041e\u0440\u0442\u0430\u0448\u0430 \u043a\u04af\u043b\u0433\u0456\u043d", | ||||
| "Midnight Blue": "\u0422\u04af\u043d\u0433\u0456 \u043a\u04e9\u043a", | ||||
| "Yellow": "\u0421\u0430\u0440\u044b", | ||||
| "Orange": "\u0421\u0430\u0440\u0493\u044b\u0448", | ||||
| "Red": "\u049a\u044b\u0437\u044b\u043b", | ||||
| "Light Gray": "\u0410\u0448\u044b\u049b \u0441\u04b1\u0440", | ||||
| "Gray": "\u0421\u04b1\u0440", | ||||
| "Dark Yellow": "\u041a\u04af\u04a3\u0433\u0456\u0440\u0442 \u0441\u0430\u0440\u044b", | ||||
| "Dark Orange": "\u041a\u04af\u04a3\u0433\u0456\u0440\u0442 \u0441\u0430\u0440\u0493\u044b\u0448", | ||||
| "Dark Red": "\u041a\u04af\u04a3\u0433\u0456\u0440\u0442 \u049b\u044b\u0437\u044b\u043b", | ||||
| "Medium Gray": "\u041e\u0440\u0442\u0430\u0448\u0430 \u0441\u04b1\u0440", | ||||
| "Dark Gray": "\u041a\u04af\u04a3\u0433\u0456\u0440\u0442 \u0441\u04b1\u0440", | ||||
| "Light Green": "\u0410\u0448\u044b\u049b \u0436\u0430\u0441\u044b\u043b", | ||||
| "Light Yellow": "\u0410\u0448\u044b\u049b \u0441\u0430\u0440\u044b", | ||||
| "Light Red": "\u0410\u0448\u044b\u049b \u049b\u044b\u0437\u044b\u043b", | ||||
| "Light Purple": "\u0410\u0448\u044b\u049b \u043a\u04af\u043b\u0433\u0456\u043d", | ||||
| "Light Blue": "\u0410\u0448\u044b\u049b \u043a\u04e9\u043a", | ||||
| "Dark Purple": "\u049a\u0430\u0440\u0430 \u043a\u04af\u043b\u0433\u0456\u043d", | ||||
| "Dark Blue": "\u049a\u0430\u0440\u0430 \u043a\u04e9\u043a", | ||||
| "Black": "\u049a\u0430\u0440\u0430", | ||||
| "White": "\u0410\u049b", | ||||
| "Switch to or from fullscreen mode": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d \u0440\u0435\u0436\u0438\u043c\u0456\u043d\u0435 \u043d\u0435\u043c\u0435\u0441\u0435 \u043e\u0434\u0430\u043d \u0430\u0443\u044b\u0441\u0443", | ||||
| "Open help dialog": "\u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430 \u0434\u0438\u0430\u043b\u043e\u0433\u0442\u044b\u049b \u0442\u0435\u0440\u0435\u0437\u0435\u0441\u0456\u043d \u0430\u0448\u0443", | ||||
| "history": "\u0442\u0430\u0440\u0438\u0445", | ||||
| "styles": "\u0441\u0442\u0438\u043b\u044c\u0434\u0435\u0440", | ||||
| "formatting": "\u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0443", | ||||
| "alignment": "\u0442\u0443\u0440\u0430\u043b\u0430\u0443", | ||||
| "indentation": "\u0448\u0435\u0433\u0456\u043d\u0456\u0441", | ||||
| "permanent pen": "\u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u0442\u0456\u043a \u043c\u0430\u0440\u043a\u0435\u0440", | ||||
| "comments": "\u0442\u04af\u0441\u0456\u043d\u0434\u0456\u0440\u043c\u0435\u043b\u0435\u0440", | ||||
| "Format Painter": "\u04ae\u043b\u0433\u0456 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0443", | ||||
| "Insert\/edit iframe": "iframe \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443\/\u04e9\u04a3\u0434\u0435\u0443", | ||||
| "Capitalization": "\u0411\u0430\u0441 \u04d9\u0440\u0456\u043f\u043a\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443", | ||||
| "lowercase": "\u043a\u0456\u0448\u0456 \u04d9\u0440\u0456\u043f", | ||||
| "UPPERCASE": "\u0411\u0410\u0421 \u04d8\u0420\u0406\u041f", | ||||
| "Title Case": "\u0406\u0441 \u0430\u0442\u0430\u0443\u044b", | ||||
| "Permanent Pen Properties": "\u041f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u0442\u0456\u043a \u043c\u0430\u0440\u043a\u0435\u0440 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440\u044b", | ||||
| "Permanent pen properties...": "\u041f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u0442\u0456\u043a \u043c\u0430\u0440\u043a\u0435\u0440 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440\u044b...", | ||||
| "Font": "\u049a\u0430\u0440\u0456\u043f", | ||||
| "Size": "\u04e8\u043b\u0448\u0435\u043c", | ||||
| "More...": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430...", | ||||
| "Spellcheck Language": "\u0415\u043c\u043b\u0435\u043d\u0456 \u0442\u0435\u043a\u0441\u0435\u0440\u0443 \u0442\u0456\u043b\u0456", | ||||
| "Select...": "\u0422\u0430\u04a3\u0434\u0430\u0443...", | ||||
| "Preferences": "\u0411\u0430\u043f\u0442\u0430\u043b\u044b\u043c\u0434\u0430\u0440", | ||||
| "Yes": "\u0418\u04d9", | ||||
| "No": "\u0416\u043e\u049b", | ||||
| "Keyboard Navigation": "\u041f\u0435\u0440\u043d\u0435\u0442\u0430\u049b\u0442\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f\u0441\u044b", | ||||
| "Version": "\u041d\u04b1\u0441\u049b\u0430", | ||||
| "Anchor": "\u0411\u0435\u0442\u0431\u0435\u043b\u0433\u0456", | ||||
| "Special character": "\u0410\u0440\u043d\u0430\u0439\u044b \u0442\u0430\u04a3\u0431\u0430", | ||||
| "Color": "\u0422\u04af\u0441", | ||||
| "Emoticons": "\u0421\u043c\u0430\u0439\u043b\u0438\u043a\u0442\u0430\u0440", | ||||
| "Document properties": "\u049a\u04b1\u0436\u0430\u0442 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440\u044b", | ||||
| "Image": "\u0421\u0443\u0440\u0435\u0442", | ||||
| "Insert link": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443", | ||||
| "Link": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435", | ||||
| "Target": "\u0410\u0448\u044b\u043b\u0430\u0442\u044b\u043d \u0436\u0435\u0440\u0456", | ||||
| "Media": "\u041c\u0435\u0434\u0438\u0430", | ||||
| "Poster": "\u041f\u043e\u0441\u0442\u0435\u0440\u0456", | ||||
| "Print": "\u0411\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443", | ||||
| "Whole words": "\u0422\u04b1\u0442\u0430\u0441 \u0441\u04e9\u0437\u0434\u0435\u0440", | ||||
| "Find and replace": "\u0422\u0430\u0431\u0443 \u0436\u04d9\u043d\u0435 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443", | ||||
| "Prev": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b", | ||||
| "Spellcheck": "\u0415\u043c\u043b\u0435 \u0442\u0435\u043a\u0441\u0435\u0440\u0443", | ||||
| "Caption": "\u0410\u0442\u0430\u0443\u044b", | ||||
| "Insert template": "\u04ae\u043b\u0433\u0456 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0443" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/ko_KR.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/ko_KR.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('ko_KR',{ | ||||
| "Redo": "\ub2e4\uc2dc \uc2e4\ud589", | ||||
| "Undo": "\uc2e4\ud589 \ucde8\uc18c", | ||||
| "Cut": "\uc798\ub77c\ub0b4\uae30", | ||||
| "Copy": "\ubcf5\uc0ac", | ||||
| "Paste": "\ubd99\uc5ec\ub123\uae30", | ||||
| "Select all": "\uc804\uccb4\uc120\ud0dd", | ||||
| "New document": "\uc0c8 \ubb38\uc11c", | ||||
| "Ok": "\ud655\uc778", | ||||
| "Cancel": "\ucde8\uc18c", | ||||
| "Visual aids": "\uc2dc\uac01\uad50\uc7ac", | ||||
| "Bold": "\uad75\uac8c", | ||||
| "Italic": "\uae30\uc6b8\uc784\uaf34", | ||||
| "Underline": "\ubc11\uc904", | ||||
| "Strikethrough": "\ucde8\uc18c\uc120", | ||||
| "Superscript": "\uc704 \ucca8\uc790", | ||||
| "Subscript": "\uc544\ub798 \ucca8\uc790", | ||||
| "Clear formatting": "\uc11c\uc2dd \uc9c0\uc6b0\uae30", | ||||
| "Align left": "\uc67c\ucabd \ub9de\ucda4", | ||||
| "Align center": "\uac00\uc6b4\ub370 \ub9de\ucda4", | ||||
| "Align right": "\uc624\ub978\ucabd \ub9de\ucda4", | ||||
| "Justify": "\uc591\ucabd \ub9de\ucda4", | ||||
| "Bullet list": "\uae00\uba38\ub9ac \uae30\ud638 \ubaa9\ub85d", | ||||
| "Numbered list": "\ubc88\ud638 \ub9e4\uae30\uae30 \ubaa9\ub85d", | ||||
| "Decrease indent": "\ub0b4\uc5b4\uc4f0\uae30", | ||||
| "Increase indent": "\ub4e4\uc5ec\uc4f0\uae30", | ||||
| "Close": "\ub2eb\uae30", | ||||
| "Formats": "\uc11c\uc2dd", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\ube0c\ub77c\uc6b0\uc800\uac00 \ud074\ub9bd\ubcf4\ub4dc \uc811\uadfc\uc744 \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. Ctrl+X\/C\/V \ub2e8\ucd95\ud0a4\ub97c \uc774\uc6a9\ud558\uc2ed\uc2dc\uc624.", | ||||
| "Headers": "\uba38\ub9ac\uae00", | ||||
| "Header 1": "\uba38\ub9ac\uae00 1", | ||||
| "Header 2": "\uba38\ub9ac\uae00 2", | ||||
| "Header 3": "\uba38\ub9ac\uae00 3", | ||||
| "Header 4": "\uba38\ub9ac\uae00 4", | ||||
| "Header 5": "\uba38\ub9ac\uae00 5", | ||||
| "Header 6": "\uba38\ub9ac\uae00 6", | ||||
| "Headings": "\uc81c\ubaa9", | ||||
| "Heading 1": "\uc81c\ubaa9 1", | ||||
| "Heading 2": "\uc81c\ubaa9 2", | ||||
| "Heading 3": "\uc81c\ubaa9 3", | ||||
| "Heading 4": "\uc81c\ubaa9 4", | ||||
| "Heading 5": "\uc81c\ubaa9 5", | ||||
| "Heading 6": "\uc81c\ubaa9 6", | ||||
| "Preformatted": "\uc11c\uc2dd \ubbf8\uc124\uc815", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "\ucf54\ub4dc", | ||||
| "Paragraph": "\ub2e8\ub77d", | ||||
| "Blockquote": "\uc778\uc6a9\ubb38", | ||||
| "Inline": "\uc778\ub77c\uc778", | ||||
| "Blocks": "\ube14\ub85d", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\uc2a4\ud0c0\uc77c\ubcf5\uc0ac \ub044\uae30. \uc774 \uc635\uc158\uc744 \ub044\uae30 \uc804\uc5d0\ub294 \ubcf5\uc0ac \uc2dc, \uc2a4\ud0c0\uc77c\uc774 \ubcf5\uc0ac\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.", | ||||
| "Fonts": "\uae00\uaf34", | ||||
| "Font Sizes": "\uae00\uaf34 \ud06c\uae30", | ||||
| "Class": "\ud074\ub798\uc2a4", | ||||
| "Browse for an image": "\uc774\ubbf8\uc9c0 \ucc3e\uae30", | ||||
| "OR": "\ub610\ub294", | ||||
| "Drop an image here": "\uc5ec\uae30\ub85c \uc774\ubbf8\uc9c0 \ub04c\uc5b4\uc624\uae30", | ||||
| "Upload": "\uc5c5\ub85c\ub4dc", | ||||
| "Block": "\ube14\ub85d", | ||||
| "Align": "\uc815\ub82c", | ||||
| "Default": "\uae30\ubcf8", | ||||
| "Circle": "\uc6d0", | ||||
| "Disc": "\uc6d0\ubc18", | ||||
| "Square": "\uc0ac\uac01", | ||||
| "Lower Alpha": "\uc54c\ud30c\ubcb3 \uc18c\ubb38\uc790", | ||||
| "Lower Greek": "\uadf8\ub9ac\uc2a4\uc5b4 \uc18c\ubb38\uc790", | ||||
| "Lower Roman": "\ub85c\ub9c8\uc790 \uc18c\ubb38\uc790", | ||||
| "Upper Alpha": "\uc54c\ud30c\ubcb3 \uc18c\ubb38\uc790", | ||||
| "Upper Roman": "\ub85c\ub9c8\uc790 \ub300\ubb38\uc790", | ||||
| "Anchor...": "\uc575\ucee4...", | ||||
| "Name": "\uc774\ub984", | ||||
| "Id": "\uc544\uc774\ub514", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\uc544\uc774\ub514\ub294 \ubb38\uc790, \uc22b\uc790, \ub300\uc2dc, \uc810, \ucf5c\ub860 \ub610\ub294 \ubc11\uc904\ub85c \uc2dc\uc791\ud574\uc57c\ud569\ub2c8\ub2e4.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\uc800\uc7a5\ud558\uc9c0 \uc54a\uc740 \uc815\ubcf4\uac00 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \ud398\uc774\uc9c0\ub97c \ubc97\uc5b4\ub098\uc2dc\uaca0\uc2b5\ub2c8\uae4c?", | ||||
| "Restore last draft": "\ub9c8\uc9c0\ub9c9 \ucd08\uc548 \ubcf5\uc6d0", | ||||
| "Special character...": "\ud2b9\uc218 \ubb38\uc790...", | ||||
| "Source code": "\uc18c\uc2a4\ucf54\ub4dc", | ||||
| "Insert\/Edit code sample": "\ucf54\ub4dc\uc0d8\ud50c \uc0bd\uc785\/\ud3b8\uc9d1", | ||||
| "Language": "\uc5b8\uc5b4", | ||||
| "Code sample...": "\ucf54\ub4dc \uc0d8\ud50c...", | ||||
| "Color Picker": "\uc0c9 \uc120\ud0dd\uae30", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "\uc67c\ucabd\uc5d0\uc11c \uc624\ub978\ucabd", | ||||
| "Right to left": "\uc624\ub978\ucabd\uc5d0\uc11c \uc67c\ucabd", | ||||
| "Emoticons...": "\uc774\ubaa8\ud2f0\ucf58...", | ||||
| "Metadata and Document Properties": "\uba54\ud0c0\ub370\uc774\ud130\uc640 \ubb38\uc11c \uc18d\uc131", | ||||
| "Title": "\uc81c\ubaa9", | ||||
| "Keywords": "\ud0a4\uc6cc\ub4dc", | ||||
| "Description": "\uc124\uba85", | ||||
| "Robots": "\ub85c\ubd07", | ||||
| "Author": "\uc800\uc790", | ||||
| "Encoding": "\uc778\ucf54\ub529", | ||||
| "Fullscreen": "\uc804\uccb4\ud654\uba74", | ||||
| "Action": "\ub3d9\uc791", | ||||
| "Shortcut": "\ub2e8\ucd95\ud0a4", | ||||
| "Help": "\ub3c4\uc6c0\ub9d0", | ||||
| "Address": "\uc8fc\uc18c", | ||||
| "Focus to menubar": "\uba54\ub274\uc5d0 \ud3ec\ucee4\uc2a4", | ||||
| "Focus to toolbar": "\ud234\ubc14\uc5d0 \ud3ec\ucee4\uc2a4", | ||||
| "Focus to element path": "element path\uc5d0 \ud3ec\ucee4\uc2a4", | ||||
| "Focus to contextual toolbar": "\ucf04\ud14d\uc2a4\ud2b8 \ud234\ubc14\uc5d0 \ud3ec\ucee4\uc2a4", | ||||
| "Insert link (if link plugin activated)": "\ub9c1\ud06c \uc0bd\uc785 (link \ud50c\ub7ec\uadf8\uc778\uc774 \ud65c\uc131\ud654\ub41c \uc0c1\ud0dc\uc5d0\uc11c)", | ||||
| "Save (if save plugin activated)": "\uc800\uc7a5 (save \ud50c\ub7ec\uadf8\uc778\uc774 \ud65c\uc131\ud654\ub41c \uc0c1\ud0dc\uc5d0\uc11c)", | ||||
| "Find (if searchreplace plugin activated)": "\ucc3e\uae30(searchreplace \ud50c\ub7ec\uadf8\uc778\uc774 \ud65c\uc131\ud654\ub41c \uc0c1\ud0dc\uc5d0\uc11c)", | ||||
| "Plugins installed ({0}):": "\uc124\uce58\ub41c \ud50c\ub7ec\uadf8\uc778 ({0}):", | ||||
| "Premium plugins:": "\uace0\uae09 \ud50c\ub7ec\uadf8\uc778", | ||||
| "Learn more...": "\uc880 \ub354 \uc0b4\ud3b4\ubcf4\uae30", | ||||
| "You are using {0}": "{0}\ub97c \uc0ac\uc6a9\uc911", | ||||
| "Plugins": "\ud50c\ub7ec\uadf8\uc778", | ||||
| "Handy Shortcuts": "\ub2e8\ucd95\ud0a4", | ||||
| "Horizontal line": "\uac00\ub85c", | ||||
| "Insert\/edit image": "\uc774\ubbf8\uc9c0 \uc0bd\uc785\/\uc218\uc815", | ||||
| "Image description": "\uc774\ubbf8\uc9c0 \uc124\uba85", | ||||
| "Source": "\uc18c\uc2a4", | ||||
| "Dimensions": "\ud06c\uae30", | ||||
| "Constrain proportions": "\uc791\uc5c5 \uc81c\ud55c", | ||||
| "General": "\uc77c\ubc18", | ||||
| "Advanced": "\uace0\uae09", | ||||
| "Style": "\uc2a4\ud0c0\uc77c", | ||||
| "Vertical space": "\uc218\uc9c1 \uacf5\ubc31", | ||||
| "Horizontal space": "\uc218\ud3c9 \uacf5\ubc31", | ||||
| "Border": "\ud14c\ub450\ub9ac", | ||||
| "Insert image": "\uc774\ubbf8\uc9c0 \uc0bd\uc785", | ||||
| "Image...": "\uc774\ubbf8\uc9c0...", | ||||
| "Image list": "\uc774\ubbf8\uc9c0 \ubaa9\ub85d", | ||||
| "Rotate counterclockwise": "\uc2dc\uacc4\ubc18\ub300\ubc29\ud5a5\uc73c\ub85c \ud68c\uc804", | ||||
| "Rotate clockwise": "\uc2dc\uacc4\ubc29\ud5a5\uc73c\ub85c \ud68c\uc804", | ||||
| "Flip vertically": "\uc218\uc9c1 \ub4a4\uc9d1\uae30", | ||||
| "Flip horizontally": "\uc218\ud3c9 \ub4a4\uc9d1\uae30", | ||||
| "Edit image": "\uc774\ubbf8\uc9c0 \ud3b8\uc9d1", | ||||
| "Image options": "\uc774\ubbf8\uc9c0 \uc635\uc158", | ||||
| "Zoom in": "\ud655\ub300", | ||||
| "Zoom out": "\ucd95\uc18c", | ||||
| "Crop": "\uc790\ub974\uae30", | ||||
| "Resize": "\ud06c\uae30 \uc870\uc808", | ||||
| "Orientation": "\ubc29\ud5a5", | ||||
| "Brightness": "\ubc1d\uae30", | ||||
| "Sharpen": "\uc120\uba85\ud558\uac8c", | ||||
| "Contrast": "\ub300\ube44", | ||||
| "Color levels": "\uc0c9\uc0c1\ub808\ubca8", | ||||
| "Gamma": "\uac10\ub9c8", | ||||
| "Invert": "\ubc18\uc804", | ||||
| "Apply": "\uc801\uc6a9", | ||||
| "Back": "\ub4a4\ub85c", | ||||
| "Insert date\/time": "\ub0a0\uc9dc\/\uc2dc\uac04\uc0bd\uc785", | ||||
| "Date\/time": "\ub0a0\uc9dc\/\uc2dc\uac04", | ||||
| "Insert\/Edit Link": "\ub9c1\ud06c \uc0bd\uc785\/\ud3b8\uc9d1", | ||||
| "Insert\/edit link": "\ub9c1\ud06c \uc0bd\uc785\/\uc218\uc815", | ||||
| "Text to display": "\ubcf8\ubb38", | ||||
| "Url": "\uc8fc\uc18c", | ||||
| "Open link in...": "...\uc5d0\uc11c \ub9c1\ud06c \uc5f4\uae30", | ||||
| "Current window": "\ud604\uc7ac \ucc3d", | ||||
| "None": "\uc5c6\uc74c", | ||||
| "New window": "\uc0c8\ucc3d", | ||||
| "Remove link": "\ub9c1\ud06c\uc0ad\uc81c", | ||||
| "Anchors": "\ucc45\uac08\ud53c", | ||||
| "Link...": "\ub9c1\ud06c...", | ||||
| "Paste or type a link": "\ub9c1\ud06c\ub97c \ubd99\uc5ec\ub123\uac70\ub098 \uc785\ub825\ud558\uc138\uc694", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\ud604\uc7ac E-mail\uc8fc\uc18c\ub97c \uc785\ub825\ud558\uc168\uc2b5\ub2c8\ub2e4. E-mail \uc8fc\uc18c\uc5d0 \ub9c1\ud06c\ub97c \uac78\uae4c\uc694?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\ud604\uc7ac \uc6f9\uc0ac\uc774\ud2b8 \uc8fc\uc18c\ub97c \uc785\ub825\ud558\uc168\uc2b5\ub2c8\ub2e4. \ud574\ub2f9 \uc8fc\uc18c\uc5d0 \ub9c1\ud06c\ub97c \uac78\uae4c\uc694?", | ||||
| "Link list": "\ub9c1\ud06c \ub9ac\uc2a4\ud2b8", | ||||
| "Insert video": "\ube44\ub514\uc624 \uc0bd\uc785", | ||||
| "Insert\/edit video": "\ube44\ub514\uc624 \uc0bd\uc785\/\uc218\uc815", | ||||
| "Insert\/edit media": "\ubbf8\ub514\uc5b4 \uc0bd\uc785\/\uc218\uc815", | ||||
| "Alternative source": "\ub300\uccb4 \uc18c\uc2a4", | ||||
| "Alternative source URL": "\ub300\uccb4 \uc6d0\ubcf8 URL", | ||||
| "Media poster (Image URL)": "\ub300\ud45c \uc774\ubbf8\uc9c0(\uc774\ubbf8\uc9c0 URL)", | ||||
| "Paste your embed code below:": "\uc544\ub798\uc5d0 \ucf54\ub4dc\ub97c \ubd99\uc5ec\ub123\uc73c\uc138\uc694:", | ||||
| "Embed": "\uc0bd\uc785", | ||||
| "Media...": "\ubbf8\ub514\uc5b4...", | ||||
| "Nonbreaking space": "\ub744\uc5b4\uc4f0\uae30", | ||||
| "Page break": "\ud398\uc774\uc9c0 \uad6c\ubd84\uc790", | ||||
| "Paste as text": "\ud14d\uc2a4\ud2b8\ub85c \ubd99\uc5ec\ub123\uae30", | ||||
| "Preview": "\ubbf8\ub9ac\ubcf4\uae30", | ||||
| "Print...": "\uc778\uc1c4...", | ||||
| "Save": "\uc800\uc7a5", | ||||
| "Find": "\ucc3e\uae30", | ||||
| "Replace with": "\uad50\uccb4", | ||||
| "Replace": "\uad50\uccb4", | ||||
| "Replace all": "\uc804\uccb4 \uad50\uccb4", | ||||
| "Previous": "\uc774\uc804", | ||||
| "Next": "\ub2e4\uc74c", | ||||
| "Find and replace...": "\ucc3e\uae30 \ubc0f \ubc14\uafb8\uae30...", | ||||
| "Could not find the specified string.": "\ubb38\uc790\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.", | ||||
| "Match case": "\ub300\uc18c\ubb38\uc790 \uc77c\uce58", | ||||
| "Find whole words only": "\ubaa8\ub450 \uc77c\uce58\ud558\ub294 \ubb38\uc790 \ucc3e\uae30", | ||||
| "Spell check": "\ub9de\ucda4\ubc95 \uac80\uc0ac", | ||||
| "Ignore": "\ubb34\uc2dc", | ||||
| "Ignore all": "\uc804\uccb4\ubb34\uc2dc", | ||||
| "Finish": "\uc644\ub8cc", | ||||
| "Add to Dictionary": "\uc0ac\uc804\uc5d0 \ucd94\uac00", | ||||
| "Insert table": "\ud14c\uc774\ube14 \uc0bd\uc785", | ||||
| "Table properties": "\ud14c\uc774\ube14 \uc18d\uc131", | ||||
| "Delete table": "\ud14c\uc774\ube14 \uc0ad\uc81c", | ||||
| "Cell": "\uc140", | ||||
| "Row": "\uc5f4", | ||||
| "Column": "\ud589", | ||||
| "Cell properties": "\uc140 \uc18d", | ||||
| "Merge cells": "\uc140 \ud569\uce58\uae30", | ||||
| "Split cell": "\uc140 \ub098\ub204\uae30", | ||||
| "Insert row before": "\uc774\uc804\uc5d0 \ud589 \uc0bd\uc785", | ||||
| "Insert row after": "\ub2e4\uc74c\uc5d0 \ud589 \uc0bd\uc785", | ||||
| "Delete row": "\ud589 \uc9c0\uc6b0\uae30", | ||||
| "Row properties": "\ud589 \uc18d\uc131", | ||||
| "Cut row": "\ud589 \uc798\ub77c\ub0b4\uae30", | ||||
| "Copy row": "\ud589 \ubcf5\uc0ac", | ||||
| "Paste row before": "\uc774\uc804\uc5d0 \ud589 \ubd99\uc5ec\ub123\uae30", | ||||
| "Paste row after": "\ub2e4\uc74c\uc5d0 \ud589 \ubd99\uc5ec\ub123\uae30", | ||||
| "Insert column before": "\uc774\uc804\uc5d0 \ud589 \uc0bd\uc785", | ||||
| "Insert column after": "\ub2e4\uc74c\uc5d0 \uc5f4 \uc0bd\uc785", | ||||
| "Delete column": "\uc5f4 \uc9c0\uc6b0\uae30", | ||||
| "Cols": "\uc5f4", | ||||
| "Rows": "\ud589", | ||||
| "Width": "\ub113\uc774", | ||||
| "Height": "\ub192\uc774", | ||||
| "Cell spacing": "\uc140 \uac04\uaca9", | ||||
| "Cell padding": "\uc140 \uc548\ucabd \uc5ec\ubc31", | ||||
| "Show caption": "\ucea1\uc158 \ud45c\uc2dc", | ||||
| "Left": "\uc67c\ucabd", | ||||
| "Center": "\uac00\uc6b4\ub370", | ||||
| "Right": "\uc624\ub978\ucabd", | ||||
| "Cell type": "\uc140 \ud0c0\uc785", | ||||
| "Scope": "\ubc94\uc704", | ||||
| "Alignment": "\uc815\ub82c", | ||||
| "H Align": "\uac00\ub85c \uc815\ub82c", | ||||
| "V Align": "\uc138\ub85c \uc815\ub82c", | ||||
| "Top": "\uc0c1\ub2e8", | ||||
| "Middle": "\uc911\uac04", | ||||
| "Bottom": "\ud558\ub2e8", | ||||
| "Header cell": "\ud5e4\ub354 \uc140", | ||||
| "Row group": "\ud589 \uadf8\ub8f9", | ||||
| "Column group": "\uc5f4 \uadf8\ub8f9", | ||||
| "Row type": "\ud589 \ud0c0\uc785", | ||||
| "Header": "\ud5e4\ub354", | ||||
| "Body": "\ubc14\ub514", | ||||
| "Footer": "\ud478\ud130", | ||||
| "Border color": "\ud14c\ub450\ub9ac \uc0c9", | ||||
| "Insert template...": "\ud15c\ud50c\ub9bf \uc0bd\uc785...", | ||||
| "Templates": "\ud15c\ud50c\ub9bf", | ||||
| "Template": "\ud15c\ud50c\ub9bf", | ||||
| "Text color": "\ubb38\uc790 \uc0c9\uae54", | ||||
| "Background color": "\ubc30\uacbd\uc0c9", | ||||
| "Custom...": "\uc9c1\uc811 \uc0c9\uae54 \uc9c0\uc815\ud558\uae30", | ||||
| "Custom color": "\uc9c1\uc811 \uc9c0\uc815\ud55c \uc0c9\uae54", | ||||
| "No color": "\uc0c9\uc0c1 \uc5c6\uc74c", | ||||
| "Remove color": "\uc0c9 \uc81c\uac70", | ||||
| "Table of Contents": "\ubaa9\ucc28", | ||||
| "Show blocks": "\ube14\ub7ed \ubcf4\uc5ec\uc8fc\uae30", | ||||
| "Show invisible characters": "\uc548\ubcf4\uc774\ub294 \ubb38\uc790 \ubcf4\uc774\uae30", | ||||
| "Word count": "\ub2e8\uc5b4 \uc218", | ||||
| "Count": "\uac1c\uc218", | ||||
| "Document": "\ubb38\uc11c", | ||||
| "Selection": "\uc120\ud0dd", | ||||
| "Words": "\ub2e8\uc5b4", | ||||
| "Words: {0}": "\ub2e8\uc5b4: {0}", | ||||
| "{0} words": "{0} \ub2e8\uc5b4", | ||||
| "File": "\ud30c\uc77c", | ||||
| "Edit": "\uc218\uc815", | ||||
| "Insert": "\uc0bd\uc785", | ||||
| "View": "\ubcf4\uae30", | ||||
| "Format": "\ud3ec\ub9f7", | ||||
| "Table": "\ud14c\uc774\ube14", | ||||
| "Tools": "\ub3c4\uad6c", | ||||
| "Powered by {0}": "Powered by {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\uc11c\uc2dd \uc788\ub294 \ud14d\uc2a4\ud2b8 \ud3b8\uc9d1\uae30 \uc785\ub2c8\ub2e4. ALT-F9\ub97c \ub204\ub974\uba74 \uba54\ub274, ALT-F10\ub97c \ub204\ub974\uba74 \ud234\ubc14, ALT-0\uc744 \ub204\ub974\uba74 \ub3c4\uc6c0\ub9d0\uc744 \ubcfc \uc218 \uc788\uc2b5\ub2c8\ub2e4.", | ||||
| "Image title": "\uc774\ubbf8\uc9c0 \uc81c\ubaa9", | ||||
| "Border width": "\ud14c\ub450\ub9ac \ub450\uaed8", | ||||
| "Border style": "\ud14c\ub450\ub9ac \uc2a4\ud0c0\uc77c", | ||||
| "Error": "\uc624\ub958", | ||||
| "Warn": "\uacbd\uace0", | ||||
| "Valid": "\uc720\ud6a8\ud568", | ||||
| "To open the popup, press Shift+Enter": "\ud31d\uc5c5\uc744 \uc5f4\ub824\uba74 Shift+Enter\ub97c \ub204\ub974\uc2ed\uc2dc\uc624.", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\uc11c\uc2dd \uc788\ub294 \ud14d\uc2a4\ud2b8 \uc601\uc5ed. ALT-0\uc744 \ub204\ub974\uba74 \ub3c4\uc6c0\ub9d0\uc744 \ubcfc \uc218 \uc788\uc2b5\ub2c8\ub2e4.", | ||||
| "System Font": "\uc2dc\uc2a4\ud15c \uae00\uaf34", | ||||
| "Failed to upload image: {0}": "\uc774\ubbf8\uc9c0 \uc5c5\ub85c\ub4dc \uc2e4\ud328: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\ud50c\ub7ec\uadf8\uc778 \ub85c\ub4dc \uc2e4\ud328:  URL: {1}\uc5d0\uc11c\uc758 {0}", | ||||
| "Failed to load plugin url: {0}": "\ud50c\ub7ec\uadf8\uc778 URL \ub85c\ub4dc \uc2e4\ud328: {0}", | ||||
| "Failed to initialize plugin: {0}": "\ud50c\ub7ec\uadf8\uc778 \ucd08\uae30\ud654 \uc2e4\ud328: {0}", | ||||
| "example": "\uc608\uc81c", | ||||
| "Search": "\uac80\uc0c9", | ||||
| "All": "\ubaa8\ub450", | ||||
| "Currency": "\ud1b5\ud654", | ||||
| "Text": "\ud14d\uc2a4\ud2b8", | ||||
| "Quotations": "\uc778\uc6a9\ubb38", | ||||
| "Mathematical": "\uc218\ud559", | ||||
| "Extended Latin": "\ud655\uc7a5 \ub77c\ud2f4\uc5b4", | ||||
| "Symbols": "\uae30\ud638", | ||||
| "Arrows": "\ud654\uc0b4\ud45c", | ||||
| "User Defined": "\uc0ac\uc6a9\uc790 \uc815\uc758", | ||||
| "dollar sign": "\ub2ec\ub7ec \uae30\ud638", | ||||
| "currency sign": "\ud1b5\ud654 \uae30\ud638", | ||||
| "euro-currency sign": "\uc720\ub85c\ud654 \uae30\ud638", | ||||
| "colon sign": "\ucf5c\ub860 \uae30\ud638", | ||||
| "cruzeiro sign": "\ud06c\ub8e8\uc81c\uc774\ub8e8 \uae30\ud638", | ||||
| "french franc sign": "\ud504\ub791\uc2a4 \ud504\ub791 \uae30\ud638", | ||||
| "lira sign": "\ub9ac\ub77c \uae30\ud638", | ||||
| "mill sign": "\ubc00 \uae30\ud638", | ||||
| "naira sign": "\ub098\uc774\ub77c \uae30\ud638", | ||||
| "peseta sign": "\ud398\uc138\ud0c0 \uae30\ud638", | ||||
| "rupee sign": "\ub8e8\ud53c \uae30\ud638", | ||||
| "won sign": "\uc6d0 \uae30\ud638", | ||||
| "new sheqel sign": "\ub274 \uc138\ucf08 \uae30\ud638", | ||||
| "dong sign": "\ub3d9 \uae30\ud638", | ||||
| "kip sign": "\ud0b5 \uae30\ud638", | ||||
| "tugrik sign": "\ud22c\uadf8\ub9ac\ud06c \uae30\ud638", | ||||
| "drachma sign": "\ub4dc\ub77c\ud06c\ub9c8 \uae30\ud638", | ||||
| "german penny symbol": "\ub3c5\uc77c \ud398\ub2c8 \uae30\ud638", | ||||
| "peso sign": "\ud398\uc18c \uae30\ud638", | ||||
| "guarani sign": "\uacfc\ub77c\ub2c8 \uae30\ud638", | ||||
| "austral sign": "\uc544\uc6b0\uc2a4\ud2b8\ub784 \uae30\ud638", | ||||
| "hryvnia sign": "\uadf8\ub9ac\ube0c\ub098 \uae30\ud638", | ||||
| "cedi sign": "\uc138\ub514 \uae30\ud638", | ||||
| "livre tournois sign": "\ub9ac\ube0c\ub974 \ud2b8\ub974\ub204\uc544 \uae30\ud638", | ||||
| "spesmilo sign": "\uc2a4\ud398\uc2a4\ubc00\ub85c \uae30\ud638", | ||||
| "tenge sign": "\ud161\uac8c \uae30\ud638", | ||||
| "indian rupee sign": "\uc778\ub3c4 \ub8e8\ud53c \uae30\ud638", | ||||
| "turkish lira sign": "\ud130\ud0a4 \ub9ac\ub77c \uae30\ud638", | ||||
| "nordic mark sign": "\ub178\ub974\ub515 \ub9c8\ub974\ud06c \uae30\ud638", | ||||
| "manat sign": "\ub9c8\ub098\ud2b8 \uae30\ud638", | ||||
| "ruble sign": "\ub8e8\ube14 \uae30\ud638", | ||||
| "yen character": "\uc5d4 \uae30\ud638", | ||||
| "yuan character": "\uc704\uc548 \uae30\ud638", | ||||
| "yuan character, in hong kong and taiwan": "\ub300\ub9cc \uc704\uc548 \uae30\ud638", | ||||
| "yen\/yuan character variant one": "\uc5d4\/\uc704\uc548 \ubb38\uc790 \ubcc0\ud615", | ||||
| "Loading emoticons...": "\uc774\ubaa8\ud2f0\ucf58 \ubd88\ub7ec\uc624\ub294 \uc911...", | ||||
| "Could not load emoticons": "\uc774\ubaa8\ud2f0\ucf58\uc744 \ubd88\ub7ec\uc62c \uc218 \uc5c6\uc74c", | ||||
| "People": "\uc0ac\ub78c", | ||||
| "Animals and Nature": "\ub3d9\ubb3c\uacfc \uc790\uc5f0", | ||||
| "Food and Drink": "\uc74c\uc2dd\uacfc \uc74c\ub8cc", | ||||
| "Activity": "\ud65c\ub3d9", | ||||
| "Travel and Places": "\uc5ec\ud589\uacfc \uc7a5\uc18c", | ||||
| "Objects": "\ubb3c\uac74", | ||||
| "Flags": "\uae43\ubc1c", | ||||
| "Characters": "\ubb38\uc790", | ||||
| "Characters (no spaces)": "\ubb38\uc790(\uacf5\ubc31 \uc5c6\uc74c)", | ||||
| "{0} characters": "{0} \ubb38\uc790", | ||||
| "Error: Form submit field collision.": "\uc624\ub958: \uc591\uc2dd \uc81c\ucd9c \ud544\ub4dc \ubd88\uc77c\uce58", | ||||
| "Error: No form element found.": "\uc624\ub958: \uc591\uc2dd \ud56d\ubaa9 \uc5c6\uc74c", | ||||
| "Update": "\uc5c5\ub370\uc774\ud2b8", | ||||
| "Color swatch": "\uc0c9\uc0c1 \uacac\ubcf8", | ||||
| "Turquoise": "\uccad\ub85d\uc0c9", | ||||
| "Green": "\ucd08\ub85d\uc0c9", | ||||
| "Blue": "\ud30c\ub780\uc0c9", | ||||
| "Purple": "\ubcf4\ub77c\uc0c9", | ||||
| "Navy Blue": "\ub0a8\uc0c9", | ||||
| "Dark Turquoise": "\uc9c4\ud55c \uccad\ub85d\uc0c9", | ||||
| "Dark Green": "\uc9c4\ud55c \ucd08\ub85d\uc0c9", | ||||
| "Medium Blue": "\uc911\uac04 \ud30c\ub780\uc0c9", | ||||
| "Medium Purple": "\uc911\uac04 \ubcf4\ub77c\uc0c9", | ||||
| "Midnight Blue": "\uc9c4\ud55c \ud30c\ub780\uc0c9", | ||||
| "Yellow": "\ub178\ub780\uc0c9", | ||||
| "Orange": "\uc8fc\ud669\uc0c9", | ||||
| "Red": "\ube68\uac04\uc0c9", | ||||
| "Light Gray": "\ubc1d\uc740 \ud68c\uc0c9", | ||||
| "Gray": "\ud68c\uc0c9", | ||||
| "Dark Yellow": "\uc9c4\ud55c \ub178\ub780\uc0c9", | ||||
| "Dark Orange": "\uc9c4\ud55c \uc8fc\ud669\uc0c9", | ||||
| "Dark Red": "\uc9c4\ud55c \ube68\uac04\uc0c9", | ||||
| "Medium Gray": "\uc911\uac04 \ud68c\uc0c9", | ||||
| "Dark Gray": "\uc9c4\ud55c \ud68c\uc0c9", | ||||
| "Light Green": "\ubc1d\uc740 \ub179\uc0c9", | ||||
| "Light Yellow": "\ubc1d\uc740 \ub178\ub780\uc0c9", | ||||
| "Light Red": "\ubc1d\uc740 \ube68\uac04\uc0c9", | ||||
| "Light Purple": "\ubc1d\uc740 \ubcf4\ub77c\uc0c9", | ||||
| "Light Blue": "\ubc1d\uc740 \ud30c\ub780\uc0c9", | ||||
| "Dark Purple": "\uc9c4\ud55c \ubcf4\ub77c\uc0c9", | ||||
| "Dark Blue": "\uc9c4\ud55c \ud30c\ub780\uc0c9", | ||||
| "Black": "\uac80\uc740\uc0c9", | ||||
| "White": "\ud770\uc0c9", | ||||
| "Switch to or from fullscreen mode": "\uc804\uccb4 \ud654\uba74\uc73c\ub85c\/\uc5d0\uc11c \uc804\ud658", | ||||
| "Open help dialog": "\ub3c4\uc6c0\ub9d0 \ub300\ud654\ucc3d \uc5f4\uae30", | ||||
| "history": "\uae30\ub85d", | ||||
| "styles": "\uc2a4\ud0c0\uc77c", | ||||
| "formatting": "\ud3ec\ub9f7\ud305", | ||||
| "alignment": "\uc815\ub82c", | ||||
| "indentation": "\ub4e4\uc5ec\uc4f0\uae30", | ||||
| "permanent pen": "\uc720\uc131\ud39c", | ||||
| "comments": "\uc8fc\uc11d", | ||||
| "Format Painter": "\uc11c\uc2dd \ubcf5\uc0ac", | ||||
| "Insert\/edit iframe": "\uc544\uc774\ud504\ub808\uc784 \uc0bd\uc785\/\ud3b8\uc9d1", | ||||
| "Capitalization": "\ub300\ubb38\uc790\ud654", | ||||
| "lowercase": "\uc18c\ubb38\uc790", | ||||
| "UPPERCASE": "\ub300\ubb38\uc790", | ||||
| "Title Case": "\uc81c\ubaa9\uc744 \ub300\ubb38\uc790\ud654", | ||||
| "Permanent Pen Properties": "\uc601\uad6c \ud39c \ud2b9\uc131", | ||||
| "Permanent pen properties...": "\uc601\uad6c \ud39c \ud2b9\uc131...", | ||||
| "Font": "\uae00\uaf34", | ||||
| "Size": "\ud06c\uae30", | ||||
| "More...": "\ub354 \ubcf4\uae30...", | ||||
| "Spellcheck Language": "\ub9de\ucda4\ubc95 \uac80\uc0ac \uc5b8\uc5b4", | ||||
| "Select...": "\uc120\ud0dd...", | ||||
| "Preferences": "\ud658\uacbd\uc124\uc815", | ||||
| "Yes": "\ub124", | ||||
| "No": "\uc544\ub2c8\uc624", | ||||
| "Keyboard Navigation": "\ud0a4 \uc120\ud0dd", | ||||
| "Version": "\ubc84\uc804", | ||||
| "Anchor": "\uc575\ucee4", | ||||
| "Special character": "\ud2b9\uc218\ubb38\uc790", | ||||
| "Code sample": "\ucf54\ub4dc\uc0d8\ud50c", | ||||
| "Color": "\uc0c9\uc0c1", | ||||
| "Emoticons": "\uc774\ubaa8\ud2f0\ucf58", | ||||
| "Document properties": "\ubb38\uc11c \uc18d\uc131", | ||||
| "Image": "\uc774\ubbf8\uc9c0", | ||||
| "Insert link": "\ub9c1\ud06c \uc0bd\uc785 ", | ||||
| "Target": "\ub300\uc0c1", | ||||
| "Link": "\ub9c1\ud06c", | ||||
| "Poster": "\ud3ec\uc2a4\ud130", | ||||
| "Media": "\ubbf8\ub514\uc5b4", | ||||
| "Print": "\ucd9c\ub825", | ||||
| "Prev": "\uc774\uc804", | ||||
| "Find and replace": "\ucc3e\uc544\uc11c \uad50\uccb4", | ||||
| "Whole words": "\uc804\uccb4 \ub2e8\uc5b4", | ||||
| "Spellcheck": "\ubb38\ubc95\uccb4\ud06c", | ||||
| "Caption": "\ucea1\uc158", | ||||
| "Insert template": "\ud15c\ud50c\ub9bf \uc0bd\uc785" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/lt.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/lt.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('lt',{ | ||||
| "Redo": "Gr\u0105\u017einti", | ||||
| "Undo": "Atstatyti", | ||||
| "Cut": "I\u0161kirpti", | ||||
| "Copy": "Kopijuoti", | ||||
| "Paste": "\u012ed\u0117ti", | ||||
| "Select all": "Pa\u017eym\u0117ti visk\u0105", | ||||
| "New document": "Naujas dokumentas", | ||||
| "Ok": "Gerai", | ||||
| "Cancel": "Atsisakyti", | ||||
| "Visual aids": "Vaizdin\u0117s priemon\u0117s", | ||||
| "Bold": "Pary\u0161kintas", | ||||
| "Italic": "Kursyvinis", | ||||
| "Underline": "Pabrauktas", | ||||
| "Strikethrough": "Perbrauktas", | ||||
| "Superscript": "Vir\u0161utinis indeksas", | ||||
| "Subscript": "Apatinis indeksas", | ||||
| "Clear formatting": "Naikinti formatavim\u0105", | ||||
| "Align left": "Lygiuoti kair\u0117je", | ||||
| "Align center": "Centruoti", | ||||
| "Align right": "Lygiuoti de\u0161in\u0117je", | ||||
| "Justify": "I\u0161d\u0117styti per vis\u0105 plot\u012f", | ||||
| "Bullet list": "\u017denklinimo s\u0105ra\u0161as", | ||||
| "Numbered list": "Skaitmeninis s\u0105ra\u0161as", | ||||
| "Decrease indent": "Ma\u017einti \u012ftrauk\u0105", | ||||
| "Increase indent": "Didinti \u012ftrauk\u0105", | ||||
| "Close": "U\u017edaryti", | ||||
| "Formats": "Formatai", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Nar\u0161ykl\u0117s nustatymai neleid\u017eia redaktoriui tiesiogiai pasiekti laikinosios atminties. Pra\u0161ome naudoti klaviat\u016bros klavi\u0161us Ctrl+X\/C\/V.", | ||||
| "Headers": "Antra\u0161t\u0117s", | ||||
| "Header 1": "Antra\u0161t\u0117 1", | ||||
| "Header 2": "Antra\u0161t\u0117 2", | ||||
| "Header 3": "Antra\u0161t\u0117 3", | ||||
| "Header 4": "Antra\u0161t\u0117 4", | ||||
| "Header 5": "Antra\u0161t\u0117 5", | ||||
| "Header 6": "Antra\u0161t\u0117 6", | ||||
| "Headings": "Antra\u0161t\u0117s", | ||||
| "Heading 1": "Antra\u0161t\u0117 1", | ||||
| "Heading 2": "Antra\u0161t\u0117 2", | ||||
| "Heading 3": "Antra\u0161t\u0117 3", | ||||
| "Heading 4": "Antra\u0161t\u0117 4", | ||||
| "Heading 5": "Antra\u0161t\u0117 5", | ||||
| "Heading 6": "Antra\u0161t\u0117 6", | ||||
| "Preformatted": "Suformuotas i\u0161 anksto", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Kodas", | ||||
| "Paragraph": "Paragrafas", | ||||
| "Blockquote": "Citata", | ||||
| "Inline": "Inline", | ||||
| "Blocks": "Blokai", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Dabar \u012fterpiama paprastojo teksto re\u017eimu. Kol \u0161i parinktis \u012fjungta, turinys bus \u012fterptas kaip paprastas tekstas.", | ||||
| "Fonts": "\u0160riftai", | ||||
| "Font Sizes": "\u0160rifto dyd\u017eiai", | ||||
| "Class": "Klas\u0117", | ||||
| "Browse for an image": "Ie\u0161koti paveiksl\u0117lio", | ||||
| "OR": "ARBA", | ||||
| "Drop an image here": "Tempkite paveiksl\u0117l\u012f \u010dia", | ||||
| "Upload": "\u012ekelti", | ||||
| "Block": "Blokas", | ||||
| "Align": "Lygiavimas", | ||||
| "Default": "Pagrindinis", | ||||
| "Circle": "Apskritimas", | ||||
| "Disc": "Diskas", | ||||
| "Square": "Kvadratas", | ||||
| "Lower Alpha": "Ma\u017eosios raid\u0117s", | ||||
| "Lower Greek": "Ma\u017eosios graik\u0173", | ||||
| "Lower Roman": "Ma\u017eosios rom\u0117n\u0173", | ||||
| "Upper Alpha": "Did\u017eiosios raid\u0117s", | ||||
| "Upper Roman": "Did\u017eiosios rom\u0117n\u0173", | ||||
| "Anchor...": "Nuoroda...", | ||||
| "Name": "Pavadinimas", | ||||
| "Id": "ID", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID turi prasid\u0117ti raide, po kurios gali b\u016bti raid\u0117s, skai\u010diai, br\u016bk\u0161niai, ta\u0161kai, kabliata\u0161kiai ar apatiniai pabraukimai.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Turite nei\u0161saugot\u0173 pakeitim\u0173! Ar tikrai norite i\u0161eiti?", | ||||
| "Restore last draft": "Atstatyti paskutin\u012f projekt\u0105", | ||||
| "Special character...": "Specialieji simboliai...", | ||||
| "Source code": "Pirminis \u0161altinis", | ||||
| "Insert\/Edit code sample": "Prid\u0117ti \/ keisti kodo pavyzd\u012f", | ||||
| "Language": "Kalba", | ||||
| "Code sample...": "Kodo pavyzdys...", | ||||
| "Color Picker": "Spalvos parinkimas", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "I\u0161 kair\u0117s \u012f de\u0161in\u0119", | ||||
| "Right to left": "I\u0161 de\u0161in\u0117s \u012f kair\u0119", | ||||
| "Emoticons...": "Jaustukai...", | ||||
| "Metadata and Document Properties": "Meta duomenys ir dokumento ypatyb\u0117s", | ||||
| "Title": "Pavadinimas", | ||||
| "Keywords": "\u017dymos", | ||||
| "Description": "Apra\u0161as", | ||||
| "Robots": "Robotai", | ||||
| "Author": "Autorius", | ||||
| "Encoding": "Kodavimas", | ||||
| "Fullscreen": "Visas ekranas", | ||||
| "Action": "Veiksmas", | ||||
| "Shortcut": "Nuoroda", | ||||
| "Help": "Pagalba", | ||||
| "Address": "Adresas", | ||||
| "Focus to menubar": "Fokusuoti \u012f meniu", | ||||
| "Focus to toolbar": "Fokusuoti \u012f \u012franki\u0173 juost\u0105", | ||||
| "Focus to element path": "Fokusuoti \u012f elemento keli\u0105", | ||||
| "Focus to contextual toolbar": "Fokusuoti \u012f kontekstin\u012f \u012franki\u0173 juost\u0105", | ||||
| "Insert link (if link plugin activated)": "Prid\u0117ti nuorod\u0105 (jei link priedas aktyvuotas)", | ||||
| "Save (if save plugin activated)": "I\u0161saugoti (jei save priedas aktyvuotas)", | ||||
| "Find (if searchreplace plugin activated)": "Ie\u0161koti (jei searchreplace priedas aktyvuotas)", | ||||
| "Plugins installed ({0}):": "\u012ediegti priedai ({0}):", | ||||
| "Premium plugins:": "Mokami priedai:", | ||||
| "Learn more...": "Su\u017einoti daugiau...", | ||||
| "You are using {0}": "Naudojate {0}", | ||||
| "Plugins": "Priedai", | ||||
| "Handy Shortcuts": "Patogios nuorodos", | ||||
| "Horizontal line": "Horizontali linija", | ||||
| "Insert\/edit image": "\u012eterpti|Tvarkyti paveiksl\u0117l\u012f", | ||||
| "Image description": "Paveiksl\u0117lio apra\u0161as", | ||||
| "Source": "Pirmin\u0117 nuoroda", | ||||
| "Dimensions": "Matmenys", | ||||
| "Constrain proportions": "Laikytis proporcij\u0173", | ||||
| "General": "Bendra", | ||||
| "Advanced": "I\u0161pl\u0117stas", | ||||
| "Style": "Stilius", | ||||
| "Vertical space": "Vertikalus tarpas", | ||||
| "Horizontal space": "Horizontalus tarpas", | ||||
| "Border": "R\u0117melis", | ||||
| "Insert image": "\u012eterpti paveiksl\u0117l\u012f", | ||||
| "Image...": "Paveiksl\u0117lis...", | ||||
| "Image list": "Paveiksl\u0117li\u0173 s\u0105ra\u0161as", | ||||
| "Rotate counterclockwise": "Pasukti prie\u0161 laikrod\u017eio rodykl\u0119", | ||||
| "Rotate clockwise": "Pasukti pagal laikrod\u017eio rodykl\u0119", | ||||
| "Flip vertically": "Apversti vertikaliai", | ||||
| "Flip horizontally": "Apversti horizontaliai", | ||||
| "Edit image": "Redaguoti paveiksl\u0117l\u012f", | ||||
| "Image options": "Paveiksl\u0117lio nustatymai", | ||||
| "Zoom in": "Priartinti", | ||||
| "Zoom out": "Atitolinti", | ||||
| "Crop": "Atkarpyti", | ||||
| "Resize": "Keisti dyd\u012f", | ||||
| "Orientation": "Pasukimas", | ||||
| "Brightness": "\u0160viesumas", | ||||
| "Sharpen": "Ry\u0161kumas", | ||||
| "Contrast": "Kontrastas", | ||||
| "Color levels": "Spalv\u0173 lygiai", | ||||
| "Gamma": "Gama", | ||||
| "Invert": "Prie\u0161ingos spalvos", | ||||
| "Apply": "Taikyti", | ||||
| "Back": "Atgal", | ||||
| "Insert date\/time": "\u012eterpti dat\u0105\/laik\u0105", | ||||
| "Date\/time": "Data \/ laikas", | ||||
| "Insert\/Edit Link": "Prid\u0117ti\/Keisti nuorod\u0105", | ||||
| "Insert\/edit link": "\u012eterpti\/taisyti nuorod\u0105", | ||||
| "Text to display": "Rodomas tekstas", | ||||
| "Url": "Nuoroda", | ||||
| "Open link in...": "Nuorod\u0105 atverti...", | ||||
| "Current window": "Dabartiniame lange", | ||||
| "None": "Nieko", | ||||
| "New window": "Naujas langas", | ||||
| "Remove link": "\u0160alinti nuorod\u0105", | ||||
| "Anchors": "\u017dym\u0117", | ||||
| "Link...": "Nuoroda...", | ||||
| "Paste or type a link": "\u012eklijuokite arba \u012fra\u0161ykite nuorod\u0105", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Atrodo, kad \u012fvesta nuoroda yra elektroninio pa\u0161to adresas. Ar norite prie\u0161 j\u012f \u012fvesti reikalaujam\u0105 \u201emailto:\u201c?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Atrodo, kad \u012fved\u0117te nuotolin\u0119 nuorod\u0105. Ar norite prie\u0161 j\u0105 \u012fvesti reikalaujam\u0105 \u201ehttp:\/\/\u201c?", | ||||
| "Link list": "Nuorod\u0173 s\u0105ra\u0161as", | ||||
| "Insert video": "\u012eterpti video", | ||||
| "Insert\/edit video": "\u012eterpti\/tvarkyti video", | ||||
| "Insert\/edit media": "Prid\u0117ti \/ keisti medij\u0105", | ||||
| "Alternative source": "Alternatyvus \u0161altinis", | ||||
| "Alternative source URL": "Alternatyvus \u0161altinio URL adresas", | ||||
| "Media poster (Image URL)": "medijos skelbiklis (paveiksl\u0117lio URL adresas)", | ||||
| "Paste your embed code below:": "\u012eterpkite kod\u0105 \u017eemiau:", | ||||
| "Embed": "\u012eterpti", | ||||
| "Media...": "Medija...", | ||||
| "Nonbreaking space": "Nepertraukiamos vietos", | ||||
| "Page break": "Puslapio skirtukas", | ||||
| "Paste as text": "\u012eklijuoti kaip tekst\u0105", | ||||
| "Preview": "Per\u017ei\u016bra", | ||||
| "Print...": "Spausdinti...", | ||||
| "Save": "I\u0161saugoti", | ||||
| "Find": "Ie\u0161koti", | ||||
| "Replace with": "Kuo pakeisti", | ||||
| "Replace": "Pakeisti", | ||||
| "Replace all": "Pakeisti visk\u0105", | ||||
| "Previous": "Ankstesnis", | ||||
| "Next": "Sekantis", | ||||
| "Find and replace...": "Ie\u0161koti ir pakeisti...", | ||||
| "Could not find the specified string.": "Nepavyko rasti nurodytos eilut\u0117s.", | ||||
| "Match case": "Atitinkamus", | ||||
| "Find whole words only": "Ie\u0161koti tik vis\u0105 \u017eod\u012f", | ||||
| "Spell check": "Klaid\u0173 tikrinimas", | ||||
| "Ignore": "Ignoruoti", | ||||
| "Ignore all": "Ignoruoti visk\u0105", | ||||
| "Finish": "Baigti", | ||||
| "Add to Dictionary": "Prid\u0117ti \u012f \u017dodyn\u0105", | ||||
| "Insert table": "\u012eterpti lentel\u0119", | ||||
| "Table properties": "Lentel\u0117s savyb\u0117s", | ||||
| "Delete table": "\u0160alinti lentel\u0119", | ||||
| "Cell": "Langeliai", | ||||
| "Row": "Eilut\u0117s", | ||||
| "Column": "Stulpelis", | ||||
| "Cell properties": "Langelio savyb\u0117s", | ||||
| "Merge cells": "Sujungti langelius", | ||||
| "Split cell": "Skaidyti langelius", | ||||
| "Insert row before": "\u012eterpti eilut\u0119 prie\u0161", | ||||
| "Insert row after": "\u012eterpti eilut\u0119 po", | ||||
| "Delete row": "Naikinti eilut\u0119", | ||||
| "Row properties": "Eilut\u0117s savyb\u0117s", | ||||
| "Cut row": "I\u0161kirpti eilut\u0119", | ||||
| "Copy row": "Kopijuoti eilut\u0119", | ||||
| "Paste row before": "\u012ed\u0117ti eilut\u0119 prie\u0161", | ||||
| "Paste row after": "\u012ed\u0117ti eilut\u0119 po", | ||||
| "Insert column before": "\u012eterpti stulpel\u012f prie\u0161", | ||||
| "Insert column after": "\u012eterpti stulpel\u012f po", | ||||
| "Delete column": "Naikinti stulpel\u012f", | ||||
| "Cols": "Stulpeliai", | ||||
| "Rows": "Eilut\u0117s", | ||||
| "Width": "Plotis", | ||||
| "Height": "Auk\u0161tis", | ||||
| "Cell spacing": "Tarpas tarp langeli\u0173", | ||||
| "Cell padding": "Tarpas nuo langelio iki teksto", | ||||
| "Show caption": "Rodyti antra\u0161t\u0119", | ||||
| "Left": "Kair\u0117", | ||||
| "Center": "Centras", | ||||
| "Right": "De\u0161in\u0117", | ||||
| "Cell type": "Langelio tipas", | ||||
| "Scope": "Strukt\u016bra", | ||||
| "Alignment": "Lygiavimas", | ||||
| "H Align": "H Lygiavimas", | ||||
| "V Align": "V Lygiavimas", | ||||
| "Top": "Vir\u0161uje", | ||||
| "Middle": "Viduryje", | ||||
| "Bottom": "Apa\u010dioje", | ||||
| "Header cell": "Antra\u0161t\u0117s langelis", | ||||
| "Row group": "Eilu\u010di\u0173 grup\u0117", | ||||
| "Column group": "Stulpeli\u0173 grup\u0117", | ||||
| "Row type": "Eilu\u010di\u0173 tipas", | ||||
| "Header": "Antra\u0161t\u0117", | ||||
| "Body": "Turinys", | ||||
| "Footer": "Apa\u010dia", | ||||
| "Border color": "R\u0117melio spalva", | ||||
| "Insert template...": "Prid\u0117ti \u0161ablon\u0105...", | ||||
| "Templates": "\u0160ablonai", | ||||
| "Template": "\u0160ablonas", | ||||
| "Text color": "Teksto spalva", | ||||
| "Background color": "Fono spalva", | ||||
| "Custom...": "Pasirinktinas...", | ||||
| "Custom color": "Pasirinktina spalva", | ||||
| "No color": "Jokios spalvos", | ||||
| "Remove color": "Pa\u0161alinti spalv\u0105", | ||||
| "Table of Contents": "Turinys", | ||||
| "Show blocks": "Rodyti blokus", | ||||
| "Show invisible characters": "Rodyti nematomus simbolius", | ||||
| "Word count": "\u017dod\u017ei\u0173 kiekis", | ||||
| "Count": "Skai\u010dius", | ||||
| "Document": "Dokumentas", | ||||
| "Selection": "Pasirinkimas", | ||||
| "Words": "\u017dod\u017ei\u0173", | ||||
| "Words: {0}": "\u017dod\u017eiai: {0}", | ||||
| "{0} words": "{0} \u017eod\u017eiai", | ||||
| "File": "Failas", | ||||
| "Edit": "Redaguoti", | ||||
| "Insert": "\u012eterpti", | ||||
| "View": "Per\u017ei\u016bra", | ||||
| "Format": "Formatas", | ||||
| "Table": "Lentel\u0117", | ||||
| "Tools": "\u012erankiai", | ||||
| "Powered by {0}": "Sukurta {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Suformatuoto teksto laukas. D\u0117l meniu spauskite ALT-F9. U\u017eduo\u010di\u0173 juostos \u012fjungimui spauskite ALT-F10. Pagalbai - spauskite ALT-0.", | ||||
| "Image title": "Paveiksl\u0117lio pavadinimas", | ||||
| "Border width": "Kra\u0161tin\u0117s plotis", | ||||
| "Border style": "Kra\u0161tin\u0117s stilius", | ||||
| "Error": "Klaida", | ||||
| "Warn": "\u012esp\u0117ti", | ||||
| "Valid": "Tinkamas", | ||||
| "To open the popup, press Shift+Enter": "Spustel\u0117j\u0119 Shift+Enter atversite i\u0161kylant\u012f lang\u0105", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Rai\u0161kiojo teksto vieta. Spustel\u0117j\u0119 Alt-0 gausite pagalbos.", | ||||
| "System Font": "Sisteminiai \u0161riftai", | ||||
| "Failed to upload image: {0}": "Paveiksl\u0117lio \u012fkelti nepavyko: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Priedo \u012fkelti nepavyko: {0} i\u0161 adreso {1}", | ||||
| "Failed to load plugin url: {0}": "Priedo adreso \u012fkelti nepavyko: {0}", | ||||
| "Failed to initialize plugin: {0}": "Priedo inicijuoti nepavyko: {0}", | ||||
| "example": "pavyzdys", | ||||
| "Search": "Ie\u0161koti", | ||||
| "All": "Visi", | ||||
| "Currency": "Valiuta", | ||||
| "Text": "Tekstas", | ||||
| "Quotations": "Citata", | ||||
| "Mathematical": "Matematinis", | ||||
| "Extended Latin": "Lotyn\u0173 i\u0161pl\u0117stin\u0117", | ||||
| "Symbols": "Simboliai", | ||||
| "Arrows": "Rodykl\u0117s", | ||||
| "User Defined": "Vartotojo apibr\u0117\u017eta", | ||||
| "dollar sign": "dolerio \u017eenklas", | ||||
| "currency sign": "valiutos \u017eenklas", | ||||
| "euro-currency sign": "euro \u017eenklas", | ||||
| "colon sign": "dvita\u0161kio \u017eenklas", | ||||
| "cruzeiro sign": "kruzeiro \u017eenklas", | ||||
| "french franc sign": "Pranc\u016bz\u0173 franko \u017eenklas", | ||||
| "lira sign": "lyros \u017eenklas", | ||||
| "mill sign": "milo simbolis", | ||||
| "naira sign": "nairos simbolis", | ||||
| "peseta sign": "peseto \u017eenklas", | ||||
| "rupee sign": "rupijos \u017eenklas", | ||||
| "won sign": "vono \u017eenklas", | ||||
| "new sheqel sign": "naujojo \u0161ekelio \u017eenklas", | ||||
| "dong sign": "dongo \u017eenklas", | ||||
| "kip sign": "kipo \u017eenklas", | ||||
| "tugrik sign": "tugriko \u017eenklas", | ||||
| "drachma sign": "drachmos \u017eenklas", | ||||
| "german penny symbol": "Vokietijos fenigo \u017eenklas", | ||||
| "peso sign": "peso \u017eenklas", | ||||
| "guarani sign": "gvaranio \u017eenklas", | ||||
| "austral sign": "australo \u017eenklas", | ||||
| "hryvnia sign": "grivinos \u017eenklas", | ||||
| "cedi sign": "sed\u017eio \u017eenklas", | ||||
| "livre tournois sign": "toro svaro \u017eenklas", | ||||
| "spesmilo sign": "spesmilo \u017eenklas", | ||||
| "tenge sign": "teng\u0117s \u017eenklas", | ||||
| "indian rupee sign": "Indijos rupijos \u017eenklas", | ||||
| "turkish lira sign": "Turkijos lyros \u017eenklas", | ||||
| "nordic mark sign": "\u0161iaur\u0117s \u0161ali\u0173 mark\u0117s \u017eenklas", | ||||
| "manat sign": "manato \u017eenklas", | ||||
| "ruble sign": "rublio \u017eenklas", | ||||
| "yen character": "jienos simbolis", | ||||
| "yuan character": "juanio simbolis", | ||||
| "yuan character, in hong kong and taiwan": "juanio \u017eenklas, naudojamas Hongkonge ir Taivane", | ||||
| "yen\/yuan character variant one": "jienos\/juanio vieningas \u017eenklas", | ||||
| "Loading emoticons...": "\u012ekeliami jaustukai...", | ||||
| "Could not load emoticons": "Nepavyko \u012fkelti jaustuk\u0173", | ||||
| "People": "\u017dmon\u0117s", | ||||
| "Animals and Nature": "Gyv\u016bnai ir gamta", | ||||
| "Food and Drink": "Maistas ir g\u0117rimai", | ||||
| "Activity": "Veikla", | ||||
| "Travel and Places": "Kelion\u0117s ir vietos", | ||||
| "Objects": "Objektai", | ||||
| "Flags": "V\u0117liavos", | ||||
| "Characters": "Simboli\u0173", | ||||
| "Characters (no spaces)": "Simboli\u0173 (be tarp\u0173)", | ||||
| "{0} characters": "{0} simboliai", | ||||
| "Error: Form submit field collision.": "Klaida: formos lauk\u0173 nesuderinamumas.", | ||||
| "Error: No form element found.": "Klaida: formos element\u0173 nerasta.", | ||||
| "Update": "Naujinti", | ||||
| "Color swatch": "Spalv\u0173 pavyzd\u017eiai", | ||||
| "Turquoise": "\u017dalsvai m\u0117lyna", | ||||
| "Green": "\u017dalia", | ||||
| "Blue": "M\u0117lyna", | ||||
| "Purple": "Ro\u017ein\u0117", | ||||
| "Navy Blue": "Tamsiai m\u0117lyna", | ||||
| "Dark Turquoise": "Tamsiai \u017ealsvai m\u0117lyna", | ||||
| "Dark Green": "Tamsiai \u017ealia", | ||||
| "Medium Blue": "Vidutini\u0161kai m\u0117lyna", | ||||
| "Medium Purple": "Vidutini\u0161kai violetin\u0117", | ||||
| "Midnight Blue": "Vidurnak\u010dio m\u0117lyna", | ||||
| "Yellow": "Geltona", | ||||
| "Orange": "Oran\u017ein\u0117", | ||||
| "Red": "Raudona", | ||||
| "Light Gray": "\u0160viesiai pilka", | ||||
| "Gray": "Pilka", | ||||
| "Dark Yellow": "Tamsiai geltona", | ||||
| "Dark Orange": "Tamsiai oran\u017ein\u0117", | ||||
| "Dark Red": "Tamsiai raudona", | ||||
| "Medium Gray": "Vidutini\u0161kai pilka", | ||||
| "Dark Gray": "Tamsiai pilka", | ||||
| "Light Green": "\u0160viesiai \u017ealia", | ||||
| "Light Yellow": "\u0160viesiai geltona", | ||||
| "Light Red": "\u0160viesiai raudona", | ||||
| "Light Purple": "\u0160viesiai violetin\u0117", | ||||
| "Light Blue": "\u0160viesiai m\u0117lyna", | ||||
| "Dark Purple": "Tamsiai violetin\u0117", | ||||
| "Dark Blue": "Tamsiai m\u0117lyna", | ||||
| "Black": "Juoda", | ||||
| "White": "Balta", | ||||
| "Switch to or from fullscreen mode": "Perjungti i\u0161\/\u012f viso ekrano rodym\u0105", | ||||
| "Open help dialog": "Atverti pagalbos lang\u0105", | ||||
| "history": "praeitis", | ||||
| "styles": "stiliai", | ||||
| "formatting": "formatavimas", | ||||
| "alignment": "lygiavimas", | ||||
| "indentation": "\u012ftrauka", | ||||
| "permanent pen": "nuolatinis ra\u0161iklis", | ||||
| "comments": "komentarai", | ||||
| "Format Painter": "Formato kopijavimo priemon\u0117", | ||||
| "Insert\/edit iframe": "Prid\u0117ti \/ keisti iframe", | ||||
| "Capitalization": "Did\u017eiosios raid\u0117s", | ||||
| "lowercase": "ma\u017eosios raid\u0117s", | ||||
| "UPPERCASE": "VISOS DID\u017dIOSIOS", | ||||
| "Title Case": "Pirmos Did\u017eiosios", | ||||
| "Permanent Pen Properties": "Nuolatinio ra\u0161iklio nustatymai", | ||||
| "Permanent pen properties...": "Nuolatinio ra\u0161iklio nustatymai...", | ||||
| "Font": "\u0160riftas", | ||||
| "Size": "Dydis", | ||||
| "More...": "Daugiau...", | ||||
| "Spellcheck Language": "Ra\u0161ybos tikrinimo kalba", | ||||
| "Select...": "Pasirinkti...", | ||||
| "Preferences": "Nustatymai", | ||||
| "Yes": "Taip", | ||||
| "No": "Ne", | ||||
| "Keyboard Navigation": "Valdymas klaviat\u016bra", | ||||
| "Version": "Versija", | ||||
| "Anchor": "\u017dym\u0117", | ||||
| "Special character": "Specialus simbolis", | ||||
| "Code sample": "Kodo pavyzdys", | ||||
| "Color": "Spalva", | ||||
| "Emoticons": "Jaustukai", | ||||
| "Document properties": "Dokumento savyb\u0117s", | ||||
| "Image": "Paveiksl\u0117lis", | ||||
| "Insert link": "\u012eterpti nuorod\u0105", | ||||
| "Target": "Tikslin\u0117 nuoroda", | ||||
| "Link": "Nuoroda", | ||||
| "Poster": "Plakatas", | ||||
| "Media": "Medija", | ||||
| "Print": "Spausdinti", | ||||
| "Prev": "Ankstesnis", | ||||
| "Find and replace": "Surasti ir pakeisti", | ||||
| "Whole words": "Visus \u017eod\u017eius", | ||||
| "Spellcheck": "Ra\u0161ybos tikrinimas", | ||||
| "Caption": "Antra\u0161t\u0117", | ||||
| "Insert template": "\u012eterpti \u0161ablon\u0105" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/nb_NO.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/nb_NO.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('nb_NO',{ | ||||
| "Redo": "Gj\u00f8r om", | ||||
| "Undo": "Angre", | ||||
| "Cut": "Klipp ut", | ||||
| "Copy": "Kopier", | ||||
| "Paste": "Lim inn", | ||||
| "Select all": "Marker alt", | ||||
| "New document": "Nytt dokument", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Avbryt", | ||||
| "Visual aids": "Visuelle hjelpemidler", | ||||
| "Bold": "Fet", | ||||
| "Italic": "Kursiv", | ||||
| "Underline": "Understreking", | ||||
| "Strikethrough": "Gjennomstreking", | ||||
| "Superscript": "Hevet skrift", | ||||
| "Subscript": "Senket skrift", | ||||
| "Clear formatting": "Fjern formateringer", | ||||
| "Align left": "Venstrejuster", | ||||
| "Align center": "Midtstill", | ||||
| "Align right": "H\u00f8yrejuster", | ||||
| "Justify": "Blokkjuster", | ||||
| "Bullet list": "Punktliste", | ||||
| "Numbered list": "Nummerliste", | ||||
| "Decrease indent": "Reduser innrykk", | ||||
| "Increase indent": "\u00d8k innrykk", | ||||
| "Close": "Lukk", | ||||
| "Formats": "Stiler", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Nettleseren din st\u00f8tter ikke direkte tilgang til utklippsboken. Bruk istedet tastatursnarveiene Ctrl+X\/C\/V.", | ||||
| "Headers": "Overskrifter", | ||||
| "Header 1": "Overskrift 1", | ||||
| "Header 2": "Overskrift 2", | ||||
| "Header 3": "Overskrift 3", | ||||
| "Header 4": "Overskrift 4", | ||||
| "Header 5": "Overskrift 5", | ||||
| "Header 6": "Overskrift 6", | ||||
| "Headings": "Overskrifter", | ||||
| "Heading 1": "Overskrift 1", | ||||
| "Heading 2": "Overskrift 2", | ||||
| "Heading 3": "Overskrift 3", | ||||
| "Heading 4": "Overskrift 4", | ||||
| "Heading 5": "Overskrift 5", | ||||
| "Heading 6": "Overskrift 6", | ||||
| "Preformatted": "Forh\u00e5ndsformatert", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Kode", | ||||
| "Paragraph": "Avsnitt", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Innkapslet", | ||||
| "Blocks": "Blokker", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Lim inn er n\u00e5 i ren-tekst modus. Kopiert innhold vil bli limt inn som ren tekst inntil du sl\u00e5r av dette valget.", | ||||
| "Fonts": "Fonter", | ||||
| "Font Sizes": "Fontst\u00f8rrelser", | ||||
| "Class": "Klasse", | ||||
| "Browse for an image": "S\u00f8k etter bilde", | ||||
| "OR": "OR", | ||||
| "Drop an image here": "Slipp et bilde her", | ||||
| "Upload": "Last opp", | ||||
| "Block": "Blokk", | ||||
| "Align": "Juster", | ||||
| "Default": "Normal", | ||||
| "Circle": "\u00c5pen sirkel", | ||||
| "Disc": "Fylt sirkel", | ||||
| "Square": "Fylt firkant", | ||||
| "Lower Alpha": "Minuskler", | ||||
| "Lower Greek": "Greske minuskler", | ||||
| "Lower Roman": "Romerske minuskler", | ||||
| "Upper Alpha": "Versaler", | ||||
| "Upper Roman": "Romerske versaler", | ||||
| "Anchor...": "Lenke", | ||||
| "Name": "Navn", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id burde starte med en bokstav, bare fulgt av bokstaver, nummer, streker, punktum, koloner eller understreker.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Du har ikke arkivert endringene. Vil du fortsette uten \u00e5 arkivere?", | ||||
| "Restore last draft": "Gjenopprett siste utkast", | ||||
| "Special character...": "Spesialtegn...", | ||||
| "Source code": "Kildekode", | ||||
| "Insert\/Edit code sample": "Sett inn\/endre kodeeksempel", | ||||
| "Language": "Spr\u00e5k", | ||||
| "Code sample...": "Kodeeksempel", | ||||
| "Color Picker": "Fargevelger", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Venstre til h\u00f8yre", | ||||
| "Right to left": "H\u00f8yre til venstre", | ||||
| "Emoticons...": "Emoticons..", | ||||
| "Metadata and Document Properties": "Metadata og dokumentverdier", | ||||
| "Title": "Tittel", | ||||
| "Keywords": "N\u00f8kkelord", | ||||
| "Description": "Beskrivelse", | ||||
| "Robots": "Roboter", | ||||
| "Author": "Forfatter", | ||||
| "Encoding": "Tegnkoding", | ||||
| "Fullscreen": "Fullskjerm", | ||||
| "Action": "Handling", | ||||
| "Shortcut": "Snarvei", | ||||
| "Help": "Hjelp", | ||||
| "Address": "Adresse", | ||||
| "Focus to menubar": "Fokus p\u00e5 menylinje", | ||||
| "Focus to toolbar": "Fokus p\u00e5 verkt\u00f8ylinje", | ||||
| "Focus to element path": "Fokus p\u00e5 elementsti", | ||||
| "Focus to contextual toolbar": "Fokus p\u00e5 kontekstuell verkt\u00f8ylinje", | ||||
| "Insert link (if link plugin activated)": "Sett inn lenke (dersom lenketillegg er aktivert)", | ||||
| "Save (if save plugin activated)": "Lagre (dersom lagretillegg er aktivert)", | ||||
| "Find (if searchreplace plugin activated)": "Finn (dersom tillegg for s\u00f8k og erstatt er aktivert)", | ||||
| "Plugins installed ({0}):": "Installerte tillegg ({0}):", | ||||
| "Premium plugins:": "Premiumtillegg:", | ||||
| "Learn more...": "Les mer ...", | ||||
| "You are using {0}": "Du bruker {0}", | ||||
| "Plugins": "Tillegg", | ||||
| "Handy Shortcuts": "Nyttige snarveier", | ||||
| "Horizontal line": "Horisontal linje", | ||||
| "Insert\/edit image": "Sett inn\/endre bilde", | ||||
| "Image description": "Bildebeskrivelse", | ||||
| "Source": "Bildelenke", | ||||
| "Dimensions": "Dimensjoner", | ||||
| "Constrain proportions": "Behold proporsjoner", | ||||
| "General": "Generelt", | ||||
| "Advanced": "Avansert", | ||||
| "Style": "Stil", | ||||
| "Vertical space": "Vertikal marg", | ||||
| "Horizontal space": "Horisontal marg", | ||||
| "Border": "Ramme", | ||||
| "Insert image": "Sett inn bilde", | ||||
| "Image...": "Bilde...", | ||||
| "Image list": "Bildeliste", | ||||
| "Rotate counterclockwise": "Roter mot venstre", | ||||
| "Rotate clockwise": "Roter mot h\u00f8yre", | ||||
| "Flip vertically": "Speilvend vertikalt", | ||||
| "Flip horizontally": "Speilvend horisontalt", | ||||
| "Edit image": "Rediger bilde", | ||||
| "Image options": "Bilde innstillinger", | ||||
| "Zoom in": "Zoom inn", | ||||
| "Zoom out": "Zoom ut", | ||||
| "Crop": "Beskj\u00e6r", | ||||
| "Resize": "Skaler", | ||||
| "Orientation": "Orientering", | ||||
| "Brightness": "Lysstyrke", | ||||
| "Sharpen": "Skarphet", | ||||
| "Contrast": "Kontrast", | ||||
| "Color levels": "Fargeniv\u00e5", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Inverter", | ||||
| "Apply": "Utf\u00f8r", | ||||
| "Back": "Tilbake", | ||||
| "Insert date\/time": "Sett inn dato\/tid", | ||||
| "Date\/time": "Dato\/tid", | ||||
| "Insert\/Edit Link": "Sett inn \/ Rediger lenke", | ||||
| "Insert\/edit link": "Sett inn\/endre lenke", | ||||
| "Text to display": "Tekst som skal vises", | ||||
| "Url": "Url", | ||||
| "Open link in...": "\u00c5pne lenke i..", | ||||
| "Current window": "N\u00e5v\u00e6rende vindu", | ||||
| "None": "Ingen", | ||||
| "New window": "Nytt vindu", | ||||
| "Remove link": "Fjern lenke", | ||||
| "Anchors": "Anker", | ||||
| "Link...": "Lenke...", | ||||
| "Paste or type a link": "Lim inn eller skriv en lenke", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Oppgitte URL ser ut til \u00e5 v\u00e6re en epost-adresse. \u00d8nsker du \u00e5 sette inn p\u00e5krevet mailto: prefiks forran epost-adressen?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Oppgitt URL ser ut til \u00e5 v\u00e6re en e-postadresse. \u00d8nsker du \u00e5 sette inn p\u00e5krevd mailto:-prefiks foran e-postadressen?", | ||||
| "Link list": "Lenkeliste", | ||||
| "Insert video": "Sett inn video", | ||||
| "Insert\/edit video": "Sett inn\/rediger video", | ||||
| "Insert\/edit media": "Sett inn\/endre media", | ||||
| "Alternative source": "Alternativ kilde", | ||||
| "Alternative source URL": "Alternativ kilde URL", | ||||
| "Media poster (Image URL)": "Mediaposter (bilde-URL)", | ||||
| "Paste your embed code below:": "Lim inn  inkluderings-koden nedenfor", | ||||
| "Embed": "Inkluder", | ||||
| "Media...": "Media..", | ||||
| "Nonbreaking space": "Hardt mellomrom", | ||||
| "Page break": "Sideskifte", | ||||
| "Paste as text": "Lim inn som tekst", | ||||
| "Preview": "Forh\u00e5ndsvisning", | ||||
| "Print...": "Skriv ut...", | ||||
| "Save": "Arkiver", | ||||
| "Find": "Finn", | ||||
| "Replace with": "Erstatt med", | ||||
| "Replace": "Erstatt", | ||||
| "Replace all": "Erstatt alle", | ||||
| "Previous": "Forrige", | ||||
| "Next": "Neste", | ||||
| "Find and replace...": "Finn og erstatt...", | ||||
| "Could not find the specified string.": "Kunne ikke finne den spesifiserte teksten", | ||||
| "Match case": "Match store og sm\u00e5 bokstaver", | ||||
| "Find whole words only": "Finn kun hele ord", | ||||
| "Spell check": "Stavekontroll", | ||||
| "Ignore": "Ignorer", | ||||
| "Ignore all": "Ignorer alle", | ||||
| "Finish": "Avslutt", | ||||
| "Add to Dictionary": "Legg til i ordliste", | ||||
| "Insert table": "Sett inn tabell", | ||||
| "Table properties": "Tabell egenskaper", | ||||
| "Delete table": "Slett tabell", | ||||
| "Cell": "Celle", | ||||
| "Row": "Rad", | ||||
| "Column": "Kolonne", | ||||
| "Cell properties": "Celle egenskaper", | ||||
| "Merge cells": "Sl\u00e5 sammen celler", | ||||
| "Split cell": "Splitt celle", | ||||
| "Insert row before": "Sett inn rad f\u00f8r", | ||||
| "Insert row after": "Sett in rad etter", | ||||
| "Delete row": "Slett rad", | ||||
| "Row properties": "Rad egenskaper", | ||||
| "Cut row": "Klipp ut rad", | ||||
| "Copy row": "Kopier rad", | ||||
| "Paste row before": "Lim inn rad f\u00f8r", | ||||
| "Paste row after": "Lim inn rad etter", | ||||
| "Insert column before": "Sett inn kolonne f\u00f8r", | ||||
| "Insert column after": "Sett inn kolonne etter", | ||||
| "Delete column": "Slett kolonne", | ||||
| "Cols": "Kolonner", | ||||
| "Rows": "Rader", | ||||
| "Width": "Bredde", | ||||
| "Height": "H\u00f8yde", | ||||
| "Cell spacing": "Celleavstand", | ||||
| "Cell padding": "Cellemarg", | ||||
| "Show caption": "Vis bildetekst", | ||||
| "Left": "Venstre", | ||||
| "Center": "Midtstilt", | ||||
| "Right": "H\u00f8yre", | ||||
| "Cell type": "Celletype", | ||||
| "Scope": "Omfang", | ||||
| "Alignment": "Justering", | ||||
| "H Align": "H Justering", | ||||
| "V Align": "V Justering", | ||||
| "Top": "Topp", | ||||
| "Middle": "Midten", | ||||
| "Bottom": "Bunn", | ||||
| "Header cell": "Topptekst-celle", | ||||
| "Row group": "Radgruppe", | ||||
| "Column group": "Kolonnegruppe", | ||||
| "Row type": "Rad-type", | ||||
| "Header": "Topptekst", | ||||
| "Body": "Br\u00f8dtekst", | ||||
| "Footer": "Bunntekst", | ||||
| "Border color": "Rammefarge", | ||||
| "Insert template...": "Sett inn mal..", | ||||
| "Templates": "Maler", | ||||
| "Template": "Mal", | ||||
| "Text color": "Tekstfarge", | ||||
| "Background color": "Bakgrunnsfarge", | ||||
| "Custom...": "Tilpass...", | ||||
| "Custom color": "Tilpasset farge", | ||||
| "No color": "Ingen farge", | ||||
| "Remove color": "Fjern farge", | ||||
| "Table of Contents": "Innholdsfortegnelse", | ||||
| "Show blocks": "Vis blokker", | ||||
| "Show invisible characters": "Vis skjulte tegn", | ||||
| "Word count": "Ordtelling", | ||||
| "Count": "Opptelling", | ||||
| "Document": "Dokument", | ||||
| "Selection": "Utvalg", | ||||
| "Words": "Ord", | ||||
| "Words: {0}": "Antall ord: {0}", | ||||
| "{0} words": "{0} ord", | ||||
| "File": "Arkiv", | ||||
| "Edit": "Rediger", | ||||
| "Insert": "Sett inn", | ||||
| "View": "Vis", | ||||
| "Format": "Format", | ||||
| "Table": "Tabell", | ||||
| "Tools": "Verkt\u00f8y", | ||||
| "Powered by {0}": "Redigert med {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Tekstredigering. Tast ALT-F9 for meny. Tast ALT-F10 for verkt\u00f8ys-rader. Tast ALT-0 for hjelp.", | ||||
| "Image title": "Bildetittel", | ||||
| "Border width": "Bordbredde", | ||||
| "Border style": "Bordstil", | ||||
| "Error": "Feil", | ||||
| "Warn": "Advarsel", | ||||
| "Valid": "Gyldig", | ||||
| "To open the popup, press Shift+Enter": "For \u00e5 \u00e5pne popup, trykk Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Rik-tekstomr\u00e5de. Trykk ALT-0 for hjelp.", | ||||
| "System Font": "Systemfont", | ||||
| "Failed to upload image: {0}": "Opplasting av bilde feilet: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Kunne ikke laste tillegg: {0} from url {1}", | ||||
| "Failed to load plugin url: {0}": "Kunne ikke laste tillegg url: {0}", | ||||
| "Failed to initialize plugin: {0}": "Kunne ikke initialisere tillegg: {0}", | ||||
| "example": "eksempel", | ||||
| "Search": "S\u00f8k", | ||||
| "All": "Alle", | ||||
| "Currency": "Valuta", | ||||
| "Text": "Tekst", | ||||
| "Quotations": "Sitater", | ||||
| "Mathematical": "Matematisk", | ||||
| "Extended Latin": "Utvidet latin", | ||||
| "Symbols": "Symboler", | ||||
| "Arrows": "Piler", | ||||
| "User Defined": "Brukerdefinert", | ||||
| "dollar sign": "dollartegn", | ||||
| "currency sign": "valutasymbol", | ||||
| "euro-currency sign": "Euro-valutasymbol", | ||||
| "colon sign": "kolon-symbol", | ||||
| "cruzeiro sign": "cruzeiro-symbol", | ||||
| "french franc sign": "franske franc-symbol", | ||||
| "lira sign": "lire-symbol", | ||||
| "mill sign": "mill-symbol", | ||||
| "naira sign": "naira-symbol", | ||||
| "peseta sign": "peseta-symbol", | ||||
| "rupee sign": "rupee-symbol", | ||||
| "won sign": "won-symbol", | ||||
| "new sheqel sign": "Ny sheqel-symbol", | ||||
| "dong sign": "dong-symbol", | ||||
| "kip sign": "kip-symbol", | ||||
| "tugrik sign": "tugrik-symbol", | ||||
| "drachma sign": "drachma-symbol", | ||||
| "german penny symbol": "tysk penny-symbol", | ||||
| "peso sign": "peso-symbol", | ||||
| "guarani sign": "quarani-symbol", | ||||
| "austral sign": "austral-symbol", | ||||
| "hryvnia sign": "hryvina-symbol", | ||||
| "cedi sign": "credi-symbol", | ||||
| "livre tournois sign": "livre tournois-symbol", | ||||
| "spesmilo sign": "spesmilo-symbol", | ||||
| "tenge sign": "tenge-symbol", | ||||
| "indian rupee sign": "indisk rupee-symbol", | ||||
| "turkish lira sign": "tyrkisk lire-symbol", | ||||
| "nordic mark sign": "nordisk mark-symbol", | ||||
| "manat sign": "manat-symbol", | ||||
| "ruble sign": "ruble-symbol", | ||||
| "yen character": "yen-symbol", | ||||
| "yuan character": "yuan-symbol", | ||||
| "yuan character, in hong kong and taiwan": "yuan-symbol, i Hongkong og Taiwan", | ||||
| "yen\/yuan character variant one": "yen\/yuan-symbol variant en", | ||||
| "Loading emoticons...": "Laster emoticons..", | ||||
| "Could not load emoticons": "Kunne ikke laste emoticons", | ||||
| "People": "Mennesker", | ||||
| "Animals and Nature": "Dyr og natur", | ||||
| "Food and Drink": "Mat og drikke", | ||||
| "Activity": "Aktivitet", | ||||
| "Travel and Places": "Reise og steder", | ||||
| "Objects": "Objekter", | ||||
| "Flags": "Flagg", | ||||
| "Characters": "Tegn", | ||||
| "Characters (no spaces)": "Tegn (uten mellomrom)", | ||||
| "{0} characters": "{0} tegn", | ||||
| "Error: Form submit field collision.": "Feil: Skjemafelt innsendingskollisjon.", | ||||
| "Error: No form element found.": "Feil: Intet skjemafelt funnet.", | ||||
| "Update": "Oppdater", | ||||
| "Color swatch": "Fargepalett", | ||||
| "Turquoise": "Turkis", | ||||
| "Green": "Gr\u00f8nn", | ||||
| "Blue": "Bl\u00e5", | ||||
| "Purple": "Lilla", | ||||
| "Navy Blue": "Marinebl\u00e5", | ||||
| "Dark Turquoise": "M\u00f8rk turkis", | ||||
| "Dark Green": "M\u00f8rkegr\u00f8nn", | ||||
| "Medium Blue": "Mellombl\u00e5", | ||||
| "Medium Purple": "Medium lilla", | ||||
| "Midnight Blue": "Midnattbl\u00e5", | ||||
| "Yellow": "Gul", | ||||
| "Orange": "Oransje", | ||||
| "Red": "R\u00f8d", | ||||
| "Light Gray": "Lys gr\u00e5", | ||||
| "Gray": "Gr\u00e5", | ||||
| "Dark Yellow": "M\u00f8rk gul", | ||||
| "Dark Orange": "M\u00f8rk oransje", | ||||
| "Dark Red": "M\u00f8rker\u00f8d", | ||||
| "Medium Gray": "Medium gr\u00e5", | ||||
| "Dark Gray": "M\u00f8rk gr\u00e5", | ||||
| "Light Green": "Lys gr\u00f8nn", | ||||
| "Light Yellow": "Lys gul", | ||||
| "Light Red": "Lys r\u00f8d", | ||||
| "Light Purple": "Lys lilla", | ||||
| "Light Blue": "Lys bl\u00e5", | ||||
| "Dark Purple": "M\u00f8rk lilla", | ||||
| "Dark Blue": "M\u00f8rk bl\u00e5", | ||||
| "Black": "Svart", | ||||
| "White": "Hvit", | ||||
| "Switch to or from fullscreen mode": "Bytt til eller fra fullskjermmodus", | ||||
| "Open help dialog": "\u00c5pne hjelp-dialog", | ||||
| "history": "historikk", | ||||
| "styles": "stiler", | ||||
| "formatting": "formatering", | ||||
| "alignment": "justering", | ||||
| "indentation": "innrykk", | ||||
| "permanent pen": "permanent penn", | ||||
| "comments": "kommentarer", | ||||
| "Format Painter": "Kopier format", | ||||
| "Insert\/edit iframe": "Sett inn \/ rediger iframe", | ||||
| "Capitalization": "Store\/sm\u00e5 bokstaver", | ||||
| "lowercase": "sm\u00e5 bokstaver", | ||||
| "UPPERCASE": "STORE BOKSTAVER", | ||||
| "Title Case": "Tittelbokstav", | ||||
| "Permanent Pen Properties": "Permanente egenskaper for penn", | ||||
| "Permanent pen properties...": "Permanente egenskaper for penn...", | ||||
| "Font": "Skrift", | ||||
| "Size": "St\u00f8rrelse", | ||||
| "More...": "Mer...", | ||||
| "Spellcheck Language": "Stavekontroller spr\u00e5k", | ||||
| "Select...": "Velg...", | ||||
| "Preferences": "Innstillinger", | ||||
| "Yes": "Ja", | ||||
| "No": "Nei", | ||||
| "Keyboard Navigation": "Navigering med tastaturet", | ||||
| "Version": "Versjon", | ||||
| "Anchor": "Anker", | ||||
| "Special character": "Spesialtegn", | ||||
| "Code sample": "Kodeeksempel", | ||||
| "Color": "Farge", | ||||
| "Emoticons": "Hum\u00f8rfjes", | ||||
| "Document properties": "Dokumentegenskaper", | ||||
| "Image": "Bilde", | ||||
| "Insert link": "Sett inn lenke", | ||||
| "Target": "M\u00e5l", | ||||
| "Link": "Lenke", | ||||
| "Poster": "Plakatbilde", | ||||
| "Media": "Media", | ||||
| "Print": "Skriv ut", | ||||
| "Prev": "Forrige", | ||||
| "Find and replace": "Finn og erstatt", | ||||
| "Whole words": "Hele ord", | ||||
| "Spellcheck": "Stavekontroll", | ||||
| "Caption": "Tittel", | ||||
| "Insert template": "Sett inn mal" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/nl.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/nl.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('nl',{ | ||||
| "Redo": "Opnieuw uitvoeren", | ||||
| "Undo": "Ongedaan maken", | ||||
| "Cut": "Knippen", | ||||
| "Copy": "Kopi\u00ebren", | ||||
| "Paste": "Plakken", | ||||
| "Select all": "Alles selecteren", | ||||
| "New document": "Nieuw document", | ||||
| "Ok": "OK", | ||||
| "Cancel": "Annuleren", | ||||
| "Visual aids": " Visuele hulpmiddelen", | ||||
| "Bold": "Vet", | ||||
| "Italic": "Cursief", | ||||
| "Underline": "Onderstrepen", | ||||
| "Strikethrough": "Doorhalen", | ||||
| "Superscript": "Superscript", | ||||
| "Subscript": "Subscript", | ||||
| "Clear formatting": "Opmaak wissen", | ||||
| "Align left": "Links uitlijnen", | ||||
| "Align center": "Centreren", | ||||
| "Align right": "Rechts uitlijnen", | ||||
| "Justify": "Uitvullen", | ||||
| "Bullet list": "Lijst met opsommingstekens", | ||||
| "Numbered list": "Genummerde lijst", | ||||
| "Decrease indent": "Inspringing verkleinen", | ||||
| "Increase indent": "Inspringing vergroten", | ||||
| "Close": "Sluiten", | ||||
| "Formats": "Opmaken", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Jouw browser ondersteunt geen rechtstreekse toegang tot het klembord. Gebruik in plaats daarvan de sneltoetsen Ctrl+X\/C\/V.", | ||||
| "Headers": "Kopteksten", | ||||
| "Header 1": "Koptekst 1", | ||||
| "Header 2": "Koptekst 2", | ||||
| "Header 3": "Koptekst 3", | ||||
| "Header 4": "Koptekst 4", | ||||
| "Header 5": "Koptekst 5", | ||||
| "Header 6": "Koptekst 6", | ||||
| "Headings": "Koppen", | ||||
| "Heading 1": "Kop 1", | ||||
| "Heading 2": "Kop 2", | ||||
| "Heading 3": "Kop 3", | ||||
| "Heading 4": "Kop 4", | ||||
| "Heading 5": "Kop 5", | ||||
| "Heading 6": "Kop 6", | ||||
| "Preformatted": "Vooraf opgemaakt", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Code", | ||||
| "Paragraph": "Alinea", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Inline", | ||||
| "Blocks": "Blokken", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Plakken gebeurt nu als platte tekst. Tekst wordt nu ingevoegd zonder opmaak tot deze optie uitgeschakeld wordt.", | ||||
| "Fonts": "Lettertypes", | ||||
| "Font Sizes": "Tekengroottes", | ||||
| "Class": "Klasse", | ||||
| "Browse for an image": "Afbeelding zoeken", | ||||
| "OR": "OF", | ||||
| "Drop an image here": "Hier een afbeelding neerzetten", | ||||
| "Upload": "Uploaden", | ||||
| "Block": "Blok", | ||||
| "Align": "Uitlijnen", | ||||
| "Default": "Standaard", | ||||
| "Circle": "Cirkel", | ||||
| "Disc": "Bolletje", | ||||
| "Square": "Vierkant", | ||||
| "Lower Alpha": "Kleine letters", | ||||
| "Lower Greek": "Griekse letters", | ||||
| "Lower Roman": "Romeinse cijfers klein", | ||||
| "Upper Alpha": "Hoofdletters", | ||||
| "Upper Roman": "Romeinse cijfers groot", | ||||
| "Anchor...": "Anker...", | ||||
| "Name": "Naam", | ||||
| "Id": "ID", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID moet beginnen met een letter, gevolgd door letters, nummers, streepjes, punten, dubbele punten of underscores.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "U hebt niet alles opgeslagen bent u zeker dat u de pagina wenst te verlaten?", | ||||
| "Restore last draft": "Herstel het laatste concept", | ||||
| "Special character...": "Speciaal teken...", | ||||
| "Source code": "Broncode", | ||||
| "Insert\/Edit code sample": "Broncode invoegen\/bewerken", | ||||
| "Language": "Programmeertaal", | ||||
| "Code sample...": "Codevoorbeeld...", | ||||
| "Color Picker": "Kleurenkiezer", | ||||
| "R": "Rood", | ||||
| "G": "Groen", | ||||
| "B": "Blauw", | ||||
| "Left to right": "Links naar rechts", | ||||
| "Right to left": "Rechts naar links", | ||||
| "Emoticons...": "Emoticons...", | ||||
| "Metadata and Document Properties": "Metadata en documenteigenschappen", | ||||
| "Title": "Titel", | ||||
| "Keywords": "Sleutelwoorden", | ||||
| "Description": "Omschrijving", | ||||
| "Robots": "Robots", | ||||
| "Author": "Auteur", | ||||
| "Encoding": "Codering", | ||||
| "Fullscreen": "Volledig scherm", | ||||
| "Action": "Actie", | ||||
| "Shortcut": "Snelkoppeling", | ||||
| "Help": "Help", | ||||
| "Address": "Adres", | ||||
| "Focus to menubar": "Menubalk selecteren", | ||||
| "Focus to toolbar": "Werkbalk selecteren", | ||||
| "Focus to element path": "Element pad selecteren", | ||||
| "Focus to contextual toolbar": "Contextuele werkbalk selecteren", | ||||
| "Insert link (if link plugin activated)": "Link invoegen (als link plug-in geactiveerd is)", | ||||
| "Save (if save plugin activated)": "Opslaan (als opslaan plug-in ingeschakeld is)", | ||||
| "Find (if searchreplace plugin activated)": "Zoeken (als zoeken\/vervangen plug-in ingeschakeld is)", | ||||
| "Plugins installed ({0}):": "Plug-ins ge\u00efnstalleerd ({0}):", | ||||
| "Premium plugins:": "Premium plug-ins:", | ||||
| "Learn more...": "Leer meer...", | ||||
| "You are using {0}": "Je gebruikt {0}", | ||||
| "Plugins": "Plug-ins", | ||||
| "Handy Shortcuts": "Handige snelkoppelingen", | ||||
| "Horizontal line": "Horizontale lijn", | ||||
| "Insert\/edit image": "Afbeelding invoegen\/bewerken", | ||||
| "Image description": "Afbeelding omschrijving", | ||||
| "Source": "Bron", | ||||
| "Dimensions": "Afmetingen", | ||||
| "Constrain proportions": "Verhoudingen behouden", | ||||
| "General": "Algemeen", | ||||
| "Advanced": "Geavanceerd", | ||||
| "Style": "Stijl", | ||||
| "Vertical space": "Verticale ruimte", | ||||
| "Horizontal space": "Horizontale ruimte", | ||||
| "Border": "Rand", | ||||
| "Insert image": "Afbeelding invoegen", | ||||
| "Image...": "Afbeelding...", | ||||
| "Image list": "Afbeeldingenlijst", | ||||
| "Rotate counterclockwise": "Linksom draaien", | ||||
| "Rotate clockwise": "Rechtsom draaien", | ||||
| "Flip vertically": "Verticaal spiegelen", | ||||
| "Flip horizontally": "Horizontaal spiegelen", | ||||
| "Edit image": "Bewerk afbeelding", | ||||
| "Image options": "Afbeelding opties", | ||||
| "Zoom in": "Inzoomen", | ||||
| "Zoom out": "Uitzoomen", | ||||
| "Crop": "Uitsnijden", | ||||
| "Resize": "Formaat aanpassen", | ||||
| "Orientation": "Orientatie", | ||||
| "Brightness": "Helderheid", | ||||
| "Sharpen": "Scherpte", | ||||
| "Contrast": "Contrast", | ||||
| "Color levels": "Kleurniveau's", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Omkeren", | ||||
| "Apply": "Toepassen", | ||||
| "Back": "Terug", | ||||
| "Insert date\/time": "Voeg datum\/tijd in", | ||||
| "Date\/time": "Datum\/tijd", | ||||
| "Insert\/Edit Link": "Link invoegen\/bewerken", | ||||
| "Insert\/edit link": "Hyperlink invoegen\/bewerken", | ||||
| "Text to display": "Linktekst", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Link openen in...", | ||||
| "Current window": "Huidige venster", | ||||
| "None": "Geen", | ||||
| "New window": "Nieuw venster", | ||||
| "Remove link": "Link verwijderen", | ||||
| "Anchors": "Anker", | ||||
| "Link...": "Link...", | ||||
| "Paste or type a link": "Plak of typ een link", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "De ingegeven URL lijkt op een e-mailadres. Wil je er \"mailto:\" aan toevoegen?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "De ingegeven URL verwijst naar een extern adres. Wil je er \"http:\/\/\" aan toevoegen?", | ||||
| "Link list": "Linklijst", | ||||
| "Insert video": "Video invoegen", | ||||
| "Insert\/edit video": "Video invoegen\/bewerken", | ||||
| "Insert\/edit media": "Media invoegen\/bewerken", | ||||
| "Alternative source": "Alternatieve bron", | ||||
| "Alternative source URL": "Alternatief bron-URL", | ||||
| "Media poster (Image URL)": "Mediaposter (afbeeldings-url)", | ||||
| "Paste your embed code below:": "Plak u in te sluiten code hieronder:", | ||||
| "Embed": "Insluiten", | ||||
| "Media...": "Media...", | ||||
| "Nonbreaking space": "Vaste spatie invoegen", | ||||
| "Page break": "Pagina einde", | ||||
| "Paste as text": "Plakken als tekst", | ||||
| "Preview": "Voorbeeld", | ||||
| "Print...": "Afdrukken... ", | ||||
| "Save": "Opslaan", | ||||
| "Find": "Zoeken", | ||||
| "Replace with": "Vervangen door", | ||||
| "Replace": "Vervangen", | ||||
| "Replace all": "Alles vervangen", | ||||
| "Previous": "Vorige", | ||||
| "Next": "Volgende", | ||||
| "Find and replace...": "Zoeken en vervangen...", | ||||
| "Could not find the specified string.": "Geen resultaten gevonden", | ||||
| "Match case": "Identieke hoofd\/kleine letters", | ||||
| "Find whole words only": "Alleen hele woorden zoeken", | ||||
| "Spell check": "Spellingscontrole", | ||||
| "Ignore": "Negeren", | ||||
| "Ignore all": "Alles negeren", | ||||
| "Finish": "Einde", | ||||
| "Add to Dictionary": "Toevoegen aan woordenlijst", | ||||
| "Insert table": "Tabel invoegen", | ||||
| "Table properties": "Tabel eigenschappen", | ||||
| "Delete table": "Verwijder tabel", | ||||
| "Cell": "Cel", | ||||
| "Row": "Rij", | ||||
| "Column": "Kolom", | ||||
| "Cell properties": "Cel eigenschappen", | ||||
| "Merge cells": "Cellen samenvoegen", | ||||
| "Split cell": "Cel splitsen", | ||||
| "Insert row before": "Voeg rij boven toe", | ||||
| "Insert row after": "Voeg rij onder toe", | ||||
| "Delete row": "Verwijder rij", | ||||
| "Row properties": "Rij eigenschappen", | ||||
| "Cut row": "Knip rij", | ||||
| "Copy row": "Kopieer rij", | ||||
| "Paste row before": "Plak rij boven", | ||||
| "Paste row after": "Plak rij onder", | ||||
| "Insert column before": "Voeg kolom in voor", | ||||
| "Insert column after": "Voeg kolom in na", | ||||
| "Delete column": "Verwijder kolom", | ||||
| "Cols": "Kolommen", | ||||
| "Rows": "Rijen", | ||||
| "Width": "Breedte", | ||||
| "Height": "Hoogte", | ||||
| "Cell spacing": "Celruimte", | ||||
| "Cell padding": "Ruimte binnen cel", | ||||
| "Show caption": "Bijschrift weergeven", | ||||
| "Left": "Links", | ||||
| "Center": "Midden", | ||||
| "Right": "Rechts", | ||||
| "Cell type": "Celtype", | ||||
| "Scope": "Bereik", | ||||
| "Alignment": "Uitlijning", | ||||
| "H Align": "Links uitlijnen", | ||||
| "V Align": "Boven uitlijnen", | ||||
| "Top": "Bovenaan", | ||||
| "Middle": "Centreren", | ||||
| "Bottom": "Onderaan", | ||||
| "Header cell": "Kopcel", | ||||
| "Row group": "Rijgroep", | ||||
| "Column group": "Kolomgroep", | ||||
| "Row type": "Rijtype", | ||||
| "Header": "Koptekst", | ||||
| "Body": "Body", | ||||
| "Footer": "Voettekst", | ||||
| "Border color": "Randkleur", | ||||
| "Insert template...": "Sjabloon invoegen...", | ||||
| "Templates": "Sjablonen", | ||||
| "Template": "Sjabloon", | ||||
| "Text color": "Tekstkleur", | ||||
| "Background color": "Achtergrondkleur", | ||||
| "Custom...": "Eigen...", | ||||
| "Custom color": "Eigen kleur", | ||||
| "No color": "Geen kleur", | ||||
| "Remove color": "Kleur verwijderen", | ||||
| "Table of Contents": "Inhoudsopgave", | ||||
| "Show blocks": "Blokken tonen", | ||||
| "Show invisible characters": "Onzichtbare karakters tonen", | ||||
| "Word count": "Aantal woorden", | ||||
| "Count": "Telling", | ||||
| "Document": "Document", | ||||
| "Selection": "Selectie", | ||||
| "Words": "Woorden", | ||||
| "Words: {0}": "Woorden: {0}", | ||||
| "{0} words": "{0} woorden", | ||||
| "File": "Bestand", | ||||
| "Edit": "Bewerken", | ||||
| "Insert": "Invoegen", | ||||
| "View": "Beeld", | ||||
| "Format": "Opmaak", | ||||
| "Table": "Tabel", | ||||
| "Tools": "Gereedschap", | ||||
| "Powered by {0}": "Gemaakt door {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Druk ALT-F9 voor het menu. Druk ALT-F10 voor de toolbar. Druk ALT-0 voor help.", | ||||
| "Image title": "Afbeeldingstitel", | ||||
| "Border width": "Randbreedte", | ||||
| "Border style": "Randstijl", | ||||
| "Error": "Fout", | ||||
| "Warn": "Waarschuwen", | ||||
| "Valid": "Geldig", | ||||
| "To open the popup, press Shift+Enter": "Druk op Shift+Enter om de pop-up te openen", | ||||
| "Rich Text Area. Press ALT-0 for help.": " Gebied met opgemaakte tekst. Druk op ALT-0 voor hulp.", | ||||
| "System Font": "Systeemlettertype", | ||||
| "Failed to upload image: {0}": "Niet gelukt om afbeelding te uploaden: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Niet gelukt om plug-in te laden: {0} vanaf URL {1}", | ||||
| "Failed to load plugin url: {0}": "Niet gelukt om URL plug-in te laden: {0}", | ||||
| "Failed to initialize plugin: {0}": "Niet gelukt om plug-in te initialiseren: {0}", | ||||
| "example": "voorbeeld", | ||||
| "Search": "Zoeken", | ||||
| "All": "Alle", | ||||
| "Currency": "Valuta", | ||||
| "Text": "Tekst", | ||||
| "Quotations": "Citaten", | ||||
| "Mathematical": "Wiskundig", | ||||
| "Extended Latin": "Latijn uitgebreid ", | ||||
| "Symbols": "Symbolen", | ||||
| "Arrows": "Pijlen", | ||||
| "User Defined": "Door gebruiker gedefinieerd ", | ||||
| "dollar sign": "dollarteken", | ||||
| "currency sign": "valutateken", | ||||
| "euro-currency sign": "euroteken", | ||||
| "colon sign": "colon-teken", | ||||
| "cruzeiro sign": "cruzeiro-teken", | ||||
| "french franc sign": "franse franc-teken", | ||||
| "lira sign": "lire-teken", | ||||
| "mill sign": "mill-teken", | ||||
| "naira sign": "naira-teken", | ||||
| "peseta sign": "peseta-teken", | ||||
| "rupee sign": "roepie-teken", | ||||
| "won sign": "won-teken", | ||||
| "new sheqel sign": "nieuwe sheqel-teken", | ||||
| "dong sign": "dong-teken", | ||||
| "kip sign": "kip-teken", | ||||
| "tugrik sign": "tugrik-teken", | ||||
| "drachma sign": "drachme-teken", | ||||
| "german penny symbol": "duitse pfennig-teken", | ||||
| "peso sign": "peso-teken", | ||||
| "guarani sign": "guarani-teken", | ||||
| "austral sign": "austral-teken", | ||||
| "hryvnia sign": "hryvnia-teken", | ||||
| "cedi sign": "cedi-teken", | ||||
| "livre tournois sign": "livre tournois-teken", | ||||
| "spesmilo sign": "spesmilo-teken", | ||||
| "tenge sign": "tenge-teken", | ||||
| "indian rupee sign": "indiaase roepie-teken", | ||||
| "turkish lira sign": "turkse lire-teken", | ||||
| "nordic mark sign": "noorse mark-teken", | ||||
| "manat sign": "manat-teken", | ||||
| "ruble sign": "roebel-teken", | ||||
| "yen character": "yen-teken", | ||||
| "yuan character": "yuan-teken", | ||||
| "yuan character, in hong kong and taiwan": "yuan-teken (Hong Kong en Taiwan)", | ||||
| "yen\/yuan character variant one": "yen\/yuan variant 1-teken", | ||||
| "Loading emoticons...": "Emoticons laden...", | ||||
| "Could not load emoticons": "Kan emoticons niet laden", | ||||
| "People": "Personen", | ||||
| "Animals and Nature": "Dieren en natuur", | ||||
| "Food and Drink": "Eten en drinken", | ||||
| "Activity": "Activiteit", | ||||
| "Travel and Places": "Reizen en plaatsen", | ||||
| "Objects": "Objecten", | ||||
| "Flags": "Vlaggen", | ||||
| "Characters": "Tekens", | ||||
| "Characters (no spaces)": "Tekens (geen spaties)", | ||||
| "{0} characters": "{0} karakters", | ||||
| "Error: Form submit field collision.": "Fout: Veldconflict bij versturen formulier.", | ||||
| "Error: No form element found.": "Fout: Geen formulierelement gevonden.", | ||||
| "Update": "Bijwerken", | ||||
| "Color swatch": "Kleurenwaaier", | ||||
| "Turquoise": "Turquoise", | ||||
| "Green": "Groen", | ||||
| "Blue": "Blauw", | ||||
| "Purple": "Paars", | ||||
| "Navy Blue": "Marineblauw", | ||||
| "Dark Turquoise": "Donkerturquoise", | ||||
| "Dark Green": "Donkergroen", | ||||
| "Medium Blue": "Middelblauw", | ||||
| "Medium Purple": "Middelpaars", | ||||
| "Midnight Blue": "Middernachtblauw", | ||||
| "Yellow": "Geel", | ||||
| "Orange": "Oranje", | ||||
| "Red": "Rood", | ||||
| "Light Gray": "Lichtgrijs", | ||||
| "Gray": "Grijs", | ||||
| "Dark Yellow": "Donkergeel", | ||||
| "Dark Orange": "Donkeroranje", | ||||
| "Dark Red": "Donkerrood", | ||||
| "Medium Gray": "Middelgrijs", | ||||
| "Dark Gray": "Donkergrijs", | ||||
| "Light Green": "Lichtgroen", | ||||
| "Light Yellow": "Lichtgeel", | ||||
| "Light Red": "Lichtrood", | ||||
| "Light Purple": "Lichtpaars", | ||||
| "Light Blue": "Lichtblauw", | ||||
| "Dark Purple": "Donkerpaars", | ||||
| "Dark Blue": "Donkerblauw", | ||||
| "Black": "Zwart", | ||||
| "White": "Wit", | ||||
| "Switch to or from fullscreen mode": "Overschakelen naar of vanuit de volledig scherm-modus", | ||||
| "Open help dialog": "Help-scherm openen", | ||||
| "history": "geschiedenis", | ||||
| "styles": "stijlen", | ||||
| "formatting": "opmaak", | ||||
| "alignment": "uitlijning", | ||||
| "indentation": "inspringing", | ||||
| "permanent pen": "permanent pen", | ||||
| "comments": "opmerkingen", | ||||
| "Format Painter": "Opmaak overnemen", | ||||
| "Insert\/edit iframe": "Iframe toevoegen\/aanpassen", | ||||
| "Capitalization": "Hoofdletter gebruik", | ||||
| "lowercase": "kleine letters", | ||||
| "UPPERCASE": "HOOFDLETTERS", | ||||
| "Title Case": "Titel hoofdletter gebruik", | ||||
| "Permanent Pen Properties": "Permantente Pen eigenschappen", | ||||
| "Permanent pen properties...": "Permantente pen eigenschappen...", | ||||
| "Font": "Lettertype", | ||||
| "Size": "Formaat", | ||||
| "More...": "Meer...", | ||||
| "Spellcheck Language": "Spellingscontrole taal", | ||||
| "Select...": "Selecteer...", | ||||
| "Preferences": "Voorkeuren", | ||||
| "Yes": "Ja", | ||||
| "No": "Nee", | ||||
| "Keyboard Navigation": "Toetsenbord navigatie", | ||||
| "Version": "Versie", | ||||
| "Anchor": "Anker", | ||||
| "Special character": "Speciale karakters", | ||||
| "Code sample": "Broncode voorbeeld", | ||||
| "Color": "Kleur", | ||||
| "Emoticons": "Emoticons", | ||||
| "Document properties": "Document eigenschappen", | ||||
| "Image": "Afbeelding", | ||||
| "Insert link": "Hyperlink invoegen", | ||||
| "Target": "Doel", | ||||
| "Link": "Link", | ||||
| "Poster": "Poster", | ||||
| "Media": "Media", | ||||
| "Print": "Print", | ||||
| "Prev": "Vorige", | ||||
| "Find and replace": "Zoek en vervang", | ||||
| "Whole words": "Alleen hele woorden", | ||||
| "Spellcheck": "Spellingscontrole", | ||||
| "Caption": "Onderschrift", | ||||
| "Insert template": "Sjabloon invoegen" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/pl.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/pl.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('pl',{ | ||||
| "Redo": "Powt\u00f3rz", | ||||
| "Undo": "Cofnij", | ||||
| "Cut": "Wytnij", | ||||
| "Copy": "Kopiuj", | ||||
| "Paste": "Wklej", | ||||
| "Select all": "Zaznacz wszystko", | ||||
| "New document": "Nowy dokument", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Anuluj", | ||||
| "Visual aids": "Pomoce wizualne", | ||||
| "Bold": "Pogrubienie", | ||||
| "Italic": "Kursywa", | ||||
| "Underline": "Podkre\u015blenie", | ||||
| "Strikethrough": "Przekre\u015blenie", | ||||
| "Superscript": "Indeks g\u00f3rny", | ||||
| "Subscript": "Indeks dolny", | ||||
| "Clear formatting": "Wyczy\u015b\u0107 formatowanie", | ||||
| "Align left": "Wyr\u00f3wnaj do lewej", | ||||
| "Align center": "Wyr\u00f3wnaj do \u015brodka", | ||||
| "Align right": "Wyr\u00f3wnaj do prawej", | ||||
| "Justify": "Wyjustuj", | ||||
| "Bullet list": "Lista wypunktowana", | ||||
| "Numbered list": "Lista numerowana", | ||||
| "Decrease indent": "Zmniejsz wci\u0119cie", | ||||
| "Increase indent": "Zwi\u0119ksz wci\u0119cie", | ||||
| "Close": "Zamknij", | ||||
| "Formats": "Formaty", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Twoja przegl\u0105darka nie obs\u0142uguje bezpo\u015bredniego dost\u0119pu do schowka. U\u017cyj zamiast tego kombinacji klawiszy Ctrl+X\/C\/V.", | ||||
| "Headers": "Nag\u0142\u00f3wki", | ||||
| "Header 1": "Nag\u0142\u00f3wek 1", | ||||
| "Header 2": "Nag\u0142\u00f3wek 2", | ||||
| "Header 3": "Nag\u0142\u00f3wek 3", | ||||
| "Header 4": "Nag\u0142\u00f3wek 4", | ||||
| "Header 5": "Nag\u0142\u00f3wek 5", | ||||
| "Header 6": "Nag\u0142\u00f3wek 6", | ||||
| "Headings": "Nag\u0142\u00f3wki", | ||||
| "Heading 1": "Nag\u0142\u00f3wek 1", | ||||
| "Heading 2": "Nag\u0142\u00f3wek 2", | ||||
| "Heading 3": "Nag\u0142\u00f3wek 3", | ||||
| "Heading 4": "Nag\u0142\u00f3wek 4", | ||||
| "Heading 5": "Nag\u0142\u00f3wek 5", | ||||
| "Heading 6": "Nag\u0142\u00f3wek 6", | ||||
| "Preformatted": "Wst\u0119pne formatowanie", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Kod", | ||||
| "Paragraph": "Akapit", | ||||
| "Blockquote": "Blok cytatu", | ||||
| "Inline": "W tek\u015bcie", | ||||
| "Blocks": "Bloki", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Wklejanie jest w trybie tekstowym. Zawarto\u015b\u0107 zostanie wklejona jako zwyk\u0142y tekst dop\u00f3ki nie wy\u0142\u0105czysz tej opcji.", | ||||
| "Fonts": "Fonty", | ||||
| "Font Sizes": "Rozmiar fontu", | ||||
| "Class": "Klasa", | ||||
| "Browse for an image": "Przegl\u0105daj za zdj\u0119ciem", | ||||
| "OR": "LUB", | ||||
| "Drop an image here": "Upu\u015b\u0107 obraz tutaj", | ||||
| "Upload": "Prze\u015blij", | ||||
| "Block": "Zablokuj", | ||||
| "Align": "Wyr\u00f3wnaj", | ||||
| "Default": "Domy\u015blne", | ||||
| "Circle": "K\u00f3\u0142ko", | ||||
| "Disc": "Dysk", | ||||
| "Square": "Kwadrat", | ||||
| "Lower Alpha": "Ma\u0142e litery", | ||||
| "Lower Greek": "Ma\u0142e greckie", | ||||
| "Lower Roman": "Ma\u0142e rzymskie", | ||||
| "Upper Alpha": "Wielkie litery", | ||||
| "Upper Roman": "Wielkie rzymskie", | ||||
| "Anchor...": "Kotwica...", | ||||
| "Name": "Nazwa", | ||||
| "Id": "Identyfikator", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Identyfikator powinien zaczyna\u0107 si\u0119 liter\u0105, dozwolone s\u0105 tylko litery, numery, uko\u015bniki, kropki, dwukropki i podkre\u015blniki - tzw. pod\u0142ogi", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Masz niezapisane zmiany. Czy na pewno chcesz opu\u015bci\u0107 stron\u0119?", | ||||
| "Restore last draft": "Przywr\u00f3\u0107 ostatni szkic", | ||||
| "Special character...": "Znak specjalny...", | ||||
| "Source code": "Kod \u017ar\u00f3d\u0142owy", | ||||
| "Insert\/Edit code sample": "Dodaj\/Edytuj przyk\u0142adowy kod", | ||||
| "Language": "J\u0119zyk", | ||||
| "Code sample...": "Przyk\u0142ad kodu...", | ||||
| "Color Picker": "Selektor kolor\u00f3w", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Od lewej do prawej", | ||||
| "Right to left": "Od prawej do lewej", | ||||
| "Emoticons...": "Emotikony...", | ||||
| "Metadata and Document Properties": "Metadane i w\u0142a\u015bciwo\u015bci dokumentu", | ||||
| "Title": "Tytu\u0142", | ||||
| "Keywords": "S\u0142owa kluczowe", | ||||
| "Description": "Opis", | ||||
| "Robots": "Roboty", | ||||
| "Author": "Autor", | ||||
| "Encoding": "Kodowanie", | ||||
| "Fullscreen": "Pe\u0142ny ekran", | ||||
| "Action": "Akcja", | ||||
| "Shortcut": "Skr\u00f3t", | ||||
| "Help": "Pomoc", | ||||
| "Address": "Adres", | ||||
| "Focus to menubar": "Skup si\u0119 na pasku menu", | ||||
| "Focus to toolbar": "Skupi\u0107 si\u0119 na pasku", | ||||
| "Focus to element path": "Skup si\u0119 na \u015bcie\u017cce elementu", | ||||
| "Focus to contextual toolbar": "Skupi\u0107 si\u0119 na pasku narz\u0119dzi kontekstowych", | ||||
| "Insert link (if link plugin activated)": "Wstaw \u0142\u0105cze (je\u015bli w\u0142\u0105czysz wtyczk\u0119 link\u00f3w)", | ||||
| "Save (if save plugin activated)": "Zapisz (je\u015bli aktywowana jest wtyczka do zapisu)", | ||||
| "Find (if searchreplace plugin activated)": "Znajd\u017a (je\u015bli w\u0142\u0105czysz wtyczk\u0119 do wyszukiwania)", | ||||
| "Plugins installed ({0}):": "Zainstalowane wtyczki ({0}):", | ||||
| "Premium plugins:": "Wtyczki Premium:", | ||||
| "Learn more...": "Dowiedz si\u0119 wi\u0119cej...", | ||||
| "You are using {0}": "U\u017cywasz {0}", | ||||
| "Plugins": "Pluginy", | ||||
| "Handy Shortcuts": "Przydatne skr\u00f3ty", | ||||
| "Horizontal line": "Pozioma linia", | ||||
| "Insert\/edit image": "Wstaw\/edytuj obrazek", | ||||
| "Image description": "Opis obrazka", | ||||
| "Source": "\u0179r\u00f3d\u0142o", | ||||
| "Dimensions": "Wymiary", | ||||
| "Constrain proportions": "Zachowaj proporcje", | ||||
| "General": "Og\u00f3lne", | ||||
| "Advanced": "Zaawansowane", | ||||
| "Style": "Styl", | ||||
| "Vertical space": "Odst\u0119p pionowy", | ||||
| "Horizontal space": "Odst\u0119p poziomy", | ||||
| "Border": "Ramka", | ||||
| "Insert image": "Wstaw obrazek", | ||||
| "Image...": "Obraz...", | ||||
| "Image list": "Lista obrazk\u00f3w", | ||||
| "Rotate counterclockwise": "Obr\u00f3\u0107 w lewo", | ||||
| "Rotate clockwise": "Obr\u00f3\u0107 w prawo", | ||||
| "Flip vertically": "Przerzu\u0107 w pionie", | ||||
| "Flip horizontally": "Przerzu\u0107 w poziomie", | ||||
| "Edit image": "Edytuj obrazek", | ||||
| "Image options": "Opcje obrazu", | ||||
| "Zoom in": "Powi\u0119ksz", | ||||
| "Zoom out": "Pomniejsz", | ||||
| "Crop": "Przytnij", | ||||
| "Resize": "Zmiana rozmiaru", | ||||
| "Orientation": "Orientacja", | ||||
| "Brightness": "Jasno\u015b\u0107", | ||||
| "Sharpen": "Wyostrz", | ||||
| "Contrast": "Kontrast", | ||||
| "Color levels": "Poziom koloru", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Odwr\u00f3\u0107", | ||||
| "Apply": "Zaakceptuj", | ||||
| "Back": "Cofnij", | ||||
| "Insert date\/time": "Wstaw dat\u0119\/czas", | ||||
| "Date\/time": "Data\/Czas", | ||||
| "Insert\/Edit Link": "Wstaw\/Edytuj \u0142\u0105cze", | ||||
| "Insert\/edit link": "Wstaw\/edytuj \u0142\u0105cze", | ||||
| "Text to display": "Tekst do wy\u015bwietlenia", | ||||
| "Url": "URL", | ||||
| "Open link in...": "Otw\u00f3rz \u0142\u0105cze w...", | ||||
| "Current window": "Bie\u017c\u0105ce okno", | ||||
| "None": "\u017baden", | ||||
| "New window": "Nowe okno", | ||||
| "Remove link": "Usu\u0144 \u0142\u0105cze", | ||||
| "Anchors": "Kotwice", | ||||
| "Link...": "\u0141\u0105cze...", | ||||
| "Paste or type a link": "Wklej lub wpisz adres \u0142\u0105cza", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na adres e-mail. Czy chcesz doda\u0107 mailto: jako prefiks?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na link zewn\u0119trzny. Czy chcesz doda\u0107 http:\/\/ jako prefiks?", | ||||
| "Link list": "Lista link\u00f3w", | ||||
| "Insert video": "Wstaw wideo", | ||||
| "Insert\/edit video": "Wstaw\/edytuj wideo", | ||||
| "Insert\/edit media": "Wstaw\/Edytuj media", | ||||
| "Alternative source": "Alternatywne \u017ar\u00f3d\u0142o", | ||||
| "Alternative source URL": "Alternatywny URL \u017ar\u00f3d\u0142a", | ||||
| "Media poster (Image URL)": "Plakat (URL obrazu)", | ||||
| "Paste your embed code below:": "Wklej tutaj kod do osadzenia:", | ||||
| "Embed": "Osad\u017a", | ||||
| "Media...": "Multimedia...", | ||||
| "Nonbreaking space": "Nie\u0142amliwa spacja", | ||||
| "Page break": "Podzia\u0142 strony", | ||||
| "Paste as text": "Wklej jako zwyk\u0142y tekst", | ||||
| "Preview": "Podgl\u0105d", | ||||
| "Print...": "Drukuj...", | ||||
| "Save": "Zapisz", | ||||
| "Find": "Znajd\u017a", | ||||
| "Replace with": "Zamie\u0144 na", | ||||
| "Replace": "Zamie\u0144", | ||||
| "Replace all": "Zamie\u0144 wszystko", | ||||
| "Previous": "Poprzedni", | ||||
| "Next": "Nast.", | ||||
| "Find and replace...": "Znajd\u017a i zamie\u0144...", | ||||
| "Could not find the specified string.": "Nie znaleziono szukanego tekstu.", | ||||
| "Match case": "Dopasuj wielko\u015b\u0107 liter", | ||||
| "Find whole words only": "Znajd\u017a tylko ca\u0142e wyrazy", | ||||
| "Spell check": "Sprawd\u017a pisowni\u0119", | ||||
| "Ignore": "Ignoruj", | ||||
| "Ignore all": "Ignoruj wszystko", | ||||
| "Finish": "Zako\u0144cz", | ||||
| "Add to Dictionary": "Dodaj do s\u0142ownika", | ||||
| "Insert table": "Wstaw tabel\u0119", | ||||
| "Table properties": "W\u0142a\u015bciwo\u015bci tabeli", | ||||
| "Delete table": "Usu\u0144 tabel\u0119", | ||||
| "Cell": "Kom\u00f3rka", | ||||
| "Row": "Wiersz", | ||||
| "Column": "Kolumna", | ||||
| "Cell properties": "W\u0142a\u015bciwo\u015bci kom\u00f3rki", | ||||
| "Merge cells": "\u0141\u0105cz kom\u00f3rki", | ||||
| "Split cell": "Podziel kom\u00f3rk\u0119", | ||||
| "Insert row before": "Wstaw wiersz przed", | ||||
| "Insert row after": "Wstaw wiersz po", | ||||
| "Delete row": "Usu\u0144 wiersz", | ||||
| "Row properties": "W\u0142a\u015bciwo\u015bci wiersza", | ||||
| "Cut row": "Wytnij wiersz", | ||||
| "Copy row": "Kopiuj wiersz", | ||||
| "Paste row before": "Wklej wiersz przed", | ||||
| "Paste row after": "Wklej wiersz po", | ||||
| "Insert column before": "Wstaw kolumn\u0119 przed", | ||||
| "Insert column after": "Wstaw kolumn\u0119 po", | ||||
| "Delete column": "Usu\u0144 kolumn\u0119", | ||||
| "Cols": "Kol.", | ||||
| "Rows": "Wiersz.", | ||||
| "Width": "Szeroko\u015b\u0107", | ||||
| "Height": "Wysoko\u015b\u0107", | ||||
| "Cell spacing": "Odst\u0119py kom\u00f3rek", | ||||
| "Cell padding": "Dope\u0142nienie kom\u00f3rki", | ||||
| "Show caption": "Poka\u017c podpis", | ||||
| "Left": "Lewo", | ||||
| "Center": "\u015arodek", | ||||
| "Right": "Prawo", | ||||
| "Cell type": "Typ kom\u00f3rki", | ||||
| "Scope": "Kontekst", | ||||
| "Alignment": "Wyr\u00f3wnanie", | ||||
| "H Align": "Wyr\u00f3wnanie w pionie", | ||||
| "V Align": "Wyr\u00f3wnanie w poziomie", | ||||
| "Top": "G\u00f3ra", | ||||
| "Middle": "\u015arodek", | ||||
| "Bottom": "D\u00f3\u0142", | ||||
| "Header cell": "Kom\u00f3rka nag\u0142\u00f3wka", | ||||
| "Row group": "Grupa wierszy", | ||||
| "Column group": "Grupa kolumn", | ||||
| "Row type": "Typ wiersza", | ||||
| "Header": "Nag\u0142\u00f3wek", | ||||
| "Body": "Tre\u015b\u0107", | ||||
| "Footer": "Stopka", | ||||
| "Border color": "Kolor ramki", | ||||
| "Insert template...": "Wstaw szablon...", | ||||
| "Templates": "Szablony", | ||||
| "Template": "Szablon", | ||||
| "Text color": "Kolor tekstu", | ||||
| "Background color": "Kolor t\u0142a", | ||||
| "Custom...": "Niestandardowy...", | ||||
| "Custom color": "Kolor niestandardowy", | ||||
| "No color": "Bez koloru", | ||||
| "Remove color": "Usu\u0144 kolor", | ||||
| "Table of Contents": "Spis tre\u015bci", | ||||
| "Show blocks": "Poka\u017c bloki", | ||||
| "Show invisible characters": "Poka\u017c niewidoczne znaki", | ||||
| "Word count": "Liczba s\u0142\u00f3w", | ||||
| "Count": "Liczba", | ||||
| "Document": "Dokument", | ||||
| "Selection": "Zaznaczenie", | ||||
| "Words": "S\u0142owa", | ||||
| "Words: {0}": "S\u0142\u00f3w: {0}", | ||||
| "{0} words": "{0} s\u0142\u00f3w", | ||||
| "File": "Plik", | ||||
| "Edit": "Edycja", | ||||
| "Insert": "Wstaw", | ||||
| "View": "Widok", | ||||
| "Format": "Format", | ||||
| "Table": "Tabela", | ||||
| "Tools": "Narz\u0119dzia", | ||||
| "Powered by {0}": "Powered by {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Obszar Edycji. ALT-F9 - menu. ALT-F10 - pasek narz\u0119dzi. ALT-0 - pomoc", | ||||
| "Image title": "Tytu\u0142 obrazu", | ||||
| "Border width": "Grubo\u015b\u0107 ramki", | ||||
| "Border style": "Styl ramki", | ||||
| "Error": "B\u0142\u0105d", | ||||
| "Warn": "Ostrze\u017cenie", | ||||
| "Valid": "Prawid\u0142owe", | ||||
| "To open the popup, press Shift+Enter": "Aby otworzy\u0107 okienko, naci\u015bnij Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Obszar tekstu sformatowanego. Naci\u015bnij ALT-0, aby uzyska\u0107 pomoc.", | ||||
| "System Font": "Font systemowy", | ||||
| "Failed to upload image: {0}": "Nie uda\u0142o si\u0119 przes\u0142a\u0107 obrazu: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Nie uda\u0142o si\u0119 za\u0142adowa\u0107 dodatku: {0} spod adresu url {1}", | ||||
| "Failed to load plugin url: {0}": "Nie uda\u0142o si\u0119 za\u0142adowa\u0107 adresu url dodatku: {0}", | ||||
| "Failed to initialize plugin: {0}": "Nie mo\u017cna zainicjowa\u0107 dodatku: {0}", | ||||
| "example": "przyk\u0142ad", | ||||
| "Search": "Wyszukaj", | ||||
| "All": "Wszystkie", | ||||
| "Currency": "Waluta", | ||||
| "Text": "Tekst", | ||||
| "Quotations": "Cudzys\u0142owy", | ||||
| "Mathematical": "Matematyczne", | ||||
| "Extended Latin": "Rozszerzony \u0142aci\u0144ski", | ||||
| "Symbols": "Symbole", | ||||
| "Arrows": "Strza\u0142ki", | ||||
| "User Defined": "W\u0142asny", | ||||
| "dollar sign": "znak dolara", | ||||
| "currency sign": "znak waluty", | ||||
| "euro-currency sign": "znak euro", | ||||
| "colon sign": "znak colon", | ||||
| "cruzeiro sign": "znak cruzeiro", | ||||
| "french franc sign": "znak franka francuskiego", | ||||
| "lira sign": "znak liry", | ||||
| "mill sign": "znak mill", | ||||
| "naira sign": "znak nairy", | ||||
| "peseta sign": "znak pesety", | ||||
| "rupee sign": "znak rupii", | ||||
| "won sign": "znak wona", | ||||
| "new sheqel sign": "znak nowego szekla", | ||||
| "dong sign": "znak donga", | ||||
| "kip sign": "znak kipa", | ||||
| "tugrik sign": "znak tugrika", | ||||
| "drachma sign": "znak drachmy", | ||||
| "german penny symbol": "znak feniga", | ||||
| "peso sign": "znak peso", | ||||
| "guarani sign": "znak guarani", | ||||
| "austral sign": "znak australa", | ||||
| "hryvnia sign": "znak hrywny", | ||||
| "cedi sign": "znak cedi", | ||||
| "livre tournois sign": "znak livre tournois", | ||||
| "spesmilo sign": "znak spesmilo", | ||||
| "tenge sign": "znak tenge", | ||||
| "indian rupee sign": "znak rupii indyjskiej", | ||||
| "turkish lira sign": "znak liry tureckiej", | ||||
| "nordic mark sign": "znak nordic mark", | ||||
| "manat sign": "znak manata", | ||||
| "ruble sign": "znak rubla", | ||||
| "yen character": "znak jena", | ||||
| "yuan character": "znak juana", | ||||
| "yuan character, in hong kong and taiwan": "znak juana w Hongkongu i na Tajwanie", | ||||
| "yen\/yuan character variant one": "jen\/juan, wariant pierwszy", | ||||
| "Loading emoticons...": "\u0141adowanie emotikon\u00f3w...", | ||||
| "Could not load emoticons": "Nie mo\u017cna za\u0142adowa\u0107 emotikon\u00f3w", | ||||
| "People": "Ludzie", | ||||
| "Animals and Nature": "Zwierz\u0119ta i natura", | ||||
| "Food and Drink": "Jedzenie i picie", | ||||
| "Activity": "Aktywno\u015b\u0107", | ||||
| "Travel and Places": "Podr\u00f3\u017ce i miejsca", | ||||
| "Objects": "Obiekty", | ||||
| "Flags": "Flagi", | ||||
| "Characters": "Znaki", | ||||
| "Characters (no spaces)": "Znaki (bez spacji)", | ||||
| "{0} characters": "{0} znak\u00f3w", | ||||
| "Error: Form submit field collision.": "B\u0142\u0105d: kolizja pola przesy\u0142ania formularza.", | ||||
| "Error: No form element found.": "B\u0142\u0105d: nie znaleziono elementu formularza.", | ||||
| "Update": "Aktualizuj", | ||||
| "Color swatch": "Pr\u00f3bka koloru", | ||||
| "Turquoise": "Turkusowy", | ||||
| "Green": "Zielony", | ||||
| "Blue": "Niebieski", | ||||
| "Purple": "Purpurowy", | ||||
| "Navy Blue": "Ciemnoniebieski", | ||||
| "Dark Turquoise": "Ciemnoturkusowy", | ||||
| "Dark Green": "Ciemnozielony", | ||||
| "Medium Blue": "\u015arednioniebieski", | ||||
| "Medium Purple": "\u015aredniopurpurowy", | ||||
| "Midnight Blue": "Nocny b\u0142\u0119kit", | ||||
| "Yellow": "\u017b\u00f3\u0142ty", | ||||
| "Orange": "Pomara\u0144czowy", | ||||
| "Red": "Czerwony", | ||||
| "Light Gray": "Jasnoszary", | ||||
| "Gray": "Szary", | ||||
| "Dark Yellow": "Ciemno\u017c\u00f3\u0142ty", | ||||
| "Dark Orange": "Ciemnopomara\u0144czowy", | ||||
| "Dark Red": "Ciemnoczerwony", | ||||
| "Medium Gray": "\u015arednioszary", | ||||
| "Dark Gray": "Ciemnoszary", | ||||
| "Light Green": "Jasnozielony", | ||||
| "Light Yellow": "Jasno\u017c\u00f3\u0142ty", | ||||
| "Light Red": "Jasnoczerwony", | ||||
| "Light Purple": "Jasnopurpurowy", | ||||
| "Light Blue": "Jasnoniebieski", | ||||
| "Dark Purple": "Ciemnopurpurowy", | ||||
| "Dark Blue": "Ciemnoniebieski", | ||||
| "Black": "Czarny", | ||||
| "White": "Bia\u0142y", | ||||
| "Switch to or from fullscreen mode": "W\u0142\u0105cz lub wy\u0142\u0105cz tryb pe\u0142noekranowy", | ||||
| "Open help dialog": "Otw\u00f3rz okno dialogowe pomocy", | ||||
| "history": "historia", | ||||
| "styles": "style", | ||||
| "formatting": "formatowanie", | ||||
| "alignment": "wyr\u00f3wnanie", | ||||
| "indentation": "wci\u0119cie", | ||||
| "permanent pen": "marker", | ||||
| "comments": "komentarze", | ||||
| "Format Painter": "Malarz format\u00f3w", | ||||
| "Insert\/edit iframe": "Wstaw\/edytuj iframe", | ||||
| "Capitalization": "Jak w zdaniu", | ||||
| "lowercase": "ma\u0142e litery", | ||||
| "UPPERCASE": "WIELKIE LITERY", | ||||
| "Title Case": "Jak Nazwy W\u0142asne", | ||||
| "Permanent Pen Properties": "W\u0142a\u015bciwo\u015bci markera", | ||||
| "Permanent pen properties...": "W\u0142a\u015bciwo\u015bci markera...", | ||||
| "Font": "Font", | ||||
| "Size": "Rozmiar", | ||||
| "More...": "Wi\u0119cej...", | ||||
| "Spellcheck Language": "J\u0119zyk sprawdzania pisowni", | ||||
| "Select...": "Wybierz...", | ||||
| "Preferences": "Ustawienia", | ||||
| "Yes": "Tak", | ||||
| "No": "Nie", | ||||
| "Keyboard Navigation": "Nawigacja za pomoc\u0105 klawiatury", | ||||
| "Version": "Wersja", | ||||
| "Anchor": "Kotwica", | ||||
| "Special character": "Znak specjalny", | ||||
| "Code sample": "Przyk\u0142ad kodu \u017ar\u00f3d\u0142owego", | ||||
| "Color": "Kolor", | ||||
| "Emoticons": "Ikony emocji", | ||||
| "Document properties": "W\u0142a\u015bciwo\u015bci dokumentu", | ||||
| "Image": "Obraz", | ||||
| "Insert link": "Wstaw \u0142\u0105cze", | ||||
| "Target": "Cel", | ||||
| "Link": "Adres \u0142\u0105cza", | ||||
| "Poster": "Plakat", | ||||
| "Media": "Media", | ||||
| "Print": "Drukuj", | ||||
| "Prev": "Poprz.", | ||||
| "Find and replace": "Znajd\u017a i zamie\u0144", | ||||
| "Whole words": "Ca\u0142e s\u0142owa", | ||||
| "Spellcheck": "Sprawdzanie pisowni", | ||||
| "Caption": "Tytu\u0142", | ||||
| "Insert template": "Wstaw szablon" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/pt_BR.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/pt_BR.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('pt_BR',{ | ||||
| "Redo": "Refazer", | ||||
| "Undo": "Desfazer", | ||||
| "Cut": "Cortar", | ||||
| "Copy": "Copiar", | ||||
| "Paste": "Colar", | ||||
| "Select all": "Selecionar tudo", | ||||
| "New document": "Novo documento", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Cancelar", | ||||
| "Visual aids": "Ajuda visual", | ||||
| "Bold": "Negrito", | ||||
| "Italic": "It\u00e1lico", | ||||
| "Underline": "Sublinhado", | ||||
| "Strikethrough": "Tachado", | ||||
| "Superscript": "Sobrescrito", | ||||
| "Subscript": "Subscrito", | ||||
| "Clear formatting": "Limpar formata\u00e7\u00e3o", | ||||
| "Align left": "Alinhar \u00e0 esquerda", | ||||
| "Align center": "Centralizar", | ||||
| "Align right": "Alinhar \u00e0 direita", | ||||
| "Justify": "Justificar", | ||||
| "Bullet list": "Lista n\u00e3o ordenada", | ||||
| "Numbered list": "Lista ordenada", | ||||
| "Decrease indent": "Diminuir recuo", | ||||
| "Increase indent": "Aumentar recuo", | ||||
| "Close": "Fechar", | ||||
| "Formats": "Formatos", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Seu navegador n\u00e3o suporta acesso direto \u00e0 \u00e1rea de transfer\u00eancia. Por favor use os atalhos Ctrl+X - C - V do teclado", | ||||
| "Headers": "Cabe\u00e7alhos", | ||||
| "Header 1": "Cabe\u00e7alho 1", | ||||
| "Header 2": "Cabe\u00e7alho 2", | ||||
| "Header 3": "Cabe\u00e7alho 3", | ||||
| "Header 4": "Cabe\u00e7alho 4", | ||||
| "Header 5": "Cabe\u00e7alho 5", | ||||
| "Header 6": "Cabe\u00e7alho 6", | ||||
| "Headings": "T\u00edtulos", | ||||
| "Heading 1": "T\u00edtulo 1", | ||||
| "Heading 2": "T\u00edtulo 2", | ||||
| "Heading 3": "T\u00edtulo 3", | ||||
| "Heading 4": "T\u00edtulo 4", | ||||
| "Heading 5": "T\u00edtulo 5", | ||||
| "Heading 6": "T\u00edtulo 6", | ||||
| "Preformatted": "Pr\u00e9-formatado", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "C\u00f3digo", | ||||
| "Paragraph": "Par\u00e1grafo", | ||||
| "Blockquote": "Aspas", | ||||
| "Inline": "Em linha", | ||||
| "Blocks": "Blocos", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 agora em modo texto plano. O conte\u00fado ser\u00e1 colado como texto plano at\u00e9 voc\u00ea desligar esta op\u00e7\u00e3o.", | ||||
| "Fonts": "Fontes", | ||||
| "Font Sizes": "Tamanhos da fonte", | ||||
| "Class": "Classe", | ||||
| "Browse for an image": "Procure uma imagem", | ||||
| "OR": "OU", | ||||
| "Drop an image here": "Solte uma imagem aqui", | ||||
| "Upload": "Carregar", | ||||
| "Block": "Bloco", | ||||
| "Align": "Alinhamento", | ||||
| "Default": "Padr\u00e3o", | ||||
| "Circle": "C\u00edrculo", | ||||
| "Disc": "Disco", | ||||
| "Square": "Quadrado", | ||||
| "Lower Alpha": "a. b. c. ...", | ||||
| "Lower Greek": "\u03b1. \u03b2. \u03b3. ...", | ||||
| "Lower Roman": "i. ii. iii. ...", | ||||
| "Upper Alpha": "A. B. C. ...", | ||||
| "Upper Roman": "I. II. III. ...", | ||||
| "Anchor...": "\u00c2ncora...", | ||||
| "Name": "Nome", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id deve come\u00e7ar com uma letra, seguido apenas por letras, n\u00fameros, tra\u00e7os, pontos, dois pontos ou sublinhados.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Voc\u00ea tem mudan\u00e7as n\u00e3o salvas. Voc\u00ea tem certeza que deseja sair?", | ||||
| "Restore last draft": "Restaurar \u00faltimo rascunho", | ||||
| "Special character...": "Caractere especial...", | ||||
| "Source code": "C\u00f3digo fonte", | ||||
| "Insert\/Edit code sample": "Inserir\/Editar c\u00f3digo de exemplo", | ||||
| "Language": "Idioma", | ||||
| "Code sample...": "Exemplo de c\u00f3digo...", | ||||
| "Color Picker": "Seletor de Cores", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Da esquerda para a direita", | ||||
| "Right to left": "Da direita para a esquerda", | ||||
| "Emoticons...": "Emojis...", | ||||
| "Metadata and Document Properties": "Metadados e Propriedades do Documento", | ||||
| "Title": "T\u00edtulo", | ||||
| "Keywords": "Palavras-chave", | ||||
| "Description": "Descri\u00e7\u00e3o", | ||||
| "Robots": "Rob\u00f4s", | ||||
| "Author": "Autor", | ||||
| "Encoding": "Codifica\u00e7\u00e3o", | ||||
| "Fullscreen": "Tela cheia", | ||||
| "Action": "A\u00e7\u00e3o", | ||||
| "Shortcut": "Atalho", | ||||
| "Help": "Ajuda", | ||||
| "Address": "Endere\u00e7o", | ||||
| "Focus to menubar": "Foco no menu", | ||||
| "Focus to toolbar": "Foco na barra de ferramentas", | ||||
| "Focus to element path": "Foco no caminho do elemento", | ||||
| "Focus to contextual toolbar": "Foco na barra de ferramentas contextual", | ||||
| "Insert link (if link plugin activated)": "Inserir link (se o plugin de link estiver ativado)", | ||||
| "Save (if save plugin activated)": "Salvar (se o plugin de salvar estiver ativado)", | ||||
| "Find (if searchreplace plugin activated)": "Procurar (se o plugin de procurar e substituir estiver ativado)", | ||||
| "Plugins installed ({0}):": "Plugins instalados ({0}):", | ||||
| "Premium plugins:": "Plugins premium:", | ||||
| "Learn more...": "Saiba mais...", | ||||
| "You are using {0}": "Voc\u00ea est\u00e1 usando {0}", | ||||
| "Plugins": "Plugins", | ||||
| "Handy Shortcuts": "Atalhos \u00fateis", | ||||
| "Horizontal line": "Linha horizontal", | ||||
| "Insert\/edit image": "Inserir\/editar imagem", | ||||
| "Image description": "Inserir descri\u00e7\u00e3o", | ||||
| "Source": "Endere\u00e7o da imagem", | ||||
| "Dimensions": "Dimens\u00f5es", | ||||
| "Constrain proportions": "Manter propor\u00e7\u00f5es", | ||||
| "General": "Geral", | ||||
| "Advanced": "Avan\u00e7ado", | ||||
| "Style": "Estilo", | ||||
| "Vertical space": "Espa\u00e7amento vertical", | ||||
| "Horizontal space": "Espa\u00e7amento horizontal", | ||||
| "Border": "Borda", | ||||
| "Insert image": "Inserir imagem", | ||||
| "Image...": "Imagem...", | ||||
| "Image list": "Lista de Imagens", | ||||
| "Rotate counterclockwise": "Girar em sentido hor\u00e1rio", | ||||
| "Rotate clockwise": "Girar em sentido anti-hor\u00e1rio", | ||||
| "Flip vertically": "Virar verticalmente", | ||||
| "Flip horizontally": "Virar horizontalmente", | ||||
| "Edit image": "Editar imagem", | ||||
| "Image options": "Op\u00e7\u00f5es de Imagem", | ||||
| "Zoom in": "Aumentar zoom", | ||||
| "Zoom out": "Diminuir zoom", | ||||
| "Crop": "Cortar", | ||||
| "Resize": "Redimensionar", | ||||
| "Orientation": "Orienta\u00e7\u00e3o", | ||||
| "Brightness": "Brilho", | ||||
| "Sharpen": "Aumentar nitidez", | ||||
| "Contrast": "Contraste", | ||||
| "Color levels": "N\u00edveis de cor", | ||||
| "Gamma": "Gama", | ||||
| "Invert": "Inverter", | ||||
| "Apply": "Aplicar", | ||||
| "Back": "Voltar", | ||||
| "Insert date\/time": "Inserir data\/hora", | ||||
| "Date\/time": "data\/hora", | ||||
| "Insert\/Edit Link": "Inserir\/Editar Link", | ||||
| "Insert\/edit link": "Inserir\/editar link", | ||||
| "Text to display": "Texto para mostrar", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Abrir link em...", | ||||
| "Current window": "Janela atual", | ||||
| "None": "Nenhum", | ||||
| "New window": "Nova janela", | ||||
| "Remove link": "Remover link", | ||||
| "Anchors": "\u00c2ncoras", | ||||
| "Link...": "Link...", | ||||
| "Paste or type a link": "Cole ou digite um Link", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "A URL que voc\u00ea informou parece ser um link externo. Deseja incluir o prefixo http:\/\/?", | ||||
| "Link list": "Lista de Links", | ||||
| "Insert video": "Inserir v\u00eddeo", | ||||
| "Insert\/edit video": "Inserir\/editar v\u00eddeo", | ||||
| "Insert\/edit media": "Inserir\/editar imagem", | ||||
| "Alternative source": "Fonte alternativa", | ||||
| "Alternative source URL": "Endere\u00e7o URL alternativo", | ||||
| "Media poster (Image URL)": "Post de m\u00eddia (URL da Imagem)", | ||||
| "Paste your embed code below:": "Insira o c\u00f3digo de incorpora\u00e7\u00e3o abaixo:", | ||||
| "Embed": "Incorporar", | ||||
| "Media...": "M\u00eddia...", | ||||
| "Nonbreaking space": "Espa\u00e7o n\u00e3o separ\u00e1vel", | ||||
| "Page break": "Quebra de p\u00e1gina", | ||||
| "Paste as text": "Colar como texto", | ||||
| "Preview": "Pr\u00e9-visualizar", | ||||
| "Print...": "Imprimir...", | ||||
| "Save": "Salvar", | ||||
| "Find": "Localizar", | ||||
| "Replace with": "Substituir por", | ||||
| "Replace": "Substituir", | ||||
| "Replace all": "Substituir tudo", | ||||
| "Previous": "Anterior", | ||||
| "Next": "Pr\u00f3ximo", | ||||
| "Find and replace...": "Encontrar e substituir...", | ||||
| "Could not find the specified string.": "N\u00e3o foi poss\u00edvel encontrar o termo especificado", | ||||
| "Match case": "Diferenciar mai\u00fasculas e min\u00fasculas", | ||||
| "Find whole words only": "Encontrar somente palavras inteiras", | ||||
| "Spell check": "Verifica\u00e7\u00e3o ortogr\u00e1fica", | ||||
| "Ignore": "Ignorar", | ||||
| "Ignore all": "Ignorar tudo", | ||||
| "Finish": "Finalizar", | ||||
| "Add to Dictionary": "Adicionar ao Dicion\u00e1rio", | ||||
| "Insert table": "Inserir tabela", | ||||
| "Table properties": "Propriedades da tabela", | ||||
| "Delete table": "Excluir tabela", | ||||
| "Cell": "C\u00e9lula", | ||||
| "Row": "Linha", | ||||
| "Column": "Coluna", | ||||
| "Cell properties": "Propriedades da c\u00e9lula", | ||||
| "Merge cells": "Agrupar c\u00e9lulas", | ||||
| "Split cell": "Dividir c\u00e9lula", | ||||
| "Insert row before": "Inserir linha antes", | ||||
| "Insert row after": "Inserir linha depois", | ||||
| "Delete row": "Excluir linha", | ||||
| "Row properties": "Propriedades da linha", | ||||
| "Cut row": "Recortar linha", | ||||
| "Copy row": "Copiar linha", | ||||
| "Paste row before": "Colar linha antes", | ||||
| "Paste row after": "Colar linha depois", | ||||
| "Insert column before": "Inserir coluna antes", | ||||
| "Insert column after": "Inserir coluna depois", | ||||
| "Delete column": "Excluir coluna", | ||||
| "Cols": "Colunas", | ||||
| "Rows": "Linhas", | ||||
| "Width": "Largura", | ||||
| "Height": "Altura", | ||||
| "Cell spacing": "Espa\u00e7amento da c\u00e9lula", | ||||
| "Cell padding": "Espa\u00e7amento interno da c\u00e9lula", | ||||
| "Show caption": "Mostrar descri\u00e7\u00e3o", | ||||
| "Left": "Esquerdo", | ||||
| "Center": "Centro", | ||||
| "Right": "Direita", | ||||
| "Cell type": "Tipo de c\u00e9lula", | ||||
| "Scope": "Escopo", | ||||
| "Alignment": "Alinhamento", | ||||
| "H Align": "Alinhamento H", | ||||
| "V Align": "Alinhamento V", | ||||
| "Top": "Superior", | ||||
| "Middle": "Meio", | ||||
| "Bottom": "Inferior", | ||||
| "Header cell": "C\u00e9lula cabe\u00e7alho", | ||||
| "Row group": "Agrupar linha", | ||||
| "Column group": "Agrupar coluna", | ||||
| "Row type": "Tipo de linha", | ||||
| "Header": "Cabe\u00e7alho", | ||||
| "Body": "Corpo", | ||||
| "Footer": "Rodap\u00e9", | ||||
| "Border color": "Cor da borda", | ||||
| "Insert template...": "Inserir modelo...", | ||||
| "Templates": "Modelos", | ||||
| "Template": "Modelo", | ||||
| "Text color": "Cor do texto", | ||||
| "Background color": "Cor do fundo", | ||||
| "Custom...": "Personalizado...", | ||||
| "Custom color": "Cor personalizada", | ||||
| "No color": "Nenhuma cor", | ||||
| "Remove color": "Remover cor", | ||||
| "Table of Contents": "\u00edndice de Conte\u00fado", | ||||
| "Show blocks": "Mostrar blocos", | ||||
| "Show invisible characters": "Exibir caracteres invis\u00edveis", | ||||
| "Word count": "Contador de palavras", | ||||
| "Count": "Contar", | ||||
| "Document": "Documento", | ||||
| "Selection": "Sele\u00e7\u00e3o", | ||||
| "Words": "Palavras", | ||||
| "Words: {0}": "Palavras: {0}", | ||||
| "{0} words": "{0} palavras", | ||||
| "File": "Arquivo", | ||||
| "Edit": "Editar", | ||||
| "Insert": "Inserir", | ||||
| "View": "Visualizar", | ||||
| "Format": "Formatar", | ||||
| "Table": "Tabela", | ||||
| "Tools": "Ferramentas", | ||||
| "Powered by {0}": "Distribu\u00eddo por  {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto formatado. Pressione ALT-F9 para exibir o menu, ALT-F10 para exibir a barra de ferramentas ou ALT-0 para exibir a ajuda", | ||||
| "Image title": "T\u00edtulo da imagem", | ||||
| "Border width": "Espessura da borda", | ||||
| "Border style": "Estilo da borda", | ||||
| "Error": "Erro", | ||||
| "Warn": "Aviso", | ||||
| "Valid": "V\u00e1lido", | ||||
| "To open the popup, press Shift+Enter": "Para abrir a popup, aperte Shit+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u00c1rea Rich Text. Aperte ALT-0 para ajuda.", | ||||
| "System Font": "Fonte do sistema", | ||||
| "Failed to upload image: {0}": "Falha no upload da imagem: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Falha ao carregar plugin: {0} da url {1}", | ||||
| "Failed to load plugin url: {0}": "Falha ao carregar url do plugin: {0}", | ||||
| "Failed to initialize plugin: {0}": "Falha ao inicializar plugin: {0}", | ||||
| "example": "exemplo", | ||||
| "Search": "Pesquisar", | ||||
| "All": "Tudo", | ||||
| "Currency": "Moeda", | ||||
| "Text": "Texto", | ||||
| "Quotations": "Cita\u00e7\u00f5es", | ||||
| "Mathematical": "Matem\u00e1tico", | ||||
| "Extended Latin": "Latino estendido", | ||||
| "Symbols": "S\u00edmbolos", | ||||
| "Arrows": "Setas", | ||||
| "User Defined": "Definido pelo Usu\u00e1rio", | ||||
| "dollar sign": "s\u00edmbolo de d\u00f3lar", | ||||
| "currency sign": "s\u00edmbolo de moeda", | ||||
| "euro-currency sign": "s\u00edmbolo de euro", | ||||
| "colon sign": "s\u00edmbolo de dois pontos", | ||||
| "cruzeiro sign": "s\u00edmbolo de cruzeiro", | ||||
| "french franc sign": "s\u00edmbolo de franco franc\u00eas", | ||||
| "lira sign": "s\u00edmbolo de lira", | ||||
| "mill sign": "s\u00edmbolo do mill", | ||||
| "naira sign": "s\u00edmbolo da naira", | ||||
| "peseta sign": "s\u00edmbolo da peseta", | ||||
| "rupee sign": "s\u00edmbolo da r\u00fapia", | ||||
| "won sign": "s\u00edmbolo do won", | ||||
| "new sheqel sign": "s\u00edmbolo do novo sheqel", | ||||
| "dong sign": "s\u00edmbolo do dong", | ||||
| "kip sign": "s\u00edmbolo do kip", | ||||
| "tugrik sign": "s\u00edmbolo do tugrik", | ||||
| "drachma sign": "s\u00edmbolo do drachma", | ||||
| "german penny symbol": "s\u00edmbolo de centavo alem\u00e3o", | ||||
| "peso sign": "s\u00edmbolo do peso", | ||||
| "guarani sign": "s\u00edmbolo do guarani", | ||||
| "austral sign": "s\u00edmbolo do austral", | ||||
| "hryvnia sign": "s\u00edmbolo do hryvnia", | ||||
| "cedi sign": "s\u00edmbolo do cedi", | ||||
| "livre tournois sign": "s\u00edmbolo do livre tournois", | ||||
| "spesmilo sign": "s\u00edmbolo do spesmilo", | ||||
| "tenge sign": "s\u00edmbolo do tenge", | ||||
| "indian rupee sign": "s\u00edmbolo de r\u00fapia indiana", | ||||
| "turkish lira sign": "s\u00edmbolo de lira turca", | ||||
| "nordic mark sign": "s\u00edmbolo do marco n\u00f3rdico", | ||||
| "manat sign": "s\u00edmbolo do manat", | ||||
| "ruble sign": "s\u00edmbolo do rublo", | ||||
| "yen character": "caractere do yen", | ||||
| "yuan character": "caractere do yuan", | ||||
| "yuan character, in hong kong and taiwan": "caractere do yuan, em Hong Kong e Taiwan", | ||||
| "yen\/yuan character variant one": "varia\u00e7\u00e3o do caractere de yen\/yuan", | ||||
| "Loading emoticons...": "Carregando emojis...", | ||||
| "Could not load emoticons": "N\u00e3o foi poss\u00edvel carregar emojis", | ||||
| "People": "Pessoas", | ||||
| "Animals and Nature": "Animais e Natureza", | ||||
| "Food and Drink": "Comida e Bebida", | ||||
| "Activity": "Atividade", | ||||
| "Travel and Places": "Viagem e Lugares", | ||||
| "Objects": "Objetos", | ||||
| "Flags": "Bandeiras", | ||||
| "Characters": "Caracteres", | ||||
| "Characters (no spaces)": "Caracteres (sem espa\u00e7os)", | ||||
| "{0} characters": "{0} caracteres", | ||||
| "Error: Form submit field collision.": "Erro: colis\u00e3o de bot\u00e3o de envio do formul\u00e1rio.", | ||||
| "Error: No form element found.": "Erro: elemento de formul\u00e1rio n\u00e3o encontrado.", | ||||
| "Update": "Atualizar", | ||||
| "Color swatch": "Amostra de cor", | ||||
| "Turquoise": "Turquesa", | ||||
| "Green": "Verde", | ||||
| "Blue": "Azul", | ||||
| "Purple": "Roxo", | ||||
| "Navy Blue": "Azul marinho", | ||||
| "Dark Turquoise": "Turquesa escuro", | ||||
| "Dark Green": "Verde escuro", | ||||
| "Medium Blue": "Azul m\u00e9dio", | ||||
| "Medium Purple": "Roxo m\u00e9dio", | ||||
| "Midnight Blue": "Azul meia-noite", | ||||
| "Yellow": "Amarelo", | ||||
| "Orange": "Laranja", | ||||
| "Red": "Vermelho", | ||||
| "Light Gray": "Cinza claro", | ||||
| "Gray": "Cinza", | ||||
| "Dark Yellow": "Amarelo escuro", | ||||
| "Dark Orange": "Laranja escuro", | ||||
| "Dark Red": "Vermelho escuro", | ||||
| "Medium Gray": "Cinza m\u00e9dio", | ||||
| "Dark Gray": "Cinza escuro", | ||||
| "Light Green": "Verde claro", | ||||
| "Light Yellow": "Amarelo claro", | ||||
| "Light Red": "Vermelho claro", | ||||
| "Light Purple": "Roxo claro", | ||||
| "Light Blue": "Azul claro", | ||||
| "Dark Purple": "Roxo escuro", | ||||
| "Dark Blue": "Azul escuro", | ||||
| "Black": "Preto", | ||||
| "White": "Branco", | ||||
| "Switch to or from fullscreen mode": "Abrir ou fechar modo de tela cheia", | ||||
| "Open help dialog": "Abrir janela de ajuda", | ||||
| "history": "hist\u00f3rico", | ||||
| "styles": "estilos", | ||||
| "formatting": "formata\u00e7\u00e3o", | ||||
| "alignment": "alinhamento", | ||||
| "indentation": "indenta\u00e7\u00e3o", | ||||
| "permanent pen": "caneta permanente", | ||||
| "comments": "coment\u00e1rios", | ||||
| "Format Painter": "Pincel de Formata\u00e7\u00e3o", | ||||
| "Insert\/edit iframe": "Inserir\/editar iframe", | ||||
| "Capitalization": "Capitaliza\u00e7\u00e3o", | ||||
| "lowercase": "min\u00fasculos", | ||||
| "UPPERCASE": "MAI\u00daSCULAS", | ||||
| "Title Case": "T\u00edtulo do caso", | ||||
| "Permanent Pen Properties": "Propriedades da caneta permanente", | ||||
| "Permanent pen properties...": "Propriedades de caneta permanentes...", | ||||
| "Font": "Fonte", | ||||
| "Size": "Tamanho", | ||||
| "More...": "Mais...", | ||||
| "Spellcheck Language": "Idioma de verifica\u00e7\u00e3o ortogr\u00e1fica", | ||||
| "Select...": "Selecionar...", | ||||
| "Preferences": "Prefer\u00eancias", | ||||
| "Yes": "Sim", | ||||
| "No": "N\u00e3o", | ||||
| "Keyboard Navigation": "Navega\u00e7\u00e3o por Teclado", | ||||
| "Version": "Vers\u00e3o", | ||||
| "Anchor": "\u00c2ncora", | ||||
| "Special character": "Caracteres especiais", | ||||
| "Code sample": "Exemplo de c\u00f3digo", | ||||
| "Color": "Cor", | ||||
| "Emoticons": "Emoticons", | ||||
| "Document properties": "Propriedades do documento", | ||||
| "Image": "Imagem", | ||||
| "Insert link": "Inserir link", | ||||
| "Target": "Alvo", | ||||
| "Link": "Link", | ||||
| "Poster": "Autor", | ||||
| "Media": "imagem", | ||||
| "Print": "Imprimir", | ||||
| "Prev": "Anterior", | ||||
| "Find and replace": "Localizar e substituir", | ||||
| "Whole words": "Palavras inteiras", | ||||
| "Spellcheck": "Corretor ortogr\u00e1fico", | ||||
| "Caption": "Legenda", | ||||
| "Insert template": "Inserir modelo" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/pt_PT.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/pt_PT.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('pt_PT',{ | ||||
| "Redo": "Refazer", | ||||
| "Undo": "Anular", | ||||
| "Cut": "Cortar", | ||||
| "Copy": "Copiar", | ||||
| "Paste": "Colar", | ||||
| "Select all": "Selecionar tudo", | ||||
| "New document": "Novo documento", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Cancelar", | ||||
| "Visual aids": "Ajuda visual", | ||||
| "Bold": "Negrito", | ||||
| "Italic": "It\u00e1lico", | ||||
| "Underline": "Sublinhado", | ||||
| "Strikethrough": "Rasurado", | ||||
| "Superscript": "Superior \u00e0 linha", | ||||
| "Subscript": "Inferior \u00e0 linha", | ||||
| "Clear formatting": "Limpar formata\u00e7\u00e3o", | ||||
| "Align left": "Alinhar \u00e0 esquerda", | ||||
| "Align center": "Alinhar ao centro", | ||||
| "Align right": "Alinhar \u00e0 direita", | ||||
| "Justify": "Justificar", | ||||
| "Bullet list": "Lista com marcas", | ||||
| "Numbered list": "Lista numerada", | ||||
| "Decrease indent": "Diminuir avan\u00e7o", | ||||
| "Increase indent": "Aumentar avan\u00e7o", | ||||
| "Close": "Fechar", | ||||
| "Formats": "Formatos", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "O seu navegador n\u00e3o suporta acesso direto \u00e0 \u00e1rea de transfer\u00eancia. Por favor, use os atalhos Ctrl+X\/C\/V do seu teclado.", | ||||
| "Headers": "Cabe\u00e7alhos", | ||||
| "Header 1": "Cabe\u00e7alho 1", | ||||
| "Header 2": "Cabe\u00e7alho 2", | ||||
| "Header 3": "Cabe\u00e7alho 3", | ||||
| "Header 4": "Cabe\u00e7alho 4", | ||||
| "Header 5": "Cabe\u00e7alho 5", | ||||
| "Header 6": "Cabe\u00e7alho 6", | ||||
| "Headings": "T\u00edtulos", | ||||
| "Heading 1": "T\u00edtulo 1", | ||||
| "Heading 2": "T\u00edtulo 2", | ||||
| "Heading 3": "T\u00edtulo 3", | ||||
| "Heading 4": "T\u00edtulo 4", | ||||
| "Heading 5": "T\u00edtulo 5", | ||||
| "Heading 6": "T\u00edtulo 6", | ||||
| "Preformatted": "Pr\u00e9-formatado", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "C\u00f3digo", | ||||
| "Paragraph": "Par\u00e1grafo", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Inline", | ||||
| "Blocks": "Blocos", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 em modo de texto simples. O conte\u00fado ser\u00e1 colado como texto simples at\u00e9 desativar esta op\u00e7\u00e3o.", | ||||
| "Fonts": "Tipos de letra", | ||||
| "Font Sizes": "Tamanhos dos tipos de letra", | ||||
| "Class": "Classe", | ||||
| "Browse for an image": "Procurar uma imagem", | ||||
| "OR": "OU", | ||||
| "Drop an image here": "Largar aqui uma imagem", | ||||
| "Upload": "Carregar", | ||||
| "Block": "Bloco", | ||||
| "Align": "Alinhar", | ||||
| "Default": "Padr\u00e3o", | ||||
| "Circle": "C\u00edrculo", | ||||
| "Disc": "Disco", | ||||
| "Square": "Quadrado", | ||||
| "Lower Alpha": "a. b. c. ...", | ||||
| "Lower Greek": "\\u03b1. \\u03b2. \\u03b3. ...", | ||||
| "Lower Roman": "i. ii. iii. ...", | ||||
| "Upper Alpha": "A. B. C. ...", | ||||
| "Upper Roman": "I. II. III. ...", | ||||
| "Anchor...": "\u00c2ncora...", | ||||
| "Name": "Nome", | ||||
| "Id": "ID", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "O ID deve come\u00e7ar com uma letra, seguido apenas por letras, n\u00fameros, pontos, dois pontos, tra\u00e7os ou sobtra\u00e7os.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Existem altera\u00e7\u00f5es que ainda n\u00e3o foram guardadas. Tem a certeza que pretende sair?", | ||||
| "Restore last draft": "Restaurar o \u00faltimo rascunho", | ||||
| "Special character...": "Car\u00e1ter especial...", | ||||
| "Source code": "C\u00f3digo fonte", | ||||
| "Insert\/Edit code sample": "Inserir\/editar amostra de c\u00f3digo", | ||||
| "Language": "Idioma", | ||||
| "Code sample...": "Amostra de c\u00f3digo...", | ||||
| "Color Picker": "Seletor de cores", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Da esquerda para a direita", | ||||
| "Right to left": "Da direita para a esquerda", | ||||
| "Emoticons...": "\u00cdcones expressivos...", | ||||
| "Metadata and Document Properties": "Metadados e propriedades do documento", | ||||
| "Title": "T\u00edtulo", | ||||
| "Keywords": "Palavras-chave", | ||||
| "Description": "Descri\u00e7\u00e3o", | ||||
| "Robots": "Rob\u00f4s", | ||||
| "Author": "Autor", | ||||
| "Encoding": "Codifica\u00e7\u00e3o", | ||||
| "Fullscreen": "Ecr\u00e3 completo", | ||||
| "Action": "A\u00e7\u00e3o", | ||||
| "Shortcut": "Atalho", | ||||
| "Help": "Ajuda", | ||||
| "Address": "Endere\u00e7o", | ||||
| "Focus to menubar": "Foco na barra de menu", | ||||
| "Focus to toolbar": "Foco na barra de ferramentas", | ||||
| "Focus to element path": "Foco no caminho do elemento", | ||||
| "Focus to contextual toolbar": "Foco na barra de contexto", | ||||
| "Insert link (if link plugin activated)": "Inserir hiperliga\u00e7\u00e3o (se o plugin de liga\u00e7\u00f5es estiver ativado)", | ||||
| "Save (if save plugin activated)": "Guardar (se o plugin de guardar estiver ativado)", | ||||
| "Find (if searchreplace plugin activated)": "Pesquisar (se o plugin pesquisar e substituir estiver ativado)", | ||||
| "Plugins installed ({0}):": "Plugins instalados ({0}):", | ||||
| "Premium plugins:": "Plugins comerciais:", | ||||
| "Learn more...": "Saiba mais...", | ||||
| "You are using {0}": "Est\u00e1 a usar {0}", | ||||
| "Plugins": "Plugins", | ||||
| "Handy Shortcuts": "Atalhos \u00fateis", | ||||
| "Horizontal line": "Linha horizontal", | ||||
| "Insert\/edit image": "Inserir\/editar imagem", | ||||
| "Image description": "Descri\u00e7\u00e3o da imagem", | ||||
| "Source": "Localiza\u00e7\u00e3o", | ||||
| "Dimensions": "Dimens\u00f5es", | ||||
| "Constrain proportions": "Manter propor\u00e7\u00f5es", | ||||
| "General": "Geral", | ||||
| "Advanced": "Avan\u00e7ado", | ||||
| "Style": "Estilo", | ||||
| "Vertical space": "Espa\u00e7amento vertical", | ||||
| "Horizontal space": "Espa\u00e7amento horizontal", | ||||
| "Border": "Contorno", | ||||
| "Insert image": "Inserir imagem", | ||||
| "Image...": "Imagem...", | ||||
| "Image list": "Lista de imagens", | ||||
| "Rotate counterclockwise": "Rota\u00e7\u00e3o anti-hor\u00e1ria", | ||||
| "Rotate clockwise": "Rota\u00e7\u00e3o hor\u00e1ria", | ||||
| "Flip vertically": "Inverter verticalmente", | ||||
| "Flip horizontally": "Inverter horizontalmente", | ||||
| "Edit image": "Editar imagem", | ||||
| "Image options": "Op\u00e7\u00f5es de imagem", | ||||
| "Zoom in": "Mais zoom", | ||||
| "Zoom out": "Menos zoom", | ||||
| "Crop": "Recortar", | ||||
| "Resize": "Redimensionar", | ||||
| "Orientation": "Orienta\u00e7\u00e3o", | ||||
| "Brightness": "Brilho", | ||||
| "Sharpen": "Mais nitidez", | ||||
| "Contrast": "Contraste", | ||||
| "Color levels": "N\u00edveis de cor", | ||||
| "Gamma": "Gama", | ||||
| "Invert": "Inverter", | ||||
| "Apply": "Aplicar", | ||||
| "Back": "Voltar", | ||||
| "Insert date\/time": "Inserir data\/hora", | ||||
| "Date\/time": "Data\/hora", | ||||
| "Insert\/Edit Link": "Inserir\/editar liga\u00e7\u00e3o", | ||||
| "Insert\/edit link": "Inserir\/editar liga\u00e7\u00e3o", | ||||
| "Text to display": "Texto a exibir", | ||||
| "Url": "URL", | ||||
| "Open link in...": "Abrir liga\u00e7\u00e3o em...", | ||||
| "Current window": "Janela atual", | ||||
| "None": "Nenhum", | ||||
| "New window": "Nova janela", | ||||
| "Remove link": "Remover liga\u00e7\u00e3o", | ||||
| "Anchors": "\u00c2ncora", | ||||
| "Link...": "Liga\u00e7\u00e3o...", | ||||
| "Paste or type a link": "Copiar ou escrever uma hiperliga\u00e7\u00e3o", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "O URL que indicou parece ser um endere\u00e7o de email. Quer adicionar o prefixo mailto: tal como necess\u00e1rio?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "O URL que indicou parece ser um endere\u00e7o web. Quer adicionar o prefixo http:\/\/ tal como necess\u00e1rio?", | ||||
| "Link list": "Lista de liga\u00e7\u00f5es", | ||||
| "Insert video": "Inserir v\u00eddeo", | ||||
| "Insert\/edit video": "Inserir\/editar v\u00eddeo", | ||||
| "Insert\/edit media": "Inserir\/editar media", | ||||
| "Alternative source": "Localiza\u00e7\u00e3o alternativa", | ||||
| "Alternative source URL": "URL da origem alternativa", | ||||
| "Media poster (Image URL)": "Publicador de media (URL da imagem)", | ||||
| "Paste your embed code below:": "Colar c\u00f3digo para embeber:", | ||||
| "Embed": "Embeber", | ||||
| "Media...": "Media...", | ||||
| "Nonbreaking space": "Espa\u00e7o n\u00e3o quebr\u00e1vel", | ||||
| "Page break": "Quebra de p\u00e1gina", | ||||
| "Paste as text": "Colar como texto", | ||||
| "Preview": "Pr\u00e9-visualizar", | ||||
| "Print...": "Imprimir...", | ||||
| "Save": "Guardar", | ||||
| "Find": "Pesquisar", | ||||
| "Replace with": "Substituir por", | ||||
| "Replace": "Substituir", | ||||
| "Replace all": "Substituir tudo", | ||||
| "Previous": "Anterior", | ||||
| "Next": "Pr\u00f3ximo", | ||||
| "Find and replace...": "Localizar e substituir...", | ||||
| "Could not find the specified string.": "N\u00e3o foi poss\u00edvel localizar o termo especificado.", | ||||
| "Match case": "Diferenciar mai\u00fasculas e min\u00fasculas", | ||||
| "Find whole words only": "Localizar apenas palavras inteiras", | ||||
| "Spell check": "Verifica\u00e7\u00e3o ortogr\u00e1fica", | ||||
| "Ignore": "Ignorar", | ||||
| "Ignore all": "Ignorar tudo", | ||||
| "Finish": "Concluir", | ||||
| "Add to Dictionary": "Adicionar ao dicion\u00e1rio", | ||||
| "Insert table": "Inserir tabela", | ||||
| "Table properties": "Propriedades da tabela", | ||||
| "Delete table": "Eliminar tabela", | ||||
| "Cell": "C\u00e9lula", | ||||
| "Row": "Linha", | ||||
| "Column": "Coluna", | ||||
| "Cell properties": "Propriedades da c\u00e9lula", | ||||
| "Merge cells": "Unir c\u00e9lulas", | ||||
| "Split cell": "Dividir c\u00e9lula", | ||||
| "Insert row before": "Inserir linha antes", | ||||
| "Insert row after": "Inserir linha depois", | ||||
| "Delete row": "Eliminar linha", | ||||
| "Row properties": "Propriedades da linha", | ||||
| "Cut row": "Cortar linha", | ||||
| "Copy row": "Copiar linha", | ||||
| "Paste row before": "Colar linha antes", | ||||
| "Paste row after": "Colar linha depois", | ||||
| "Insert column before": "Inserir coluna antes", | ||||
| "Insert column after": "Inserir coluna depois", | ||||
| "Delete column": "Eliminar coluna", | ||||
| "Cols": "Colunas", | ||||
| "Rows": "Linhas", | ||||
| "Width": "Largura", | ||||
| "Height": "Altura", | ||||
| "Cell spacing": "Espa\u00e7amento entre c\u00e9lulas", | ||||
| "Cell padding": "Espa\u00e7amento interno da c\u00e9lula", | ||||
| "Show caption": "Mostrar legenda", | ||||
| "Left": "Esquerda", | ||||
| "Center": "Centro", | ||||
| "Right": "Direita", | ||||
| "Cell type": "Tipo de c\u00e9lula", | ||||
| "Scope": "Escopo", | ||||
| "Alignment": "Alinhamento", | ||||
| "H Align": "Alinhamento H", | ||||
| "V Align": "Alinhamento V", | ||||
| "Top": "Superior", | ||||
| "Middle": "Meio", | ||||
| "Bottom": "Inferior", | ||||
| "Header cell": "C\u00e9lula de cabe\u00e7alho", | ||||
| "Row group": "Agrupar linha", | ||||
| "Column group": "Agrupar coluna", | ||||
| "Row type": "Tipo de linha", | ||||
| "Header": "Cabe\u00e7alho", | ||||
| "Body": "Corpo", | ||||
| "Footer": "Rodap\u00e9", | ||||
| "Border color": "Cor de contorno", | ||||
| "Insert template...": "Inserir modelo...", | ||||
| "Templates": "Modelos", | ||||
| "Template": "Tema", | ||||
| "Text color": "Cor do texto", | ||||
| "Background color": "Cor de fundo", | ||||
| "Custom...": "Personalizada...", | ||||
| "Custom color": "Cor personalizada", | ||||
| "No color": "Sem cor", | ||||
| "Remove color": "Remover cor", | ||||
| "Table of Contents": "\u00cdndice", | ||||
| "Show blocks": "Mostrar blocos", | ||||
| "Show invisible characters": "Mostrar caracteres invis\u00edveis", | ||||
| "Word count": "Contagem de palavras", | ||||
| "Count": "Contagem", | ||||
| "Document": "Documento", | ||||
| "Selection": "Sele\u00e7\u00e3o", | ||||
| "Words": "Palavras", | ||||
| "Words: {0}": "Palavras: {0}", | ||||
| "{0} words": "{0} palavras", | ||||
| "File": "Ficheiro", | ||||
| "Edit": "Editar", | ||||
| "Insert": "Inserir", | ||||
| "View": "Ver", | ||||
| "Format": "Formatar", | ||||
| "Table": "Tabela", | ||||
| "Tools": "Ferramentas", | ||||
| "Powered by {0}": "Criado em {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Caixa de texto formatado. Pressione ALT-F9 para exibir o menu. Pressione ALT-F10 para exibir a barra de ferramentas. Pressione ALT-0 para exibir a ajuda", | ||||
| "Image title": "T\u00edtulo da imagem", | ||||
| "Border width": "Largura do limite", | ||||
| "Border style": "Estilo do limite", | ||||
| "Error": "Erro", | ||||
| "Warn": "Aviso", | ||||
| "Valid": "V\u00e1lido", | ||||
| "To open the popup, press Shift+Enter": "Para abrir o pop-up, prima Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u00c1rea de texto formatado. Prima ALT-0 para exibir a ajuda.", | ||||
| "System Font": "Tipo de letra do sistema", | ||||
| "Failed to upload image: {0}": "Falha ao carregar imagem: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Falha ao carregar plugin: {0} do URL {1}", | ||||
| "Failed to load plugin url: {0}": "Falha ao carregar o URL do plugin: {0}", | ||||
| "Failed to initialize plugin: {0}": "Falha ao inicializar plugin: {0}", | ||||
| "example": "exemplo", | ||||
| "Search": "Pesquisar", | ||||
| "All": "Tudo", | ||||
| "Currency": "Moeda", | ||||
| "Text": "Texto", | ||||
| "Quotations": "Aspas", | ||||
| "Mathematical": "Matem\u00e1tico", | ||||
| "Extended Latin": "Carateres latinos estendidos", | ||||
| "Symbols": "S\u00edmbolos", | ||||
| "Arrows": "Setas", | ||||
| "User Defined": "Definido pelo utilizador", | ||||
| "dollar sign": "cifr\u00e3o", | ||||
| "currency sign": "sinal monet\u00e1rio", | ||||
| "euro-currency sign": "sinal monet\u00e1rio do euro", | ||||
| "colon sign": "sinal de dois pontos", | ||||
| "cruzeiro sign": "sinal de cruzeiro", | ||||
| "french franc sign": "sinal de franco franc\u00eas", | ||||
| "lira sign": "sinal de lira", | ||||
| "mill sign": "sinal de por mil", | ||||
| "naira sign": "sinal de naira", | ||||
| "peseta sign": "sinal de peseta", | ||||
| "rupee sign": "sinal de r\u00fapia", | ||||
| "won sign": "sinal de won", | ||||
| "new sheqel sign": "sinal de novo sheqel", | ||||
| "dong sign": "sinal de dong", | ||||
| "kip sign": "sinal kip", | ||||
| "tugrik sign": "sinal tugrik", | ||||
| "drachma sign": "sinal drachma", | ||||
| "german penny symbol": "sinal de penny alem\u00e3o", | ||||
| "peso sign": "sinal de peso", | ||||
| "guarani sign": "sinal de guarani", | ||||
| "austral sign": "sinal de austral", | ||||
| "hryvnia sign": "sinal hryvnia", | ||||
| "cedi sign": "sinal de cedi", | ||||
| "livre tournois sign": "sinal de libra de tours", | ||||
| "spesmilo sign": "sinal de spesmilo", | ||||
| "tenge sign": "sinal de tengue", | ||||
| "indian rupee sign": "sinal de rupia indiana", | ||||
| "turkish lira sign": "sinal de lira turca", | ||||
| "nordic mark sign": "sinal de marca n\u00f3rdica", | ||||
| "manat sign": "sinal manat", | ||||
| "ruble sign": "sinal de rublo", | ||||
| "yen character": "sinal de iene", | ||||
| "yuan character": "sinal de iuane", | ||||
| "yuan character, in hong kong and taiwan": "sinal de iuane, em Hong Kong e Taiwan", | ||||
| "yen\/yuan character variant one": "variante um de sinal de iene\/iuane", | ||||
| "Loading emoticons...": "A carregar \u00edcones expressivos...", | ||||
| "Could not load emoticons": "N\u00e3o foi poss\u00edvel carregar \u00edcones expressivos", | ||||
| "People": "Pessoas", | ||||
| "Animals and Nature": "Animais e natureza", | ||||
| "Food and Drink": "Comida e bebida", | ||||
| "Activity": "Atividade", | ||||
| "Travel and Places": "Viagens e lugares", | ||||
| "Objects": "Objetos", | ||||
| "Flags": "Bandeiras", | ||||
| "Characters": "Carateres", | ||||
| "Characters (no spaces)": "Carateres (sem espa\u00e7os)", | ||||
| "{0} characters": "{0} carateres", | ||||
| "Error: Form submit field collision.": "Erro: conflito no campo de submiss\u00e3o de formul\u00e1rio.", | ||||
| "Error: No form element found.": "Erro: nenhum elemento de formul\u00e1rio encontrado.", | ||||
| "Update": "Atualizar", | ||||
| "Color swatch": "Cole\u00e7\u00e3o de cores", | ||||
| "Turquoise": "Turquesa", | ||||
| "Green": "Verde", | ||||
| "Blue": "Azul", | ||||
| "Purple": "P\u00farpura", | ||||
| "Navy Blue": "Azul-atl\u00e2ntico", | ||||
| "Dark Turquoise": "Turquesa escuro", | ||||
| "Dark Green": "Verde escuro", | ||||
| "Medium Blue": "Azul interm\u00e9dio", | ||||
| "Medium Purple": "P\u00farpura interm\u00e9dio", | ||||
| "Midnight Blue": "Azul muito escuro", | ||||
| "Yellow": "Amarelo", | ||||
| "Orange": "Laranja", | ||||
| "Red": "Vermelho", | ||||
| "Light Gray": "Cinzento claro", | ||||
| "Gray": "Cinzento", | ||||
| "Dark Yellow": "Amarelo escuro", | ||||
| "Dark Orange": "Laranja escuro", | ||||
| "Dark Red": "Vermelho escuro", | ||||
| "Medium Gray": "Cinzento m\u00e9dio", | ||||
| "Dark Gray": "Cinzento escuro", | ||||
| "Light Green": "Verde claro", | ||||
| "Light Yellow": "Amarelo claro", | ||||
| "Light Red": "Vermelho claro", | ||||
| "Light Purple": "P\u00farpura claro", | ||||
| "Light Blue": "Azul claro", | ||||
| "Dark Purple": "P\u00farpura escuro", | ||||
| "Dark Blue": "Azul escuro", | ||||
| "Black": "Preto", | ||||
| "White": "Branco", | ||||
| "Switch to or from fullscreen mode": "Entrar ou sair do modo de ecr\u00e3 inteiro", | ||||
| "Open help dialog": "Abrir caixa de di\u00e1logo Ajuda", | ||||
| "history": "hist\u00f3rico", | ||||
| "styles": "estilos", | ||||
| "formatting": "formata\u00e7\u00e3o", | ||||
| "alignment": "alinhamento", | ||||
| "indentation": "avan\u00e7o", | ||||
| "permanent pen": "caneta permanente", | ||||
| "comments": "coment\u00e1rios", | ||||
| "Format Painter": "Pincel de formata\u00e7\u00e3o", | ||||
| "Insert\/edit iframe": "Inserir\/editar iframe", | ||||
| "Capitalization": "Capitaliza\u00e7\u00e3o", | ||||
| "lowercase": "min\u00fasculas", | ||||
| "UPPERCASE": "MAI\u00daSCULAS", | ||||
| "Title Case": "Iniciais mai\u00fasculas", | ||||
| "Permanent Pen Properties": "Propriedades da Caneta Permanente", | ||||
| "Permanent pen properties...": "Propriedades da caneta permanente...", | ||||
| "Font": "Tipo de letra", | ||||
| "Size": "Tamanho", | ||||
| "More...": "Mais...", | ||||
| "Spellcheck Language": "Idioma de verifica\u00e7\u00e3o lingu\u00edstica", | ||||
| "Select...": "Selecionar...", | ||||
| "Preferences": "Prefer\u00eancias", | ||||
| "Yes": "Sim", | ||||
| "No": "N\u00e3o", | ||||
| "Keyboard Navigation": "Navega\u00e7\u00e3o com teclado", | ||||
| "Version": "Vers\u00e3o", | ||||
| "Anchor": "\u00c2ncora", | ||||
| "Special character": "Car\u00e1cter especial", | ||||
| "Code sample": "Amostra de c\u00f3digo", | ||||
| "Color": "Cor", | ||||
| "Emoticons": "Emo\u00e7\u00f5es", | ||||
| "Document properties": "Propriedades do documento", | ||||
| "Image": "Imagem", | ||||
| "Insert link": "Inserir liga\u00e7\u00e3o", | ||||
| "Target": "Alvo", | ||||
| "Link": "Liga\u00e7\u00e3o", | ||||
| "Poster": "Autor", | ||||
| "Media": "Media", | ||||
| "Print": "Imprimir", | ||||
| "Prev": "Anterior", | ||||
| "Find and replace": "Pesquisar e substituir", | ||||
| "Whole words": "Palavras completas", | ||||
| "Spellcheck": "Corretor ortogr\u00e1fico", | ||||
| "Caption": "Legenda", | ||||
| "Insert template": "Inserir modelo" | ||||
| }); | ||||
							
								
								
									
										418
									
								
								Modules/TinyMCE/langs/ro.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										418
									
								
								Modules/TinyMCE/langs/ro.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,418 @@ | ||||
| tinymce.addI18n('ro',{ | ||||
| "Redo": "Refacere", | ||||
| "Undo": "Anulare", | ||||
| "Cut": "Decupare", | ||||
| "Copy": "Copiere", | ||||
| "Paste": "Lipire", | ||||
| "Select all": "Selecteaz\u0103 tot", | ||||
| "New document": "Document nou", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Revocare", | ||||
| "Visual aids": "Ajutoare vizuale", | ||||
| "Bold": "Aldin", | ||||
| "Italic": "Cursiv", | ||||
| "Underline": "Subliniere", | ||||
| "Strikethrough": "T\u0103iere", | ||||
| "Superscript": "Exponent", | ||||
| "Subscript": "Indice", | ||||
| "Clear formatting": "\u00cendep\u0103rtare formatare", | ||||
| "Align left": "Aliniere st\u00e2nga", | ||||
| "Align center": "Aliniere centru", | ||||
| "Align right": "Aliniere dreapta", | ||||
| "Justify": "Aliniere st\u00e2nga-dreapta", | ||||
| "Bullet list": "List\u0103 marcatori", | ||||
| "Numbered list": "List\u0103 numerotat\u0103", | ||||
| "Decrease indent": "Mic\u0219orare indent", | ||||
| "Increase indent": "M\u0103rire indent", | ||||
| "Close": "\u00cenchidere", | ||||
| "Formats": "Formate", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Browser-ul dumneavoastr\u0103 nu are acces direct la clipboard. V\u0103 rug\u0103m s\u0103 folosi\u021bi \u00een schimb scurt\u0103turile de tastatur\u0103 Ctrl+X\/C\/V.", | ||||
| "Headers": "Antete", | ||||
| "Header 1": "Antet 1", | ||||
| "Header 2": "Antet 2", | ||||
| "Header 3": "Antet 3", | ||||
| "Header 4": "Antet 4", | ||||
| "Header 5": "Antet 5", | ||||
| "Header 6": "Antet 6", | ||||
| "Headings": "Rubrici", | ||||
| "Heading 1": "Titlu 1", | ||||
| "Heading 2": "Titlu 2", | ||||
| "Heading 3": "Titlu 3", | ||||
| "Heading 4": "Titlu 4", | ||||
| "Heading 5": "Titlu 5", | ||||
| "Heading 6": "Titlu 6", | ||||
| "Preformatted": "Preformatat", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Cod", | ||||
| "Paragraph": "Paragraf", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "\u00cen linie", | ||||
| "Blocks": "Blocuri", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Functia \"lipe\u015fte\" este acum \u00een modul text simplu. Continutul va fi acum inserat ca text simplu p\u00e2n\u0103 c\u00e2nd aceast\u0103 op\u021biune va fi dezactivat.", | ||||
| "Fonts": "Fonturi", | ||||
| "Font Sizes": "Dimensiuni font", | ||||
| "Class": "Clas\u0103", | ||||
| "Browse for an image": "C\u0103uta\u021bi o imagine", | ||||
| "OR": "OR", | ||||
| "Drop an image here": "Glisa\u021bi o imagine aici", | ||||
| "Upload": "\u00cenc\u0103rcare", | ||||
| "Block": "Sec\u021biune", | ||||
| "Align": "Aliniere", | ||||
| "Default": "Implicit", | ||||
| "Circle": "Cerc", | ||||
| "Disc": "Disc", | ||||
| "Square": "P\u0103trat", | ||||
| "Lower Alpha": "Minuscule Alfanumerice", | ||||
| "Lower Greek": "Minuscule Grecesti", | ||||
| "Lower Roman": "Minuscule Romane", | ||||
| "Upper Alpha": "Majuscule Alfanumerice", | ||||
| "Upper Roman": "Majuscule Romane", | ||||
| "Anchor...": "Ancor\u0103\u2026", | ||||
| "Name": "Nume", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id-ul trebuie s\u0103 inceap\u0103 cu o liter\u0103, urmat\u0103 exclusiv de litere, numere, cratime, puncte, punct \u0219i virgul\u0103 sau underscore-uri.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Ave\u021bi modific\u0103ri nesalvate! Sunte\u0163i sigur c\u0103 dori\u0163i s\u0103 ie\u015fiti?", | ||||
| "Restore last draft": "Restaurare la ultima salvare", | ||||
| "Special character...": "Caracter special\u2026", | ||||
| "Source code": "Codul surs\u0103", | ||||
| "Insert\/Edit code sample": "Inserare\/Editare mostr\u0103 cod", | ||||
| "Language": "Limba", | ||||
| "Code sample...": "Mostr\u0103 cod\u2026", | ||||
| "Color Picker": "Selector culori", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "St\u00e2nga la dreapta", | ||||
| "Right to left": "Dreapta la st\u00e2nga", | ||||
| "Emoticons...": "Emoticoane\u2026", | ||||
| "Metadata and Document Properties": "Meta date \u0219i Propriet\u0103\u021bi Document", | ||||
| "Title": "Titlu", | ||||
| "Keywords": "Cuvinte cheie", | ||||
| "Description": "Descriere", | ||||
| "Robots": "Robo\u021bi", | ||||
| "Author": "Autor", | ||||
| "Encoding": "Codare", | ||||
| "Fullscreen": "Pe tot ecranul", | ||||
| "Action": "Ac\u0163iune", | ||||
| "Shortcut": "Comand\u0103 rapid\u0103", | ||||
| "Help": "Ajutor", | ||||
| "Address": "Adres\u0103", | ||||
| "Focus to menubar": "Centrare pe bara de meniuri", | ||||
| "Focus to toolbar": "Centrare pe bara de unelte", | ||||
| "Focus to element path": "Centrare pe calea elementului", | ||||
| "Focus to contextual toolbar": "Centrare pe bara de unelte contextual\u0103", | ||||
| "Insert link (if link plugin activated)": "Inserare link (dac\u0103 modulul de link-uri este activat)", | ||||
| "Save (if save plugin activated)": "Salvare (dac\u0103 modulul de salvare este activat)", | ||||
| "Find (if searchreplace plugin activated)": "C\u0103utare (dac\u0103 modulul de c\u0103utare \u0219i \u00eenlocuire este activat)", | ||||
| "Plugins installed ({0}):": "Module instalate ({0}):", | ||||
| "Premium plugins:": "Module premium:", | ||||
| "Learn more...": "Afla\u021bi mai multe\u2026", | ||||
| "You are using {0}": "Folosi\u021bi {0}", | ||||
| "Plugins": "Inserturi", | ||||
| "Handy Shortcuts": "Comenzi rapide accesibile", | ||||
| "Horizontal line": "Linie orizontal\u0103", | ||||
| "Insert\/edit image": "Inserare\/editarea imaginilor", | ||||
| "Image description": "Descrierea imaginii", | ||||
| "Source": "Surs\u0103", | ||||
| "Dimensions": "Dimensiuni", | ||||
| "Constrain proportions": "Constr\u00e2nge propor\u021biile", | ||||
| "General": "General", | ||||
| "Advanced": "Avansat", | ||||
| "Style": "Stil", | ||||
| "Vertical space": "Spa\u021biul vertical", | ||||
| "Horizontal space": "Spa\u021biul orizontal", | ||||
| "Border": "Bordur\u0103", | ||||
| "Insert image": "Inserare imagine", | ||||
| "Image...": "Imagine\u2026", | ||||
| "Image list": "List\u0103 de imagini", | ||||
| "Rotate counterclockwise": "Rotire \u00een sensul antiorar", | ||||
| "Rotate clockwise": "Rotire \u00een sensul orar", | ||||
| "Flip vertically": "R\u0103sturn\u0103 vertical", | ||||
| "Flip horizontally": "R\u0103sturn\u0103 orizontal", | ||||
| "Edit image": "Editare imagine", | ||||
| "Image options": "Op\u021biuni imagine", | ||||
| "Zoom in": "M\u0103rire", | ||||
| "Zoom out": "Mic\u015forare", | ||||
| "Crop": "Decupare", | ||||
| "Resize": "Redimensionare", | ||||
| "Orientation": "Orientare", | ||||
| "Brightness": "Str\u0103lucire", | ||||
| "Sharpen": "Accentuare", | ||||
| "Contrast": "Contrast", | ||||
| "Color levels": "Niveluri de culoare", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Invers\u0103", | ||||
| "Apply": "Salveaz\u0103", | ||||
| "Back": "\u00cenapoi", | ||||
| "Insert date\/time": "Insereaz\u0103 data\/ora", | ||||
| "Date\/time": "Data\/ora", | ||||
| "Insert\/Edit Link": "Inserare\/Editare link", | ||||
| "Insert\/edit link": "Inserare\/editare link", | ||||
| "Text to display": "Text de afi\u0219at", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Deschide link \u00een\u2026", | ||||
| "Current window": "Fereastra curent\u0103", | ||||
| "None": "Nici unul", | ||||
| "New window": "Fereastr\u0103 nou\u0103", | ||||
| "Remove link": "\u0218terge link-ul", | ||||
| "Anchors": "Ancor\u0103", | ||||
| "Link...": "Link\u2026", | ||||
| "Paste or type a link": "Introduce\u021bi un link", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL-ul introdus pare s\u0103 fie o adres\u0103 de e-mail. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul mailto: ?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL-ul introdus pare s\u0103 fie o adres\u0103 web. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul http:\/\/ ?", | ||||
| "Link list": "List\u0103 linkuri", | ||||
| "Insert video": "Inserare video", | ||||
| "Insert\/edit video": "Inserare\/editare video", | ||||
| "Insert\/edit media": "Inserare\/editare media", | ||||
| "Alternative source": "Surs\u0103 alternativ\u0103", | ||||
| "Alternative source URL": "URL surs\u0103 alternativ\u0103", | ||||
| "Media poster (Image URL)": "Poster media (URL imagine)", | ||||
| "Paste your embed code below:": "Insera\u021bi codul:", | ||||
| "Embed": "Embed", | ||||
| "Media...": "Media\u2026", | ||||
| "Nonbreaking space": "Spa\u021biu neseparator", | ||||
| "Page break": "\u00centrerupere de pagin\u0103", | ||||
| "Paste as text": "Lipe\u015fte ca text", | ||||
| "Preview": "Previzualizare", | ||||
| "Print...": "Tip\u0103rire\u2026", | ||||
| "Save": "Salveaz\u0103", | ||||
| "Find": "Caut\u0103", | ||||
| "Replace with": "\u00cenlocuie\u015fte cu", | ||||
| "Replace": "\u00cenlocuie\u015fte", | ||||
| "Replace all": "\u00cenlocuie\u015fte toate", | ||||
| "Previous": "Anterior", | ||||
| "Next": "Precedent", | ||||
| "Find and replace...": "C\u0103utare \u0219i \u00eenlocuire\u2026", | ||||
| "Could not find the specified string.": "Nu am putut g\u0103si \u0219irul specificat.", | ||||
| "Match case": "Distinge majuscule\/minuscule", | ||||
| "Find whole words only": "G\u0103se\u0219te doar cuvintele \u00eentregi", | ||||
| "Spell check": "Verificare ortografic\u0103", | ||||
| "Ignore": "Ignor\u0103", | ||||
| "Ignore all": "Ignor\u0103 toate", | ||||
| "Finish": "Finalizeaz\u0103", | ||||
| "Add to Dictionary": "Adaug\u0103 \u00een Dic\u021bionar", | ||||
| "Insert table": "Insereaz\u0103 tabel\u0103", | ||||
| "Table properties": "Propriet\u0103\u021bi tabel\u0103", | ||||
| "Delete table": "\u0218terge tabel\u0103", | ||||
| "Cell": "Celul\u0103", | ||||
| "Row": "Linie", | ||||
| "Column": "Coloan\u0103", | ||||
| "Cell properties": "Propriet\u0103\u021bi celul\u0103", | ||||
| "Merge cells": "\u00cembinarea celulelor", | ||||
| "Split cell": "\u00cemp\u0103r\u021birea celulelor", | ||||
| "Insert row before": "Insereaz\u0103 \u00eenainte de linie", | ||||
| "Insert row after": "Insereaz\u0103 dup\u0103 linie", | ||||
| "Delete row": "\u0218terge linia", | ||||
| "Row properties": "Propriet\u0103\u021bi linie", | ||||
| "Cut row": "Taie linie", | ||||
| "Copy row": "Copiaz\u0103 linie", | ||||
| "Paste row before": "Lipe\u015fte \u00eenainte de linie", | ||||
| "Paste row after": "Lipe\u015fte linie dup\u0103", | ||||
| "Insert column before": "Insereaza \u00eenainte de coloan\u0103", | ||||
| "Insert column after": "Insereaza dup\u0103 coloan\u0103", | ||||
| "Delete column": "\u0218terge coloana", | ||||
| "Cols": "Coloane", | ||||
| "Rows": "Linii", | ||||
| "Width": "L\u0103\u0163ime", | ||||
| "Height": "\u00cen\u0103l\u0163ime", | ||||
| "Cell spacing": "Spa\u021biere celule", | ||||
| "Cell padding": "Spa\u021biere", | ||||
| "Show caption": "Afi\u0219are captur\u0103", | ||||
| "Left": "St\u00e2nga", | ||||
| "Center": "Centru", | ||||
| "Right": "Dreapta", | ||||
| "Cell type": "Tip celul\u0103", | ||||
| "Scope": "Domeniu", | ||||
| "Alignment": "Aliniament", | ||||
| "H Align": "Aliniere H", | ||||
| "V Align": "Aliniere V", | ||||
| "Top": "Sus", | ||||
| "Middle": "Mijloc", | ||||
| "Bottom": "Jos", | ||||
| "Header cell": "Antet celul\u0103", | ||||
| "Row group": "Grup de linii", | ||||
| "Column group": "Grup de coloane", | ||||
| "Row type": "Tip de linie", | ||||
| "Header": "Antet", | ||||
| "Body": "Corp", | ||||
| "Footer": "Subsol", | ||||
| "Border color": "Culoare bordur\u0103", | ||||
| "Insert template...": "Inserare \u0219ablon\u2026", | ||||
| "Templates": "\u015eabloane", | ||||
| "Template": "\u0218ablon", | ||||
| "Text color": "Culoare text", | ||||
| "Background color": "Culoare fundal", | ||||
| "Custom...": "Personalizat...", | ||||
| "Custom color": "Culoare personalizat\u0103", | ||||
| "No color": "F\u0103r\u0103 culoare", | ||||
| "Remove color": "Eliminare culoare", | ||||
| "Table of Contents": "Cuprins", | ||||
| "Show blocks": "Afi\u0219are blocuri", | ||||
| "Show invisible characters": "Afi\u0219are caractere invizibile", | ||||
| "Word count": "Num\u0103r\u0103toare cuvinte", | ||||
| "Count": "Num\u0103r\u0103toare", | ||||
| "Document": "Document", | ||||
| "Selection": "Selec\u021bie", | ||||
| "Words": "Cuvinte", | ||||
| "Words: {0}": "Cuvinte: {0}", | ||||
| "{0} words": "{0} cuvinte", | ||||
| "File": "Fil\u0103", | ||||
| "Edit": "Editeaz\u0103", | ||||
| "Insert": "Insereaz\u0103", | ||||
| "View": "Vezi", | ||||
| "Format": "Formateaz\u0103", | ||||
| "Table": "Tabel\u0103", | ||||
| "Tools": "Unelte", | ||||
| "Powered by {0}": "Sus\u021binut de {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zon\u0103 cu Rich Text. Apas\u0103 ALT-F9 pentru meniu. Apas\u0103 ALT-F10 pentru bara de unelte. Apas\u0103 ALT-0 pentru ajutor", | ||||
| "Image title": "Titlu imagine", | ||||
| "Border width": "Grosime chenar", | ||||
| "Border style": "Stil chenar", | ||||
| "Error": "Eroare", | ||||
| "Warn": "Aten\u021bionare", | ||||
| "Valid": "Valid", | ||||
| "To open the popup, press Shift+Enter": "Pentru a deschide fereastra popup, ap\u0103sa\u021bi Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Zon\u0103 Text Formatat. Ap\u0103sa\u021bi ALT-0 pentru ajutor.", | ||||
| "System Font": "Font Sistem", | ||||
| "Failed to upload image: {0}": "Nu s-a putut \u00eenc\u0103rca imaginea: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Nu s-a putut \u00eenc\u0103rca modulul: {0} de la URL-ul {1}", | ||||
| "Failed to load plugin url: {0}": "Nu s-a putut \u00eenc\u0103rca URL-ul modulului: {0}", | ||||
| "Failed to initialize plugin: {0}": "Nu s-a putut ini\u021bializa modulul: {0}", | ||||
| "example": "exemplu", | ||||
| "Search": "C\u0103utare", | ||||
| "All": "Tot", | ||||
| "Currency": "Moned\u0103", | ||||
| "Text": "Text", | ||||
| "Quotations": "Ghilimele", | ||||
| "Mathematical": "Simboluri matematice", | ||||
| "Extended Latin": "Simboluri alfabet latin extins", | ||||
| "Symbols": "Simboluri", | ||||
| "Arrows": "S\u0103ge\u021bi", | ||||
| "User Defined": "Definite de utilizator", | ||||
| "dollar sign": "simbol dolar", | ||||
| "currency sign": "simbol moned\u0103", | ||||
| "euro-currency sign": "simbol euro", | ||||
| "colon sign": "dou\u0103 puncte", | ||||
| "cruzeiro sign": "simbol cruzeiro", | ||||
| "french franc sign": "simbol franc francez", | ||||
| "lira sign": "simbol lir\u0103", | ||||
| "mill sign": "simbol mill", | ||||
| "naira sign": "simbol naira", | ||||
| "peseta sign": "simbol peset\u0103", | ||||
| "rupee sign": "simbol rupie", | ||||
| "won sign": "simbol won", | ||||
| "new sheqel sign": "simbol shekel nou", | ||||
| "dong sign": "simbol dong", | ||||
| "kip sign": "simbol kip", | ||||
| "tugrik sign": "simbol tugrik", | ||||
| "drachma sign": "simbol drahm\u0103", | ||||
| "german penny symbol": "simbol peni german", | ||||
| "peso sign": "simbol peso", | ||||
| "guarani sign": "simbol guarani", | ||||
| "austral sign": "simbol austral", | ||||
| "hryvnia sign": "simbol grivn\u0103", | ||||
| "cedi sign": "simbol cedi", | ||||
| "livre tournois sign": "simbol livr\u0103 tournois", | ||||
| "spesmilo sign": "simbol spesmilo", | ||||
| "tenge sign": "simbol tenge", | ||||
| "indian rupee sign": "simbol rupie indian\u0103", | ||||
| "turkish lira sign": "simbol lir\u0103 turceasc\u0103", | ||||
| "nordic mark sign": "simbol marc\u0103 nordic\u0103", | ||||
| "manat sign": "simbol manat", | ||||
| "ruble sign": "simbol rubl\u0103", | ||||
| "yen character": "simbol yen", | ||||
| "yuan character": "simbol yuan", | ||||
| "yuan character, in hong kong and taiwan": "simbol yuan \u00een Hong Kong \u0219i Taiwan", | ||||
| "yen\/yuan character variant one": "simbol yen\/yuan prima variant\u0103", | ||||
| "Loading emoticons...": "Se \u00eencarc\u0103 emoticoanele\u2026", | ||||
| "Could not load emoticons": "Nu s-au putut \u00eenc\u0103rca emoticoanele", | ||||
| "People": "Persoane", | ||||
| "Animals and Nature": "Animale \u0219i natur\u0103", | ||||
| "Food and Drink": "M\u00e2ncare \u0219i b\u0103uturi", | ||||
| "Activity": "Activit\u0103\u021bi", | ||||
| "Travel and Places": "C\u0103l\u0103torii \u0219i loca\u021bii", | ||||
| "Objects": "Obiecte", | ||||
| "Flags": "Steaguri", | ||||
| "Characters": "Caractere", | ||||
| "Characters (no spaces)": "Caractere (f\u0103r\u0103 spa\u021bii)", | ||||
| "{0} characters": "{0} caractere", | ||||
| "Error: Form submit field collision.": "Eroare: Coliziune c\u00e2mpuri la trimiterea formularului.", | ||||
| "Error: No form element found.": "Eroare: Niciun element de formular g\u0103sit.", | ||||
| "Update": "Actualizare", | ||||
| "Color swatch": "Mostr\u0103 de culori", | ||||
| "Turquoise": "Turcoaz", | ||||
| "Green": "Verde", | ||||
| "Blue": "Albastru", | ||||
| "Purple": "Mov", | ||||
| "Navy Blue": "Albastru marin", | ||||
| "Dark Turquoise": "Turcoaz \u00eenchis", | ||||
| "Dark Green": "Verde \u00eenchis", | ||||
| "Medium Blue": "Albastru mediu", | ||||
| "Medium Purple": "Mov mediu", | ||||
| "Midnight Blue": "Albastru \u00eenchis", | ||||
| "Yellow": "Galben", | ||||
| "Orange": "Portocaliu", | ||||
| "Red": "Ro\u0219u", | ||||
| "Light Gray": "Gri deschis", | ||||
| "Gray": "Gri", | ||||
| "Dark Yellow": "Galben \u00eenchis", | ||||
| "Dark Orange": "Portocaliu \u00eenchis", | ||||
| "Dark Red": "Ro\u0219u \u00eenchis", | ||||
| "Medium Gray": "Gri mediu", | ||||
| "Dark Gray": "Gri \u00eenchis", | ||||
| "Light Green": "Verde deschis", | ||||
| "Light Yellow": "Galben deschis", | ||||
| "Light Red": "Ro\u015fu deschis", | ||||
| "Light Purple": "Violet deschis", | ||||
| "Light Blue": "Albastru deschis", | ||||
| "Dark Purple": "Violet \u00eenchis", | ||||
| "Dark Blue": "Negru \u00eenchis", | ||||
| "Black": "Negru", | ||||
| "White": "Alb", | ||||
| "Switch to or from fullscreen mode": "Comutare pe sau de la modul ecran complet", | ||||
| "Open help dialog": "Deschide dialogul de ajutor", | ||||
| "history": "istoric", | ||||
| "styles": "stiluri", | ||||
| "formatting": "formatare", | ||||
| "alignment": "aliniere", | ||||
| "indentation": "indentare", | ||||
| "permanent pen": "stilou permanent", | ||||
| "comments": "comentarii", | ||||
| "Format Painter": "Descriptor de formate", | ||||
| "Insert\/edit iframe": "Inserare\/editare icadru", | ||||
| "Capitalization": "Scriere cu majuscule", | ||||
| "lowercase": "litere mici", | ||||
| "UPPERCASE": "MAJUSCULE", | ||||
| "Title Case": "Ini\u021bial\u0103 majuscul\u0103", | ||||
| "Permanent Pen Properties": "Propriet\u0103\u021bile stiloului permanent", | ||||
| "Permanent pen properties...": "Propriet\u0103\u021bile stiloului permanent...", | ||||
| "Font": "Font", | ||||
| "Size": "Dimensiuni", | ||||
| "More...": "Mai multe...", | ||||
| "Spellcheck Language": "Verificare ortografic\u0103 a limbii", | ||||
| "Select...": "Selectare...", | ||||
| "Preferences": "Preferin\u021be", | ||||
| "Yes": "Da", | ||||
| "No": "Nu", | ||||
| "Keyboard Navigation": "Navigare de la tastatur\u0103", | ||||
| "Version": "Versiune", | ||||
| "Anchor": "Ancor\u0103", | ||||
| "Special character": "Caractere speciale", | ||||
| "Color": "Culoare", | ||||
| "Emoticons": "Emoticoane", | ||||
| "Document properties": "Propriet\u0103\u021bi document", | ||||
| "Image": "Imagine", | ||||
| "Insert link": "Inserare link", | ||||
| "Link": "Link", | ||||
| "Target": "\u021aint\u0103", | ||||
| "Media": "Media", | ||||
| "Poster": "Poster", | ||||
| "Print": "Tip\u0103re\u0219te", | ||||
| "Whole words": "Doar cuv\u00eentul \u00eentreg", | ||||
| "Find and replace": "Caut\u0103 \u015fi \u00eenlocuie\u015fte", | ||||
| "Prev": "Anterior", | ||||
| "Spellcheck": "Verificarea ortografic\u0103", | ||||
| "Caption": "Titlu", | ||||
| "Insert template": "Insereaz\u0103 \u0219ablon" | ||||
| }); | ||||
							
								
								
									
										370
									
								
								Modules/TinyMCE/langs/ro_RO.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										370
									
								
								Modules/TinyMCE/langs/ro_RO.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,370 @@ | ||||
| tinymce.addI18n('ro_RO',{ | ||||
| "Redo": "Refacere", | ||||
| "Undo": "Anulare", | ||||
| "Cut": "Decupare", | ||||
| "Copy": "Copiere", | ||||
| "Paste": "Lipire", | ||||
| "Select all": "Selecteaz\u0103 tot", | ||||
| "New document": "Document nou", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Revocare", | ||||
| "Visual aids": "Ajutoare vizuale", | ||||
| "Bold": "Aldin", | ||||
| "Italic": "Cursiv", | ||||
| "Underline": "Subliniere", | ||||
| "Strikethrough": "T\u0103iere", | ||||
| "Superscript": "Exponent", | ||||
| "Subscript": "Indice", | ||||
| "Clear formatting": "\u00cendep\u0103rtare formatare", | ||||
| "Align left": "Aliniere st\u00e2nga", | ||||
| "Align center": "Aliniere centru", | ||||
| "Align right": "Aliniere dreapta", | ||||
| "Justify": "Aliniere st\u00e2nga-dreapta", | ||||
| "Bullet list": "List\u0103 marcatori", | ||||
| "Numbered list": "List\u0103 numerotat\u0103", | ||||
| "Decrease indent": "Mic\u0219orare indent", | ||||
| "Increase indent": "M\u0103rire indent", | ||||
| "Close": "\u00cenchidere", | ||||
| "Formats": "Formate", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Browser-ul dumneavoastr\u0103 nu are acces direct la clipboard. V\u0103 rug\u0103m s\u0103 folosi\u021bi \u00een schimb scurt\u0103turile de tastatur\u0103 Ctrl+X\/C\/V.", | ||||
| "Headers": "Antete", | ||||
| "Header 1": "Antet 1", | ||||
| "Header 2": "Antet 2", | ||||
| "Header 3": "Antet 3", | ||||
| "Header 4": "Antet 4", | ||||
| "Header 5": "Antet 5", | ||||
| "Header 6": "Antet 6", | ||||
| "Headings": "Rubrici", | ||||
| "Heading 1": "Titlu 1", | ||||
| "Heading 2": "Titlu 2", | ||||
| "Heading 3": "Titlu 3", | ||||
| "Heading 4": "Titlu 4", | ||||
| "Heading 5": "Titlu 5", | ||||
| "Heading 6": "Titlu 6", | ||||
| "Preformatted": "Preformatat", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Cod", | ||||
| "Paragraph": "Paragraf", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "\u00cen linie", | ||||
| "Blocks": "Blocuri", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Lipirea este \u00een mod text simplu. Con\u021binutul va fi lipit ca text simplu p\u00e2n\u0103 dezactiva\u021bi aceast\u0103 op\u021biune.", | ||||
| "Fonts": "Fonturi", | ||||
| "Font Sizes": "Dimensiuni font", | ||||
| "Class": "Clas\u0103", | ||||
| "Browse for an image": "C\u0103uta\u021bi o imagine", | ||||
| "OR": "SAU", | ||||
| "Drop an image here": "Glisa\u021bi o imagine aici", | ||||
| "Upload": "\u00cenc\u0103rcare", | ||||
| "Block": "Sec\u021biune", | ||||
| "Align": "Aliniere", | ||||
| "Default": "Implicit", | ||||
| "Circle": "Cerc", | ||||
| "Disc": "Disc", | ||||
| "Square": "P\u0103trat", | ||||
| "Lower Alpha": "Litere mici", | ||||
| "Lower Greek": "Grecesc mic", | ||||
| "Lower Roman": "Cifre romane mici", | ||||
| "Upper Alpha": "Litere mari", | ||||
| "Upper Roman": "Cifre romane mari", | ||||
| "Anchor...": "Ancor\u0103\u2026", | ||||
| "Name": "Nume", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id-ul ar trebui s\u0103 \u00eenceap\u0103 cu o liter\u0103, urmat\u0103 doar de litere, numere, cratime, puncte, virgule sau sublinieri.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Ave\u021bi modific\u0103ri nesalvate. Sigur dori\u021bi s\u0103 naviga\u021bi \u00een alt\u0103 parte?", | ||||
| "Restore last draft": "Restabili\u021bi ultima ciorn\u0103", | ||||
| "Special characters...": "Caractere speciale\u2026", | ||||
| "Source code": "Cod surs\u0103", | ||||
| "Insert\/Edit code sample": "Inserare\/Editare mostr\u0103 cod", | ||||
| "Language": "Limb\u0103", | ||||
| "Code sample...": "Mostr\u0103 cod\u2026", | ||||
| "Color Picker": "Selector culori", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "St\u00e2nga la dreapta", | ||||
| "Right to left": "Dreapta la st\u00e2nga", | ||||
| "Emoticons...": "Emoticoane\u2026", | ||||
| "Metadata and Document Properties": "Meta date \u0219i Propriet\u0103\u021bi Document", | ||||
| "Title": "Titlu", | ||||
| "Keywords": "Cuvinte cheie", | ||||
| "Description": "Descriere", | ||||
| "Robots": "Robo\u0163i", | ||||
| "Author": "Autor", | ||||
| "Encoding": "Codare", | ||||
| "Fullscreen": "Ecran complet", | ||||
| "Action": "Ac\u0163iune", | ||||
| "Shortcut": "Comand\u0103 rapid\u0103", | ||||
| "Help": "Ajutor", | ||||
| "Address": "Adres\u0103", | ||||
| "Focus to menubar": "Centrare pe bara de meniuri", | ||||
| "Focus to toolbar": "Centrare pe bara de unelte", | ||||
| "Focus to element path": "Centrare pe calea elementului", | ||||
| "Focus to contextual toolbar": "Centrare pe bara de unelte contextual\u0103", | ||||
| "Insert link (if link plugin activated)": "Inserare link (dac\u0103 modulul de link-uri este activat)", | ||||
| "Save (if save plugin activated)": "Salvare (dac\u0103 modulul de salvare este activat)", | ||||
| "Find (if searchreplace plugin activated)": "C\u0103utare (dac\u0103 modulul de c\u0103utare \u0219i \u00eenlocuire este activat)", | ||||
| "Plugins installed ({0}):": "Module instalate ({0}):", | ||||
| "Premium plugins:": "Module premium:", | ||||
| "Learn more...": "Afla\u021bi mai multe\u2026", | ||||
| "You are using {0}": "Folosi\u021bi {0}", | ||||
| "Plugins": "Inserturi", | ||||
| "Handy Shortcuts": "Comenzi rapide accesibile", | ||||
| "Horizontal line": "Linie orizontal\u0103", | ||||
| "Insert\/edit image": "Inserare\/editare imagini", | ||||
| "Image description": "Descriere imagine", | ||||
| "Source": "Surs\u0103", | ||||
| "Dimensions": "Dimensiuni", | ||||
| "Constrain proportions": "Restric\u021bionare propor\u021bii", | ||||
| "General": "General", | ||||
| "Advanced": "Complex", | ||||
| "Style": "Stil", | ||||
| "Vertical space": "Spa\u0163iu vertical", | ||||
| "Horizontal space": "Spa\u0163iu orizontal", | ||||
| "Border": "Chenar", | ||||
| "Insert image": "Inserare imagine", | ||||
| "Image...": "Imagine\u2026", | ||||
| "Image list": "List\u0103 de imagini", | ||||
| "Rotate counterclockwise": "Rotire invers sensului acelor de ceasornic", | ||||
| "Rotate clockwise": "Rotire \u00een sensul acelor de ceasornic", | ||||
| "Flip vertically": "Inversare vertical\u0103", | ||||
| "Flip horizontally": "Inversare orizontal\u0103", | ||||
| "Edit image": "Editare imagine", | ||||
| "Image options": "Op\u021biuni imagine", | ||||
| "Zoom in": "Apropiere", | ||||
| "Zoom out": "Dep\u0103rtare", | ||||
| "Crop": "Decupare", | ||||
| "Resize": "Redimensionare", | ||||
| "Orientation": "Orientare", | ||||
| "Brightness": "Luminozitate", | ||||
| "Sharpen": "Accentuare", | ||||
| "Contrast": "Contrast", | ||||
| "Color levels": "Niveluri culori", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Inversare", | ||||
| "Apply": "Aplicare", | ||||
| "Back": "\u00cenapoi", | ||||
| "Insert date\/time": "Inserare dat\u0103\/or\u0103", | ||||
| "Date\/time": "Dat\u0103\/or\u0103", | ||||
| "Insert\/Edit Link": "Inserare\/Editare link", | ||||
| "Insert\/edit link": "Inserare\/editare link", | ||||
| "Text to display": "Text de afi\u0219at", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Deschide link \u00een\u2026", | ||||
| "Current window": "Fereastra curent\u0103", | ||||
| "None": "Nu se utilizeaz\u0103 (acest c\u00e2mp)", | ||||
| "New window": "Fereastr\u0103 nou\u0103", | ||||
| "Remove link": "Eliminare link", | ||||
| "Anchors": "Ancore", | ||||
| "Link...": "Link\u2026", | ||||
| "Paste or type a link": "Lipi\u021bi sau scrie\u021bi un link", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL-ul introdus pare a fi o adres\u0103 de e-mail. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul mailto: necesar?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL-ul introdus pare a fi un link extern. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul http:\/\/ necesar?", | ||||
| "Link list": "List\u0103 linkuri", | ||||
| "Insert video": "Inserare video", | ||||
| "Insert\/edit video": "Inserare\/editare video", | ||||
| "Insert\/edit media": "Inserare\/editare media", | ||||
| "Alternative source": "Surs\u0103 alternativ\u0103", | ||||
| "Alternative source URL": "URL surs\u0103 alternativ\u0103", | ||||
| "Media poster (Image URL)": "Poster media (URL imagine)", | ||||
| "Paste your embed code below:": "Lipi\u021bi codul de \u00eencorporare mai jos:", | ||||
| "Embed": "\u00cencorporare", | ||||
| "Media...": "Media\u2026", | ||||
| "Nonbreaking space": "Spa\u021biu f\u0103r\u0103 \u00eentreruperi", | ||||
| "Page break": "\u00centrerupere de pagin\u0103", | ||||
| "Paste as text": "Lipire ca text", | ||||
| "Preview": "Previzualizare", | ||||
| "Print...": "Tip\u0103rire\u2026", | ||||
| "Save": "Salvare", | ||||
| "Find": "G\u0103sire", | ||||
| "Replace with": "\u00cenlocuire cu", | ||||
| "Replace": "\u00cenlocuire", | ||||
| "Replace all": "\u00cenlocuire peste tot", | ||||
| "Previous": "Anterior", | ||||
| "Next": "Urm\u0103torul", | ||||
| "Find and replace...": "C\u0103utare \u0219i \u00eenlocuire\u2026", | ||||
| "Could not find the specified string.": "Nu s-a g\u0103sit \u0219irul indicat.", | ||||
| "Match case": "Potrivire litere mari \u0219i mici", | ||||
| "Find whole words only": "G\u0103se\u0219te doar cuvintele \u00eentregi", | ||||
| "Spell check": "Verificare ortografic\u0103", | ||||
| "Ignore": "Ignorare", | ||||
| "Ignore all": "Ignor\u0103 tot", | ||||
| "Finish": "Finalizare", | ||||
| "Add to Dictionary": "Ad\u0103ugare \u00een Dic\u021bionar", | ||||
| "Insert table": "Inserare tabel", | ||||
| "Table properties": "Propriet\u0103\u021bi tabel", | ||||
| "Delete table": "Eliminare tabel", | ||||
| "Cell": "Celul\u0103", | ||||
| "Row": "R\u00e2nd", | ||||
| "Column": "Coloan\u0103", | ||||
| "Cell properties": "Propriet\u0103\u021bi celul\u0103", | ||||
| "Merge cells": "\u00cembinare celule", | ||||
| "Split cell": "Scindare celul\u0103", | ||||
| "Insert row before": "Inserare r\u00e2nd \u00eenainte", | ||||
| "Insert row after": "Inserare r\u00e2nd dup\u0103", | ||||
| "Delete row": "Eliminare r\u00e2nd", | ||||
| "Row properties": "Propriet\u0103\u021bi r\u00e2nd", | ||||
| "Cut row": "Decupare r\u00e2nd", | ||||
| "Copy row": "Copiere r\u00e2nd", | ||||
| "Paste row before": "Lipire r\u00e2nd \u00eenainte", | ||||
| "Paste row after": "Lipire r\u00e2nd dup\u0103", | ||||
| "Insert column before": "Inserare coloan\u0103 \u00eenainte", | ||||
| "Insert column after": "Inserare coloan\u0103 dup\u0103", | ||||
| "Delete column": "Eliminare coloan\u0103", | ||||
| "Cols": "Coloane", | ||||
| "Rows": "R\u00e2nduri", | ||||
| "Width": "L\u0103\u021bime", | ||||
| "Height": "\u00cen\u0103l\u021bime", | ||||
| "Cell spacing": "Spa\u021biere celul\u0103", | ||||
| "Cell padding": "Spa\u021biere \u00een celul\u0103", | ||||
| "Show caption": "Afi\u0219are captur\u0103", | ||||
| "Left": "St\u00e2nga", | ||||
| "Center": "Centru", | ||||
| "Right": "Dreapta", | ||||
| "Cell type": "Tip celul\u0103", | ||||
| "Scope": "Domeniu", | ||||
| "Alignment": "Aliniere", | ||||
| "H Align": "Aliniere O", | ||||
| "V Align": "Aliniere V", | ||||
| "Top": "Sus", | ||||
| "Middle": "Mijloc", | ||||
| "Bottom": "Jos", | ||||
| "Header cell": "Celul\u0103 de antet", | ||||
| "Row group": "Grupare r\u00e2nduri", | ||||
| "Column group": "Grup coloane", | ||||
| "Row type": "Tip r\u00e2nd", | ||||
| "Header": "Antet", | ||||
| "Body": "Corp", | ||||
| "Footer": "Subsol de pagin\u0103", | ||||
| "Border color": "Culoare chenar", | ||||
| "Insert template...": "Inserare \u0219ablon\u2026", | ||||
| "Templates": "\u0218abloane", | ||||
| "Template": "\u0218ablon", | ||||
| "Text color": "Culoare text", | ||||
| "Background color": "Culoare fundal", | ||||
| "Custom...": "Particularizare...", | ||||
| "Custom color": "Culoare personalizat\u0103", | ||||
| "No color": "F\u0103r\u0103 culoare", | ||||
| "Remove color": "Eliminare culoare", | ||||
| "Table of Contents": "Cuprins", | ||||
| "Show blocks": "Arat\u0103 rubricile", | ||||
| "Show invisible characters": "Arat\u0103 caracterele invizibile", | ||||
| "Word count": "Num\u0103r\u0103toare cuvinte", | ||||
| "Words: {0}": "Cuvinte: {0}", | ||||
| "{0} words": "{0} cuvinte", | ||||
| "File": "Fi\u0219ier", | ||||
| "Edit": "Editare", | ||||
| "Insert": "Inserare", | ||||
| "View": "Vizualizare", | ||||
| "Format": "Formatare", | ||||
| "Table": "Tabel", | ||||
| "Tools": "Unelte", | ||||
| "Powered by {0}": "Sus\u021binut de {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zon\u0103 Text Formatat. Ap\u0103sa\u021bi ALT-F9 pentru a accesa meniul. Ap\u0103sa\u021bi ALT-F10 pentru a accesa bara de unelte. Ap\u0103sa\u021bi ALT-0 pentru ajutor", | ||||
| "Image title": "Titlu imagine", | ||||
| "Border width": "Grosime chenar", | ||||
| "Border style": "Stil chenar", | ||||
| "Error": "Eroare", | ||||
| "Warn": "Aten\u021bionare", | ||||
| "Valid": "Valid", | ||||
| "To open the popup, press Shift+Enter": "Pentru a deschide fereastra popup, ap\u0103sa\u021bi Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Zon\u0103 Text Formatat. Ap\u0103sa\u021bi ALT-0 pentru ajutor.", | ||||
| "System Font": "Font Sistem", | ||||
| "Failed to upload image: {0}": "Nu s-a putut \u00eenc\u0103rca imaginea: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Nu s-a putut \u00eenc\u0103rca modulul: {0} de la URL-ul {1}", | ||||
| "Failed to load plugin url: {0}": "Nu s-a putut \u00eenc\u0103rca URL-ul modulului: {0}", | ||||
| "Failed to initialize plugin: {0}": "Nu s-a putut ini\u021bializa modulul: {0}", | ||||
| "example": "exemplu", | ||||
| "Search": "C\u0103utare", | ||||
| "All": "Tot", | ||||
| "Currency": "Moned\u0103", | ||||
| "Text": "Text", | ||||
| "Quotations": "Ghilimele", | ||||
| "Mathematical": "Simboluri matematice", | ||||
| "Extended Latin": "Simboluri alfabet latin extins", | ||||
| "Symbols": "Simboluri", | ||||
| "Arrows": "S\u0103ge\u021bi", | ||||
| "User Defined": "Definite de utilizator", | ||||
| "dollar sign": "simbol dolar", | ||||
| "currency sign": "simbol moned\u0103", | ||||
| "euro-currency sign": "simbol euro", | ||||
| "colon sign": "dou\u0103 puncte", | ||||
| "cruzeiro sign": "simbol cruzeiro", | ||||
| "french franc sign": "simbol franc francez", | ||||
| "lira sign": "simbol lir\u0103", | ||||
| "mill sign": "simbol mill", | ||||
| "naira sign": "simbol naira", | ||||
| "peseta sign": "simbol peset\u0103", | ||||
| "rupee sign": "simbol rupie", | ||||
| "won sign": "simbol won", | ||||
| "new sheqel sign": "simbol shekel nou", | ||||
| "dong sign": "simbol dong", | ||||
| "kip sign": "simbol kip", | ||||
| "tugrik sign": "simbol tugrik", | ||||
| "drachma sign": "simbol drahm\u0103", | ||||
| "german penny symbol": "simbol peni german", | ||||
| "peso sign": "simbol peso", | ||||
| "guarani sign": "simbol guarani", | ||||
| "austral sign": "simbol austral", | ||||
| "hryvnia sign": "simbol grivn\u0103", | ||||
| "cedi sign": "simbol cedi", | ||||
| "livre tournois sign": "simbol livr\u0103 tournois", | ||||
| "spesmilo sign": "simbol spesmilo", | ||||
| "tenge sign": "simbol tenge", | ||||
| "indian rupee sign": "simbol rupie indian\u0103", | ||||
| "turkish lira sign": "simbol lir\u0103 turceasc\u0103", | ||||
| "nordic mark sign": "simbol marc\u0103 nordic\u0103", | ||||
| "manat sign": "simbol manat", | ||||
| "ruble sign": "simbol rubl\u0103", | ||||
| "yen character": "simbol yen", | ||||
| "yuan character": "simbol yuan", | ||||
| "yuan character, in hong kong and taiwan": "simbol yuan \u00een Hong Kong \u0219i Taiwan", | ||||
| "yen\/yuan character variant one": "simbol yen\/yuan prima variant\u0103", | ||||
| "Loading emoticons...": "Se \u00eencarc\u0103 emoticoanele\u2026", | ||||
| "Could not load emoticons": "Nu s-au putut \u00eenc\u0103rca emoticoanele", | ||||
| "People": "Persoane", | ||||
| "Animals and Nature": "Animale \u0219i natur\u0103", | ||||
| "Food and Drink": "M\u00e2ncare \u0219i b\u0103uturi", | ||||
| "Activity": "Activit\u0103\u021bi", | ||||
| "Travel and Places": "C\u0103l\u0103torii \u0219i loca\u021bii", | ||||
| "Objects": "Obiecte", | ||||
| "Flags": "Steaguri", | ||||
| "Characters": "Caractere", | ||||
| "Characters (no spaces)": "Caractere (f\u0103r\u0103 spa\u021bii)", | ||||
| "Error: Form submit field collision.": "Eroare: Coliziune c\u00e2mpuri la trimiterea formularului.", | ||||
| "Error: No form element found.": "Eroare: Niciun element de formular g\u0103sit.", | ||||
| "Update": "Actualizare", | ||||
| "Color swatch": "Mostr\u0103 de culori", | ||||
| "Turquoise": "Turcoaz", | ||||
| "Green": "Verde", | ||||
| "Blue": "Albastru", | ||||
| "Purple": "Mov", | ||||
| "Navy Blue": "Albastru marin", | ||||
| "Dark Turquoise": "Turcoaz \u00eenchis", | ||||
| "Dark Green": "Verde \u00eenchis", | ||||
| "Medium Blue": "Albastru mediu", | ||||
| "Medium Purple": "Mov mediu", | ||||
| "Midnight Blue": "Albastru \u00eenchis", | ||||
| "Yellow": "Galben", | ||||
| "Orange": "Portocaliu", | ||||
| "Red": "Ro\u0219u", | ||||
| "Light Gray": "Gri deschis", | ||||
| "Gray": "Gri", | ||||
| "Dark Yellow": "Galben \u00eenchis", | ||||
| "Dark Orange": "Portocaliu \u00eenchis", | ||||
| "Dark Red": "Ro\u0219u \u00eenchis", | ||||
| "Medium Gray": "Gri mediu", | ||||
| "Dark Gray": "Gri \u00eenchis", | ||||
| "Black": "Negru", | ||||
| "White": "Alb", | ||||
| "Switch to or from fullscreen mode": "Comutare pe sau de la modul ecran complet", | ||||
| "Open help dialog": "Deschide dialogul de ajutor", | ||||
| "history": "istoric", | ||||
| "styles": "stiluri", | ||||
| "formatting": "formatare", | ||||
| "alignment": "aliniere", | ||||
| "indentation": "indentare", | ||||
| "permanent pen": "stilou permanent", | ||||
| "comments": "comentarii" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/ru.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/ru.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('ru',{ | ||||
| "Redo": "\u0412\u0435\u0440\u043d\u0443\u0442\u044c", | ||||
| "Undo": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c", | ||||
| "Cut": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c", | ||||
| "Copy": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c", | ||||
| "Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c", | ||||
| "Select all": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0441\u0435", | ||||
| "New document": "\u041d\u043e\u0432\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442", | ||||
| "Ok": "OK", | ||||
| "Cancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c", | ||||
| "Visual aids": "\u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0438", | ||||
| "Bold": "\u0416\u0438\u0440\u043d\u044b\u0439 \u0448\u0440\u0438\u0444\u0442", | ||||
| "Italic": "\u041a\u0443\u0440\u0441\u0438\u0432", | ||||
| "Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u0435", | ||||
| "Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u0435", | ||||
| "Superscript": "\u041d\u0430\u0434\u0441\u0442\u0440\u043e\u0447\u043d\u044b\u0439", | ||||
| "Subscript": "\u041f\u043e\u0434\u0441\u0442\u0440\u043e\u0447\u043d\u044b\u0439", | ||||
| "Clear formatting": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", | ||||
| "Align left": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u043f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", | ||||
| "Align center": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u043f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", | ||||
| "Align right": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u043f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", | ||||
| "Justify": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c \u0442\u0435\u0441\u0442 \u043f\u043e \u0448\u0438\u0440\u0438\u043d\u0435", | ||||
| "Bullet list": "\u041c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", | ||||
| "Numbered list": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", | ||||
| "Decrease indent": "\u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f", | ||||
| "Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f", | ||||
| "Close": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c", | ||||
| "Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u044b", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u043f\u0440\u044f\u043c\u043e\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0431\u0443\u0444\u0435\u0440\u0443 \u043e\u0431\u043c\u0435\u043d\u0430. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u044f \u043a\u043b\u0430\u0432\u0438\u0448: Ctrl+X\/C\/V.", | ||||
| "Headers": "\u0412\u0435\u0440\u0445\u043d\u0438\u0435 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b\u044b", | ||||
| "Header 1": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 1", | ||||
| "Header 2": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 2", | ||||
| "Header 3": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 3", | ||||
| "Header 4": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 4", | ||||
| "Header 5": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 5", | ||||
| "Header 6": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 6", | ||||
| "Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438", | ||||
| "Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1", | ||||
| "Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2", | ||||
| "Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3", | ||||
| "Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4", | ||||
| "Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5", | ||||
| "Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6", | ||||
| "Preformatted": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "\u041a\u043e\u0434", | ||||
| "Paragraph": "\u0410\u0431\u0437\u0430\u0446", | ||||
| "Blockquote": "\u0411\u043b\u043e\u043a \u0446\u0438\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", | ||||
| "Inline": "\u0412\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0439", | ||||
| "Blocks": "\u0411\u043b\u043e\u043a\u0438", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0432\u0438\u0434\u0435 \u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430, \u043f\u043e\u043a\u0430 \u043d\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u043e\u043f\u0446\u0438\u044e.", | ||||
| "Fonts": "\u0428\u0440\u0438\u0444\u0442\u044b", | ||||
| "Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430", | ||||
| "Class": "\u041a\u043b\u0430\u0441\u0441", | ||||
| "Browse for an image": "\u0412\u044b\u0431\u043e\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", | ||||
| "OR": "\u0418\u041b\u0418", | ||||
| "Drop an image here": "\u041f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0441\u044e\u0434\u0430", | ||||
| "Upload": "\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c", | ||||
| "Block": "\u0411\u043b\u043e\u043a", | ||||
| "Align": "\u0412\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c", | ||||
| "Default": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439", | ||||
| "Circle": "\u041e\u043a\u0440\u0443\u0436\u043d\u043e\u0441\u0442\u0438", | ||||
| "Disc": "\u041a\u0440\u0443\u0433\u0438", | ||||
| "Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442\u044b", | ||||
| "Lower Alpha": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b", | ||||
| "Lower Greek": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b", | ||||
| "Lower Roman": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b", | ||||
| "Upper Alpha": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b", | ||||
| "Upper Roman": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b", | ||||
| "Anchor...": "\u042f\u043a\u043e\u0440\u044c...", | ||||
| "Name": "\u0418\u043c\u044f", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0434\u043e\u043b\u0436\u0435\u043d \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u0431\u0443\u043a\u0432\u044b, \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0441 \u0431\u0443\u043a\u0432\u044b, \u0446\u0438\u0444\u0440\u044b, \u0442\u0438\u0440\u0435, \u0442\u043e\u0447\u043a\u0438, \u0434\u0432\u043e\u0435\u0442\u043e\u0447\u0438\u044f \u0438\u043b\u0438 \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u044f.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. \u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0439\u0442\u0438?", | ||||
| "Restore last draft": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430", | ||||
| "Special character...": "\u0421\u043f\u0435\u0446. \u0441\u0438\u043c\u0432\u043e\u043b\u044b...", | ||||
| "Source code": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u043a\u043e\u0434", | ||||
| "Insert\/Edit code sample": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c\/\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430", | ||||
| "Language": "\u042f\u0437\u044b\u043a", | ||||
| "Code sample...": "\u041f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430...", | ||||
| "Color Picker": "\u041f\u0438\u043f\u0435\u0442\u043a\u0430 \u0446\u0432\u0435\u0442\u0430", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043b\u0435\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e", | ||||
| "Right to left": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0435\u0432\u043e", | ||||
| "Emoticons...": "\u0421\u043c\u0430\u0439\u043b\u0438\u043a\u0438...", | ||||
| "Metadata and Document Properties": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", | ||||
| "Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", | ||||
| "Keywords": "\u041a\u043b\u044e\u0447\u0438\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430", | ||||
| "Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", | ||||
| "Robots": "\u0420\u043e\u0431\u043e\u0442\u044b", | ||||
| "Author": "\u0410\u0432\u0442\u043e\u0440", | ||||
| "Encoding": "\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430", | ||||
| "Fullscreen": "\u041f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c", | ||||
| "Action": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435", | ||||
| "Shortcut": "\u042f\u0440\u043b\u044b\u043a", | ||||
| "Help": "\u041f\u043e\u043c\u043e\u0449\u044c", | ||||
| "Address": "\u0410\u0434\u0440\u0435\u0441", | ||||
| "Focus to menubar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043f\u0430\u043d\u0435\u043b\u0438 \u043c\u0435\u043d\u044e", | ||||
| "Focus to toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043f\u0430\u043d\u0435\u043b\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", | ||||
| "Focus to element path": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0435 \u043f\u0443\u0442\u0438", | ||||
| "Focus to contextual toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u043d\u043e\u0439 \u043f\u0430\u043d\u0435\u043b\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", | ||||
| "Insert link (if link plugin activated)": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 (\u0435\u0441\u043b\u0438 \u043f\u043b\u0430\u0433\u0438\u043d link \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d)", | ||||
| "Save (if save plugin activated)": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c (\u0435\u0441\u043b\u0438 \u043f\u043b\u0430\u0433\u0438\u043d save \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d)", | ||||
| "Find (if searchreplace plugin activated)": "\u041d\u0430\u0439\u0442\u0438 (\u0435\u0441\u043b\u0438 \u043f\u043b\u0430\u0433\u0438\u043d searchreplace \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d)", | ||||
| "Plugins installed ({0}):": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u044b ({0}):", | ||||
| "Premium plugins:": "\u041f\u0440\u0435\u043c\u0438\u0443\u043c \u043f\u043b\u0430\u0433\u0438\u043d\u044b:", | ||||
| "Learn more...": "\u0423\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435...", | ||||
| "You are using {0}": "\u0412\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435 {0}", | ||||
| "Plugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b", | ||||
| "Handy Shortcuts": "\u0413\u043e\u0440\u044f\u0447\u0438\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u0438", | ||||
| "Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f", | ||||
| "Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", | ||||
| "Image description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", | ||||
| "Source": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a", | ||||
| "Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440", | ||||
| "Constrain proportions": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438", | ||||
| "General": "\u041e\u0431\u0449\u0435\u0435", | ||||
| "Advanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435", | ||||
| "Style": "\u0421\u0442\u0438\u043b\u044c", | ||||
| "Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b", | ||||
| "Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b", | ||||
| "Border": "\u0420\u0430\u043c\u043a\u0430", | ||||
| "Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", | ||||
| "Image...": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435...", | ||||
| "Image list": "\u0421\u043f\u0438\u0441\u043e\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439", | ||||
| "Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u0440\u043e\u0442\u0438\u0432 \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0438", | ||||
| "Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u043e \u0447\u0430\u0441\u043e\u0432\u043e\u0439 \u0441\u0442\u0440\u0435\u043b\u043a\u0435", | ||||
| "Flip vertically": "\u041e\u0442\u0440\u0430\u0437\u0438\u0442\u044c \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0438", | ||||
| "Flip horizontally": "\u041e\u0442\u0440\u0430\u0437\u0438\u0442\u044c \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0438", | ||||
| "Edit image": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", | ||||
| "Image options": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", | ||||
| "Zoom in": "\u041f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u044c", | ||||
| "Zoom out": "\u041e\u0442\u0434\u0430\u043b\u0438\u0442\u044c", | ||||
| "Crop": "\u041e\u0431\u0440\u0435\u0437\u0430\u0442\u044c", | ||||
| "Resize": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0440\u0430\u0437\u043c\u0435\u0440", | ||||
| "Orientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f", | ||||
| "Brightness": "\u042f\u0440\u043a\u043e\u0441\u0442\u044c", | ||||
| "Sharpen": "\u0427\u0435\u0442\u043a\u043e\u0441\u0442\u044c", | ||||
| "Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442", | ||||
| "Color levels": "\u0426\u0432\u0435\u0442\u043e\u0432\u044b\u0435 \u0443\u0440\u043e\u0432\u043d\u0438", | ||||
| "Gamma": "\u0413\u0430\u043c\u043c\u0430", | ||||
| "Invert": "\u0418\u043d\u0432\u0435\u0440\u0441\u0438\u044f", | ||||
| "Apply": "\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c", | ||||
| "Back": "\u041d\u0430\u0437\u0430\u0434", | ||||
| "Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u0443\/\u0432\u0440\u0435\u043c\u044f", | ||||
| "Date\/time": "\u0414\u0430\u0442\u0430\/\u0432\u0440\u0435\u043c\u044f", | ||||
| "Insert\/Edit Link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443", | ||||
| "Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443", | ||||
| "Text to display": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442", | ||||
| "Url": "\u0410\u0434\u0440\u0435\u0441 \u0441\u0441\u044b\u043b\u043a\u0438", | ||||
| "Open link in...": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 \u0432...", | ||||
| "Current window": "\u0422\u0435\u043a\u0443\u0449\u0435\u0435 \u043e\u043a\u043d\u043e", | ||||
| "None": "\u041d\u0435\u0442", | ||||
| "New window": "\u0412 \u043d\u043e\u0432\u043e\u043c \u043e\u043a\u043d\u0435", | ||||
| "Remove link": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443", | ||||
| "Anchors": "\u042f\u043a\u043e\u0440\u044f", | ||||
| "Link...": "\u0421\u0441\u044b\u043b\u043a\u0430...", | ||||
| "Paste or type a link": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0441\u044b\u043b\u043a\u0443", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u043c \u0430\u0434\u0440\u0435\u0441\u043e\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abmailto:\u00bb?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u0441\u044b\u043b\u043a\u043e\u0439. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abhttp:\/\/\u00bb?", | ||||
| "Link list": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u0441\u044b\u043b\u043e\u043a", | ||||
| "Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e", | ||||
| "Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e", | ||||
| "Insert\/edit media": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e", | ||||
| "Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a", | ||||
| "Alternative source URL": "URL \u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430", | ||||
| "Media poster (Image URL)": "\u041f\u043e\u0441\u0442\u0435\u0440 \u043c\u0443\u043b\u044c\u0442\u0438\u043c\u0435\u0434\u0438\u0430 (URL \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f)", | ||||
| "Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0435:", | ||||
| "Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438", | ||||
| "Media...": "\u041c\u0443\u043b\u044c\u0442\u0438\u043c\u0435\u0434\u0438\u0430...", | ||||
| "Nonbreaking space": "\u041d\u0435\u0440\u0430\u0437\u0440\u044b\u0432\u043d\u044b\u0439 \u043f\u0440\u043e\u0431\u0435\u043b", | ||||
| "Page break": "\u0420\u0430\u0437\u0440\u044b\u0432 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b", | ||||
| "Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0442\u0435\u043a\u0441\u0442", | ||||
| "Preview": "\u041f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440", | ||||
| "Print...": "\u041d\u0430\u043f\u0435\u0447\u0430\u0442\u0430\u0442\u044c...", | ||||
| "Save": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c", | ||||
| "Find": "\u041d\u0430\u0439\u0442\u0438", | ||||
| "Replace with": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430", | ||||
| "Replace": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c", | ||||
| "Replace all": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435", | ||||
| "Previous": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0439", | ||||
| "Next": "\u0412\u043d\u0438\u0437", | ||||
| "Find and replace...": "\u041d\u0430\u0439\u0442\u0438 \u0438 \u0437\u0430\u043c\u0435\u043d\u0438\u0442\u044c...", | ||||
| "Could not find the specified string.": "\u0417\u0430\u0434\u0430\u043d\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430", | ||||
| "Match case": "\u0423\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0438\u0441\u0442\u0440", | ||||
| "Find whole words only": "\u041d\u0430\u0439\u0442\u0438 \u0442\u043e\u043b\u044c\u043a\u043e \u0446\u0435\u043b\u044b\u0435 \u0441\u043b\u043e\u0432\u0430", | ||||
| "Spell check": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043e\u0440\u0444\u043e\u0433\u0440\u0430\u0444\u0438\u0438", | ||||
| "Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c", | ||||
| "Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435", | ||||
| "Finish": "\u0417\u0430\u043a\u043e\u043d\u0447\u0438\u0442\u044c", | ||||
| "Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0441\u043b\u043e\u0432\u0430\u0440\u044c", | ||||
| "Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443", | ||||
| "Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u044b", | ||||
| "Delete table": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443", | ||||
| "Cell": "\u042f\u0447\u0435\u0439\u043a\u0430", | ||||
| "Row": "\u0421\u0442\u0440\u043e\u043a\u0430", | ||||
| "Column": "\u0421\u0442\u043e\u043b\u0431\u0435\u0446", | ||||
| "Cell properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u044f\u0447\u0435\u0439\u043a\u0438", | ||||
| "Merge cells": "\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0438", | ||||
| "Split cell": "\u0420\u0430\u0437\u0431\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0443", | ||||
| "Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443", | ||||
| "Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443", | ||||
| "Delete row": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443", | ||||
| "Row properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u0442\u0440\u043e\u043a\u0438", | ||||
| "Cut row": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443", | ||||
| "Copy row": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443", | ||||
| "Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443", | ||||
| "Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443", | ||||
| "Insert column before": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043b\u0435\u0432\u0430", | ||||
| "Insert column after": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043f\u0440\u0430\u0432\u0430", | ||||
| "Delete column": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446", | ||||
| "Cols": "\u0421\u0442\u043e\u043b\u0431\u0446\u044b", | ||||
| "Rows": "\u0421\u0442\u0440\u043e\u043a\u0438", | ||||
| "Width": "\u0428\u0438\u0440\u0438\u043d\u0430", | ||||
| "Height": "\u0412\u044b\u0441\u043e\u0442\u0430", | ||||
| "Cell spacing": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f", | ||||
| "Cell padding": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f", | ||||
| "Show caption": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043f\u043e\u0434\u043f\u0438\u0441\u044c", | ||||
| "Left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", | ||||
| "Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", | ||||
| "Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", | ||||
| "Cell type": "\u0422\u0438\u043f \u044f\u0447\u0435\u0439\u043a\u0438", | ||||
| "Scope": "Scope", | ||||
| "Alignment": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435", | ||||
| "H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435", | ||||
| "V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435", | ||||
| "Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u0443", | ||||
| "Middle": "\u041f\u043e \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435", | ||||
| "Bottom": "\u041f\u043e \u043d\u0438\u0437\u0443", | ||||
| "Header cell": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", | ||||
| "Row group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u0441\u0442\u0440\u043e\u043a", | ||||
| "Column group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u043a\u043e\u043b\u043e\u043d\u043e\u043a", | ||||
| "Row type": "\u0422\u0438\u043f \u0441\u0442\u0440\u043e\u043a\u0438", | ||||
| "Header": "\u0428\u0430\u043f\u043a\u0430", | ||||
| "Body": "\u0422\u0435\u043b\u043e", | ||||
| "Footer": "\u041d\u0438\u0437", | ||||
| "Border color": "\u0426\u0432\u0435\u0442 \u0440\u0430\u043c\u043a\u0438", | ||||
| "Insert template...": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d...", | ||||
| "Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b", | ||||
| "Template": "\u0428\u0430\u0431\u043b\u043e\u043d", | ||||
| "Text color": "\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430", | ||||
| "Background color": "\u0426\u0432\u0435\u0442 \u0444\u043e\u043d\u0430", | ||||
| "Custom...": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c\u2026", | ||||
| "Custom color": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0446\u0432\u0435\u0442", | ||||
| "No color": "\u0411\u0435\u0437 \u0446\u0432\u0435\u0442\u0430", | ||||
| "Remove color": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0446\u0432\u0435\u0442", | ||||
| "Table of Contents": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", | ||||
| "Show blocks": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0431\u043b\u043e\u043a\u0438", | ||||
| "Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b", | ||||
| "Word count": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043b\u043e\u0432", | ||||
| "Count": "\u041f\u043e\u0434\u0441\u0447\u0435\u0442", | ||||
| "Document": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442", | ||||
| "Selection": "\u0412\u044b\u0431\u043e\u0440", | ||||
| "Words": "\u0421\u043b\u043e\u0432\u0430", | ||||
| "Words: {0}": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043b\u043e\u0432: {0}", | ||||
| "{0} words": "\u0441\u043b\u043e\u0432: {0}", | ||||
| "File": "\u0424\u0430\u0439\u043b", | ||||
| "Edit": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c", | ||||
| "Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c", | ||||
| "View": "\u0412\u0438\u0434", | ||||
| "Format": "\u0424\u043e\u0440\u043c\u0430\u0442", | ||||
| "Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430", | ||||
| "Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b", | ||||
| "Powered by {0}": "\u041f\u0440\u0438 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0435 {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-F9 \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u043c\u0435\u043d\u044e, ALT-F10 \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432, ALT-0 \u0434\u043b\u044f \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u043e\u043c\u043e\u0449\u0438.", | ||||
| "Image title": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", | ||||
| "Border width": "\u0428\u0438\u0440\u0438\u043d\u0430 \u0440\u0430\u043c\u043a\u0438", | ||||
| "Border style": "\u0421\u0442\u0438\u043b\u044c \u0440\u0430\u043c\u043a\u0438", | ||||
| "Error": "\u041e\u0448\u0438\u0431\u043a\u0430", | ||||
| "Warn": "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435", | ||||
| "Valid": "\u0414\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439", | ||||
| "To open the popup, press Shift+Enter": "\u0427\u0442\u043e\u0431\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0432\u0441\u043f\u043b\u044b\u0432\u0430\u044e\u0449\u0435\u0435 \u043e\u043a\u043d\u043e, \u043d\u0430\u0436\u043c\u0438\u0442\u0435 Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u041f\u043e\u043b\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-0, \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u043f\u0440\u0430\u0432\u043a\u0443.", | ||||
| "System Font": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0448\u0440\u0438\u0444\u0442", | ||||
| "Failed to upload image: {0}": "\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430: {0} \u0438\u0437 URL {1}", | ||||
| "Failed to load plugin url: {0}": "\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 URL \u043f\u043b\u0430\u0433\u0438\u043d\u0430: {0}", | ||||
| "Failed to initialize plugin: {0}": "\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u043b\u0430\u0433\u0438\u043d\u0430: {0}", | ||||
| "example": "\u043f\u0440\u0438\u043c\u0435\u0440", | ||||
| "Search": "\u041f\u043e\u0438\u0441\u043a", | ||||
| "All": "\u0412\u0441\u0435", | ||||
| "Currency": "\u0412\u0430\u043b\u044e\u0442\u0430", | ||||
| "Text": "\u0422\u0435\u043a\u0441\u0442", | ||||
| "Quotations": "\u0426\u0438\u0442\u0430\u0442\u044b", | ||||
| "Mathematical": "\u041c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435", | ||||
| "Extended Latin": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u0430\u044f \u043b\u0430\u0442\u044b\u043d\u044c", | ||||
| "Symbols": "\u0421\u0438\u043c\u0432\u043e\u043b\u044b", | ||||
| "Arrows": "\u0421\u0442\u0440\u0435\u043b\u043a\u0438", | ||||
| "User Defined": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u043c\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c", | ||||
| "dollar sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0434\u043e\u043b\u043b\u0430\u0440\u0430", | ||||
| "currency sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0432\u0430\u043b\u044e\u0442\u044b", | ||||
| "euro-currency sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0435\u0432\u0440\u043e", | ||||
| "colon sign": "\u0414\u0432\u043e\u0435\u0442\u043e\u0447\u0438\u0435", | ||||
| "cruzeiro sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043a\u0440\u0443\u0437\u0435\u0439\u0440\u043e", | ||||
| "french franc sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0444\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u043e\u0433\u043e \u0444\u0440\u0430\u043d\u043a\u0430", | ||||
| "lira sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043b\u0438\u0440\u044b", | ||||
| "mill sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0434\u0435\u0441\u044f\u0442\u043e\u0439 \u0447\u0430\u0441\u0442\u0438 \u0446\u0435\u043d\u0442\u0430", | ||||
| "naira sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043d\u0430\u0439\u0440\u044b", | ||||
| "peseta sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043f\u0435\u0441\u0435\u0442\u044b", | ||||
| "rupee sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0440\u0443\u043f\u0438\u0438", | ||||
| "won sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0432\u043e\u043d\u044b", | ||||
| "new sheqel sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0448\u0435\u043a\u0435\u043b\u044f", | ||||
| "dong sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0434\u043e\u043d\u0433\u0430", | ||||
| "kip sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043a\u0438\u043f\u044b", | ||||
| "tugrik sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0442\u0443\u0433\u0440\u0438\u043a\u0430", | ||||
| "drachma sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0434\u0440\u0430\u0445\u043c\u044b", | ||||
| "german penny symbol": "\u0441\u0438\u043c\u0432\u043e\u043b \u043f\u0444\u0435\u043d\u043d\u0438\u0433\u0430", | ||||
| "peso sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043f\u0435\u0441\u043e", | ||||
| "guarani sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0433\u0443\u0430\u0440\u0430\u043d\u0438", | ||||
| "austral sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0430\u0443\u0441\u0442\u0440\u0430\u043b\u0430", | ||||
| "hryvnia sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0433\u0440\u0438\u0432\u043d\u0438", | ||||
| "cedi sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0441\u0435\u0434\u0438", | ||||
| "livre tournois sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043b\u0438\u0432\u0440\u044b", | ||||
| "spesmilo sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0441\u043f\u0435\u0441\u043c\u0438\u043b\u043e", | ||||
| "tenge sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0442\u0435\u043d\u044c\u0433\u0435", | ||||
| "indian rupee sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0438\u043d\u0434\u0438\u0439\u0441\u043a\u043e\u0439 \u0440\u0443\u043f\u0438\u0438", | ||||
| "turkish lira sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0442\u0443\u0440\u0435\u0446\u043a\u043e\u0439 \u043b\u0438\u0440\u044b", | ||||
| "nordic mark sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043c\u0430\u0440\u043a\u0438", | ||||
| "manat sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u043c\u0430\u043d\u0430\u0442\u0430", | ||||
| "ruble sign": "\u0421\u0438\u043c\u0432\u043e\u043b \u0440\u0443\u0431\u043b\u044f", | ||||
| "yen character": "\u0441\u0438\u043c\u0432\u043e\u043b \u0438\u0435\u043d\u044b", | ||||
| "yuan character": "\u0441\u0438\u043c\u0432\u043e\u043b \u044e\u0430\u043d\u044f", | ||||
| "yuan character, in hong kong and taiwan": "\u0421\u0438\u043c\u0432\u043e\u043b \u044e\u0430\u043d\u044f, \u0413\u043e\u043d\u043a\u043e\u043d\u0433 \u0438 \u0422\u0430\u0439\u0432\u0430\u043d\u044c", | ||||
| "yen\/yuan character variant one": "\u0441\u0438\u043c\u0432\u043e\u043b \u0438\u0435\u043d\u044b\/\u044e\u0430\u043d\u044f, \u0432\u0430\u0440\u0438\u0430\u043d\u0442 1", | ||||
| "Loading emoticons...": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0441\u043c\u0430\u0439\u043b\u043e\u0432...", | ||||
| "Could not load emoticons": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b\u044b", | ||||
| "People": "\u041b\u044e\u0434\u0438", | ||||
| "Animals and Nature": "\u0416\u0438\u0432\u043e\u0442\u043d\u044b\u0435 \u0438 \u043f\u0440\u0438\u0440\u043e\u0434\u0430", | ||||
| "Food and Drink": "\u0415\u0434\u0430 \u0438 \u043d\u0430\u043f\u0438\u0442\u043a\u0438", | ||||
| "Activity": "\u0414\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c", | ||||
| "Travel and Places": "\u041f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0438 \u043c\u0435\u0441\u0442\u0430", | ||||
| "Objects": "\u041e\u0431\u044a\u0435\u043a\u0442\u044b", | ||||
| "Flags": "\u0424\u043b\u0430\u0433\u0438", | ||||
| "Characters": "\u0421\u0438\u043c\u0432\u043e\u043b\u044b", | ||||
| "Characters (no spaces)": "\u0421\u0438\u043c\u0432\u043e\u043b\u044b (\u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u0435\u043b\u043e\u0432)", | ||||
| "{0} characters": "{0} \u0441\u0438\u043c\u0432\u043e\u043b.", | ||||
| "Error: Form submit field collision.": "\u041e\u0448\u0438\u0431\u043a\u0430: \u043a\u043e\u043d\u0444\u043b\u0438\u043a\u0442 \u043f\u043e\u043b\u0435\u0439 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u0444\u043e\u0440\u043c\u044b.", | ||||
| "Error: No form element found.": "\u041e\u0448\u0438\u0431\u043a\u0430: \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0444\u043e\u0440\u043c\u044b.", | ||||
| "Update": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c", | ||||
| "Color swatch": "\u041e\u0431\u0440\u0430\u0437\u0435\u0446 \u0446\u0432\u0435\u0442\u0430", | ||||
| "Turquoise": "\u0411\u0438\u0440\u044e\u0437\u043e\u0432\u044b\u0439", | ||||
| "Green": "\u0417\u0435\u043b\u0435\u043d\u044b\u0439", | ||||
| "Blue": "\u0421\u0438\u043d\u0438\u0439", | ||||
| "Purple": "\u0420\u043e\u0437\u043e\u0432\u044b\u0439", | ||||
| "Navy Blue": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0438\u0439", | ||||
| "Dark Turquoise": "\u0422\u0435\u043c\u043d\u043e-\u0431\u0438\u0440\u044e\u0437\u043e\u0432\u044b\u0439", | ||||
| "Dark Green": "\u0422\u0435\u043c\u043d\u043e-\u0437\u0435\u043b\u0435\u043d\u044b\u0439", | ||||
| "Medium Blue": "\u0421\u0440\u0435\u0434\u043d\u0438\u0439 \u0441\u0438\u043d\u0438\u0439", | ||||
| "Medium Purple": "\u0423\u043c\u0435\u0440\u0435\u043d\u043d\u043e \u043f\u0443\u0440\u043f\u0443\u0440\u043d\u044b\u0439", | ||||
| "Midnight Blue": "\u0427\u0435\u0440\u043d\u043e-\u0441\u0438\u043d\u0438\u0439", | ||||
| "Yellow": "\u0416\u0435\u043b\u0442\u044b\u0439", | ||||
| "Orange": "\u041e\u0440\u0430\u043d\u0436\u0435\u0432\u044b\u0439", | ||||
| "Red": "\u041a\u0440\u0430\u0441\u043d\u044b\u0439", | ||||
| "Light Gray": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0441\u0435\u0440\u044b\u0439", | ||||
| "Gray": "\u0421\u0435\u0440\u044b\u0439", | ||||
| "Dark Yellow": "\u0422\u0435\u043c\u043d\u043e-\u0436\u0435\u043b\u0442\u044b\u0439", | ||||
| "Dark Orange": "\u0422\u0435\u043c\u043d\u043e-\u043e\u0440\u0430\u043d\u0436\u0435\u0432\u044b\u0439", | ||||
| "Dark Red": "\u0422\u0435\u043c\u043d\u043e-\u043a\u0440\u0430\u0441\u043d\u044b\u0439", | ||||
| "Medium Gray": "\u0423\u043c\u0435\u0440\u0435\u043d\u043d\u043e \u0441\u0435\u0440\u044b\u0439", | ||||
| "Dark Gray": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0435\u0440\u044b\u0439", | ||||
| "Light Green": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0437\u0435\u043b\u0435\u043d\u044b\u0439", | ||||
| "Light Yellow": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0436\u0435\u043b\u0442\u044b\u0439", | ||||
| "Light Red": "\u0421\u0432\u0435\u0442\u043b\u043e-\u043a\u0440\u0430\u0441\u043d\u044b\u0439", | ||||
| "Light Purple": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0444\u0438\u043e\u043b\u0435\u0442\u043e\u0432\u044b\u0439", | ||||
| "Light Blue": "\u0421\u0432\u0435\u0442\u043b\u043e-\u0441\u0438\u043d\u0438\u0439", | ||||
| "Dark Purple": "\u0422\u0435\u043c\u043d\u043e-\u0444\u0438\u043e\u043b\u0435\u0442\u043e\u0432\u044b\u0439", | ||||
| "Dark Blue": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0438\u0439", | ||||
| "Black": "\u0427\u0435\u0440\u043d\u044b\u0439", | ||||
| "White": "\u0411\u0435\u043b\u044b\u0439", | ||||
| "Switch to or from fullscreen mode": "\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c", | ||||
| "Open help dialog": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u043f\u0440\u0430\u0432\u043a\u0443", | ||||
| "history": "\u0438\u0441\u0442\u043e\u0440\u0438\u044f", | ||||
| "styles": "\u0441\u0442\u0438\u043b\u0438", | ||||
| "formatting": "\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", | ||||
| "alignment": "\u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435", | ||||
| "indentation": "\u043e\u0442\u0441\u0442\u0443\u043f", | ||||
| "permanent pen": "\u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e\u0435 \u043f\u0435\u0440\u043e", | ||||
| "comments": "\u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438", | ||||
| "Format Painter": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u043e \u043e\u0431\u0440\u0430\u0437\u0446\u0443", | ||||
| "Insert\/edit iframe": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442 iframe", | ||||
| "Capitalization": "\u041f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u043f\u0438\u0441\u043d\u044b\u0445 \u0431\u0443\u043a\u0432", | ||||
| "lowercase": "\u043d\u0438\u0436\u043d\u0438\u0439 \u0440\u0435\u0433\u0438\u0441\u0442\u0440", | ||||
| "UPPERCASE": "\u0412\u0415\u0420\u0425\u041d\u0418\u0419 \u0420\u0415\u0413\u0418\u0421\u0422\u0420", | ||||
| "Title Case": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f", | ||||
| "Permanent Pen Properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u043e\u0433\u043e \u043f\u0435\u0440\u0430", | ||||
| "Permanent pen properties...": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u0435\u0440\u043c\u0430\u043d\u0435\u043d\u0442\u043d\u043e\u0433\u043e \u043f\u0435\u0440\u0430...", | ||||
| "Font": "\u0428\u0440\u0438\u0444\u0442", | ||||
| "Size": "\u0420\u0430\u0437\u043c\u0435\u0440", | ||||
| "More...": "\u0411\u043e\u043b\u044c\u0448\u0435...", | ||||
| "Spellcheck Language": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f", | ||||
| "Select...": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c...", | ||||
| "Preferences": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0435\u043d\u0438\u044f", | ||||
| "Yes": "\u0414\u0430", | ||||
| "No": "\u041d\u0435\u0442", | ||||
| "Keyboard Navigation": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u044b", | ||||
| "Version": "\u0412\u0435\u0440\u0441\u0438\u044f", | ||||
| "Anchor": "\u042f\u043a\u043e\u0440\u044c", | ||||
| "Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b", | ||||
| "Code sample": "\u041f\u0440\u0438\u043c\u0435\u0440 \u043a\u043e\u0434\u0430", | ||||
| "Color": "\u0426\u0432\u0435\u0442", | ||||
| "Emoticons": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b", | ||||
| "Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", | ||||
| "Image": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", | ||||
| "Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443", | ||||
| "Target": "\u041e\u0442\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443", | ||||
| "Link": "\u0421\u0441\u044b\u043b\u043a\u0430", | ||||
| "Poster": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", | ||||
| "Media": "\u0412\u0438\u0434\u0435\u043e", | ||||
| "Print": "\u041f\u0435\u0447\u0430\u0442\u044c", | ||||
| "Prev": "\u0412\u0432\u0435\u0440\u0445", | ||||
| "Find and replace": "\u041f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430", | ||||
| "Whole words": "\u0421\u043b\u043e\u0432\u043e \u0446\u0435\u043b\u0438\u043a\u043e\u043c", | ||||
| "Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", | ||||
| "Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", | ||||
| "Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d" | ||||
| }); | ||||
							
								
								
									
										418
									
								
								Modules/TinyMCE/langs/sk.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										418
									
								
								Modules/TinyMCE/langs/sk.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,418 @@ | ||||
| tinymce.addI18n('sk',{ | ||||
| "Redo": "Znova", | ||||
| "Undo": "Sp\u00e4\u0165", | ||||
| "Cut": "Vystrihn\u00fa\u0165", | ||||
| "Copy": "Kop\u00edrova\u0165", | ||||
| "Paste": "Prilepi\u0165", | ||||
| "Select all": "Ozna\u010di\u0165 v\u0161etko", | ||||
| "New document": "Nov\u00fd dokument", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Zru\u0161i\u0165", | ||||
| "Visual aids": "Vizu\u00e1lne pom\u00f4cky", | ||||
| "Bold": "Tu\u010dn\u00e9", | ||||
| "Italic": "Kurz\u00edva", | ||||
| "Underline": "Pod\u010diarknut\u00e9", | ||||
| "Strikethrough": "Pre\u010diarknut\u00e9", | ||||
| "Superscript": "Horn\u00fd index", | ||||
| "Subscript": "Doln\u00fd index", | ||||
| "Clear formatting": "Vymaza\u0165 form\u00e1tovanie", | ||||
| "Align left": "Zarovna\u0165 v\u013eavo", | ||||
| "Align center": "Zarovna\u0165 na stred", | ||||
| "Align right": "Zarovna\u0165 vpravo", | ||||
| "Justify": "Zarovna\u0165", | ||||
| "Bullet list": "Zoznam s odr\u00e1\u017ekami", | ||||
| "Numbered list": "\u010c\u00edslovan\u00fd zoznam", | ||||
| "Decrease indent": "Zmen\u0161i\u0165 odsadenie", | ||||
| "Increase indent": "Zv\u00e4\u010d\u0161i\u0165 odsadenie", | ||||
| "Close": "Zatvori\u0165", | ||||
| "Formats": "Form\u00e1ty", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prehliada\u010d nepodporuje priamy pr\u00edstup do schr\u00e1nky. Pou\u017eite kl\u00e1vesov\u00e9 skratky Ctrl+X\/C\/V.", | ||||
| "Headers": "Z\u00e1hlavia", | ||||
| "Header 1": "Z\u00e1hlavie 1", | ||||
| "Header 2": "Z\u00e1hlavie 2", | ||||
| "Header 3": "Z\u00e1hlavie 3", | ||||
| "Header 4": "Z\u00e1hlavie 4", | ||||
| "Header 5": "Z\u00e1hlavie 5", | ||||
| "Header 6": "Z\u00e1hlavie 6", | ||||
| "Headings": "Nadpisy", | ||||
| "Heading 1": "Nadpis 1", | ||||
| "Heading 2": "Nadpis 2", | ||||
| "Heading 3": "Nadpis 3", | ||||
| "Heading 4": "Nadpis 4", | ||||
| "Heading 5": "Nadpis 5", | ||||
| "Heading 6": "Nadpis 6", | ||||
| "Preformatted": "Predform\u00e1tovan\u00e9", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "K\u00f3d", | ||||
| "Paragraph": "Odstavec", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Vlo\u017een\u00e9 \u0161t\u00fdly", | ||||
| "Blocks": "Bloky", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Vkladanie je v m\u00f3de neform\u00e1tovan\u00e9ho textu. Vkladan\u00fd obsah bude vlo\u017een\u00fd ako neform\u00e1tovan\u00fd, a\u017e pok\u00fdm t\u00fato mo\u017enos\u0165 nevypnete.", | ||||
| "Fonts": "Typy p\u00edsma", | ||||
| "Font Sizes": "Ve\u013ekosti p\u00edsma", | ||||
| "Class": "Trieda", | ||||
| "Browse for an image": "N\u00e1js\u0165 obr\u00e1zok", | ||||
| "OR": "ALEBO", | ||||
| "Drop an image here": "Pretiahnite obr\u00e1zok sem", | ||||
| "Upload": "Nahra\u0165", | ||||
| "Block": "Blok", | ||||
| "Align": "Zarovna\u0165", | ||||
| "Default": "V\u00fdchodzie", | ||||
| "Circle": "Kruh", | ||||
| "Disc": "Disk", | ||||
| "Square": "\u0160tvorec", | ||||
| "Lower Alpha": "Mal\u00e9 p\u00edsmen\u00e1", | ||||
| "Lower Greek": "Mal\u00e9 gr\u00e9cke p\u00edsmen\u00e1", | ||||
| "Lower Roman": "Mal\u00e9 r\u00edmske \u010d\u00edslice", | ||||
| "Upper Alpha": "Ve\u013ek\u00e9 p\u00edsmen\u00e1", | ||||
| "Upper Roman": "Ve\u013ek\u00e9 r\u00edmske \u010d\u00edslice", | ||||
| "Anchor...": "Kotva...", | ||||
| "Name": "N\u00e1zov", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id by malo za\u010d\u00edna\u0165 p\u00edsmenom, nasledovan\u00e9 p\u00edsmenami, \u010d\u00edslami, pom\u013a\u010dkami, bodkami, dvojbodkami alebo podtr\u017en\u00edkmi.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zmeny, naozaj chcete opusti\u0165 str\u00e1nku?", | ||||
| "Restore last draft": "Obnovi\u0165 posledn\u00fd koncept", | ||||
| "Special character...": "\u0160peci\u00e1lny znak...", | ||||
| "Source code": "Zdrojov\u00fd k\u00f3d", | ||||
| "Insert\/Edit code sample": "Vlo\u017ei\u0165\/upravi\u0165 vzorku k\u00f3du", | ||||
| "Language": "Jazyk", | ||||
| "Code sample...": "Vzorka k\u00f3du...", | ||||
| "Color Picker": "V\u00fdber farieb", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Z\u013eava doprava", | ||||
| "Right to left": "Sprava do\u013eava", | ||||
| "Emoticons...": "Smajl\u00edky...", | ||||
| "Metadata and Document Properties": "Meta\u00fadaje a vlastnosti dokumentu", | ||||
| "Title": "Nadpis", | ||||
| "Keywords": "K\u013e\u00fa\u010dov\u00e9 slov\u00e1", | ||||
| "Description": "Popis", | ||||
| "Robots": "Preh\u013ead\u00e1vacie roboty", | ||||
| "Author": "Autor", | ||||
| "Encoding": "K\u00f3dovanie", | ||||
| "Fullscreen": "Na cel\u00fa obrazovku", | ||||
| "Action": "Action", | ||||
| "Shortcut": "Shortcut", | ||||
| "Help": "Help", | ||||
| "Address": "Address", | ||||
| "Focus to menubar": "Focus to menubar", | ||||
| "Focus to toolbar": "Focus to toolbar", | ||||
| "Focus to element path": "Focus to element path", | ||||
| "Focus to contextual toolbar": "Focus to contextual toolbar", | ||||
| "Insert link (if link plugin activated)": "Insert link (if link plugin activated)", | ||||
| "Save (if save plugin activated)": "Save (if save plugin activated)", | ||||
| "Find (if searchreplace plugin activated)": "Find (if searchreplace plugin activated)", | ||||
| "Plugins installed ({0}):": "Plugins installed ({0}):", | ||||
| "Premium plugins:": "Premium plugins:", | ||||
| "Learn more...": "Learn more...", | ||||
| "You are using {0}": "You are using {0}", | ||||
| "Plugins": "Pluginy", | ||||
| "Handy Shortcuts": "U\u017eito\u010dn\u00e9 odkazy", | ||||
| "Horizontal line": "Horizont\u00e1lna \u010diara", | ||||
| "Insert\/edit image": "Vlo\u017ei\u0165\/upravi\u0165 obr\u00e1zok", | ||||
| "Image description": "Popis obr\u00e1zku", | ||||
| "Source": "Zdroj", | ||||
| "Dimensions": "Rozmery", | ||||
| "Constrain proportions": "Vymedzen\u00e9 proporcie", | ||||
| "General": "Hlavn\u00e9", | ||||
| "Advanced": "Pokro\u010dil\u00e9", | ||||
| "Style": "\u0160t\u00fdl", | ||||
| "Vertical space": "Vertik\u00e1lny priestor", | ||||
| "Horizontal space": "Horizont\u00e1lny priestor", | ||||
| "Border": "Or\u00e1movanie", | ||||
| "Insert image": "Vlo\u017ei\u0165 obr\u00e1zok", | ||||
| "Image...": "Obr\u00e1zok...", | ||||
| "Image list": "Zoznam obr\u00e1zkov", | ||||
| "Rotate counterclockwise": "Oto\u010di\u0165 proti smeru hodinov\u00fdch ru\u010di\u010diek", | ||||
| "Rotate clockwise": "Oto\u010di\u0165 v smere hodinov\u00fdch ru\u010di\u010diek", | ||||
| "Flip vertically": "Preklopi\u0165 vertik\u00e1lne", | ||||
| "Flip horizontally": "Preklopi\u0165 horizont\u00e1lne", | ||||
| "Edit image": "Upravi\u0165 obr\u00e1zok", | ||||
| "Image options": "Mo\u017enosti obr\u00e1zku", | ||||
| "Zoom in": "Pribl\u00ed\u017ei\u0165", | ||||
| "Zoom out": "Oddiali\u0165", | ||||
| "Crop": "Vyreza\u0165", | ||||
| "Resize": "Zmeni\u0165 ve\u013ekos\u0165", | ||||
| "Orientation": "Orient\u00e1cia", | ||||
| "Brightness": "Jas", | ||||
| "Sharpen": "Zaostri\u0165", | ||||
| "Contrast": "Kontrast", | ||||
| "Color levels": "\u00darovne farieb", | ||||
| "Gamma": "Gama", | ||||
| "Invert": "Invertova\u0165", | ||||
| "Apply": "Pou\u017ei\u0165", | ||||
| "Back": "Sp\u00e4\u0165", | ||||
| "Insert date\/time": "Vlo\u017ei\u0165 d\u00e1tum\/\u010das", | ||||
| "Date\/time": "D\u00e1tum\/\u010das", | ||||
| "Insert\/Edit Link": "Vlo\u017ei\u0165\/Upravi\u0165 odkaz", | ||||
| "Insert\/edit link": "Vlo\u017ei\u0165\/upravi\u0165 odkaz", | ||||
| "Text to display": "Zobrazen\u00fd text", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Otvori\u0165 odkaz v...", | ||||
| "Current window": "Aktu\u00e1lne okno", | ||||
| "None": "\u017diadne", | ||||
| "New window": "Nov\u00e9 okno", | ||||
| "Remove link": "Odstr\u00e1ni\u0165 odkaz", | ||||
| "Anchors": "Kotvy", | ||||
| "Link...": "Odkaz...", | ||||
| "Paste or type a link": "Prilepte alebo nap\u00ed\u0161te odkaz", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, ktor\u00fa ste vlo\u017eili je pravdepodobne emailov\u00e1 adresa. \u017del\u00e1te si prida\u0165 vy\u017eadovan\u00fa mailto: predponu?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL adresa ktor\u00fa ste zadali vyzer\u00e1 ako extern\u00fd odkaz. Chcete prida\u0165 vy\u017eadovan\u00fa http:\/\/ predponu?", | ||||
| "Link list": "Zoznam odkazov", | ||||
| "Insert video": "Vlo\u017ei\u0165 video", | ||||
| "Insert\/edit video": "Vlo\u017ei\u0165\/upravi\u0165 video", | ||||
| "Insert\/edit media": "Vlo\u017ei\u0165\/upravi\u0165 m\u00e9di\u00e1", | ||||
| "Alternative source": "Alternat\u00edvny zdroj", | ||||
| "Alternative source URL": "Alternat\u00edvny zdroj URL", | ||||
| "Media poster (Image URL)": "Obr\u00e1zok m\u00e9dia (URL obr\u00e1zka)", | ||||
| "Paste your embed code below:": "Vlo\u017ete k\u00f3d pre vlo\u017eenie na str\u00e1nku:", | ||||
| "Embed": "Vlo\u017een\u00e9", | ||||
| "Media...": "M\u00e9di\u00e1...", | ||||
| "Nonbreaking space": "Nedelite\u013en\u00e1 medzera", | ||||
| "Page break": "Zalomenie str\u00e1nky", | ||||
| "Paste as text": "Vlo\u017ei\u0165 ako text", | ||||
| "Preview": "N\u00e1h\u013ead", | ||||
| "Print...": "Tla\u010d...", | ||||
| "Save": "Ulo\u017ei\u0165", | ||||
| "Find": "H\u013eada\u0165", | ||||
| "Replace with": "Nahradi\u0165 za", | ||||
| "Replace": "Nahradi\u0165", | ||||
| "Replace all": "Nahradi\u0165 v\u0161etko", | ||||
| "Previous": "Predch\u00e1dzaj\u00face", | ||||
| "Next": "Nasleduj\u00face", | ||||
| "Find and replace...": "N\u00e1js\u0165 a nahradi\u0165...", | ||||
| "Could not find the specified string.": "Zadan\u00fd re\u0165azec sa nena\u0161iel.", | ||||
| "Match case": "Rozli\u0161ova\u0165 ve\u013ek\u00e9\/mal\u00e9", | ||||
| "Find whole words only": "H\u013eada\u0165 len cel\u00e9 slov\u00e1", | ||||
| "Spell check": "Kontrola pravopisu", | ||||
| "Ignore": "Ignorova\u0165", | ||||
| "Ignore all": "Ignorova\u0165 v\u0161etko", | ||||
| "Finish": "Dokon\u010di\u0165", | ||||
| "Add to Dictionary": "Prida\u0165 do slovn\u00edka", | ||||
| "Insert table": "Vlo\u017ei\u0165 tabu\u013eku", | ||||
| "Table properties": "Nastavenia tabu\u013eky", | ||||
| "Delete table": "Zmaza\u0165 tabu\u013eku", | ||||
| "Cell": "Bunka", | ||||
| "Row": "Riadok", | ||||
| "Column": "St\u013apec", | ||||
| "Cell properties": "Vlastnosti bunky", | ||||
| "Merge cells": "Spoji\u0165 bunky", | ||||
| "Split cell": "Rozdeli\u0165 bunku", | ||||
| "Insert row before": "Vlo\u017ei\u0165 nov\u00fd riadok pred", | ||||
| "Insert row after": "Vlo\u017ei\u0165 nov\u00fd riadok za", | ||||
| "Delete row": "Zmaza\u0165 riadok", | ||||
| "Row properties": "Vlastnosti riadku", | ||||
| "Cut row": "Vystrihn\u00fa\u0165 riadok", | ||||
| "Copy row": "Kop\u00edrova\u0165 riadok", | ||||
| "Paste row before": "Vlo\u017ei\u0165 riadok pred", | ||||
| "Paste row after": "Vlo\u017ei\u0165 riadok za", | ||||
| "Insert column before": "Prida\u0165 nov\u00fd st\u013apec pred", | ||||
| "Insert column after": "Prida\u0165 nov\u00fd st\u013apec za", | ||||
| "Delete column": "Vymaza\u0165 st\u013apec", | ||||
| "Cols": "St\u013apce", | ||||
| "Rows": "Riadky", | ||||
| "Width": "\u0160\u00edrka", | ||||
| "Height": "V\u00fd\u0161ka", | ||||
| "Cell spacing": "Priestor medzi bunkami", | ||||
| "Cell padding": "Odsadenie v bunk\u00e1ch", | ||||
| "Show caption": "Zobrazi\u0165 popis", | ||||
| "Left": "V\u013eavo", | ||||
| "Center": "Na stred", | ||||
| "Right": "Vpravo", | ||||
| "Cell type": "Typ bunky", | ||||
| "Scope": "Oblas\u0165", | ||||
| "Alignment": "Zarovnanie", | ||||
| "H Align": "Horizont\u00e1lne zarovnanie", | ||||
| "V Align": "Vertik\u00e1lne zarovnanie", | ||||
| "Top": "Vrch", | ||||
| "Middle": "Stred", | ||||
| "Bottom": "Spodok", | ||||
| "Header cell": "Bunka z\u00e1hlavia", | ||||
| "Row group": "Skupina riadkov", | ||||
| "Column group": "Skupina st\u013apcov", | ||||
| "Row type": "Typ riadku", | ||||
| "Header": "Z\u00e1hlavie", | ||||
| "Body": "Telo", | ||||
| "Footer": "P\u00e4ti\u010dka", | ||||
| "Border color": "Farba or\u00e1movania", | ||||
| "Insert template...": "Vlo\u017ei\u0165 \u0161abl\u00f3nu...", | ||||
| "Templates": "\u0160abl\u00f3ny", | ||||
| "Template": "\u0160abl\u00f3na", | ||||
| "Text color": "Farba textu", | ||||
| "Background color": "Farba pozadia", | ||||
| "Custom...": "Vlastn\u00e1...", | ||||
| "Custom color": "Vlastn\u00e1 farba", | ||||
| "No color": "Bez farby", | ||||
| "Remove color": "Odstr\u00e1ni\u0165 farbu", | ||||
| "Table of Contents": "Obsah", | ||||
| "Show blocks": "Zobrazi\u0165 bloky", | ||||
| "Show invisible characters": "Zobrazi\u0165 skryt\u00e9 znaky", | ||||
| "Word count": "Po\u010det slov", | ||||
| "Count": "Po\u010det", | ||||
| "Document": "Dokument", | ||||
| "Selection": "V\u00fdber", | ||||
| "Words": "Slov\u00e1", | ||||
| "Words: {0}": "Slov: {0}", | ||||
| "{0} words": "{0} slov\u00e1\/slov", | ||||
| "File": "S\u00fabor", | ||||
| "Edit": "Upravi\u0165", | ||||
| "Insert": "Vlo\u017ei\u0165", | ||||
| "View": "Zobrazi\u0165", | ||||
| "Format": "Form\u00e1t", | ||||
| "Table": "Tabu\u013eka", | ||||
| "Tools": "N\u00e1stroje", | ||||
| "Powered by {0}": "Pou\u017e\u00edva {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Textov\u00e9 pole. Stla\u010dte ALT-F9 pre zobrazenie menu, ALT-F10 pre zobrazenie panela n\u00e1strojov, ALT-0 pre n\u00e1povedu.", | ||||
| "Image title": "N\u00e1zov obr\u00e1zka", | ||||
| "Border width": "\u0160\u00edrka okraja", | ||||
| "Border style": "\u0160t\u00fdl okraja", | ||||
| "Error": "Chyba", | ||||
| "Warn": "Upozornenie", | ||||
| "Valid": "Platn\u00e9", | ||||
| "To open the popup, press Shift+Enter": "Na otvorenie kontextovej ponuky stla\u010dte Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Oblas\u0165 pre text vo form\u00e1te RTF. Stla\u010dte ALT-0 pre n\u00e1povedu.", | ||||
| "System Font": "Syst\u00e9mov\u00e9 p\u00edsmo", | ||||
| "Failed to upload image: {0}": "Obr\u00e1zok sa nepodarilo nahra\u0165: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Plugin: {0} sa nepodarilo nahra\u0165 z url {1}", | ||||
| "Failed to load plugin url: {0}": "Nepodarilo sa nahra\u0165 plugin url: {0}", | ||||
| "Failed to initialize plugin: {0}": "Nepodarilo sa inicializova\u0165 plugin: {0}", | ||||
| "example": "pr\u00edklad", | ||||
| "Search": "Vyh\u013eada\u0165", | ||||
| "All": "V\u0161etko", | ||||
| "Currency": "Mena", | ||||
| "Text": "Text", | ||||
| "Quotations": "Kvot\u00e1cie", | ||||
| "Mathematical": "Matematick\u00e9", | ||||
| "Extended Latin": "Roz\u0161\u00edren\u00e1 latinka", | ||||
| "Symbols": "Symboly", | ||||
| "Arrows": "\u0160\u00edpky", | ||||
| "User Defined": "Definovan\u00e9 pou\u017e\u00edvate\u013eom", | ||||
| "dollar sign": "znak pre dol\u00e1r", | ||||
| "currency sign": "znak meny", | ||||
| "euro-currency sign": "znak eura", | ||||
| "colon sign": "znak dvojbodky", | ||||
| "cruzeiro sign": "znak pre cruzeiro", | ||||
| "french franc sign": "znak pre franc\u00fazsky frank", | ||||
| "lira sign": "znak pre l\u00edru", | ||||
| "mill sign": "znak pre mill", | ||||
| "naira sign": "znak pre nairu", | ||||
| "peseta sign": "znak pre pesetu", | ||||
| "rupee sign": "znak pre rupiu", | ||||
| "won sign": "znak pre won", | ||||
| "new sheqel sign": "znak pre nov\u00fd \u0161ekel", | ||||
| "dong sign": "znak pre dong", | ||||
| "kip sign": "znak pre kip", | ||||
| "tugrik sign": "znak pre tugrik", | ||||
| "drachma sign": "znak pre drachmu", | ||||
| "german penny symbol": "znak pre nemeck\u00fd pfennig", | ||||
| "peso sign": "znak pre peso", | ||||
| "guarani sign": "znak pre guarani", | ||||
| "austral sign": "znak pre austral", | ||||
| "hryvnia sign": "znak pre hrivnu", | ||||
| "cedi sign": "znak pre cedi", | ||||
| "livre tournois sign": "znak pre livre tournois", | ||||
| "spesmilo sign": "znak pre spesmilo", | ||||
| "tenge sign": "znak pre tenge", | ||||
| "indian rupee sign": "znak pre indick\u00fa rupiu", | ||||
| "turkish lira sign": "znak pre tureck\u00fa l\u00edru", | ||||
| "nordic mark sign": "znak pre nordick\u00fa marku", | ||||
| "manat sign": "znak pre manat", | ||||
| "ruble sign": "znak pre rube\u013e", | ||||
| "yen character": "znak pre jen", | ||||
| "yuan character": "znak pre j\u00fcan", | ||||
| "yuan character, in hong kong and taiwan": "znak pre j\u00fcan, v Hongkongu a Taiwane", | ||||
| "yen\/yuan character variant one": "znak pre jen\/j\u00fcan variant jedna", | ||||
| "Loading emoticons...": "Na\u010d\u00edtavam smajl\u00edky...", | ||||
| "Could not load emoticons": "Smajl\u00edky sa nepodarilo na\u010d\u00edta\u0165", | ||||
| "People": "\u013dudia", | ||||
| "Animals and Nature": "Zvierat\u00e1 a pr\u00edroda", | ||||
| "Food and Drink": "Jedlo a n\u00e1poje", | ||||
| "Activity": "Aktivity", | ||||
| "Travel and Places": "Cestovanie a miesta", | ||||
| "Objects": "Objekty", | ||||
| "Flags": "Vlajky", | ||||
| "Characters": "Znaky", | ||||
| "Characters (no spaces)": "Znaky (bez medzier)", | ||||
| "{0} characters": "Znaky: {0}", | ||||
| "Error: Form submit field collision.": "Chyba: konflikt po\u013ea odosielania formul\u00e1ra.", | ||||
| "Error: No form element found.": "Chyba: nena\u0161iel sa prvok formul\u00e1ra.", | ||||
| "Update": "Aktualizova\u0165", | ||||
| "Color swatch": "Vzorky farieb", | ||||
| "Turquoise": "Tyrkysov\u00e1", | ||||
| "Green": "Zelen\u00e1", | ||||
| "Blue": "Modr\u00e1", | ||||
| "Purple": "Fialov\u00e1", | ||||
| "Navy Blue": "N\u00e1morn\u00edcka modr\u00e1", | ||||
| "Dark Turquoise": "Tmavotyrkysov\u00e1", | ||||
| "Dark Green": "Tmavozelen\u00e1", | ||||
| "Medium Blue": "Stredn\u00e1 modr\u00e1", | ||||
| "Medium Purple": "Stredn\u00e1 fialov\u00e1", | ||||
| "Midnight Blue": "Polno\u010dn\u00e1 modr\u00e1", | ||||
| "Yellow": "\u017dlt\u00e1", | ||||
| "Orange": "Oran\u017eov\u00e1", | ||||
| "Red": "\u010cerven\u00e1", | ||||
| "Light Gray": "Svetlosiv\u00e1", | ||||
| "Gray": "Siv\u00e1", | ||||
| "Dark Yellow": "Tmavo\u017elt\u00e1", | ||||
| "Dark Orange": "Tmavooran\u017eov\u00e1", | ||||
| "Dark Red": "Tmavo\u010derven\u00e1", | ||||
| "Medium Gray": "Stredn\u00e1 siv\u00e1", | ||||
| "Dark Gray": "Tmavosiv\u00e1", | ||||
| "Light Green": "Svetlozelen\u00e1", | ||||
| "Light Yellow": "Svetlo\u017elt\u00e1", | ||||
| "Light Red": "Svetlo\u010derven\u00e1", | ||||
| "Light Purple": "Svetlofialov\u00e1", | ||||
| "Light Blue": "Svetlomodr\u00e1", | ||||
| "Dark Purple": "Tmavofialov\u00e1", | ||||
| "Dark Blue": "Tmavomodr\u00e1", | ||||
| "Black": "\u010cierna", | ||||
| "White": "Biela", | ||||
| "Switch to or from fullscreen mode": "Prepn\u00fa\u0165 do alebo z re\u017eimu plnej obrazovky", | ||||
| "Open help dialog": "Otvori\u0165 okno n\u00e1povedy", | ||||
| "history": "hist\u00f3ria", | ||||
| "styles": "\u0161t\u00fdly", | ||||
| "formatting": "form\u00e1tovanie", | ||||
| "alignment": "zarovnanie", | ||||
| "indentation": "odsadenie", | ||||
| "permanent pen": "fixka", | ||||
| "comments": "koment\u00e1re", | ||||
| "Format Painter": "Kop\u00edrova\u0165 form\u00e1t", | ||||
| "Insert\/edit iframe": "Vlo\u017ei\u0165\/upravi\u0165 iframe", | ||||
| "Capitalization": "Ve\u013ek\u00e9 p\u00edsmen\u00e1", | ||||
| "lowercase": "mal\u00e9 p\u00edsmen\u00e1", | ||||
| "UPPERCASE": "V\u0160ETKY P\u00cdSMEN\u00c1 VE\u013dK\u00c9", | ||||
| "Title Case": "Prv\u00e9 P\u00edsmen\u00e1 Ve\u013ek\u00e9", | ||||
| "Permanent Pen Properties": "Vlastnosti fixky", | ||||
| "Permanent pen properties...": "Vlastnosti fixky...", | ||||
| "Font": "P\u00edsmo", | ||||
| "Size": "Ve\u013ekos\u0165", | ||||
| "More...": "Viac...", | ||||
| "Spellcheck Language": "Jazyk kontroly pravopisu", | ||||
| "Select...": "Vyberte...", | ||||
| "Preferences": "Preferencie", | ||||
| "Yes": "\u00c1no", | ||||
| "No": "Nie", | ||||
| "Keyboard Navigation": "Navig\u00e1cia pomocou kl\u00e1vesnice", | ||||
| "Version": "Verzia", | ||||
| "Anchor": "Odkaz", | ||||
| "Special character": "\u0160peci\u00e1lny znak", | ||||
| "Color": "Farba", | ||||
| "Emoticons": "Smajl\u00edci", | ||||
| "Document properties": "Vlastnosti dokumentu", | ||||
| "Image": "Obr\u00e1zok", | ||||
| "Insert link": "Vlo\u017ei\u0165 odkaz", | ||||
| "Target": "Cie\u013e", | ||||
| "Link": "Odkaz", | ||||
| "Poster": "Uk\u00e1\u017eka", | ||||
| "Media": "M\u00e9di\u00e1", | ||||
| "Print": "Tla\u010di\u0165", | ||||
| "Prev": "Predch\u00e1dzaj\u00face", | ||||
| "Find and replace": "Vyh\u013eada\u0165 a nahradi\u0165", | ||||
| "Whole words": "Cel\u00e9 slov\u00e1", | ||||
| "Spellcheck": "Kontrola pravopisu", | ||||
| "Caption": "Popisok", | ||||
| "Insert template": "Vlo\u017ei\u0165 \u0161abl\u00f3nu" | ||||
| }); | ||||
							
								
								
									
										400
									
								
								Modules/TinyMCE/langs/sl.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										400
									
								
								Modules/TinyMCE/langs/sl.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,400 @@ | ||||
| tinymce.addI18n('sl',{ | ||||
| "Redo": "Ponovno uveljavi", | ||||
| "Undo": "Razveljavi", | ||||
| "Cut": "Izre\u017ei", | ||||
| "Copy": "Kopiraj", | ||||
| "Paste": "Prilepi", | ||||
| "Select all": "Izberi vse", | ||||
| "New document": "Nov dokument", | ||||
| "Ok": "V redu", | ||||
| "Cancel": "Prekli\u010di", | ||||
| "Visual aids": "Vizualni pripomo\u010dki", | ||||
| "Bold": "Krepko", | ||||
| "Italic": "Po\u0161evno", | ||||
| "Underline": "Pod\u010drtano", | ||||
| "Strikethrough": "Pre\u010drtano", | ||||
| "Superscript": "Nadpisano", | ||||
| "Subscript": "Podpisano", | ||||
| "Clear formatting": "Odstrani oblikovanje", | ||||
| "Align left": "Leva poravnava", | ||||
| "Align center": "Sredinska poravnava", | ||||
| "Align right": "Desna poravnava", | ||||
| "Justify": "Obojestranska poravnava", | ||||
| "Bullet list": "Ozna\u010den seznam", | ||||
| "Numbered list": "O\u0161tevil\u010den seznam", | ||||
| "Decrease indent": "Zmanj\u0161aj zamik", | ||||
| "Increase indent": "Pove\u010daj zamik", | ||||
| "Close": "Zapri", | ||||
| "Formats": "Oblika", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Varnostne nastavitve brskalnika ne dopu\u0161\u010dajo direktnega dostopa do odlo\u017ei\u0161\u010da. Uporabite kombinacijo tipk Ctrl + X\/C\/V na tipkovnici.", | ||||
| "Headers": "Naslovi", | ||||
| "Header 1": "Naslov 1", | ||||
| "Header 2": "Naslov 2", | ||||
| "Header 3": "Naslov 3", | ||||
| "Header 4": "Naslov 4", | ||||
| "Header 5": "Naslov 5", | ||||
| "Header 6": "Naslov 6", | ||||
| "Headings": "Naslovi", | ||||
| "Heading 1": "Naslov 1", | ||||
| "Heading 2": "Naslov 2", | ||||
| "Heading 3": "Naslov 3", | ||||
| "Heading 4": "Naslov 4", | ||||
| "Heading 5": "Naslov 5", | ||||
| "Heading 6": "Naslov 6", | ||||
| "Preformatted": "Predformatirano", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Koda", | ||||
| "Paragraph": "Odstavek", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Med besedilom", | ||||
| "Blocks": "Bloki", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Odlagali\u0161\u010de je sedaj v tekstovnem na\u010dinu. Vsebina bo preslikana kot besedilo, dokler te mo\u017enosti ne izklju\u010dite.", | ||||
| "Fonts": "Pisave", | ||||
| "Font Sizes": "Velikosti pisave", | ||||
| "Class": "Razred", | ||||
| "Browse for an image": "Prebrskaj za sliko", | ||||
| "OR": "ALI", | ||||
| "Drop an image here": "Spusti sliko sem", | ||||
| "Upload": "Nalo\u017ei", | ||||
| "Block": "Blok", | ||||
| "Align": "Poravnava", | ||||
| "Default": "Privzeto", | ||||
| "Circle": "Krog", | ||||
| "Disc": "Disk", | ||||
| "Square": "Kvadrat", | ||||
| "Lower Alpha": "Mala alfa", | ||||
| "Lower Greek": "Male gr\u0161ke \u010drke", | ||||
| "Lower Roman": "Male rimske \u0161tevilke", | ||||
| "Upper Alpha": "Velika alfa", | ||||
| "Upper Roman": "Velike rimske \u0161tevilke", | ||||
| "Anchor...": "Sidro ...", | ||||
| "Name": "Naziv", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id se mora za\u010deti s \u010drko, sledijo samo \u010drke, \u0161tevilke, pomi\u0161ljaji, pike, dvopi\u010dja ali pod\u010drtaji.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Imate neshranjene spremembe. Ste prepri\u010dati, da \u017eelite zapustiti stran?", | ||||
| "Restore last draft": "Obnovi zadnji osnutek", | ||||
| "Special character...": "Poseben znak ...", | ||||
| "Source code": "Izvorna koda", | ||||
| "Insert\/Edit code sample": "Vstavi\/Uredi vzor\u010dno kodo", | ||||
| "Language": "Jezik", | ||||
| "Code sample...": "Vzor\u010dna koda ...", | ||||
| "Color Picker": "Izbirnik barve", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Od leve proti desni", | ||||
| "Right to left": "Od desne proti levi", | ||||
| "Emoticons...": "\u010custveni simboli ...", | ||||
| "Metadata and Document Properties": "Metapodatki in lastnosti dokumenta", | ||||
| "Title": "Naslov", | ||||
| "Keywords": "Klju\u010dne besede", | ||||
| "Description": "Opis", | ||||
| "Robots": "Robotki", | ||||
| "Author": "Avtor", | ||||
| "Encoding": "Kodiranje", | ||||
| "Fullscreen": "\u010cez cel zaslon", | ||||
| "Action": "Dejanje", | ||||
| "Shortcut": "Bli\u017enjica", | ||||
| "Help": "Pomo\u010d", | ||||
| "Address": "Naslov", | ||||
| "Focus to menubar": "Poudarek na menijski vrstici", | ||||
| "Focus to toolbar": "Poudarek na orodni vrstici", | ||||
| "Focus to element path": "Poudarek na poti elementa", | ||||
| "Focus to contextual toolbar": "Poudarek na kontekstualni orodni vrstici", | ||||
| "Insert link (if link plugin activated)": "Vstavi povezavo (\u010de je aktiviran vti\u010dnik za povezavo)", | ||||
| "Save (if save plugin activated)": "Shrani (\u010de je aktiviran vti\u010dnik za shranjevanje)", | ||||
| "Find (if searchreplace plugin activated)": "I\u0161\u010di (\u010de je aktiviran vti\u010dnik za iskanje\/zamenjavo)", | ||||
| "Plugins installed ({0}):": "Name\u0161\u010deni vti\u010dniki ({0}):", | ||||
| "Premium plugins:": "Premium vti\u010dniki:", | ||||
| "Learn more...": "Ve\u010d ...", | ||||
| "You are using {0}": "Uporabljate {0}", | ||||
| "Plugins": "Vti\u010dniki", | ||||
| "Handy Shortcuts": "Uporabne bli\u017enjice", | ||||
| "Horizontal line": "Vodoravna \u010drta", | ||||
| "Insert\/edit image": "Vstavi\/uredi sliko", | ||||
| "Image description": "Opis slike", | ||||
| "Source": "Pot", | ||||
| "Dimensions": "Dimenzije", | ||||
| "Constrain proportions": "Obdr\u017ei razmerje", | ||||
| "General": "Splo\u0161no", | ||||
| "Advanced": "Napredno", | ||||
| "Style": "Slog", | ||||
| "Vertical space": "Navpi\u010dni prostor", | ||||
| "Horizontal space": "Vodoravni prostor", | ||||
| "Border": "Meja", | ||||
| "Insert image": "Vnesi sliko", | ||||
| "Image...": "Slika ...", | ||||
| "Image list": "Seznam slik", | ||||
| "Rotate counterclockwise": "Zavrti v nasprotni smeri urnega kazalca", | ||||
| "Rotate clockwise": "Zavrti v smeri urnega kazalca", | ||||
| "Flip vertically": "Obrni navpi\u010dno", | ||||
| "Flip horizontally": "Obrni vodoravno", | ||||
| "Edit image": "Uredi sliko", | ||||
| "Image options": "Mo\u017enosti slike", | ||||
| "Zoom in": "Pove\u010daj", | ||||
| "Zoom out": "Pomanj\u0161aj", | ||||
| "Crop": "Obre\u017ei", | ||||
| "Resize": "Spremeni velikost", | ||||
| "Orientation": "Usmerjenost", | ||||
| "Brightness": "Svetlost", | ||||
| "Sharpen": "Izostri", | ||||
| "Contrast": "Kontrast", | ||||
| "Color levels": "Barvni nivo", | ||||
| "Gamma": "Gama", | ||||
| "Invert": "Obrni", | ||||
| "Apply": "Uporabi", | ||||
| "Back": "Nazaj", | ||||
| "Insert date\/time": "Vstavi datum\/\u010das", | ||||
| "Date\/time": "Datum\/\u010das", | ||||
| "Insert\/Edit Link": "Vstavi\/uredi povezavo", | ||||
| "Insert\/edit link": "Vstavi\/uredi povezavo", | ||||
| "Text to display": "Besedilo za prikaz", | ||||
| "Url": "Povezava", | ||||
| "Open link in...": "Odpri povezavo v ...", | ||||
| "Current window": "Trenutno okno", | ||||
| "None": "Brez", | ||||
| "New window": "Novo okno", | ||||
| "Remove link": "Odstrani povezavo", | ||||
| "Anchors": "Sidra", | ||||
| "Link...": "Povezava ...", | ||||
| "Paste or type a link": "Prilepite ali vnesite povezavo", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Vneseni URL predstavlja e-po\u0161tni naslov. Ali \u017eelite dodati potrebno predpono \"mailto:\"?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Vneseni URL predstavlja zunanjo povezavo. Ali \u017eelite dodati predpono \"http:\/\/\"?", | ||||
| "Link list": "Seznam povezav", | ||||
| "Insert video": "Vstavi video", | ||||
| "Insert\/edit video": "Vstavi\/uredi video", | ||||
| "Insert\/edit media": "Vstavi\/uredi medij", | ||||
| "Alternative source": "Nadomestni vir", | ||||
| "Alternative source URL": "Nadomestni vir URL", | ||||
| "Media poster (Image URL)": "Medijski poster (URL slike)", | ||||
| "Paste your embed code below:": "Spodaj prilepite kodo za vdelavo:", | ||||
| "Embed": "Vdelaj", | ||||
| "Media...": "Mediji ...", | ||||
| "Nonbreaking space": "Nedeljivi presledek", | ||||
| "Page break": "Prelom strani", | ||||
| "Paste as text": "Vnesi kot besedilo", | ||||
| "Preview": "Predogled", | ||||
| "Print...": "Natisni ...", | ||||
| "Save": "Shrani", | ||||
| "Find": "Najdi", | ||||
| "Replace with": "Zamenjaj z", | ||||
| "Replace": "Zamenjaj", | ||||
| "Replace all": "Zamenjaj vse", | ||||
| "Previous": "Prej\u0161nja", | ||||
| "Next": "Naslednja", | ||||
| "Find and replace...": "Najdi in zamenjaj ...", | ||||
| "Could not find the specified string.": "Iskanje ni vrnilo rezultatov.", | ||||
| "Match case": "Ujemanje malih in velikih \u010drk", | ||||
| "Find whole words only": "I\u0161\u010di samo cele besede", | ||||
| "Spell check": "\u010crkovanje", | ||||
| "Ignore": "Prezri", | ||||
| "Ignore all": "Prezri vse", | ||||
| "Finish": "Zaklju\u010di", | ||||
| "Add to Dictionary": "Dodaj v slovar", | ||||
| "Insert table": "Vstavi tabelo", | ||||
| "Table properties": "Lastnosti tabele", | ||||
| "Delete table": "Izbri\u0161i tabelo", | ||||
| "Cell": "Celica", | ||||
| "Row": "Vrstica", | ||||
| "Column": "Stolpec", | ||||
| "Cell properties": "Lastnosti celice", | ||||
| "Merge cells": "Zdru\u017ei celice", | ||||
| "Split cell": "Razdeli celico", | ||||
| "Insert row before": "Vstavi vrstico pred", | ||||
| "Insert row after": "Vstavi vrstico za", | ||||
| "Delete row": "Izbri\u0161i vrstico", | ||||
| "Row properties": "Lastnosti vrstice", | ||||
| "Cut row": "Izre\u017ei vrstico", | ||||
| "Copy row": "Kopiraj vrstico", | ||||
| "Paste row before": "Prilepi vrstico pred", | ||||
| "Paste row after": "Prilepi vrstico za", | ||||
| "Insert column before": "Vstavi stolpec pred", | ||||
| "Insert column after": "Vstavi stolpec za", | ||||
| "Delete column": "Izbri\u0161i stolpec", | ||||
| "Cols": "Stolpci", | ||||
| "Rows": "Vrstice", | ||||
| "Width": "\u0160irina", | ||||
| "Height": "Vi\u0161ina", | ||||
| "Cell spacing": "Razmik med celicami", | ||||
| "Cell padding": "Polnilo med celicami", | ||||
| "Show caption": "Poka\u017ei napis", | ||||
| "Left": "Leva", | ||||
| "Center": "Sredinska", | ||||
| "Right": "Desna", | ||||
| "Cell type": "Tip celice", | ||||
| "Scope": "Obseg", | ||||
| "Alignment": "Poravnava", | ||||
| "H Align": "Vodoravna poravnava", | ||||
| "V Align": "Navpi\u010dna poravnava", | ||||
| "Top": "Vrh", | ||||
| "Middle": "Sredina", | ||||
| "Bottom": "Dno", | ||||
| "Header cell": "Celica glave", | ||||
| "Row group": "Grupiranje vrstic", | ||||
| "Column group": "Grupiranje stolpcev", | ||||
| "Row type": "Tip vrstice", | ||||
| "Header": "Header", | ||||
| "Body": "Vsebina", | ||||
| "Footer": "Footer", | ||||
| "Border color": "Barva obrobe", | ||||
| "Insert template...": "Vstavi predlogo ...", | ||||
| "Templates": "Predloge", | ||||
| "Template": "Predloga", | ||||
| "Text color": "Barva besedila", | ||||
| "Background color": "Barva ozadja", | ||||
| "Custom...": "Po meri ...", | ||||
| "Custom color": "Barva po meri", | ||||
| "No color": "Brezbarvno", | ||||
| "Remove color": "Odstrani barvo", | ||||
| "Table of Contents": "Kazalo", | ||||
| "Show blocks": "Prika\u017ei bloke", | ||||
| "Show invisible characters": "Prika\u017ei skrite znake", | ||||
| "Word count": "\u0160tevilo besed", | ||||
| "Count": "\u0160tevilo", | ||||
| "Document": "Dokument", | ||||
| "Selection": "Izbor", | ||||
| "Words": "Besede", | ||||
| "Words: {0}": "Besed: {0}", | ||||
| "{0} words": "{0} besed", | ||||
| "File": "Datoteka", | ||||
| "Edit": "Uredi", | ||||
| "Insert": "Vstavi", | ||||
| "View": "Pogled", | ||||
| "Format": "Oblika", | ||||
| "Table": "Tabela", | ||||
| "Tools": "Orodja", | ||||
| "Powered by {0}": "Uporablja tehnologijo {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Bogato besedilo. Pritisnite ALT-F9 za meni. Pritisnite ALT-F10 za orodno vrstico. Pritisnite ALT-0 za pomo\u010d", | ||||
| "Image title": "Naslov slike", | ||||
| "Border width": "\u0160irina obrobe", | ||||
| "Border style": "Slog obrobe", | ||||
| "Error": "Napaka", | ||||
| "Warn": "Opozorilo", | ||||
| "Valid": "Veljavno", | ||||
| "To open the popup, press Shift+Enter": "Za odpiranje pojavnega okna pritisnite Shift + Enter.", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Bogato besedilo. Pritisnite ALT-0 za pomo\u010d.", | ||||
| "System Font": "Sistemska pisava", | ||||
| "Failed to upload image: {0}": "Napaka nalaganja slike: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Napaka nalaganja vti\u010dnika: {0} z url {1}", | ||||
| "Failed to load plugin url: {0}": "Napaka nalaganja url: {0}", | ||||
| "Failed to initialize plugin: {0}": "Napaka inicializacije vti\u010dnika: {0}", | ||||
| "example": "primer", | ||||
| "Search": "Iskanje", | ||||
| "All": "Vse", | ||||
| "Currency": "Valuta", | ||||
| "Text": "Besedilo", | ||||
| "Quotations": "Citati", | ||||
| "Mathematical": "Matemati\u010dno", | ||||
| "Extended Latin": "Raz\u0161irjena latinica", | ||||
| "Symbols": "Simboli", | ||||
| "Arrows": "Pu\u0161\u010dice", | ||||
| "User Defined": "Uporabnik dolo\u010den", | ||||
| "dollar sign": "znak za dolar", | ||||
| "currency sign": "znak za valuto", | ||||
| "euro-currency sign": "znak za evro", | ||||
| "colon sign": "znak za dvopi\u010dje", | ||||
| "cruzeiro sign": "znak za cruzeiro", | ||||
| "french franc sign": "znak za francoski frank", | ||||
| "lira sign": "znak za liro", | ||||
| "mill sign": "znak za mill", | ||||
| "naira sign": "znak za nairo", | ||||
| "peseta sign": "znak za peseto", | ||||
| "rupee sign": "znak za rupijo", | ||||
| "won sign": "znak za won", | ||||
| "new sheqel sign": "znak za novi \u0161ekl", | ||||
| "dong sign": "znak za dong", | ||||
| "kip sign": "znak za kip", | ||||
| "tugrik sign": "znak za tugrik", | ||||
| "drachma sign": "znak za drahmo", | ||||
| "german penny symbol": "znak za nem\u0161ki peni", | ||||
| "peso sign": "znak za peso", | ||||
| "guarani sign": "znak za guarani", | ||||
| "austral sign": "znak za austral", | ||||
| "hryvnia sign": "znak za hrivnijo", | ||||
| "cedi sign": "znak za cedi", | ||||
| "livre tournois sign": "znak za livre tournois", | ||||
| "spesmilo sign": "znak za spesmilo", | ||||
| "tenge sign": "znak za tenge", | ||||
| "indian rupee sign": "znak za indijsko rupijo", | ||||
| "turkish lira sign": "znak za tur\u0161ko liro", | ||||
| "nordic mark sign": "znak za nordijsko marko", | ||||
| "manat sign": "znak za manat", | ||||
| "ruble sign": "znak za rubelj", | ||||
| "yen character": "znak za jen", | ||||
| "yuan character": "znak za yuan", | ||||
| "yuan character, in hong kong and taiwan": "znak za yuan, v Hongkongu in na Tajvanu", | ||||
| "yen\/yuan character variant one": "znak za jen\/yuan, prva razli\u010dica", | ||||
| "Loading emoticons...": "Nalaganje \u010dustvenih simbolov ...", | ||||
| "Could not load emoticons": "\u010custvenih simbolov ni mogo\u010de nalo\u017eiti.", | ||||
| "People": "Ljudje", | ||||
| "Animals and Nature": "\u017divali in narava", | ||||
| "Food and Drink": "Hrana in pija\u010da", | ||||
| "Activity": "Dejavnost", | ||||
| "Travel and Places": "Potovanja in kraji", | ||||
| "Objects": "Predmeti", | ||||
| "Flags": "Zastave", | ||||
| "Characters": "Znaki", | ||||
| "Characters (no spaces)": "Znaki (brez presledkov)", | ||||
| "{0} characters": "{0} znakov", | ||||
| "Error: Form submit field collision.": "Napaka: navzkri\u017eje polja za oddajo obrazca", | ||||
| "Error: No form element found.": "Napaka: elementa oblike ni mogo\u010de najti", | ||||
| "Update": "Posodobitev", | ||||
| "Color swatch": "Vzorec barv", | ||||
| "Turquoise": "Turkizna", | ||||
| "Green": "Zelena", | ||||
| "Blue": "Modra", | ||||
| "Purple": "\u0160krlatna", | ||||
| "Navy Blue": "Mornarsko modra", | ||||
| "Dark Turquoise": "Temno turkizna", | ||||
| "Dark Green": "Temno zelena", | ||||
| "Medium Blue": "Srednje modra", | ||||
| "Medium Purple": "Srednje \u0161krlatna", | ||||
| "Midnight Blue": "Polno\u010dno modra", | ||||
| "Yellow": "Rumena", | ||||
| "Orange": "Oran\u017ena", | ||||
| "Red": "Rde\u010da", | ||||
| "Light Gray": "Svetlo siva", | ||||
| "Gray": "Siva", | ||||
| "Dark Yellow": "Temno rumena", | ||||
| "Dark Orange": "Temno oran\u017ena", | ||||
| "Dark Red": "Temno rde\u010da", | ||||
| "Medium Gray": "Srednje siva", | ||||
| "Dark Gray": "Temno siva", | ||||
| "Light Green": "Svetlo zelena", | ||||
| "Light Yellow": "Svetlo rumena", | ||||
| "Light Red": "Svetlo rde\u010da", | ||||
| "Light Purple": "Svetlo vijoli\u010dna", | ||||
| "Light Blue": "Svetlo modra", | ||||
| "Dark Purple": "Temno vijoli\u010dna", | ||||
| "Dark Blue": "Temno modra", | ||||
| "Black": "\u010crna", | ||||
| "White": "Bela", | ||||
| "Switch to or from fullscreen mode": "Preklopi v ali iz celozaslonskega na\u010dina", | ||||
| "Open help dialog": "Odpri pogovorno okno za pomo\u010d", | ||||
| "history": "zgodovina", | ||||
| "styles": "slogi", | ||||
| "formatting": "oblikovanje", | ||||
| "alignment": "poravnava", | ||||
| "indentation": "zamik", | ||||
| "permanent pen": "permanentno pisalo", | ||||
| "comments": "komentarji", | ||||
| "Format Painter": "Preslikovalnik Oblik", | ||||
| "Insert\/edit iframe": "Vstavi\/uredi iFrame", | ||||
| "Capitalization": "Velika za\u010detnica", | ||||
| "lowercase": "male \u010drke", | ||||
| "UPPERCASE": "VELIKE \u010cRKE", | ||||
| "Title Case": "Velike za\u010detnice naslovov", | ||||
| "Permanent Pen Properties": "Lastnosti permanentnega pisala", | ||||
| "Permanent pen properties...": "Lastnosti permanentnega pisala ...", | ||||
| "Font": "Pisava", | ||||
| "Size": "Velikost", | ||||
| "More...": "Ve\u010d ...", | ||||
| "Spellcheck Language": "Jezik \u010drkovalnika", | ||||
| "Select...": "Izberi ...", | ||||
| "Preferences": "Preference", | ||||
| "Yes": "Da", | ||||
| "No": "Ne", | ||||
| "Keyboard Navigation": "Krmarjenje s tipkovnico", | ||||
| "Version": "Razli\u010dica" | ||||
| }); | ||||
							
								
								
									
										388
									
								
								Modules/TinyMCE/langs/sl_SI.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										388
									
								
								Modules/TinyMCE/langs/sl_SI.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,388 @@ | ||||
| tinymce.addI18n('sl_SI',{ | ||||
| "Redo": "Ponovno uveljavi", | ||||
| "Undo": "Razveljavi", | ||||
| "Cut": "Izre\u017ei", | ||||
| "Copy": "Kopiraj", | ||||
| "Paste": "Prilepi", | ||||
| "Select all": "Izberi vse", | ||||
| "New document": "Nov dokument", | ||||
| "Ok": "V redu", | ||||
| "Cancel": "Prekli\u010di", | ||||
| "Visual aids": "Vizualni pripomo\u010dki", | ||||
| "Bold": "Krepko", | ||||
| "Italic": "Po\u0161evno", | ||||
| "Underline": "Pod\u010drtano", | ||||
| "Strikethrough": "Pre\u010drtano", | ||||
| "Superscript": "Nadpisano", | ||||
| "Subscript": "Podpisano", | ||||
| "Clear formatting": "Odstrani oblikovanje", | ||||
| "Align left": "Leva poravnava", | ||||
| "Align center": "Sredinska poravnava", | ||||
| "Align right": "Desna poravnava", | ||||
| "Justify": "Obojestranska poravnava", | ||||
| "Bullet list": "Ozna\u010den seznam", | ||||
| "Numbered list": "O\u0161tevil\u010den seznam", | ||||
| "Decrease indent": "Zmanj\u0161aj zamik", | ||||
| "Increase indent": "Pove\u010daj zamik", | ||||
| "Close": "Zapri", | ||||
| "Formats": "Oblika", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Varnostne nastavitve brskalnika ne dopu\u0161\u010dajo direktnega dostopa do odlo\u017ei\u0161\u010da. Uporabite kombinacijo tipk Ctrl + X\/C\/V na tipkovnici.", | ||||
| "Headers": "Naslovi", | ||||
| "Header 1": "Naslov 1", | ||||
| "Header 2": "Naslov 2", | ||||
| "Header 3": "Naslov 3", | ||||
| "Header 4": "Naslov 4", | ||||
| "Header 5": "Naslov 5", | ||||
| "Header 6": "Naslov 6", | ||||
| "Headings": "Naslovi", | ||||
| "Heading 1": "Naslov 1", | ||||
| "Heading 2": "Naslov 2", | ||||
| "Heading 3": "Naslov 3", | ||||
| "Heading 4": "Naslov 4", | ||||
| "Heading 5": "Naslov 5", | ||||
| "Heading 6": "Naslov 6", | ||||
| "Preformatted": "Predformatirano", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Koda", | ||||
| "Paragraph": "Odstavek", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Med besedilom", | ||||
| "Blocks": "Bloki", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Odlagali\u0161\u010de je zdaj v tekstovnem na\u010dinu. Vsebina bo preslikana kot golo besedilo brez oblike, dokler te mo\u017enosti ne izklju\u010dite.", | ||||
| "Fonts": "Pisave", | ||||
| "Font Sizes": "Velikosti pisave", | ||||
| "Class": "Razred", | ||||
| "Browse for an image": "Prebrskaj za sliko", | ||||
| "OR": "ALI", | ||||
| "Drop an image here": "Spusti sliko sem", | ||||
| "Upload": "Nalo\u017ei", | ||||
| "Block": "Blok", | ||||
| "Align": "Poravnava", | ||||
| "Default": "Privzeto", | ||||
| "Circle": "Pikica", | ||||
| "Disc": "Kroglica", | ||||
| "Square": "Kvadratek", | ||||
| "Lower Alpha": "Male tiskane \u010drke", | ||||
| "Lower Greek": "Male gr\u0161ke \u010drke", | ||||
| "Lower Roman": "Male rimske \u0161tevilke", | ||||
| "Upper Alpha": "Velike tiskane \u010drke", | ||||
| "Upper Roman": "Velike rimske \u0161tevilke", | ||||
| "Anchor...": "Sidro ...", | ||||
| "Name": "Naziv zaznamka", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id se mora za\u010deti s \u010drko, sledijo samo \u010drke, \u0161tevilke, pomi\u0161ljaj, pike, dvopi\u010dje ali pod\u010drtaj.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Imate neshranjene spremembe. Ste prepri\u010dati, da \u017eelite zapustiti stran?", | ||||
| "Restore last draft": "Obnovi zadnji osnutek", | ||||
| "Special characters...": "Posebni znaki ...", | ||||
| "Source code": "Izvorna koda", | ||||
| "Insert\/Edit code sample": "Vstavi\/Uredi vzor\u010dno kodo", | ||||
| "Language": "Jezik", | ||||
| "Code sample...": "Vzor\u010dna koda ...", | ||||
| "Color Picker": "Izbirnik barve", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Od leve proti desni", | ||||
| "Right to left": "Od desne proti levi", | ||||
| "Emoticons...": "\u010custveni simboli ...", | ||||
| "Metadata and Document Properties": "Metapodatki in lastnosti dokumenta", | ||||
| "Title": "Naslov", | ||||
| "Keywords": "Klju\u010dne besede", | ||||
| "Description": "Opis", | ||||
| "Robots": "Robotki", | ||||
| "Author": "Avtor", | ||||
| "Encoding": "Kodiranje", | ||||
| "Fullscreen": "\u010cez cel zaslon", | ||||
| "Action": "Dejanje", | ||||
| "Shortcut": "Bli\u017enjica", | ||||
| "Help": "Pomo\u010d", | ||||
| "Address": "Naslov", | ||||
| "Focus to menubar": "Poudarek na menijski vrstici", | ||||
| "Focus to toolbar": "Poudarek na orodni vrstici", | ||||
| "Focus to element path": "Poudarek na poti elementa", | ||||
| "Focus to contextual toolbar": "Poudarek na kontekstualni orodni vrstici", | ||||
| "Insert link (if link plugin activated)": "Vstavi povezavo (\u010de je aktiviran vti\u010dnik za povezavo)", | ||||
| "Save (if save plugin activated)": "Shrani (\u010de je aktiviran vti\u010dnik za shranjevanje)", | ||||
| "Find (if searchreplace plugin activated)": "I\u0161\u010di (\u010de je aktiviran vti\u010dnik za iskanje\/zamenjavo)", | ||||
| "Plugins installed ({0}):": "Name\u0161\u010deni vti\u010dniki ({0}):", | ||||
| "Premium plugins:": "Premium vti\u010dniki:", | ||||
| "Learn more...": "Ve\u010d ...", | ||||
| "You are using {0}": "Uporabljate {0}", | ||||
| "Plugins": "Vti\u010dniki", | ||||
| "Handy Shortcuts": "Uporabne bli\u017enjice", | ||||
| "Horizontal line": "Vodoravna \u010drta", | ||||
| "Insert\/edit image": "Vstavi\/uredi sliko", | ||||
| "Image description": "Opis slike", | ||||
| "Source": "Pot", | ||||
| "Dimensions": "Dimenzije", | ||||
| "Constrain proportions": "Obdr\u017ei razmerje", | ||||
| "General": "Splo\u0161no", | ||||
| "Advanced": "Napredno", | ||||
| "Style": "Slog", | ||||
| "Vertical space": "Navpi\u010dni prostor", | ||||
| "Horizontal space": "Vodoravni prostor", | ||||
| "Border": "Obroba", | ||||
| "Insert image": "Vnesi sliko", | ||||
| "Image...": "Slika ...", | ||||
| "Image list": "Seznam slik", | ||||
| "Rotate counterclockwise": "Zavrti v nasprotni smeri urnega kazalca", | ||||
| "Rotate clockwise": "Zavrti v smeri urinega kazalca", | ||||
| "Flip vertically": "Obrni navpi\u010dno", | ||||
| "Flip horizontally": "Obrni vodoravno", | ||||
| "Edit image": "Uredi sliko", | ||||
| "Image options": "Mo\u017enosti slike", | ||||
| "Zoom in": "Pove\u010daj", | ||||
| "Zoom out": "Pomanj\u0161aj", | ||||
| "Crop": "Obre\u017ei", | ||||
| "Resize": "Spremeni velikost", | ||||
| "Orientation": "Usmerjenost", | ||||
| "Brightness": "Svetlost", | ||||
| "Sharpen": "Izostri", | ||||
| "Contrast": "Kontrast", | ||||
| "Color levels": "Barvni nivo", | ||||
| "Gamma": "Gama", | ||||
| "Invert": "Obrni", | ||||
| "Apply": "Uporabi", | ||||
| "Back": "Nazaj", | ||||
| "Insert date\/time": "Vstavi datum\/\u010das", | ||||
| "Date\/time": "Datum\/\u010das", | ||||
| "Insert\/Edit Link": "Vstavi\/uredi povezavo", | ||||
| "Insert\/edit link": "Vstavi\/uredi povezavo", | ||||
| "Text to display": "Prikazno besedilo", | ||||
| "Url": "Povezava", | ||||
| "Open link in...": "Odpri povezavo v ...", | ||||
| "Current window": "Trenutno okno", | ||||
| "None": "Brez", | ||||
| "New window": "Novo okno", | ||||
| "Remove link": "Odstrani povezavo", | ||||
| "Anchors": "Sidra", | ||||
| "Link...": "Povezava ...", | ||||
| "Paste or type a link": "Prilepite ali vnesite povezavo", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Vne\u0161eni URL predstavlja e-po\u0161tni naslov. Ali \u017eelite dodati potrebno \"mailto:\" predpono?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Vne\u0161eni URL predstavlja zunanjo povezavo. Ali \u017eelite dodati \"http:\/\/\" predpono?", | ||||
| "Link list": "Seznam povezav", | ||||
| "Insert video": "Vstavi video", | ||||
| "Insert\/edit video": "Vstavi\/uredi video", | ||||
| "Insert\/edit media": "Vstavi\/uredi medij", | ||||
| "Alternative source": "Nadomestni vir", | ||||
| "Alternative source URL": "Nadomestni vir URL", | ||||
| "Media poster (Image URL)": "Medijski poster (URL slike)", | ||||
| "Paste your embed code below:": "Prilepite kodo za vdelavo:", | ||||
| "Embed": "Vdelaj", | ||||
| "Media...": "Mediji ...", | ||||
| "Nonbreaking space": "Nedeljivi presledek", | ||||
| "Page break": "Prelom strani", | ||||
| "Paste as text": "Vnesi kot besedilo", | ||||
| "Preview": "Predogled", | ||||
| "Print...": "Natisni ...", | ||||
| "Save": "Shrani", | ||||
| "Find": "I\u0161\u010di", | ||||
| "Replace with": "Zamenjaj z", | ||||
| "Replace": "Zamenjaj", | ||||
| "Replace all": "Zamenjaj vse", | ||||
| "Previous": "Prej\u0161nja", | ||||
| "Next": "Naprej", | ||||
| "Find and replace...": "Najdi in zamenjaj ...", | ||||
| "Could not find the specified string.": "Iskanje ni vrnilo rezultatov.", | ||||
| "Match case": "Ujemanje malih in velikih \u010drk", | ||||
| "Find whole words only": "I\u0161\u010di samo cele besede", | ||||
| "Spell check": "\u010crkovanje", | ||||
| "Ignore": "Prezri", | ||||
| "Ignore all": "Prezri vse", | ||||
| "Finish": "Zaklju\u010di", | ||||
| "Add to Dictionary": "Dodaj v slovar", | ||||
| "Insert table": "Vstavi tabelo", | ||||
| "Table properties": "Lastnosti tabele", | ||||
| "Delete table": "Izbri\u0161i tabelo", | ||||
| "Cell": "Celica", | ||||
| "Row": "Vrstica", | ||||
| "Column": "Stolpec", | ||||
| "Cell properties": "Lastnosti celice", | ||||
| "Merge cells": "Zdru\u017ei celice", | ||||
| "Split cell": "Razdeli celico", | ||||
| "Insert row before": "Vstavi vrstico pred", | ||||
| "Insert row after": "Vstavi vrstico za", | ||||
| "Delete row": "Izbri\u0161i vrstico", | ||||
| "Row properties": "Lastnosti vrstice", | ||||
| "Cut row": "Izre\u017ei vrstico", | ||||
| "Copy row": "Kopiraj vrstico", | ||||
| "Paste row before": "Prilepi vrstico pred", | ||||
| "Paste row after": "Prilepi vrstico za", | ||||
| "Insert column before": "Vstavi stolpec pred", | ||||
| "Insert column after": "Vstavi stolpec za", | ||||
| "Delete column": "Izbri\u0161i stolpec", | ||||
| "Cols": "Stolpci", | ||||
| "Rows": "Vrstice", | ||||
| "Width": "\u0160irina", | ||||
| "Height": "Vi\u0161ina", | ||||
| "Cell spacing": "Razmik med celicami", | ||||
| "Cell padding": "Polnilo med celicami", | ||||
| "Show caption": "Poka\u017ei napis", | ||||
| "Left": "Levo", | ||||
| "Center": "Sredinsko", | ||||
| "Right": "Desno", | ||||
| "Cell type": "Tip celice", | ||||
| "Scope": "Obseg", | ||||
| "Alignment": "Poravnava", | ||||
| "H Align": "Horizontalna poravnava", | ||||
| "V Align": "Vertikalna poravnava", | ||||
| "Top": "Vrh", | ||||
| "Middle": "Sredina", | ||||
| "Bottom": "Dno", | ||||
| "Header cell": "Celica glave", | ||||
| "Row group": "Grupiranje vrstic", | ||||
| "Column group": "Grupiranje stolpcev", | ||||
| "Row type": "Tip vrstice", | ||||
| "Header": "Glava", | ||||
| "Body": "Vsebina", | ||||
| "Footer": "Noga", | ||||
| "Border color": "Barva obrobe", | ||||
| "Insert template...": "Vstavi predlogo ...", | ||||
| "Templates": "Predloge", | ||||
| "Template": "Predloga", | ||||
| "Text color": "Barva besedila", | ||||
| "Background color": "Barva ozadja", | ||||
| "Custom...": "Po meri ...", | ||||
| "Custom color": "Barva po meri", | ||||
| "No color": "Brezbarvno", | ||||
| "Remove color": "Odstrani barvo", | ||||
| "Table of Contents": "Kazalo", | ||||
| "Show blocks": "Prika\u017ei bloke", | ||||
| "Show invisible characters": "Prika\u017ei skrite znake", | ||||
| "Word count": "\u0160tevilo besed", | ||||
| "Words: {0}": "Besed: {0}", | ||||
| "{0} words": "{0} besed", | ||||
| "File": "Datoteka", | ||||
| "Edit": "Uredi", | ||||
| "Insert": "Vstavi", | ||||
| "View": "Pogled", | ||||
| "Format": "Oblika", | ||||
| "Table": "Tabela", | ||||
| "Tools": "Orodja", | ||||
| "Powered by {0}": "Uporablja tehnologijo {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Bogato besedilo. Pritisnite ALT-F9 za meni. Pritisnite ALT-F10 za orodno vrstico. Pritisnite ALT-0 za pomo\u010d", | ||||
| "Image title": "Naslov slike", | ||||
| "Border width": "\u0160irina obrobe", | ||||
| "Border style": "Slog obrobe", | ||||
| "Error": "Napaka", | ||||
| "Warn": "Opozorilo", | ||||
| "Valid": "Veljavno", | ||||
| "To open the popup, press Shift+Enter": "Za odpiranje pojavnega okna pritisnite Shift + Enter.", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Bogato besedilo. Pritisnite ALT-0 za pomo\u010d.", | ||||
| "System Font": "Sistemska pisava", | ||||
| "Failed to upload image: {0}": "Napaka nalaganja slike: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Napaka nalaganja vti\u010dnika: {0} z url {1}", | ||||
| "Failed to load plugin url: {0}": "Napaka nalaganja url: {0}", | ||||
| "Failed to initialize plugin: {0}": "Napaka inicializacije vti\u010dnika: {0}", | ||||
| "example": "primer", | ||||
| "Search": "Iskanje", | ||||
| "All": "Vse", | ||||
| "Currency": "Valuta", | ||||
| "Text": "Besedilo", | ||||
| "Quotations": "Citati", | ||||
| "Mathematical": "Matemati\u010dno", | ||||
| "Extended Latin": "Raz\u0161irjena latinica", | ||||
| "Symbols": "Simboli", | ||||
| "Arrows": "Pu\u0161\u010dice", | ||||
| "User Defined": "Uporabnik dolo\u010den", | ||||
| "dollar sign": "znak za dolar", | ||||
| "currency sign": "znak za valuto", | ||||
| "euro-currency sign": "znak za evro", | ||||
| "colon sign": "znak za dvopi\u010dje", | ||||
| "cruzeiro sign": "znak za cruzeiro", | ||||
| "french franc sign": "znak za francoski frank", | ||||
| "lira sign": "znak za liro", | ||||
| "mill sign": "znak za mill", | ||||
| "naira sign": "znak za nairo", | ||||
| "peseta sign": "znak za peseto", | ||||
| "rupee sign": "znak za rupijo", | ||||
| "won sign": "znak za won", | ||||
| "new sheqel sign": "znak za novi \u0161ekl", | ||||
| "dong sign": "znak za dong", | ||||
| "kip sign": "znak za kip", | ||||
| "tugrik sign": "znak za tugrik", | ||||
| "drachma sign": "znak za drahmo", | ||||
| "german penny symbol": "znak za nem\u0161ki peni", | ||||
| "peso sign": "znak za peso", | ||||
| "guarani sign": "znak za guarani", | ||||
| "austral sign": "znak za austral", | ||||
| "hryvnia sign": "znak za hrivnijo", | ||||
| "cedi sign": "znak za cedi", | ||||
| "livre tournois sign": "znak za livre tournois", | ||||
| "spesmilo sign": "znak za spesmilo", | ||||
| "tenge sign": "znak za tenge", | ||||
| "indian rupee sign": "znak za indijsko rupijo", | ||||
| "turkish lira sign": "znak za tur\u0161ko liro", | ||||
| "nordic mark sign": "znak za nordijsko marko", | ||||
| "manat sign": "znak za manat", | ||||
| "ruble sign": "znak za rubelj", | ||||
| "yen character": "znak za jen", | ||||
| "yuan character": "znak za yuan", | ||||
| "yuan character, in hong kong and taiwan": "znak za yuan, v Hongkongu in na Tajvanu", | ||||
| "yen\/yuan character variant one": "znak za jen\/yuan, prva razli\u010dica", | ||||
| "Loading emoticons...": "Nalaganje \u010dustvenih simbolov ...", | ||||
| "Could not load emoticons": "\u010custvenih simbolov ni mogo\u010de nalo\u017eiti.", | ||||
| "People": "Ljudje", | ||||
| "Animals and Nature": "\u017divali in narava", | ||||
| "Food and Drink": "Hrana in pija\u010da", | ||||
| "Activity": "Dejavnost", | ||||
| "Travel and Places": "Potovanja in kraji", | ||||
| "Objects": "Predmeti", | ||||
| "Flags": "Zastave", | ||||
| "Characters": "Znaki", | ||||
| "Characters (no spaces)": "Znaki (brez presledkov)", | ||||
| "Error: Form submit field collision.": "Napaka: navzkri\u017eje polja za oddajo obrazca", | ||||
| "Error: No form element found.": "Napaka: elementa oblike ni mogo\u010de najti", | ||||
| "Update": "Posodobitev", | ||||
| "Color swatch": "Vzorec barv", | ||||
| "Turquoise": "Turkizna", | ||||
| "Green": "Zelena", | ||||
| "Blue": "Modra", | ||||
| "Purple": "\u0160krlatna", | ||||
| "Navy Blue": "Mornarsko modra", | ||||
| "Dark Turquoise": "Temno turkizna", | ||||
| "Dark Green": "Temno zelena", | ||||
| "Medium Blue": "Srednje modra", | ||||
| "Medium Purple": "Srednje \u0161krlatna", | ||||
| "Midnight Blue": "Polno\u010dno modra", | ||||
| "Yellow": "Rumena", | ||||
| "Orange": "Oran\u017ena", | ||||
| "Red": "Rde\u010da", | ||||
| "Light Gray": "Svetlo siva", | ||||
| "Gray": "Siva", | ||||
| "Dark Yellow": "Temno rumena", | ||||
| "Dark Orange": "Temno oran\u017ena", | ||||
| "Dark Red": "Temno rde\u010da", | ||||
| "Medium Gray": "Srednje siva", | ||||
| "Dark Gray": "Temno siva", | ||||
| "Black": "\u010crna", | ||||
| "White": "Bela", | ||||
| "Switch to or from fullscreen mode": "Preklopi v ali iz celozaslonskega na\u010dina", | ||||
| "Open help dialog": "Odpri pogovorno okno za pomo\u010d", | ||||
| "history": "zgodovina", | ||||
| "styles": "slogi", | ||||
| "formatting": "oblikovanje", | ||||
| "alignment": "poravnava", | ||||
| "indentation": "zamik", | ||||
| "permanent pen": "permanentno pisalo", | ||||
| "comments": "komentarji", | ||||
| "Anchor": "Zaznamek", | ||||
| "Special character": "Posebni znaki", | ||||
| "Color": "Barva", | ||||
| "Emoticons": "Sme\u0161ki", | ||||
| "Document properties": "Lastnosti dokumenta", | ||||
| "Image": "Slika", | ||||
| "Insert link": "Vstavi povezavo", | ||||
| "Link": "Povezava", | ||||
| "Target": "Cilj", | ||||
| "Media": "Medij", | ||||
| "Poster": "Poster", | ||||
| "Print": "Natisni", | ||||
| "Whole words": "Cele besede", | ||||
| "Find and replace": "Poi\u0161\u010di in zamenjaj", | ||||
| "Prev": "Nazaj", | ||||
| "Spellcheck": "Preverjanje \u010drkovanja", | ||||
| "Caption": "Naslov", | ||||
| "Insert template": "Vstavi predlogo" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/sv_SE.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/sv_SE.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('sv_SE',{ | ||||
| "Redo": "G\u00f6r om", | ||||
| "Undo": "\u00c5ngra", | ||||
| "Cut": "Klipp ut", | ||||
| "Copy": "Kopiera", | ||||
| "Paste": "Klistra in", | ||||
| "Select all": "Markera allt", | ||||
| "New document": "Nytt dokument", | ||||
| "Ok": "Ok", | ||||
| "Cancel": "Avbryt", | ||||
| "Visual aids": "Visuella hj\u00e4lpmedel", | ||||
| "Bold": "Fet", | ||||
| "Italic": "Kursiv", | ||||
| "Underline": "Understruken", | ||||
| "Strikethrough": "Genomstruken", | ||||
| "Superscript": "Upph\u00f6jd", | ||||
| "Subscript": "Neds\u00e4nkt", | ||||
| "Clear formatting": "Rensa formatering", | ||||
| "Align left": "V\u00e4nsterjustera", | ||||
| "Align center": "Centrera", | ||||
| "Align right": "H\u00f6gerjustera", | ||||
| "Justify": "Verifiera", | ||||
| "Bullet list": "Punktlista", | ||||
| "Numbered list": "Nummerlista", | ||||
| "Decrease indent": "Minska indrag", | ||||
| "Increase indent": "\u00d6ka indrag", | ||||
| "Close": "St\u00e4ng", | ||||
| "Formats": "Format", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Din webbl\u00e4sare st\u00f6djer inte direkt \u00e5tkomst till klippboken. Anv\u00e4nd kortkommandona Ctrl\u00a0+\u00a0X\/C\/V i st\u00e4llet.", | ||||
| "Headers": "Rubriker", | ||||
| "Header 1": "Rubrik 1", | ||||
| "Header 2": "Rubrik 2", | ||||
| "Header 3": "Rubrik 3", | ||||
| "Header 4": "Rubrik 4", | ||||
| "Header 5": "Rubrik 5", | ||||
| "Header 6": "Rubrik 6", | ||||
| "Headings": "Rubriker", | ||||
| "Heading 1": "Rubrik 1", | ||||
| "Heading 2": "Rubrik 2", | ||||
| "Heading 3": "Rubrik 3", | ||||
| "Heading 4": "Rubrik 4", | ||||
| "Heading 5": "Rubrik 5", | ||||
| "Heading 6": "Rubrik 6", | ||||
| "Preformatted": "F\u00f6rformaterad", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Kod", | ||||
| "Paragraph": "Avsnitt", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Inline", | ||||
| "Blocks": "Block", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Klistra in \u00e4r nu i textl\u00e4ge. Inneh\u00e5ll kommer att konverteras till text tills du sl\u00e5r av detta l\u00e4ge.", | ||||
| "Fonts": "Typsnitt", | ||||
| "Font Sizes": "Teckenstorlek", | ||||
| "Class": "Klass", | ||||
| "Browse for an image": "Bl\u00e4ddra efter en bild", | ||||
| "OR": "OR", | ||||
| "Drop an image here": "Sl\u00e4pp en bild h\u00e4r", | ||||
| "Upload": "Ladda upp", | ||||
| "Block": "Block", | ||||
| "Align": "Justera", | ||||
| "Default": "Original", | ||||
| "Circle": "Cirkel", | ||||
| "Disc": "Disk", | ||||
| "Square": "Fyrkant", | ||||
| "Lower Alpha": "Gemener", | ||||
| "Lower Greek": "Grekiska gemener", | ||||
| "Lower Roman": "Romerska gemener", | ||||
| "Upper Alpha": "Versaler", | ||||
| "Upper Roman": "Romerska versaler", | ||||
| "Anchor...": "Ankare...", | ||||
| "Name": "Namn", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id skall b\u00f6rja med en bokstav och f\u00f6ljande tecken ska vara bokst\u00e4ver, nummer, punkter, understr\u00e4ck eller kolon.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Du har f\u00f6r\u00e4ndringar som du inte har sparat. \u00c4r du s\u00e4ker p\u00e5 att du vill navigera vidare?", | ||||
| "Restore last draft": "\u00c5terst\u00e4ll senaste utkast", | ||||
| "Special character...": "Specialtecken...", | ||||
| "Source code": "K\u00e4llkod", | ||||
| "Insert\/Edit code sample": "Infoga\/Redigera k\u00e5d exempel", | ||||
| "Language": "Spr\u00e5k", | ||||
| "Code sample...": "Kodexempel...", | ||||
| "Color Picker": "F\u00e4rgv\u00e4ljare", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "V\u00e4nster till h\u00f6ger", | ||||
| "Right to left": "H\u00f6ger till v\u00e4nster", | ||||
| "Emoticons...": "Emoticons...", | ||||
| "Metadata and Document Properties": "Metadata och dokumentegenskaper", | ||||
| "Title": "Titel", | ||||
| "Keywords": "Nyckelord", | ||||
| "Description": "Beskrivning", | ||||
| "Robots": "Robotar", | ||||
| "Author": "F\u00f6rfattare", | ||||
| "Encoding": "Encoding", | ||||
| "Fullscreen": "Fullsk\u00e4rm", | ||||
| "Action": "H\u00e4ndelse", | ||||
| "Shortcut": "Kortkommando", | ||||
| "Help": "Hj\u00e4lp", | ||||
| "Address": "Adress", | ||||
| "Focus to menubar": "Fokusera p\u00e5 menyrad", | ||||
| "Focus to toolbar": "Fokusera p\u00e5 verktygsrad", | ||||
| "Focus to element path": "Fokusera p\u00e5 elements\u00f6kv\u00e4gsrad", | ||||
| "Focus to contextual toolbar": "Fokusera p\u00e5 den kontextuella verktygsraden", | ||||
| "Insert link (if link plugin activated)": "Infoga l\u00e4nk (om link-pluginet \u00e4r aktiverat)", | ||||
| "Save (if save plugin activated)": "Spara (om save-pluginet \u00e4r aktiverat)", | ||||
| "Find (if searchreplace plugin activated)": "S\u00f6k (om searchreplace-pluginet \u00e4r aktiverat)", | ||||
| "Plugins installed ({0}):": "Installerade plugins ({0}):", | ||||
| "Premium plugins:": "Premiumplugins:", | ||||
| "Learn more...": "L\u00e4s mer...", | ||||
| "You are using {0}": "Du anv\u00e4nder {0}", | ||||
| "Plugins": "Plugins", | ||||
| "Handy Shortcuts": "Kortkommandon", | ||||
| "Horizontal line": "Horisontell linje", | ||||
| "Insert\/edit image": "Infoga\/redigera bild", | ||||
| "Image description": "Bildbeskrivning", | ||||
| "Source": "K\u00e4lla", | ||||
| "Dimensions": "Dimensioner", | ||||
| "Constrain proportions": "Begr\u00e4nsa proportioner", | ||||
| "General": "Generella", | ||||
| "Advanced": "Avancerat", | ||||
| "Style": "Stil", | ||||
| "Vertical space": "Vertikaltutrymme", | ||||
| "Horizontal space": "Horisontellt utrymme", | ||||
| "Border": "Ram", | ||||
| "Insert image": "Infoga bild", | ||||
| "Image...": "Bild...", | ||||
| "Image list": "Bildlista", | ||||
| "Rotate counterclockwise": "Rotera moturs", | ||||
| "Rotate clockwise": "Rotera medurs", | ||||
| "Flip vertically": "Spegelv\u00e4nd vertikalt", | ||||
| "Flip horizontally": "Spegelv\u00e4nd horisontellt", | ||||
| "Edit image": "Redigera bild", | ||||
| "Image options": "Bild inst\u00e4llningar", | ||||
| "Zoom in": "Zooma in", | ||||
| "Zoom out": "Zooma ut", | ||||
| "Crop": "Besk\u00e4r", | ||||
| "Resize": "Skala om", | ||||
| "Orientation": "Orientera", | ||||
| "Brightness": "Ljusstyrka", | ||||
| "Sharpen": "Sk\u00e4rpa", | ||||
| "Contrast": "Kontrast", | ||||
| "Color levels": "F\u00e4rgniv\u00e5er", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "Invertera", | ||||
| "Apply": "Applicera", | ||||
| "Back": "Tillbaka", | ||||
| "Insert date\/time": "Infoga datum\/tid", | ||||
| "Date\/time": "Datum\/tid", | ||||
| "Insert\/Edit Link": "Infoga\/redigera l\u00e4nk", | ||||
| "Insert\/edit link": "Infoga\/redigera l\u00e4nk", | ||||
| "Text to display": "Text att visa", | ||||
| "Url": "Url", | ||||
| "Open link in...": "\u00d6ppna l\u00e4nk i...", | ||||
| "Current window": "Nuvarande f\u00f6nster", | ||||
| "None": "Ingen", | ||||
| "New window": "Nytt f\u00f6nster", | ||||
| "Remove link": "Ta bort l\u00e4nk", | ||||
| "Anchors": "Bokm\u00e4rken", | ||||
| "Link...": "L\u00e4nk...", | ||||
| "Paste or type a link": "Klistra in eller skriv en l\u00e4nk", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Urlen du angav verkar vara en epost adress. Vill du l\u00e4gga till ett mailto: prefix?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Urlen du angav verkar vara en extern l\u00e4nk. Vill du l\u00e4gga till http:\/\/ prefixet?", | ||||
| "Link list": "L\u00e4nklista", | ||||
| "Insert video": "Infoga video", | ||||
| "Insert\/edit video": "Infoga\/redigera video", | ||||
| "Insert\/edit media": "Infoga\/redigera media", | ||||
| "Alternative source": "Alternativ k\u00e4lla", | ||||
| "Alternative source URL": "Alternativ k\u00e4llwebbadress", | ||||
| "Media poster (Image URL)": "Mediaposter (bildwebbadress)", | ||||
| "Paste your embed code below:": "Klistra in din inb\u00e4ddningskod nedan:", | ||||
| "Embed": "Inb\u00e4ddning", | ||||
| "Media...": "Media...", | ||||
| "Nonbreaking space": "Avbrottsfritt mellanrum", | ||||
| "Page break": "Sidbrytning", | ||||
| "Paste as text": "Klistra in som text", | ||||
| "Preview": "F\u00f6rhandsgranska", | ||||
| "Print...": "Skriv ut...", | ||||
| "Save": "Spara", | ||||
| "Find": "S\u00f6k", | ||||
| "Replace with": "Ers\u00e4tt med", | ||||
| "Replace": "Ers\u00e4tt", | ||||
| "Replace all": "Ers\u00e4tt alla", | ||||
| "Previous": "F\u00f6reg\u00e5ende", | ||||
| "Next": "N\u00e4sta", | ||||
| "Find and replace...": "S\u00f6k och ers\u00e4tt...", | ||||
| "Could not find the specified string.": "Kunde inte hitta den specifierade st\u00e4ngen.", | ||||
| "Match case": "Matcha gemener\/versaler", | ||||
| "Find whole words only": "Hitta endast hela ord", | ||||
| "Spell check": "Stavningskontroll", | ||||
| "Ignore": "Ignorera", | ||||
| "Ignore all": "Ignorera alla", | ||||
| "Finish": "Avsluta", | ||||
| "Add to Dictionary": "L\u00e4gg till i ordlista", | ||||
| "Insert table": "Infoga tabell", | ||||
| "Table properties": "Tabellegenskaper", | ||||
| "Delete table": "Radera tabell", | ||||
| "Cell": "Cell", | ||||
| "Row": "Rad", | ||||
| "Column": "Kolumn", | ||||
| "Cell properties": "Cellegenskaper", | ||||
| "Merge cells": "Sammanfoga celler", | ||||
| "Split cell": "Bryt is\u00e4r celler", | ||||
| "Insert row before": "Infoga rad f\u00f6re", | ||||
| "Insert row after": "Infoga rad efter", | ||||
| "Delete row": "Radera rad", | ||||
| "Row properties": "Radegenskaper", | ||||
| "Cut row": "Klipp ut rad", | ||||
| "Copy row": "Kopiera rad", | ||||
| "Paste row before": "Klista in rad f\u00f6re", | ||||
| "Paste row after": "Klistra in rad efter", | ||||
| "Insert column before": "Infoga kolumn f\u00f6re", | ||||
| "Insert column after": "Infoga kolumn efter", | ||||
| "Delete column": "Radera kolumn", | ||||
| "Cols": "Kolumner", | ||||
| "Rows": "Rader", | ||||
| "Width": "Bredd", | ||||
| "Height": "H\u00f6jd", | ||||
| "Cell spacing": "Cellmellanrum", | ||||
| "Cell padding": "Cellpaddning", | ||||
| "Show caption": "Visa bildtext", | ||||
| "Left": "V\u00e4nster", | ||||
| "Center": "Centrum", | ||||
| "Right": "H\u00f6ger", | ||||
| "Cell type": "Celltyp", | ||||
| "Scope": "Omf\u00e5ng", | ||||
| "Alignment": "Justering", | ||||
| "H Align": "H-justering", | ||||
| "V Align": "V-justering", | ||||
| "Top": "Toppen", | ||||
| "Middle": "Mitten", | ||||
| "Bottom": "Botten", | ||||
| "Header cell": "Huvudcell", | ||||
| "Row group": "Radgrupp", | ||||
| "Column group": "Kolumngrupp", | ||||
| "Row type": "Radtyp", | ||||
| "Header": "Huvud", | ||||
| "Body": "Kropp", | ||||
| "Footer": "Fot", | ||||
| "Border color": "Ramf\u00e4rg", | ||||
| "Insert template...": "Infoga mall...", | ||||
| "Templates": "Mallar", | ||||
| "Template": "Mall", | ||||
| "Text color": "Textf\u00e4rg", | ||||
| "Background color": "Bakgrundsf\u00e4rg", | ||||
| "Custom...": "Anpassad...", | ||||
| "Custom color": "Anpassad f\u00e4rg", | ||||
| "No color": "Ingen f\u00e4rg", | ||||
| "Remove color": "Ta bort f\u00e4rg", | ||||
| "Table of Contents": "Inneh\u00e5llsf\u00f6rteckning", | ||||
| "Show blocks": "Visa block", | ||||
| "Show invisible characters": "Visa onsynliga tecken", | ||||
| "Word count": "Ordantal", | ||||
| "Count": "Antal", | ||||
| "Document": "Dokument", | ||||
| "Selection": "Val", | ||||
| "Words": "Ord", | ||||
| "Words: {0}": "Ord: {0}", | ||||
| "{0} words": "{0} ord", | ||||
| "File": "Fil", | ||||
| "Edit": "Redigera", | ||||
| "Insert": "Infoga", | ||||
| "View": "Visa", | ||||
| "Format": "Format", | ||||
| "Table": "Tabell", | ||||
| "Tools": "Verktyg", | ||||
| "Powered by {0}": "Powered by {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Textredigerare. Tryck ALT-F9 f\u00f6r menyn. Tryck ALT-F10 f\u00f6r verktygsrader. Tryck ALT-0 f\u00f6r hj\u00e4lp.", | ||||
| "Image title": "Bildtitel", | ||||
| "Border width": "Kantlinjebredd", | ||||
| "Border style": "Kantlinjestil", | ||||
| "Error": "Fel", | ||||
| "Warn": "Varning", | ||||
| "Valid": "Giltig", | ||||
| "To open the popup, press Shift+Enter": "Tryck p\u00e5 Shift\u00a0+\u00a0Enter f\u00f6r att \u00f6ppna popup-f\u00f6nstret", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Omr\u00e5de med formaterad text. Tryck p\u00e5 ALT-0 f\u00f6r hj\u00e4lp.", | ||||
| "System Font": "Systemtypsnitt", | ||||
| "Failed to upload image: {0}": "Kunde inte ladda upp bild: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Kunde inte l\u00e4sa in insticksprogram: {0} fr\u00e5n webbadress {1}", | ||||
| "Failed to load plugin url: {0}": "Kunde inte l\u00e4sa in webbadress f\u00f6r insticksprogram: {0}", | ||||
| "Failed to initialize plugin: {0}": "Kunde inte initiera insticksprogram: {0}", | ||||
| "example": "exempel", | ||||
| "Search": "S\u00f6k", | ||||
| "All": "Alla", | ||||
| "Currency": "Valuta", | ||||
| "Text": "Text", | ||||
| "Quotations": "Citattecken", | ||||
| "Mathematical": "Matematiskt", | ||||
| "Extended Latin": "Ut\u00f6kad latin", | ||||
| "Symbols": "Symboler", | ||||
| "Arrows": "Pilar", | ||||
| "User Defined": "Anv\u00e4ndardefinierade", | ||||
| "dollar sign": "dollartecken", | ||||
| "currency sign": "valutatecken", | ||||
| "euro-currency sign": "eurotecken", | ||||
| "colon sign": "kolon", | ||||
| "cruzeiro sign": "cruzeirotecken", | ||||
| "french franc sign": "franctecken", | ||||
| "lira sign": "liratecken", | ||||
| "mill sign": "milltecken", | ||||
| "naira sign": "nairatecken", | ||||
| "peseta sign": "pesetastecken", | ||||
| "rupee sign": "rupeetecken", | ||||
| "won sign": "wontecken", | ||||
| "new sheqel sign": "schekeltecken", | ||||
| "dong sign": "dongtecken", | ||||
| "kip sign": "kiptecken", | ||||
| "tugrik sign": "tugriktecken", | ||||
| "drachma sign": "drachmertecken", | ||||
| "german penny symbol": "tecken f\u00f6r tysk penny", | ||||
| "peso sign": "pesotecken", | ||||
| "guarani sign": "guaranitecken", | ||||
| "austral sign": "australtecken", | ||||
| "hryvnia sign": "hryvniatecken", | ||||
| "cedi sign": "ceditecken", | ||||
| "livre tournois sign": "tecken f\u00f6r livre tournois", | ||||
| "spesmilo sign": "spesmilotecken", | ||||
| "tenge sign": "tengetecken", | ||||
| "indian rupee sign": "tecken f\u00f6r indisk rupee", | ||||
| "turkish lira sign": "tecken f\u00f6r turkisk lira", | ||||
| "nordic mark sign": "tecken f\u00f6r nordisk mark", | ||||
| "manat sign": "manattecken", | ||||
| "ruble sign": "rubeltecken", | ||||
| "yen character": "yentecken", | ||||
| "yuan character": "yuantecken", | ||||
| "yuan character, in hong kong and taiwan": "yuantecken i Hongkong och Taiwan", | ||||
| "yen\/yuan character variant one": "yen-\/yuantecken variant ett", | ||||
| "Loading emoticons...": "L\u00e4ser in emoticons...", | ||||
| "Could not load emoticons": "Kunde inte l\u00e4sa in emoticons", | ||||
| "People": "M\u00e4nniskor", | ||||
| "Animals and Nature": "Djur och natur", | ||||
| "Food and Drink": "Mat och dryck", | ||||
| "Activity": "Aktivitet", | ||||
| "Travel and Places": "Resa och platser", | ||||
| "Objects": "F\u00f6rem\u00e5l", | ||||
| "Flags": "Flaggor", | ||||
| "Characters": "Tecken", | ||||
| "Characters (no spaces)": "Tecken (inga mellanrum)", | ||||
| "{0} characters": "{0} tecken", | ||||
| "Error: Form submit field collision.": "Fel: Kollision f\u00e4lt f\u00f6r s\u00e4ndning av formul\u00e4r.", | ||||
| "Error: No form element found.": "Fel: Inget formul\u00e4relement hittades.", | ||||
| "Update": "Uppdatera", | ||||
| "Color swatch": "F\u00e4rgpalett", | ||||
| "Turquoise": "Turkos", | ||||
| "Green": "Gr\u00f6n", | ||||
| "Blue": "Bl\u00e5", | ||||
| "Purple": "Lila", | ||||
| "Navy Blue": "M\u00f6rkbl\u00e5", | ||||
| "Dark Turquoise": "M\u00f6rkturkos", | ||||
| "Dark Green": "M\u00f6rkgr\u00f6n", | ||||
| "Medium Blue": "Mellanbl\u00e5", | ||||
| "Medium Purple": "Mellanlila", | ||||
| "Midnight Blue": "Midnattsbl\u00e5", | ||||
| "Yellow": "Gul", | ||||
| "Orange": "Orange", | ||||
| "Red": "R\u00f6d", | ||||
| "Light Gray": "Ljusgr\u00e5", | ||||
| "Gray": "Gr\u00e5", | ||||
| "Dark Yellow": "M\u00f6rkgul", | ||||
| "Dark Orange": "M\u00f6rkorange", | ||||
| "Dark Red": "M\u00f6rkr\u00f6d", | ||||
| "Medium Gray": "Mellangr\u00e5", | ||||
| "Dark Gray": "M\u00f6rkgr\u00e5", | ||||
| "Light Green": "Ljusgr\u00f6n", | ||||
| "Light Yellow": "Ljusgul", | ||||
| "Light Red": "Ljusr\u00f6d", | ||||
| "Light Purple": "Ljuslila", | ||||
| "Light Blue": "Ljusbl\u00e5", | ||||
| "Dark Purple": "M\u00f6rklila", | ||||
| "Dark Blue": "M\u00f6rkbl\u00e5", | ||||
| "Black": "Svart", | ||||
| "White": "Vit", | ||||
| "Switch to or from fullscreen mode": "V\u00e4xla till eller fr\u00e5n fullsk\u00e4rmsl\u00e4ge", | ||||
| "Open help dialog": "\u00d6ppna hj\u00e4lpdialogrutan", | ||||
| "history": "historik", | ||||
| "styles": "stilar", | ||||
| "formatting": "formatering", | ||||
| "alignment": "justering", | ||||
| "indentation": "indragning", | ||||
| "permanent pen": "permanent penna", | ||||
| "comments": "kommentarer", | ||||
| "Format Painter": "H\u00e4mta format", | ||||
| "Insert\/edit iframe": "Infoga\/redigera iframe", | ||||
| "Capitalization": "Versaler", | ||||
| "lowercase": "gemener", | ||||
| "UPPERCASE": "VERSALER", | ||||
| "Title Case": "Inledande versal", | ||||
| "Permanent Pen Properties": "Permanenta pennegenskaper", | ||||
| "Permanent pen properties...": "Permanenta pennegenskaper\u00a0\u2026", | ||||
| "Font": "Teckensnitt", | ||||
| "Size": "Storlek", | ||||
| "More...": "Mer...", | ||||
| "Spellcheck Language": "Spr\u00e5k f\u00f6r stavningskontroll", | ||||
| "Select...": "V\u00e4lj...", | ||||
| "Preferences": "Inst\u00e4llningar", | ||||
| "Yes": "Ja", | ||||
| "No": "Nej", | ||||
| "Keyboard Navigation": "Tangentbordsnavigering", | ||||
| "Version": "Version", | ||||
| "Anchor": "Ankare", | ||||
| "Special character": "Specialtecken", | ||||
| "Code sample": "K\u00e5dexempel", | ||||
| "Color": "F\u00e4rg", | ||||
| "Emoticons": "Emoticons", | ||||
| "Document properties": "Dokumentegenskaper", | ||||
| "Image": "Bild", | ||||
| "Insert link": "Infoga l\u00e4nk", | ||||
| "Target": "M\u00e5l", | ||||
| "Link": "L\u00e4nk", | ||||
| "Poster": "Affish", | ||||
| "Media": "Media", | ||||
| "Print": "Skriv ut", | ||||
| "Prev": "F\u00f6reg\u00e5ende", | ||||
| "Find and replace": "S\u00f6k och ers\u00e4tt", | ||||
| "Whole words": "Hela ord", | ||||
| "Spellcheck": "R\u00e4ttstava", | ||||
| "Caption": "Rubrik", | ||||
| "Insert template": "Infoga mall" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/ta.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/ta.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('ta',{ | ||||
| "Redo": "\u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0b95", | ||||
| "Undo": "\u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0ba4\u0bb5\u0bbf\u0bb0\u0bcd\u0b95\u0bcd\u0b95", | ||||
| "Cut": "\u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Copy": "\u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Paste": "\u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Select all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95", | ||||
| "New document": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b86\u0bb5\u0ba3\u0bae\u0bcd", | ||||
| "Ok": "\u0b9a\u0bb0\u0bbf", | ||||
| "Cancel": "\u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95", | ||||
| "Visual aids": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0ba4\u0bcd \u0ba4\u0bc1\u0ba3\u0bc8\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Bold": "\u0ba4\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Italic": "\u0b9a\u0bbe\u0baf\u0bcd\u0bb5\u0bc1", | ||||
| "Underline": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1", | ||||
| "Strikethrough": "\u0ba8\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1", | ||||
| "Superscript": "\u0bae\u0bc7\u0bb2\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1", | ||||
| "Subscript": "\u0b95\u0bc0\u0bb4\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1", | ||||
| "Clear formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b85\u0bb4\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Align left": "\u0b87\u0b9f\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", | ||||
| "Align center": "\u0bae\u0bc8\u0baf \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", | ||||
| "Align right": "\u0bb5\u0bb2\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", | ||||
| "Justify": "\u0ba8\u0bc7\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0b95", | ||||
| "Bullet list": "\u0baa\u0bca\u0b9f\u0bcd\u0b9f\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f  \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", | ||||
| "Numbered list": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", | ||||
| "Decrease indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b95\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95", | ||||
| "Increase indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b85\u0ba4\u0bbf\u0b95\u0bb0\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Close": "\u0bae\u0bc2\u0b9f\u0bc1\u0b95", | ||||
| "Formats": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0ba8\u0b95\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0ba8\u0bc7\u0bb0\u0b9f\u0bbf \u0b85\u0ba3\u0bc1\u0b95\u0bb2\u0bc8 \u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb2\u0bbe\u0bb5\u0bbf \u0b86\u0ba4\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. \u0b86\u0b95\u0bb5\u0bc7 \u0bb5\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0bb2\u0b95\u0bc8 \u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf\u0b95\u0bb3\u0bbe\u0ba9 Ctrl+X\/C\/V \u0b87\u0bb5\u0bb1\u0bcd\u0bb1\u0bc8 \u0ba4\u0baf\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95.", | ||||
| "Headers": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Header 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1", | ||||
| "Header 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2", | ||||
| "Header 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3", | ||||
| "Header 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4", | ||||
| "Header 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5", | ||||
| "Header 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6", | ||||
| "Headings": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Heading 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1", | ||||
| "Heading 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2", | ||||
| "Heading 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3", | ||||
| "Heading 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4", | ||||
| "Heading 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5", | ||||
| "Heading 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6", | ||||
| "Preformatted": "\u0bae\u0bc1\u0ba9\u0bcd\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1", | ||||
| "Div": "\u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1 (Div)", | ||||
| "Pre": "\u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 (Pre)", | ||||
| "Code": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1", | ||||
| "Paragraph": "\u0baa\u0ba4\u0bcd\u0ba4\u0bbf", | ||||
| "Blockquote": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bcb\u0bb3\u0bcd", | ||||
| "Inline": "\u0b89\u0bb3\u0bcd\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", | ||||
| "Blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8 \u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0ba4\u0bb2\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0ba8\u0bcd\u0ba4 \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc8 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0bb5\u0bb0\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0bae\u0bcd.", | ||||
| "Fonts": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Font Sizes": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b85\u0bb3\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Class": "Class", | ||||
| "Browse for an image": "\u0b92\u0bb0\u0bc1 \u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0b89\u0bb2\u0bbe\u0bb5\u0bc1\u0b95", | ||||
| "OR": "\u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1", | ||||
| "Drop an image here": "\u0b92\u0bb0\u0bc1 \u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b87\u0b99\u0bcd\u0b95\u0bc1 \u0b87\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd \u0baa\u0bcb\u0b9f\u0bb5\u0bc1\u0bae\u0bcd", | ||||
| "Upload": "\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Block": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf", | ||||
| "Align": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8", | ||||
| "Default": "\u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Circle": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bae\u0bcd", | ||||
| "Disc": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bc1", | ||||
| "Square": "\u0b9a\u0ba4\u0bc1\u0bb0\u0bae\u0bcd", | ||||
| "Lower Alpha": "\u0b95\u0bc0\u0bb4\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", | ||||
| "Lower Greek": "\u0b95\u0bc0\u0bb4\u0bcd \u0b95\u0bbf\u0bb0\u0bc7\u0b95\u0bcd\u0b95\u0bae\u0bcd", | ||||
| "Lower Roman": "\u0b95\u0bc0\u0bb4\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd", | ||||
| "Upper Alpha": "\u0bae\u0bc7\u0bb2\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", | ||||
| "Upper Roman": "\u0bae\u0bc7\u0bb2\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd", | ||||
| "Anchor...": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd...", | ||||
| "Name": "\u0baa\u0bc6\u0baf\u0bb0\u0bcd", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0b86\u0ba9\u0ba4\u0bc1 \u0b92\u0bb0\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0ba4\u0bca\u0b9f\u0b99\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd; \u0b87\u0ba4\u0ba9\u0bc8\u0ba4\u0bcd \u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd, \u0b8e\u0ba3\u0bcd\u0b95\u0bb3\u0bcd, \u0b87\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc7\u0bbe\u0b9f\u0bc1\u0b95\u0bb3\u0bcd (-), \u0baa\u0bc1\u0bb3\u0bcd\u0bb3\u0bbf\u0b95\u0bb3\u0bcd (.), \u0bae\u0bc1\u0b95\u0bcd\u0b95\u0bbe\u0bb1\u0bcd\u0baa\u0bc1\u0bb3\u0bcd\u0bb3\u0bbf\u0b95\u0bb3\u0bcd (:) \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc7\u0bbe\u0b9f\u0bc1\u0b95\u0bb3\u0bcd (_) \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0b87\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba9; \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baf\u0bbe\u0b95 \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7\u0bb1 \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bbe\u0bb3\u0bbe?", | ||||
| "Restore last draft": "\u0b95\u0b9f\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bc0\u0b9f\u0bcd\u0b9f\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Special character...": "\u0b9a\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc1...", | ||||
| "Source code": "\u0bae\u0bc2\u0bb2 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1", | ||||
| "Insert\/Edit code sample": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Language": "\u0bae\u0bca\u0bb4\u0bbf", | ||||
| "Code sample...": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf...", | ||||
| "Color Picker": "\u0ba8\u0bbf\u0bb1\u0ba4\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0bb5\u0bc1", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "\u0b87\u0b9f\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bb5\u0bb2\u0bae\u0bcd", | ||||
| "Right to left": "\u0bb5\u0bb2\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0b87\u0b9f\u0bae\u0bcd", | ||||
| "Emoticons...": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Metadata and Document Properties": "\u0bae\u0bc0\u0ba4\u0bcd\u0ba4\u0bb0\u0bb5\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b86\u0bb5\u0ba3\u0baa\u0bcd \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Title": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Keywords": "\u0bae\u0bc1\u0ba4\u0ba9\u0bcd\u0bae\u0bc8\u0b9a\u0bcd\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Description": "\u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd", | ||||
| "Robots": "\u0baa\u0bca\u0bb1\u0bbf\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd (Robots)", | ||||
| "Author": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0bb3\u0bb0\u0bcd", | ||||
| "Encoding": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd", | ||||
| "Fullscreen": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8", | ||||
| "Action": "\u0b9a\u0bc6\u0baf\u0bb2\u0bcd", | ||||
| "Shortcut": "\u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf", | ||||
| "Help": "\u0b89\u0ba4\u0bb5\u0bbf", | ||||
| "Address": "\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf", | ||||
| "Focus to menubar": "\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", | ||||
| "Focus to toolbar": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", | ||||
| "Focus to element path": "\u0bae\u0bc2\u0bb2\u0b95\u0baa\u0bcd \u0baa\u0bbe\u0ba4\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", | ||||
| "Focus to contextual toolbar": "\u0b9a\u0bc2\u0bb4\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", | ||||
| "Insert link (if link plugin activated)": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95 (\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)", | ||||
| "Save (if save plugin activated)": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 (\u0b9a\u0bc7\u0bae\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)", | ||||
| "Find (if searchreplace plugin activated)": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 (\u0ba4\u0bc7\u0b9f\u0bbf\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bb2\u0bcd \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)", | ||||
| "Plugins installed ({0}):": "\u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd ({0}):", | ||||
| "Premium plugins:": "\u0b89\u0baf\u0bb0\u0bcd\u0bae\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd:", | ||||
| "Learn more...": "\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd \u0b85\u0bb1\u0bbf\u0b95...", | ||||
| "You are using {0}": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0ba4\u0bc1 {0}", | ||||
| "Plugins": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "Handy Shortcuts": "\u0b8e\u0bb3\u0bbf\u0ba4\u0bbf\u0bb2\u0bcd \u0b95\u0bc8\u0baf\u0bbe\u0bb3\u0b95\u0bcd\u0b95\u0bc2\u0b9f\u0bbf\u0baf \u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "Horizontal line": "\u0b95\u0bbf\u0b9f\u0bc8 \u0b95\u0bcb\u0b9f\u0bc1", | ||||
| "Insert\/edit image": "\u0baa\u0b9f\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Image description": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd", | ||||
| "Source": "\u0bae\u0bc2\u0bb2\u0bae\u0bcd", | ||||
| "Dimensions": "\u0baa\u0bb0\u0bbf\u0bae\u0bbe\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Constrain proportions": "\u0bb5\u0bbf\u0b95\u0bbf\u0ba4\u0bbe\u0b9a\u0bcd\u0b9a\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", | ||||
| "General": "\u0baa\u0bca\u0ba4\u0bc1", | ||||
| "Advanced": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1", | ||||
| "Style": "\u0baa\u0bbe\u0ba3\u0bbf", | ||||
| "Vertical space": "\u0ba8\u0bc6\u0b9f\u0bc1\u0ba4\u0bb3 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", | ||||
| "Horizontal space": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", | ||||
| "Border": "\u0b95\u0bb0\u0bc8", | ||||
| "Insert image": "\u0baa\u0b9f\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Image...": "\u0baa\u0b9f\u0bae\u0bcd...", | ||||
| "Image list": "\u0baa\u0b9f\u0baa\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", | ||||
| "Rotate counterclockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0 \u0b8e\u0ba4\u0bbf\u0bb0\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1", | ||||
| "Rotate clockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1", | ||||
| "Flip vertically": "\u0b9a\u0bc6\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1", | ||||
| "Flip horizontally": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f\u0bae\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1", | ||||
| "Edit image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0ba4\u0bca\u0b95\u0bc1", | ||||
| "Image options": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Zoom in": "\u0baa\u0bc6\u0bb0\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1", | ||||
| "Zoom out": "\u0b9a\u0bbf\u0bb1\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1", | ||||
| "Crop": "\u0b9a\u0bc6\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bc1", | ||||
| "Resize": "\u0bae\u0bb1\u0bc1\u0b85\u0bb3\u0bb5\u0bbf\u0b9f\u0bc1", | ||||
| "Orientation": "\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bae\u0bc8\u0bb5\u0bc1", | ||||
| "Brightness": "\u0b92\u0bb3\u0bbf\u0bb0\u0bcd\u0bb5\u0bc1", | ||||
| "Sharpen": "\u0b95\u0bc2\u0bb0\u0bcd\u0bae\u0bc8\u0baf\u0bbe\u0b95\u0bcd\u0b95\u0bc1", | ||||
| "Contrast": "\u0ba8\u0bbf\u0bb1\u0bae\u0bbe\u0bb1\u0bc1\u0baa\u0bbe\u0b9f\u0bc1", | ||||
| "Color levels": "\u0bb5\u0ba3\u0bcd\u0ba3 \u0ba8\u0bbf\u0bb2\u0bc8\u0b95\u0bb3\u0bcd", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "\u0ba8\u0bc7\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1", | ||||
| "Apply": "\u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", | ||||
| "Back": "\u0baa\u0bbf\u0ba9\u0bcd", | ||||
| "Insert date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd", | ||||
| "Insert\/Edit Link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Insert\/edit link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Text to display": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbf\u0baf \u0b89\u0bb0\u0bc8", | ||||
| "Url": "\u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf", | ||||
| "Open link in...": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b87\u0ba4\u0bbf\u0bb2\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95...", | ||||
| "Current window": "\u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc8\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd", | ||||
| "None": "\u0b8f\u0ba4\u0bc1\u0bae\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8", | ||||
| "New window": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd", | ||||
| "Remove link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Anchors": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0b99\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Link...": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1...", | ||||
| "Paste or type a link": "\u0b92\u0bb0\u0bc1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95 \u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0ba4\u0b9f\u0bcd\u0b9f\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bae\u0bbf\u0ba9\u0bcd-\u0b85\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd \u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 mailto: \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bb5\u0bc6\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 (external link) \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 http:\/\/ \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?", | ||||
| "Link list": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0baa\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", | ||||
| "Insert video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Insert\/edit video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Insert\/edit media": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Alternative source": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2\u0bae\u0bcd", | ||||
| "Alternative source URL": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2 \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf", | ||||
| "Media poster (Image URL)": "\u0b8a\u0b9f\u0b95 \u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf (\u0b89\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf)", | ||||
| "Paste your embed code below:": "\u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0b9f\u0bcd\u0baa\u0bc6\u0bbe\u0ba4\u0bbf \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b95\u0bc0\u0bb4\u0bc7 \u0b92\u0b9f\u0bcd\u0b9f\u0bb5\u0bc1\u0bae\u0bcd:", | ||||
| "Embed": "\u0b89\u0b9f\u0bcd\u0baa\u0bca\u0ba4\u0bbf", | ||||
| "Media...": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd...", | ||||
| "Nonbreaking space": "\u0baa\u0bbf\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", | ||||
| "Page break": "\u0baa\u0b95\u0bcd\u0b95 \u0baa\u0bbf\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Paste as text": "\u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Preview": "\u0bae\u0bc1\u0ba9\u0bcd\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1", | ||||
| "Print...": "\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95...", | ||||
| "Save": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Find": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Replace with": "\u0b87\u0ba4\u0ba9\u0bc1\u0b9f\u0ba9\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Replace": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Replace all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Previous": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf", | ||||
| "Next": "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4", | ||||
| "Find and replace...": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95...", | ||||
| "Could not find the specified string.": "\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f \u0b9a\u0bb0\u0bae\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8", | ||||
| "Match case": "\u0bb5\u0b9f\u0bbf\u0bb5\u0ba4\u0bcd\u0ba4\u0bc8 \u0baa\u0bca\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", | ||||
| "Find whole words only": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Spell check": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Ignore": "\u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Ignore all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Finish": "\u0bae\u0bc1\u0b9f\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Add to Dictionary": "\u0b85\u0b95\u0bb0\u0bbe\u0ba4\u0bbf\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95", | ||||
| "Insert table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Table properties": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Delete table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", | ||||
| "Cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8", | ||||
| "Row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", | ||||
| "Column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", | ||||
| "Cell properties": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Merge cells": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95", | ||||
| "Split cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0bbf\u0bb0\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Insert row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Insert row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Delete row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", | ||||
| "Row properties": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Cut row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Copy row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Paste row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Paste row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Insert column before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Insert column after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Delete column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", | ||||
| "Cols": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd", | ||||
| "Rows": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd", | ||||
| "Width": "\u0b85\u0b95\u0bb2\u0bae\u0bcd", | ||||
| "Height": "\u0b89\u0baf\u0bb0\u0bae\u0bcd", | ||||
| "Cell spacing": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", | ||||
| "Cell padding": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0ba8\u0bbf\u0bb0\u0baa\u0bcd\u0baa\u0bb2\u0bcd", | ||||
| "Show caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Left": "\u0b87\u0b9f\u0bae\u0bcd", | ||||
| "Center": "\u0bae\u0bc8\u0baf\u0bae\u0bcd", | ||||
| "Right": "\u0bb5\u0bb2\u0bae\u0bcd", | ||||
| "Cell type": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0bb5\u0b95\u0bc8", | ||||
| "Scope": "\u0bb5\u0bb0\u0bc8\u0baf\u0bc6\u0bb2\u0bcd\u0bb2\u0bc8", | ||||
| "Alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1", | ||||
| "H Align": "\u0b95\u0bbf (H) \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", | ||||
| "V Align": "\u0b9a\u0bc6 (V) \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", | ||||
| "Top": "\u0bae\u0bc7\u0bb2\u0bcd", | ||||
| "Middle": "\u0ba8\u0b9f\u0bc1", | ||||
| "Bottom": "\u0b95\u0bc0\u0bb4\u0bcd", | ||||
| "Header cell": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8", | ||||
| "Row group": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1", | ||||
| "Column group": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1", | ||||
| "Row type": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0b95\u0bc8", | ||||
| "Header": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Body": "\u0b89\u0b9f\u0bb2\u0bcd", | ||||
| "Footer": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Border color": "\u0b95\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", | ||||
| "Insert template...": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95...", | ||||
| "Templates": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1", | ||||
| "Text color": "\u0b89\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", | ||||
| "Background color": "\u0baa\u0bbf\u0ba9\u0bcd\u0ba9\u0ba3\u0bbf \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", | ||||
| "Custom...": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd...", | ||||
| "Custom color": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", | ||||
| "No color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8", | ||||
| "Remove color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Table of Contents": "\u0baa\u0bca\u0bb0\u0bc1\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0bae\u0bcd", | ||||
| "Show blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Show invisible characters": "\u0b95\u0ba3\u0bcd\u0ba3\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0ba4\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Word count": "\u0b9a\u0bca\u0bb2\u0bcd \u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b95\u0bcd\u0b95\u0bc8", | ||||
| "Count": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b95\u0bcd\u0b95\u0bc8", | ||||
| "Document": "\u0b86\u0bb5\u0ba3\u0bae\u0bcd", | ||||
| "Selection": "\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1", | ||||
| "Words": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Words: {0}": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd: {0}", | ||||
| "{0} words": "{0} \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "File": "\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Edit": "\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Insert": "\u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "View": "\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1\u0b95", | ||||
| "Format": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8", | ||||
| "Tools": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "Powered by {0}": "\u0bb5\u0bb2\u0bc1\u0bb5\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0ba4\u0bc1 {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0b89\u0baf\u0bb0\u0bcd \u0b89\u0bb0\u0bc8 \u0baa\u0b95\u0bc1\u0ba4\u0bbf. \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-F9 , \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc1 ALT-F10 , \u0b89\u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-0", | ||||
| "Image title": "\u0baa\u0b9f\u0ba4\u0bcd \u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Border width": "\u0b95\u0bb0\u0bc8 \u0b85\u0b95\u0bb2\u0bae\u0bcd", | ||||
| "Border style": "\u0b95\u0bb0\u0bc8 \u0baa\u0bbe\u0ba3\u0bbf", | ||||
| "Error": "\u0baa\u0bbf\u0bb4\u0bc8", | ||||
| "Warn": "\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Valid": "\u0b9a\u0bc6\u0bb2\u0bcd\u0bb2\u0ba4\u0bcd\u0ba4\u0b95\u0bcd\u0b95\u0ba4\u0bc1", | ||||
| "To open the popup, press Shift+Enter": "\u0bae\u0bc7\u0bb2\u0bcd\u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1-\u0bb5\u0bc8\u0ba4\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95 Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u0b89\u0baf\u0bb0\u0bcd \u0b89\u0bb0\u0bc8 \u0baa\u0b95\u0bc1\u0ba4\u0bbf. \u0b89\u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-0", | ||||
| "System Font": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1", | ||||
| "Failed to upload image: {0}": "\u0baa\u0b9f\u0bae\u0bcd \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b8f\u0bb1\u0bcd\u0bb1\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0} - {1} \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf\u0baf\u0bbf\u0bb2\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1", | ||||
| "Failed to load plugin url: {0}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0b8f\u0bb1\u0bcd\u0bb1\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}", | ||||
| "Failed to initialize plugin: {0}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0ba4\u0bc1\u0bb5\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}", | ||||
| "example": "\u0b89\u0ba4\u0bbe\u0bb0\u0ba3\u0bae\u0bcd", | ||||
| "Search": "\u0ba4\u0bc7\u0b9f\u0bc1\u0b95", | ||||
| "All": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0bae\u0bcd", | ||||
| "Currency": "\u0b9a\u0bc6\u0bb2\u0bbe\u0bb5\u0ba3\u0bbf (Currency)", | ||||
| "Text": "\u0b89\u0bb0\u0bc8", | ||||
| "Quotations": "\u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bc7\u0bbe\u0bb3\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Mathematical": "\u0b95\u0ba3\u0b95\u0bcd\u0b95\u0bbf\u0baf\u0bb2\u0bcd", | ||||
| "Extended Latin": "\u0ba8\u0bc0\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0b87\u0bb2\u0ba4\u0bcd\u0ba4\u0bc0\u0ba9\u0bcd", | ||||
| "Symbols": "\u0b87\u0b9f\u0bc1\u0b95\u0bc1\u0bb1\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "Arrows": "\u0b85\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "User Defined": "\u0baa\u0baf\u0ba9\u0bb0\u0bcd \u0bb5\u0bb0\u0bc8\u0baf\u0bb1\u0bc1\u0ba4\u0bcd\u0ba4", | ||||
| "dollar sign": "dollar \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "currency sign": "\u0b9a\u0bc6\u0bb2\u0bbe\u0bb5\u0ba3\u0bbf\u0b95\u0bcd \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "euro-currency sign": "euro-currency \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "colon sign": "colon \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "cruzeiro sign": "cruzeiro \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "french franc sign": "french franc \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "lira sign": "lira \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "mill sign": "mill \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "naira sign": "naira \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "peseta sign": "peseta \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "rupee sign": "rupee \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "won sign": "won \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "new sheqel sign": "new sheqel \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "dong sign": "dong \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "kip sign": "kip \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "tugrik sign": "tugrik \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "drachma sign": "drachma \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "german penny symbol": "german penny \u0b87\u0b9f\u0bc1\u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "peso sign": "peso \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "guarani sign": "guarani \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "austral sign": "austral \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "hryvnia sign": "hryvnia \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "cedi sign": "cedi \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "livre tournois sign": "livre tournois \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "spesmilo sign": "spesmilo \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "tenge sign": "tenge \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "indian rupee sign": "indian rupee \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "turkish lira sign": "turkish lira \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "nordic mark sign": "nordic mark \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "manat sign": "manat \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "ruble sign": "ruble \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "yen character": "yen \u0b89\u0bb0\u0bc1", | ||||
| "yuan character": "yuan \u0b89\u0bb0\u0bc1", | ||||
| "yuan character, in hong kong and taiwan": "yuan \u0b89\u0bb0\u0bc1, \u0bb9\u0bbe\u0b99\u0bcd\u0b95\u0bbe\u0b99\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0ba4\u0bbe\u0baf\u0bcd\u0bb5\u0bbe\u0ba9\u0bcd \u0b87\u0bb2\u0bcd", | ||||
| "yen\/yuan character variant one": "yen\/yuan \u0b89\u0bb0\u0bc1 \u0bae\u0bbe\u0bb1\u0bc1\u0baa\u0bbe\u0b9f\u0bc1", | ||||
| "Loading emoticons...": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b8f\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0ba9\u0bcd\u0bb1\u0ba9...", | ||||
| "Could not load emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0b8f\u0bb1\u0bcd\u0bb1 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8", | ||||
| "People": "\u0bae\u0b95\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Animals and Nature": "\u0bae\u0bbf\u0bb0\u0bc1\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b87\u0baf\u0bb1\u0bcd\u0b95\u0bc8", | ||||
| "Food and Drink": "\u0b89\u0ba3\u0bb5\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0baa\u0bbe\u0ba9\u0bae\u0bcd", | ||||
| "Activity": "\u0b9a\u0bc6\u0baf\u0bb1\u0bcd\u0baa\u0bbe\u0b9f\u0bc1", | ||||
| "Travel and Places": "\u0baa\u0baf\u0ba3\u0bae\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b87\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Objects": "\u0baa\u0bca\u0bb0\u0bc1\u0b9f\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Flags": "\u0b95\u0bca\u0b9f\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "Characters": "\u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Characters (no spaces)": "\u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd (\u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf\u0b95\u0bb3\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8)", | ||||
| "{0} characters": "{0} \u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Error: Form submit field collision.": "\u0baa\u0bbf\u0bb4\u0bc8: \u0baa\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0b9a\u0bae\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bbf\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0baa\u0bc1\u0bb2\u0bae\u0bcd \u0bae\u0bcb\u0ba4\u0bb2\u0bcd.", | ||||
| "Error: No form element found.": "\u0baa\u0bbf\u0bb4\u0bc8: \u0baa\u0bc1\u0bb2\u0bae\u0bcd \u0bae\u0bc2\u0bb2\u0b95\u0bae\u0bcd \u0b8e\u0ba4\u0bc1\u0bb5\u0bc1\u0bae\u0bcd \u0b95\u0bbe\u0ba3\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.", | ||||
| "Update": "\u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Color swatch": "\u0ba8\u0bbf\u0bb1\u0b9a\u0bcd \u0b9a\u0bcb\u0ba4\u0ba9\u0bc8\u0b95\u0bcd\u0b95\u0bb2\u0bb5\u0bc8", | ||||
| "Turquoise": "\u0ba8\u0bc0\u0bb2\u0baa\u0bcd\u0baa\u0b9a\u0bcd\u0b9a\u0bc8", | ||||
| "Green": "\u0baa\u0b9a\u0bcd\u0b9a\u0bc8", | ||||
| "Blue": "\u0ba8\u0bc0\u0bb2\u0bae\u0bcd", | ||||
| "Purple": "\u0b8a\u0ba4\u0bbe", | ||||
| "Navy Blue": "\u0b95\u0b9f\u0bb1\u0bcd\u0baa\u0b9f\u0bc8 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", | ||||
| "Dark Turquoise": "\u0b85\u0b9f\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0baa\u0bcd\u0baa\u0b9a\u0bcd\u0b9a\u0bc8", | ||||
| "Dark Green": "\u0b85\u0b9f\u0bb0\u0bcd \u0baa\u0b9a\u0bcd\u0b9a\u0bc8", | ||||
| "Medium Blue": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", | ||||
| "Medium Purple": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0b8a\u0ba4\u0bbe", | ||||
| "Midnight Blue": "\u0ba8\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bb5\u0bc1 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", | ||||
| "Yellow": "\u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", | ||||
| "Orange": "\u0b9a\u0bbf\u0bb5\u0ba8\u0bcd\u0ba4 \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", | ||||
| "Red": "\u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Light Gray": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd", | ||||
| "Gray": "\u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd", | ||||
| "Dark Yellow": "\u0b85\u0b9f\u0bb0\u0bcd \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", | ||||
| "Dark Orange": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbf\u0bb5\u0ba8\u0bcd\u0ba4 \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", | ||||
| "Dark Red": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Medium Gray": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd", | ||||
| "Dark Gray": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd", | ||||
| "Light Green": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0baa\u0b9a\u0bcd\u0b9a\u0bc8", | ||||
| "Light Yellow": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", | ||||
| "Light Red": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd\u00a0\u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Light Purple": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0b8a\u0ba4\u0bbe", | ||||
| "Light Blue": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", | ||||
| "Dark Purple": "\u0b85\u0b9f\u0bb0\u0bcd \u0b8a\u0ba4\u0bbe", | ||||
| "Dark Blue": "\u0b85\u0b9f\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", | ||||
| "Black": "\u0b95\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "White": "\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bc8", | ||||
| "Switch to or from fullscreen mode": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8 \u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0bc1\/\u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0baf\u0bbf\u0bb2\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bc1\u0b95", | ||||
| "Open help dialog": "\u0b89\u0ba4\u0bb5\u0bbf \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b9f\u0bb2\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95", | ||||
| "history": "\u0bb5\u0bb0\u0bb2\u0bbe\u0bb1\u0bc1", | ||||
| "styles": "\u0baa\u0bbe\u0ba3\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd", | ||||
| "alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1", | ||||
| "indentation": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bcd", | ||||
| "permanent pen": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe", | ||||
| "comments": "\u0b95\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Format Painter": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc2\u0b9a\u0bbe\u0bb3\u0ba9\u0bcd", | ||||
| "Insert\/edit iframe": "iframe \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Capitalization": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd", | ||||
| "lowercase": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bc6\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", | ||||
| "UPPERCASE": "\u0baa\u0bc7\u0bb0\u0bc6\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", | ||||
| "Title Case": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd", | ||||
| "Permanent Pen Properties": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Permanent pen properties...": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd...", | ||||
| "Font": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1", | ||||
| "Size": "\u0b85\u0bb3\u0bb5\u0bc1", | ||||
| "More...": "\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd...", | ||||
| "Spellcheck Language": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1 \u0bae\u0bca\u0bb4\u0bbf", | ||||
| "Select...": "\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95...", | ||||
| "Preferences": "\u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b99\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Yes": "\u0b86\u0bae\u0bcd", | ||||
| "No": "\u0b87\u0bb2\u0bcd\u0bb2\u0bc8", | ||||
| "Keyboard Navigation": "\u0bb5\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0bb2\u0b95\u0bc8 \u0bb5\u0bb4\u0bbf\u0b9a\u0bcd\u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd", | ||||
| "Version": "\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Anchor": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd", | ||||
| "Special character": "\u0b9a\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1", | ||||
| "Code sample": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf", | ||||
| "Color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd", | ||||
| "Emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Document properties": "\u0b86\u0bb5\u0ba3\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Image": "\u0baa\u0b9f\u0bae\u0bcd", | ||||
| "Insert link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Target": "\u0b87\u0bb2\u0b95\u0bcd\u0b95\u0bc1", | ||||
| "Link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Poster": "\u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf", | ||||
| "Media": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd", | ||||
| "Print": "\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95", | ||||
| "Prev": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf", | ||||
| "Find and replace": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Whole words": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Spellcheck": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95", | ||||
| "Caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Insert template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/ta_IN.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/ta_IN.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('ta_IN',{ | ||||
| "Redo": "\u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0b95", | ||||
| "Undo": "\u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0ba4\u0bb5\u0bbf\u0bb0\u0bcd\u0b95\u0bcd\u0b95", | ||||
| "Cut": "\u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Copy": "\u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Paste": "\u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Select all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95", | ||||
| "New document": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b86\u0bb5\u0ba3\u0bae\u0bcd", | ||||
| "Ok": "\u0b9a\u0bb0\u0bbf", | ||||
| "Cancel": "\u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95", | ||||
| "Visual aids": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0ba4\u0bcd \u0ba4\u0bc1\u0ba3\u0bc8\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Bold": "\u0ba4\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Italic": "\u0b9a\u0bbe\u0baf\u0bcd\u0bb5\u0bc1", | ||||
| "Underline": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1", | ||||
| "Strikethrough": "\u0ba8\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bcb\u0b9f\u0bc1", | ||||
| "Superscript": "\u0bae\u0bc7\u0bb2\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1", | ||||
| "Subscript": "\u0b95\u0bc0\u0bb4\u0bcd\u0b92\u0b9f\u0bcd\u0b9f\u0bc1", | ||||
| "Clear formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b85\u0bb4\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Align left": "\u0b87\u0b9f\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", | ||||
| "Align center": "\u0bae\u0bc8\u0baf \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", | ||||
| "Align right": "\u0bb5\u0bb2\u0ba4\u0bc1 \u0b9a\u0bc0\u0bb0\u0bae\u0bc8", | ||||
| "Justify": "\u0ba8\u0bc7\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0b95", | ||||
| "Bullet list": "\u0baa\u0bca\u0b9f\u0bcd\u0b9f\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f  \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", | ||||
| "Numbered list": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", | ||||
| "Decrease indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b95\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95", | ||||
| "Increase indent": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bc8 \u0b85\u0ba4\u0bbf\u0b95\u0bb0\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Close": "\u0bae\u0bc2\u0b9f\u0bc1\u0b95", | ||||
| "Formats": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0ba8\u0b95\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0ba8\u0bc7\u0bb0\u0b9f\u0bbf \u0b85\u0ba3\u0bc1\u0b95\u0bb2\u0bc8 \u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb2\u0bbe\u0bb5\u0bbf \u0b86\u0ba4\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. \u0b86\u0b95\u0bb5\u0bc7 \u0bb5\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0bb2\u0b95\u0bc8 \u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf\u0b95\u0bb3\u0bbe\u0ba9 Ctrl+X\/C\/V \u0b87\u0bb5\u0bb1\u0bcd\u0bb1\u0bc8 \u0ba4\u0baf\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95.", | ||||
| "Headers": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Header 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1", | ||||
| "Header 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2", | ||||
| "Header 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3", | ||||
| "Header 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4", | ||||
| "Header 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5", | ||||
| "Header 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6", | ||||
| "Headings": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Heading 1": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 1", | ||||
| "Heading 2": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 2", | ||||
| "Heading 3": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 3", | ||||
| "Heading 4": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 4", | ||||
| "Heading 5": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 5", | ||||
| "Heading 6": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 6", | ||||
| "Preformatted": "\u0bae\u0bc1\u0ba9\u0bcd\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1", | ||||
| "Div": "\u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1 (Div)", | ||||
| "Pre": "\u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 (Pre)", | ||||
| "Code": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1", | ||||
| "Paragraph": "\u0baa\u0ba4\u0bcd\u0ba4\u0bbf", | ||||
| "Blockquote": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bcb\u0bb3\u0bcd", | ||||
| "Inline": "\u0b89\u0bb3\u0bcd\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", | ||||
| "Blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8 \u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0ba4\u0bb2\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0ba8\u0bcd\u0ba4 \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc8 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0bb5\u0bb0\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0bae\u0bcd.", | ||||
| "Fonts": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Font Sizes": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b85\u0bb3\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Class": "Class", | ||||
| "Browse for an image": "\u0b92\u0bb0\u0bc1 \u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0b89\u0bb2\u0bbe\u0bb5\u0bc1\u0b95", | ||||
| "OR": "\u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1", | ||||
| "Drop an image here": "\u0b92\u0bb0\u0bc1 \u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b87\u0b99\u0bcd\u0b95\u0bc1 \u0b87\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd \u0baa\u0bcb\u0b9f\u0bb5\u0bc1\u0bae\u0bcd", | ||||
| "Upload": "\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Block": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf", | ||||
| "Align": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8", | ||||
| "Default": "\u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Circle": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bae\u0bcd", | ||||
| "Disc": "\u0bb5\u0b9f\u0bcd\u0b9f\u0bc1", | ||||
| "Square": "\u0b9a\u0ba4\u0bc1\u0bb0\u0bae\u0bcd", | ||||
| "Lower Alpha": "\u0b95\u0bc0\u0bb4\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", | ||||
| "Lower Greek": "\u0b95\u0bc0\u0bb4\u0bcd \u0b95\u0bbf\u0bb0\u0bc7\u0b95\u0bcd\u0b95\u0bae\u0bcd", | ||||
| "Lower Roman": "\u0b95\u0bc0\u0bb4\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd", | ||||
| "Upper Alpha": "\u0bae\u0bc7\u0bb2\u0bcd \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", | ||||
| "Upper Roman": "\u0bae\u0bc7\u0bb2\u0bcd \u0bb0\u0bcb\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd", | ||||
| "Anchor...": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd...", | ||||
| "Name": "\u0baa\u0bc6\u0baf\u0bb0\u0bcd", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0b86\u0ba9\u0ba4\u0bc1 \u0b92\u0bb0\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0ba4\u0bca\u0b9f\u0b99\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd; \u0b87\u0ba4\u0ba9\u0bc8\u0ba4\u0bcd \u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd, \u0b8e\u0ba3\u0bcd\u0b95\u0bb3\u0bcd, \u0b87\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc7\u0bbe\u0b9f\u0bc1\u0b95\u0bb3\u0bcd (-), \u0baa\u0bc1\u0bb3\u0bcd\u0bb3\u0bbf\u0b95\u0bb3\u0bcd (.), \u0bae\u0bc1\u0b95\u0bcd\u0b95\u0bbe\u0bb1\u0bcd\u0baa\u0bc1\u0bb3\u0bcd\u0bb3\u0bbf\u0b95\u0bb3\u0bcd (:) \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc7\u0bbe\u0b9f\u0bc1\u0b95\u0bb3\u0bcd (_) \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0b87\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba9; \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baf\u0bbe\u0b95 \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7\u0bb1 \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bbe\u0bb3\u0bbe?", | ||||
| "Restore last draft": "\u0b95\u0b9f\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bc0\u0b9f\u0bcd\u0b9f\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Special character...": "\u0b9a\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0bc1 \u0b89\u0bb0\u0bc1...", | ||||
| "Source code": "\u0bae\u0bc2\u0bb2 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1", | ||||
| "Insert\/Edit code sample": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Language": "\u0bae\u0bca\u0bb4\u0bbf", | ||||
| "Code sample...": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf...", | ||||
| "Color Picker": "\u0ba8\u0bbf\u0bb1\u0ba4\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0bb5\u0bc1", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "\u0b87\u0b9f\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bb5\u0bb2\u0bae\u0bcd", | ||||
| "Right to left": "\u0bb5\u0bb2\u0bae\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0b87\u0b9f\u0bae\u0bcd", | ||||
| "Emoticons...": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Metadata and Document Properties": "\u0bae\u0bc0\u0ba4\u0bcd\u0ba4\u0bb0\u0bb5\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b86\u0bb5\u0ba3\u0baa\u0bcd \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Title": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Keywords": "\u0bae\u0bc1\u0ba4\u0ba9\u0bcd\u0bae\u0bc8\u0b9a\u0bcd\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Description": "\u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd", | ||||
| "Robots": "\u0baa\u0bca\u0bb1\u0bbf\u0baf\u0ba9\u0bcd\u0b95\u0bb3\u0bcd (Robots)", | ||||
| "Author": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0bb3\u0bb0\u0bcd", | ||||
| "Encoding": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd", | ||||
| "Fullscreen": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8", | ||||
| "Action": "\u0b9a\u0bc6\u0baf\u0bb2\u0bcd", | ||||
| "Shortcut": "\u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf", | ||||
| "Help": "\u0b89\u0ba4\u0bb5\u0bbf", | ||||
| "Address": "\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf", | ||||
| "Focus to menubar": "\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", | ||||
| "Focus to toolbar": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", | ||||
| "Focus to element path": "\u0bae\u0bc2\u0bb2\u0b95\u0baa\u0bcd \u0baa\u0bbe\u0ba4\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", | ||||
| "Focus to contextual toolbar": "\u0b9a\u0bc2\u0bb4\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b95\u0bb5\u0ba9\u0bae\u0bcd \u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", | ||||
| "Insert link (if link plugin activated)": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95 (\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)", | ||||
| "Save (if save plugin activated)": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 (\u0b9a\u0bc7\u0bae\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)", | ||||
| "Find (if searchreplace plugin activated)": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 (\u0ba4\u0bc7\u0b9f\u0bbf\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bb2\u0bcd \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd)", | ||||
| "Plugins installed ({0}):": "\u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd ({0}):", | ||||
| "Premium plugins:": "\u0b89\u0baf\u0bb0\u0bcd\u0bae\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd:", | ||||
| "Learn more...": "\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd \u0b85\u0bb1\u0bbf\u0b95...", | ||||
| "You are using {0}": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0ba4\u0bc1 {0}", | ||||
| "Plugins": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "Handy Shortcuts": "\u0b8e\u0bb3\u0bbf\u0ba4\u0bbf\u0bb2\u0bcd \u0b95\u0bc8\u0baf\u0bbe\u0bb3\u0b95\u0bcd\u0b95\u0bc2\u0b9f\u0bbf\u0baf \u0b95\u0bc1\u0bb1\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb5\u0bb4\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "Horizontal line": "\u0b95\u0bbf\u0b9f\u0bc8 \u0b95\u0bcb\u0b9f\u0bc1", | ||||
| "Insert\/edit image": "\u0baa\u0b9f\u0bae\u0bcd \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Image description": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd", | ||||
| "Source": "\u0bae\u0bc2\u0bb2\u0bae\u0bcd", | ||||
| "Dimensions": "\u0baa\u0bb0\u0bbf\u0bae\u0bbe\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Constrain proportions": "\u0bb5\u0bbf\u0b95\u0bbf\u0ba4\u0bbe\u0b9a\u0bcd\u0b9a\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", | ||||
| "General": "\u0baa\u0bca\u0ba4\u0bc1", | ||||
| "Advanced": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1", | ||||
| "Style": "\u0baa\u0bbe\u0ba3\u0bbf", | ||||
| "Vertical space": "\u0ba8\u0bc6\u0b9f\u0bc1\u0ba4\u0bb3 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", | ||||
| "Horizontal space": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", | ||||
| "Border": "\u0b95\u0bb0\u0bc8", | ||||
| "Insert image": "\u0baa\u0b9f\u0bae\u0bcd \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Image...": "\u0baa\u0b9f\u0bae\u0bcd...", | ||||
| "Image list": "\u0baa\u0b9f\u0baa\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", | ||||
| "Rotate counterclockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0 \u0b8e\u0ba4\u0bbf\u0bb0\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1", | ||||
| "Rotate clockwise": "\u0b95\u0b9f\u0bbf\u0b95\u0bbe\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc1\u0bb4\u0bb1\u0bcd\u0bb1\u0bc1", | ||||
| "Flip vertically": "\u0b9a\u0bc6\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1", | ||||
| "Flip horizontally": "\u0b95\u0bbf\u0b9f\u0bc8\u0bae\u0b9f\u0bcd\u0b9f\u0bae\u0bbe\u0b95 \u0baa\u0bc1\u0bb0\u0b9f\u0bcd\u0b9f\u0bc1", | ||||
| "Edit image": "\u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0ba4\u0bca\u0b95\u0bc1", | ||||
| "Image options": "\u0baa\u0b9f \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Zoom in": "\u0baa\u0bc6\u0bb0\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1", | ||||
| "Zoom out": "\u0b9a\u0bbf\u0bb1\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bc1", | ||||
| "Crop": "\u0b9a\u0bc6\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bc1", | ||||
| "Resize": "\u0bae\u0bb1\u0bc1\u0b85\u0bb3\u0bb5\u0bbf\u0b9f\u0bc1", | ||||
| "Orientation": "\u0ba4\u0bbf\u0b9a\u0bc8\u0baf\u0bae\u0bc8\u0bb5\u0bc1", | ||||
| "Brightness": "\u0b92\u0bb3\u0bbf\u0bb0\u0bcd\u0bb5\u0bc1", | ||||
| "Sharpen": "\u0b95\u0bc2\u0bb0\u0bcd\u0bae\u0bc8\u0baf\u0bbe\u0b95\u0bcd\u0b95\u0bc1", | ||||
| "Contrast": "\u0ba8\u0bbf\u0bb1\u0bae\u0bbe\u0bb1\u0bc1\u0baa\u0bbe\u0b9f\u0bc1", | ||||
| "Color levels": "\u0bb5\u0ba3\u0bcd\u0ba3 \u0ba8\u0bbf\u0bb2\u0bc8\u0b95\u0bb3\u0bcd", | ||||
| "Gamma": "Gamma", | ||||
| "Invert": "\u0ba8\u0bc7\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1", | ||||
| "Apply": "\u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", | ||||
| "Back": "\u0baa\u0bbf\u0ba9\u0bcd", | ||||
| "Insert date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Date\/time": "\u0ba4\u0bc7\u0ba4\u0bbf\/\u0ba8\u0bc7\u0bb0\u0bae\u0bcd", | ||||
| "Insert\/Edit Link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Insert\/edit link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Text to display": "\u0b95\u0bbe\u0b9f\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbf\u0baf \u0b89\u0bb0\u0bc8", | ||||
| "Url": "\u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf", | ||||
| "Open link in...": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b87\u0ba4\u0bbf\u0bb2\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95...", | ||||
| "Current window": "\u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc8\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd", | ||||
| "None": "\u0b8f\u0ba4\u0bc1\u0bae\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8", | ||||
| "New window": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd", | ||||
| "Remove link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Anchors": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0b99\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Link...": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1...", | ||||
| "Paste or type a link": "\u0b92\u0bb0\u0bc1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95 \u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0ba4\u0b9f\u0bcd\u0b9f\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bae\u0bbf\u0ba9\u0bcd-\u0b85\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd \u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 mailto: \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0bbf\u0b9f\u0bcd\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf (URL) \u0b92\u0bb0\u0bc1 \u0bb5\u0bc6\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb1 \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 (external link) \u0baa\u0bcb\u0bb2\u0bcd \u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbe\u0ba9 http:\/\/ \u0bae\u0bc1\u0ba9\u0bcd-\u0b92\u0b9f\u0bcd\u0b9f\u0bc8\u0ba4\u0bcd (prefix) \u0ba4\u0bbe\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bbe?", | ||||
| "Link list": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0baa\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", | ||||
| "Insert video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Insert\/edit video": "\u0b95\u0bbe\u0ba3\u0bca\u0bb3\u0bbf \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Insert\/edit media": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Alternative source": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2\u0bae\u0bcd", | ||||
| "Alternative source URL": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0bae\u0bc2\u0bb2 \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf", | ||||
| "Media poster (Image URL)": "\u0b8a\u0b9f\u0b95 \u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf (\u0b89\u0b9f \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf)", | ||||
| "Paste your embed code below:": "\u0ba4\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0b9f\u0bcd\u0baa\u0bc6\u0bbe\u0ba4\u0bbf \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b95\u0bc0\u0bb4\u0bc7 \u0b92\u0b9f\u0bcd\u0b9f\u0bb5\u0bc1\u0bae\u0bcd:", | ||||
| "Embed": "\u0b89\u0b9f\u0bcd\u0baa\u0bca\u0ba4\u0bbf", | ||||
| "Media...": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd...", | ||||
| "Nonbreaking space": "\u0baa\u0bbf\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", | ||||
| "Page break": "\u0baa\u0b95\u0bcd\u0b95 \u0baa\u0bbf\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Paste as text": "\u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b95 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Preview": "\u0bae\u0bc1\u0ba9\u0bcd\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1", | ||||
| "Print...": "\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95...", | ||||
| "Save": "\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Find": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Replace with": "\u0b87\u0ba4\u0ba9\u0bc1\u0b9f\u0ba9\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Replace": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Replace all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Previous": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf", | ||||
| "Next": "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4", | ||||
| "Find and replace...": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95...", | ||||
| "Could not find the specified string.": "\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f \u0b9a\u0bb0\u0bae\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8", | ||||
| "Match case": "\u0bb5\u0b9f\u0bbf\u0bb5\u0ba4\u0bcd\u0ba4\u0bc8 \u0baa\u0bca\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95", | ||||
| "Find whole words only": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Spell check": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Ignore": "\u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Ignore all": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0baa\u0bc1\u0bb1\u0b95\u0bcd\u0b95\u0ba3\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Finish": "\u0bae\u0bc1\u0b9f\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Add to Dictionary": "\u0b85\u0b95\u0bb0\u0bbe\u0ba4\u0bbf\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95", | ||||
| "Insert table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Table properties": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Delete table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", | ||||
| "Cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8", | ||||
| "Row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", | ||||
| "Column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8", | ||||
| "Cell properties": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Merge cells": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95", | ||||
| "Split cell": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0baa\u0bbf\u0bb0\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Insert row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Insert row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Delete row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", | ||||
| "Row properties": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Cut row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Copy row": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Paste row before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Paste row after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Insert column before": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Insert column after": "\u0b87\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd \u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Delete column": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95", | ||||
| "Cols": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd", | ||||
| "Rows": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd", | ||||
| "Width": "\u0b85\u0b95\u0bb2\u0bae\u0bcd", | ||||
| "Height": "\u0b89\u0baf\u0bb0\u0bae\u0bcd", | ||||
| "Cell spacing": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf", | ||||
| "Cell padding": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0ba8\u0bbf\u0bb0\u0baa\u0bcd\u0baa\u0bb2\u0bcd", | ||||
| "Show caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Left": "\u0b87\u0b9f\u0bae\u0bcd", | ||||
| "Center": "\u0bae\u0bc8\u0baf\u0bae\u0bcd", | ||||
| "Right": "\u0bb5\u0bb2\u0bae\u0bcd", | ||||
| "Cell type": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8 \u0bb5\u0b95\u0bc8", | ||||
| "Scope": "\u0bb5\u0bb0\u0bc8\u0baf\u0bc6\u0bb2\u0bcd\u0bb2\u0bc8", | ||||
| "Alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1", | ||||
| "H Align": "\u0b95\u0bbf (H) \u0b87\u0b9a\u0bc8\u0bb5\u0bc1", | ||||
| "V Align": "\u0b9a\u0bc6 (V) \u0b87\u0b9a\u0bc8\u0bb5\u0bc1", | ||||
| "Top": "\u0bae\u0bc7\u0bb2\u0bcd", | ||||
| "Middle": "\u0ba8\u0b9f\u0bc1", | ||||
| "Bottom": "\u0bae\u0bc7\u0bb2\u0bcd", | ||||
| "Header cell": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bb1\u0bc8", | ||||
| "Row group": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1", | ||||
| "Column group": "\u0ba8\u0bc6\u0b9f\u0bc1\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0b95\u0bc1\u0bb4\u0bc1", | ||||
| "Row type": "\u0bb5\u0bb0\u0bbf\u0b9a\u0bc8 \u0bb5\u0b95\u0bc8", | ||||
| "Header": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Body": "\u0b89\u0b9f\u0bb2\u0bcd", | ||||
| "Footer": "\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Border color": "\u0b95\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", | ||||
| "Insert template...": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1 \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95...", | ||||
| "Templates": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1", | ||||
| "Text color": "\u0b89\u0bb0\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", | ||||
| "Background color": "\u0baa\u0bbf\u0ba9\u0bcd\u0ba9\u0ba3\u0bbf \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", | ||||
| "Custom...": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd...", | ||||
| "Custom color": "\u0ba4\u0ba9\u0bbf\u0baa\u0bcd\u0baa\u0baf\u0ba9\u0bcd \u0ba8\u0bbf\u0bb1\u0bae\u0bcd", | ||||
| "No color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8", | ||||
| "Remove color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Table of Contents": "\u0baa\u0bca\u0bb0\u0bc1\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0bae\u0bcd", | ||||
| "Show blocks": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Show invisible characters": "\u0b95\u0ba3\u0bcd\u0ba3\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0ba4\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0baf\u0bbe\u0ba4 \u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95", | ||||
| "Word count": "\u0b9a\u0bca\u0bb2\u0bcd \u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b95\u0bcd\u0b95\u0bc8", | ||||
| "Count": "\u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0b95\u0bcd\u0b95\u0bc8", | ||||
| "Document": "\u0b86\u0bb5\u0ba3\u0bae\u0bcd", | ||||
| "Selection": "\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1", | ||||
| "Words": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Words: {0}": "\u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd: {0}", | ||||
| "{0} words": "{0} \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "File": "\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Edit": "\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Insert": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "View": "\u0ba8\u0bcb\u0b95\u0bcd\u0b95\u0bc1\u0b95", | ||||
| "Format": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Table": "\u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8", | ||||
| "Tools": "\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "Powered by {0}": "\u0bb5\u0bb2\u0bc1\u0bb5\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0ba4\u0bc1 {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0b89\u0baf\u0bb0\u0bcd \u0b89\u0bb0\u0bc8 \u0baa\u0b95\u0bc1\u0ba4\u0bbf. \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-F9 , \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc1 ALT-F10 , \u0b89\u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-0", | ||||
| "Image title": "\u0baa\u0b9f\u0ba4\u0bcd \u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Border width": "\u0b95\u0bb0\u0bc8 \u0b85\u0b95\u0bb2\u0bae\u0bcd", | ||||
| "Border style": "\u0b95\u0bb0\u0bc8 \u0baa\u0bbe\u0ba3\u0bbf", | ||||
| "Error": "\u0baa\u0bbf\u0bb4\u0bc8", | ||||
| "Warn": "\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Valid": "\u0b9a\u0bc6\u0bb2\u0bcd\u0bb2\u0ba4\u0bcd\u0ba4\u0b95\u0bcd\u0b95\u0ba4\u0bc1", | ||||
| "To open the popup, press Shift+Enter": "\u0bae\u0bc7\u0bb2\u0bcd\u0ba4\u0bcb\u0ba9\u0bcd\u0bb1\u0bc1-\u0bb5\u0bc8\u0ba4\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95 Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u0b89\u0baf\u0bb0\u0bcd \u0b89\u0bb0\u0bc8 \u0baa\u0b95\u0bc1\u0ba4\u0bbf. \u0b89\u0ba4\u0bb5\u0bbf\u0b95\u0bcd\u0b95\u0bc1 ALT-0", | ||||
| "System Font": "\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1", | ||||
| "Failed to upload image: {0}": "\u0baa\u0b9f\u0bae\u0bcd \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b8f\u0bb1\u0bcd\u0bb1\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0} - {1} \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf\u0baf\u0bbf\u0bb2\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1", | ||||
| "Failed to load plugin url: {0}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0b87\u0ba3\u0bc8\u0baf\u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0b8f\u0bb1\u0bcd\u0bb1\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}", | ||||
| "Failed to initialize plugin: {0}": "\u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bbf \u0ba4\u0bc1\u0bb5\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bb2\u0bcd \u0ba4\u0bcb\u0bb2\u0bcd\u0bb5\u0bbf\u0baf\u0bc1\u0bb1\u0bcd\u0bb1\u0ba4\u0bc1: {0}", | ||||
| "example": "\u0b89\u0ba4\u0bbe\u0bb0\u0ba3\u0bae\u0bcd", | ||||
| "Search": "\u0ba4\u0bc7\u0b9f\u0bc1\u0b95", | ||||
| "All": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0bae\u0bcd", | ||||
| "Currency": "\u0b9a\u0bc6\u0bb2\u0bbe\u0bb5\u0ba3\u0bbf (Currency)", | ||||
| "Text": "\u0b89\u0bb0\u0bc8", | ||||
| "Quotations": "\u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bc7\u0bbe\u0bb3\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Mathematical": "\u0b95\u0ba3\u0b95\u0bcd\u0b95\u0bbf\u0baf\u0bb2\u0bcd", | ||||
| "Extended Latin": "\u0ba8\u0bc0\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0b87\u0bb2\u0ba4\u0bcd\u0ba4\u0bc0\u0ba9\u0bcd", | ||||
| "Symbols": "\u0b87\u0b9f\u0bc1\u0b95\u0bc1\u0bb1\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "Arrows": "\u0b85\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "User Defined": "\u0baa\u0baf\u0ba9\u0bb0\u0bcd \u0bb5\u0bb0\u0bc8\u0baf\u0bb1\u0bc1\u0ba4\u0bcd\u0ba4", | ||||
| "dollar sign": "dollar \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "currency sign": "\u0b9a\u0bc6\u0bb2\u0bbe\u0bb5\u0ba3\u0bbf\u0b95\u0bcd \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "euro-currency sign": "euro-currency \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "colon sign": "colon \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "cruzeiro sign": "cruzeiro \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "french franc sign": "french franc \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "lira sign": "lira \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "mill sign": "mill \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "naira sign": "naira \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "peseta sign": "peseta \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "rupee sign": "rupee \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "won sign": "won \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "new sheqel sign": "new sheqel \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "dong sign": "dong \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "kip sign": "kip \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "tugrik sign": "tugrik \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "drachma sign": "drachma \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "german penny symbol": "german penny \u0b87\u0b9f\u0bc1\u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "peso sign": "peso \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "guarani sign": "guarani \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "austral sign": "austral \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "hryvnia sign": "hryvnia \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "cedi sign": "cedi \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "livre tournois sign": "livre tournois \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "spesmilo sign": "spesmilo \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "tenge sign": "tenge \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "indian rupee sign": "indian rupee \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "turkish lira sign": "turkish lira \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "nordic mark sign": "nordic mark \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "manat sign": "manat \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "ruble sign": "ruble \u0b95\u0bc1\u0bb1\u0bbf", | ||||
| "yen character": "yen \u0b89\u0bb0\u0bc1", | ||||
| "yuan character": "yuan \u0b89\u0bb0\u0bc1", | ||||
| "yuan character, in hong kong and taiwan": "yuan \u0b89\u0bb0\u0bc1, \u0bb9\u0bbe\u0b99\u0bcd\u0b95\u0bbe\u0b99\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0ba4\u0bbe\u0baf\u0bcd\u0bb5\u0bbe\u0ba9\u0bcd \u0b87\u0bb2\u0bcd", | ||||
| "yen\/yuan character variant one": "yen\/yuan \u0b89\u0bb0\u0bc1 \u0bae\u0bbe\u0bb1\u0bc1\u0baa\u0bbe\u0b9f\u0bc1", | ||||
| "Loading emoticons...": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b8f\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0ba9\u0bcd\u0bb1\u0ba9...", | ||||
| "Could not load emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0b8f\u0bb1\u0bcd\u0bb1 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8", | ||||
| "People": "\u0bae\u0b95\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Animals and Nature": "\u0bae\u0bbf\u0bb0\u0bc1\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b87\u0baf\u0bb1\u0bcd\u0b95\u0bc8", | ||||
| "Food and Drink": "\u0b89\u0ba3\u0bb5\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0baa\u0bbe\u0ba9\u0bae\u0bcd", | ||||
| "Activity": "\u0b9a\u0bc6\u0baf\u0bb1\u0bcd\u0baa\u0bbe\u0b9f\u0bc1", | ||||
| "Travel and Places": "\u0baa\u0baf\u0ba3\u0bae\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b87\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Objects": "\u0baa\u0bca\u0bb0\u0bc1\u0b9f\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Flags": "\u0b95\u0bca\u0b9f\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "Characters": "\u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Characters (no spaces)": "\u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd (\u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf\u0b95\u0bb3\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8)", | ||||
| "{0} characters": "{0} \u0b89\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Error: Form submit field collision.": "\u0baa\u0bbf\u0bb4\u0bc8: \u0baa\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0b9a\u0bae\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bbf\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0baa\u0bc1\u0bb2\u0bae\u0bcd \u0bae\u0bcb\u0ba4\u0bb2\u0bcd.", | ||||
| "Error: No form element found.": "\u0baa\u0bbf\u0bb4\u0bc8: \u0baa\u0bc1\u0bb2\u0bae\u0bcd \u0bae\u0bc2\u0bb2\u0b95\u0bae\u0bcd \u0b8e\u0ba4\u0bc1\u0bb5\u0bc1\u0bae\u0bcd \u0b95\u0bbe\u0ba3\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.", | ||||
| "Update": "\u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95", | ||||
| "Color swatch": "\u0ba8\u0bbf\u0bb1\u0b9a\u0bcd \u0b9a\u0bcb\u0ba4\u0ba9\u0bc8\u0b95\u0bcd\u0b95\u0bb2\u0bb5\u0bc8", | ||||
| "Turquoise": "\u0ba8\u0bc0\u0bb2\u0baa\u0bcd\u0baa\u0b9a\u0bcd\u0b9a\u0bc8", | ||||
| "Green": "\u0baa\u0b9a\u0bcd\u0b9a\u0bc8", | ||||
| "Blue": "\u0ba8\u0bc0\u0bb2\u0bae\u0bcd", | ||||
| "Purple": "\u0b8a\u0ba4\u0bbe", | ||||
| "Navy Blue": "\u0b95\u0b9f\u0bb1\u0bcd\u0baa\u0b9f\u0bc8 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", | ||||
| "Dark Turquoise": "\u0b85\u0b9f\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0baa\u0bcd\u0baa\u0b9a\u0bcd\u0b9a\u0bc8", | ||||
| "Dark Green": "\u0b85\u0b9f\u0bb0\u0bcd \u0baa\u0b9a\u0bcd\u0b9a\u0bc8", | ||||
| "Medium Blue": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", | ||||
| "Medium Purple": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0b8a\u0ba4\u0bbe", | ||||
| "Midnight Blue": "\u0ba8\u0bb3\u0bcd\u0bb3\u0bbf\u0bb0\u0bb5\u0bc1 \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", | ||||
| "Yellow": "\u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", | ||||
| "Orange": "\u0b9a\u0bbf\u0bb5\u0ba8\u0bcd\u0ba4 \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", | ||||
| "Red": "\u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Light Gray": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd", | ||||
| "Gray": "\u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd", | ||||
| "Dark Yellow": "\u0b85\u0b9f\u0bb0\u0bcd \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", | ||||
| "Dark Orange": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbf\u0bb5\u0ba8\u0bcd\u0ba4 \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", | ||||
| "Dark Red": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Medium Gray": "\u0ba8\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0 \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd", | ||||
| "Dark Gray": "\u0b85\u0b9f\u0bb0\u0bcd \u0b9a\u0bbe\u0bae\u0bcd\u0baa\u0bb2\u0bcd", | ||||
| "Light Green": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0baa\u0b9a\u0bcd\u0b9a\u0bc8", | ||||
| "Light Yellow": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0bae\u0b9e\u0bcd\u0b9a\u0bb3\u0bcd", | ||||
| "Light Red": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd\u00a0\u0b9a\u0bbf\u0bb5\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Light Purple": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0b8a\u0ba4\u0bbe", | ||||
| "Light Blue": "\u0bb5\u0bc6\u0bb3\u0bbf\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", | ||||
| "Dark Purple": "\u0b85\u0b9f\u0bb0\u0bcd \u0b8a\u0ba4\u0bbe", | ||||
| "Dark Blue": "\u0b85\u0b9f\u0bb0\u0bcd \u0ba8\u0bc0\u0bb2\u0bae\u0bcd", | ||||
| "Black": "\u0b95\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "White": "\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bc8", | ||||
| "Switch to or from fullscreen mode": "\u0bae\u0bc1\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8 \u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0bc1\/\u0bae\u0bc1\u0bb1\u0bc8\u0bae\u0bc8\u0baf\u0bbf\u0bb2\u0bbf\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bc1\u0b95", | ||||
| "Open help dialog": "\u0b89\u0ba4\u0bb5\u0bbf \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b9f\u0bb2\u0bcd \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95", | ||||
| "history": "\u0bb5\u0bb0\u0bb2\u0bbe\u0bb1\u0bc1", | ||||
| "styles": "\u0baa\u0bbe\u0ba3\u0bbf\u0b95\u0bb3\u0bcd", | ||||
| "formatting": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd", | ||||
| "alignment": "\u0b9a\u0bc0\u0bb0\u0bae\u0bc8\u0bb5\u0bc1", | ||||
| "indentation": "\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bc1\u0ba4\u0bb2\u0bcd", | ||||
| "permanent pen": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe", | ||||
| "comments": "\u0b95\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Format Painter": "\u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc2\u0b9a\u0bbe\u0bb3\u0ba9\u0bcd", | ||||
| "Insert\/edit iframe": "iframe \u0b9a\u0bc6\u0bb0\u0bc1\u0b95\u0bc1\u0b95\/\u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95", | ||||
| "Capitalization": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd", | ||||
| "lowercase": "\u0b9a\u0bbf\u0bb1\u0bcd\u0bb1\u0bc6\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", | ||||
| "UPPERCASE": "\u0baa\u0bc7\u0bb0\u0bc6\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1", | ||||
| "Title Case": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd", | ||||
| "Permanent Pen Properties": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Permanent pen properties...": "\u0ba8\u0bbf\u0bb0\u0ba8\u0bcd\u0ba4\u0bb0\u0baa\u0bcd \u0baa\u0bc7\u0ba9\u0bbe \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd...", | ||||
| "Font": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1", | ||||
| "Size": "\u0b85\u0bb3\u0bb5\u0bc1", | ||||
| "More...": "\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd...", | ||||
| "Spellcheck Language": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1 \u0bae\u0bca\u0bb4\u0bbf", | ||||
| "Select...": "\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0b95...", | ||||
| "Preferences": "\u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b99\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Yes": "\u0b86\u0bae\u0bcd", | ||||
| "No": "\u0b87\u0bb2\u0bcd\u0bb2\u0bc8", | ||||
| "Keyboard Navigation": "\u0bb5\u0bbf\u0b9a\u0bc8\u0baa\u0bcd\u0baa\u0bb2\u0b95\u0bc8 \u0bb5\u0bb4\u0bbf\u0b9a\u0bcd\u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd", | ||||
| "Version": "\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Anchor": "\u0ba8\u0b99\u0bcd\u0b95\u0bc2\u0bb0\u0bae\u0bcd", | ||||
| "Special character": "\u0b9a\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0bc1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1", | ||||
| "Code sample": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0bae\u0bbe\u0ba4\u0bbf\u0bb0\u0bbf", | ||||
| "Color": "\u0ba8\u0bbf\u0bb1\u0bae\u0bcd", | ||||
| "Emoticons": "\u0b89\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bbf\u0bae\u0b99\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Document properties": "\u0b86\u0bb5\u0ba3\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd \u0baa\u0ba3\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", | ||||
| "Image": "\u0baa\u0b9f\u0bae\u0bcd", | ||||
| "Insert link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95", | ||||
| "Target": "\u0b87\u0bb2\u0b95\u0bcd\u0b95\u0bc1", | ||||
| "Link": "\u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Poster": "\u0b9a\u0bc1\u0bb5\u0bb0\u0bca\u0b9f\u0bcd\u0b9f\u0bbf", | ||||
| "Media": "\u0b8a\u0b9f\u0b95\u0bae\u0bcd", | ||||
| "Print": "\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95", | ||||
| "Prev": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf", | ||||
| "Find and replace": "\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0b95", | ||||
| "Whole words": "\u0bae\u0bc1\u0bb4\u0bc1 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bcd", | ||||
| "Spellcheck": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95", | ||||
| "Caption": "\u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", | ||||
| "Insert template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1 \u0b9a\u0bca\u0bb0\u0bc1\u0b95\u0bc1\u0b95" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/th_TH.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/th_TH.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('th_TH',{ | ||||
| "Redo": "\u0e17\u0e33\u0e43\u0e2b\u0e21\u0e48\u0e2d\u0e35\u0e01", | ||||
| "Undo": "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e01\u0e25\u0e31\u0e1a\u0e04\u0e37\u0e19", | ||||
| "Cut": "\u0e15\u0e31\u0e14", | ||||
| "Copy": "\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01", | ||||
| "Paste": "\u0e27\u0e32\u0e07", | ||||
| "Select all": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", | ||||
| "New document": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e43\u0e2b\u0e21\u0e48", | ||||
| "Ok": "\u0e15\u0e01\u0e25\u0e07", | ||||
| "Cancel": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", | ||||
| "Visual aids": "\u0e17\u0e31\u0e28\u0e19\u0e39\u0e1b\u0e01\u0e23\u0e13\u0e4c", | ||||
| "Bold": "\u0e15\u0e31\u0e27\u0e2b\u0e19\u0e32", | ||||
| "Italic": "\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e35\u0e22\u0e07", | ||||
| "Underline": "\u0e02\u0e35\u0e14\u0e40\u0e2a\u0e49\u0e19\u0e43\u0e15\u0e49", | ||||
| "Strikethrough": "\u0e02\u0e35\u0e14\u0e04\u0e23\u0e48\u0e2d\u0e21", | ||||
| "Superscript": "\u0e15\u0e31\u0e27\u0e22\u0e01", | ||||
| "Subscript": "\u0e15\u0e31\u0e27\u0e2b\u0e49\u0e2d\u0e22", | ||||
| "Clear formatting": "\u0e25\u0e49\u0e32\u0e07\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a", | ||||
| "Align left": "\u0e08\u0e31\u0e14\u0e0a\u0e34\u0e14\u0e0b\u0e49\u0e32\u0e22", | ||||
| "Align center": "\u0e08\u0e31\u0e14\u0e01\u0e36\u0e48\u0e07\u0e01\u0e25\u0e32\u0e07", | ||||
| "Align right": "\u0e08\u0e31\u0e14\u0e0a\u0e34\u0e14\u0e02\u0e27\u0e32", | ||||
| "Justify": "\u0e40\u0e15\u0e47\u0e21\u0e41\u0e19\u0e27", | ||||
| "Bullet list": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d\u0e22\u0e48\u0e2d\u0e22", | ||||
| "Numbered list": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e40\u0e25\u0e02", | ||||
| "Decrease indent": "\u0e25\u0e14\u0e01\u0e32\u0e23\u0e40\u0e22\u0e37\u0e49\u0e2d\u0e07", | ||||
| "Increase indent": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e01\u0e32\u0e23\u0e40\u0e22\u0e37\u0e49\u0e2d\u0e07", | ||||
| "Close": "\u0e1b\u0e34\u0e14", | ||||
| "Formats": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0e40\u0e1a\u0e23\u0e32\u0e27\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e16\u0e36\u0e07\u0e42\u0e14\u0e22\u0e15\u0e23\u0e07\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e04\u0e25\u0e34\u0e1b\u0e1a\u0e2d\u0e23\u0e4c\u0e14 \u0e01\u0e23\u0e38\u0e13\u0e32\u0e43\u0e0a\u0e49\u0e41\u0e1b\u0e49\u0e19\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e25\u0e31\u0e14 Ctrl+X\/C\/V \u0e41\u0e17\u0e19", | ||||
| "Headers": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27", | ||||
| "Header 1": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 1", | ||||
| "Header 2": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 2", | ||||
| "Header 3": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 3", | ||||
| "Header 4": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 4", | ||||
| "Header 5": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 5", | ||||
| "Header 6": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27 6", | ||||
| "Headings": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", | ||||
| "Heading 1": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e17\u0e35\u0e48 1", | ||||
| "Heading 2": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e17\u0e35\u0e48 2", | ||||
| "Heading 3": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e17\u0e35\u0e48 3", | ||||
| "Heading 4": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e17\u0e35\u0e48 4", | ||||
| "Heading 5": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e17\u0e35\u0e48 5", | ||||
| "Heading 6": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e17\u0e35\u0e48 6", | ||||
| "Preformatted": "\u0e1f\u0e2d\u0e23\u0e4c\u0e41\u0e21\u0e15\u0e44\u0e27\u0e49\u0e01\u0e48\u0e2d\u0e19", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "\u0e23\u0e2b\u0e31\u0e2a", | ||||
| "Paragraph": "\u0e22\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "\u0e41\u0e1a\u0e1a\u0e2d\u0e34\u0e19\u0e44\u0e25\u0e19\u0e4c", | ||||
| "Blocks": "\u0e1a\u0e25\u0e4a\u0e2d\u0e04", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0e01\u0e32\u0e23\u0e27\u0e32\u0e07\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e42\u0e2b\u0e21\u0e14\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e18\u0e23\u0e23\u0e21\u0e14\u0e32 \u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e08\u0e30\u0e16\u0e39\u0e01\u0e27\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e18\u0e23\u0e23\u0e21\u0e14\u0e32\u0e08\u0e19\u0e01\u0e27\u0e48\u0e32\u0e04\u0e38\u0e13\u0e08\u0e30\u0e1b\u0e34\u0e14\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e19\u0e35\u0e49", | ||||
| "Fonts": "\u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23", | ||||
| "Font Sizes": "\u0e02\u0e19\u0e32\u0e14\u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23", | ||||
| "Class": "\u0e0a\u0e31\u0e49\u0e19", | ||||
| "Browse for an image": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e14\u0e39\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e", | ||||
| "OR": "OR", | ||||
| "Drop an image here": "\u0e27\u0e32\u0e07\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48", | ||||
| "Upload": "\u0e2d\u0e31\u0e1b\u0e42\u0e2b\u0e25\u0e14", | ||||
| "Block": "\u0e1a\u0e25\u0e47\u0e2d\u0e01", | ||||
| "Align": "Align", | ||||
| "Default": "\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", | ||||
| "Circle": "\u0e27\u0e07\u0e01\u0e25\u0e21", | ||||
| "Disc": "\u0e14\u0e34\u0e2a\u0e01\u0e4c", | ||||
| "Square": "\u0e08\u0e31\u0e15\u0e38\u0e23\u0e31\u0e2a", | ||||
| "Lower Alpha": "\u0e2d\u0e31\u0e25\u0e1f\u0e32\u0e17\u0e35\u0e48\u0e15\u0e48\u0e33\u0e01\u0e27\u0e48\u0e32", | ||||
| "Lower Greek": "\u0e01\u0e23\u0e35\u0e01\u0e17\u0e35\u0e48\u0e15\u0e48\u0e33\u0e01\u0e27\u0e48\u0e32", | ||||
| "Lower Roman": "\u0e42\u0e23\u0e21\u0e31\u0e19\u0e17\u0e35\u0e48\u0e15\u0e48\u0e33\u0e01\u0e27\u0e48\u0e32", | ||||
| "Upper Alpha": "\u0e2d\u0e31\u0e25\u0e1f\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e39\u0e07\u0e01\u0e27\u0e48\u0e32", | ||||
| "Upper Roman": "\u0e42\u0e23\u0e21\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e39\u0e07\u0e01\u0e27\u0e48\u0e32", | ||||
| "Anchor...": "\u0e08\u0e38\u0e14\u0e22\u0e36\u0e14...", | ||||
| "Name": "\u0e0a\u0e37\u0e48\u0e2d", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id \u0e04\u0e27\u0e23\u0e08\u0e30\u0e02\u0e36\u0e49\u0e19\u0e15\u0e49\u0e19\u0e14\u0e49\u0e27\u0e22\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23 \u0e15\u0e32\u0e21\u0e14\u0e49\u0e27\u0e22\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23 \u0e15\u0e31\u0e27\u0e40\u0e25\u0e02 \u0e02\u0e35\u0e14\u0e01\u0e25\u0e32\u0e07 \u0e08\u0e38\u0e14 \u0e2d\u0e31\u0e12\u0e20\u0e32\u0e04 \u0e2b\u0e23\u0e37\u0e2d \u0e02\u0e35\u0e14\u0e25\u0e48\u0e32\u0e07", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u0e04\u0e38\u0e13\u0e21\u0e35\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 \u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2d\u0e2d\u0e01\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?", | ||||
| "Restore last draft": "\u0e04\u0e37\u0e19\u0e04\u0e48\u0e32\u0e41\u0e1a\u0e1a\u0e23\u0e48\u0e32\u0e07\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", | ||||
| "Special character...": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e1e\u0e34\u0e40\u0e28\u0e29...", | ||||
| "Source code": "\u0e42\u0e04\u0e49\u0e14\u0e15\u0e49\u0e19\u0e09\u0e1a\u0e31\u0e1a", | ||||
| "Insert\/Edit code sample": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e42\u0e04\u0e49\u0e14", | ||||
| "Language": "\u0e20\u0e32\u0e29\u0e32", | ||||
| "Code sample...": "\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e42\u0e04\u0e49\u0e14...", | ||||
| "Color Picker": "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e35", | ||||
| "R": "\u0e41\u0e14\u0e07", | ||||
| "G": "\u0e40\u0e02\u0e35\u0e22\u0e27", | ||||
| "B": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19", | ||||
| "Left to right": "\u0e0b\u0e49\u0e32\u0e22\u0e44\u0e1b\u0e02\u0e27\u0e32", | ||||
| "Right to left": "\u0e02\u0e27\u0e32\u0e44\u0e1b\u0e0b\u0e49\u0e32\u0e22", | ||||
| "Emoticons...": "\u0e2d\u0e35\u0e42\u0e21\u0e15\u0e34\u0e04\u0e2d\u0e19...", | ||||
| "Metadata and Document Properties": "\u0e40\u0e21\u0e15\u0e32\u0e14\u0e32\u0e15\u0e49\u0e32\u0e41\u0e25\u0e30\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", | ||||
| "Title": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", | ||||
| "Keywords": "\u0e04\u0e33\u0e2a\u0e33\u0e04\u0e31\u0e0d", | ||||
| "Description": "\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22", | ||||
| "Robots": "\u0e2b\u0e38\u0e48\u0e19\u0e22\u0e19\u0e15\u0e4c", | ||||
| "Author": "\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e35\u0e22\u0e19", | ||||
| "Encoding": "\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e2b\u0e31\u0e2a", | ||||
| "Fullscreen": "\u0e40\u0e15\u0e47\u0e21\u0e08\u0e2d", | ||||
| "Action": "\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e17\u0e33", | ||||
| "Shortcut": "\u0e17\u0e32\u0e07\u0e25\u0e31\u0e14", | ||||
| "Help": "\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d", | ||||
| "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", | ||||
| "Focus to menubar": "\u0e42\u0e1f\u0e01\u0e31\u0e2a\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e40\u0e21\u0e19\u0e39\u0e1a\u0e32\u0e23\u0e4c", | ||||
| "Focus to toolbar": "\u0e42\u0e1f\u0e01\u0e31\u0e2a\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e41\u0e16\u0e1a\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d", | ||||
| "Focus to element path": "\u0e42\u0e1f\u0e01\u0e31\u0e2a\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e40\u0e2a\u0e49\u0e19\u0e17\u0e32\u0e07\u0e02\u0e2d\u0e07\u0e2d\u0e07\u0e04\u0e4c\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a", | ||||
| "Focus to contextual toolbar": "\u0e42\u0e1f\u0e01\u0e31\u0e2a\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e41\u0e16\u0e1a\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e15\u0e32\u0e21\u0e1a\u0e23\u0e34\u0e1a\u0e17", | ||||
| "Insert link (if link plugin activated)": "\u0e41\u0e17\u0e23\u0e01\u0e25\u0e34\u0e07\u0e01\u0e4c (\u0e2b\u0e32\u0e01\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e25\u0e34\u0e07\u0e01\u0e4c)", | ||||
| "Save (if save plugin activated)": "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 (\u0e2b\u0e32\u0e01\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01)", | ||||
| "Find (if searchreplace plugin activated)": "\u0e04\u0e49\u0e19\u0e2b\u0e32 (\u0e2b\u0e32\u0e01\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19 searchreplace)", | ||||
| "Plugins installed ({0}):": "\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e17\u0e35\u0e48\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e41\u0e25\u0e49\u0e27 ({0}):", | ||||
| "Premium plugins:": "\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e1e\u0e23\u0e35\u0e40\u0e21\u0e35\u0e22\u0e21:", | ||||
| "Learn more...": "\u0e40\u0e23\u0e35\u0e22\u0e19\u0e23\u0e39\u0e49\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21...", | ||||
| "You are using {0}": "\u0e04\u0e38\u0e13\u0e01\u0e33\u0e25\u0e31\u0e07\u0e43\u0e0a\u0e49 {0}", | ||||
| "Plugins": "\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19", | ||||
| "Handy Shortcuts": "\u0e17\u0e32\u0e07\u0e25\u0e31\u0e14\u0e14\u0e49\u0e27\u0e22\u0e21\u0e37\u0e2d", | ||||
| "Horizontal line": "\u0e40\u0e2a\u0e49\u0e19\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19", | ||||
| "Insert\/edit image": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e39\u0e1b", | ||||
| "Image description": "\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e23\u0e39\u0e1b", | ||||
| "Source": "\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32", | ||||
| "Dimensions": "\u0e02\u0e19\u0e32\u0e14", | ||||
| "Constrain proportions": "\u0e08\u0e33\u0e01\u0e31\u0e14\u0e2a\u0e31\u0e14\u0e2a\u0e48\u0e27\u0e19", | ||||
| "General": "\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b", | ||||
| "Advanced": "\u0e02\u0e31\u0e49\u0e19\u0e2a\u0e39\u0e07", | ||||
| "Style": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a", | ||||
| "Vertical space": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e41\u0e19\u0e27\u0e15\u0e31\u0e49\u0e07", | ||||
| "Horizontal space": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19", | ||||
| "Border": "\u0e40\u0e2a\u0e49\u0e19\u0e02\u0e2d\u0e1a", | ||||
| "Insert image": "\u0e41\u0e17\u0e23\u0e01\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e", | ||||
| "Image...": "\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e...", | ||||
| "Image list": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e", | ||||
| "Rotate counterclockwise": "\u0e2b\u0e21\u0e38\u0e19\u0e17\u0e27\u0e19\u0e40\u0e02\u0e47\u0e21\u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32", | ||||
| "Rotate clockwise": "\u0e2b\u0e21\u0e38\u0e19\u0e15\u0e32\u0e21\u0e40\u0e02\u0e47\u0e21\u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32", | ||||
| "Flip vertically": "\u0e1e\u0e25\u0e34\u0e01\u0e15\u0e32\u0e21\u0e41\u0e19\u0e27\u0e15\u0e31\u0e49\u0e07", | ||||
| "Flip horizontally": "\u0e1e\u0e25\u0e34\u0e01\u0e15\u0e32\u0e21\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19", | ||||
| "Edit image": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e39\u0e1b", | ||||
| "Image options": "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e", | ||||
| "Zoom in": "\u0e02\u0e22\u0e32\u0e22\u0e40\u0e02\u0e49\u0e32", | ||||
| "Zoom out": "\u0e22\u0e48\u0e2d\u0e2d\u0e2d\u0e01", | ||||
| "Crop": "\u0e04\u0e23\u0e2d\u0e1b\u0e15\u0e31\u0e14", | ||||
| "Resize": "\u0e1b\u0e23\u0e31\u0e1a\u0e02\u0e19\u0e32\u0e14", | ||||
| "Orientation": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e27\u0e32\u0e07", | ||||
| "Brightness": "\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e27\u0e48\u0e32\u0e07", | ||||
| "Sharpen": "\u0e04\u0e27\u0e32\u0e21\u0e04\u0e21", | ||||
| "Contrast": "\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e23\u0e35\u0e22\u0e1a\u0e15\u0e48\u0e32\u0e07", | ||||
| "Color levels": "\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e2a\u0e35", | ||||
| "Gamma": "\u0e41\u0e01\u0e21\u0e21\u0e32", | ||||
| "Invert": "\u0e22\u0e49\u0e2d\u0e19\u0e01\u0e25\u0e31\u0e1a", | ||||
| "Apply": "\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49", | ||||
| "Back": "\u0e01\u0e25\u0e31\u0e1a", | ||||
| "Insert date\/time": "\u0e41\u0e17\u0e23\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\/\u0e40\u0e27\u0e25\u0e32", | ||||
| "Date\/time": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\/\u0e40\u0e27\u0e25\u0e32", | ||||
| "Insert\/Edit Link": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e25\u0e34\u0e07\u0e01\u0e4c", | ||||
| "Insert\/edit link": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e25\u0e34\u0e07\u0e01\u0e4c", | ||||
| "Text to display": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e41\u0e2a\u0e14\u0e07", | ||||
| "Url": "URL", | ||||
| "Open link in...": "\u0e40\u0e1b\u0e34\u0e14\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e43\u0e19...", | ||||
| "Current window": "\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e48\u0e32\u0e07\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", | ||||
| "None": "\u0e44\u0e21\u0e48\u0e21\u0e35", | ||||
| "New window": "\u0e40\u0e1b\u0e34\u0e14\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e48\u0e32\u0e07\u0e43\u0e2b\u0e21\u0e48", | ||||
| "Remove link": "\u0e40\u0e2d\u0e32\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e2d\u0e2d\u0e01", | ||||
| "Anchors": "\u0e08\u0e38\u0e14\u0e22\u0e36\u0e14", | ||||
| "Link...": "\u0e25\u0e34\u0e07\u0e01\u0e4c...", | ||||
| "Paste or type a link": "\u0e27\u0e32\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e1b\u0e49\u0e2d\u0e19\u0e25\u0e34\u0e07\u0e01\u0e4c", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL \u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e23\u0e30\u0e1a\u0e38\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e27\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e41\u0e2d\u0e14\u0e40\u0e14\u0e23\u0e2a \u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2a\u0e48 mailto: \u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL \u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e23\u0e30\u0e1a\u0e38\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e27\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e20\u0e32\u0e22\u0e19\u0e2d\u0e01 \u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2a\u0e48 http:\/\/ \u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48", | ||||
| "Link list": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e25\u0e34\u0e07\u0e01\u0e4c", | ||||
| "Insert video": "\u0e41\u0e17\u0e23\u0e01\u0e27\u0e34\u0e14\u0e35\u0e42\u0e2d", | ||||
| "Insert\/edit video": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e27\u0e34\u0e14\u0e35\u0e42\u0e2d", | ||||
| "Insert\/edit media": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02\u0e2a\u0e37\u0e48\u0e2d", | ||||
| "Alternative source": "\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32\u0e2a\u0e33\u0e23\u0e2d\u0e07", | ||||
| "Alternative source URL": "URL \u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32\u0e2a\u0e33\u0e23\u0e2d\u0e07", | ||||
| "Media poster (Image URL)": "\u0e42\u0e1b\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e21\u0e35\u0e40\u0e14\u0e35\u0e22 (URL \u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e)", | ||||
| "Paste your embed code below:": "\u0e27\u0e32\u0e07\u0e42\u0e04\u0e49\u0e14\u0e1d\u0e31\u0e07\u0e15\u0e31\u0e27\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07:", | ||||
| "Embed": "\u0e1d\u0e31\u0e07", | ||||
| "Media...": "\u0e21\u0e35\u0e40\u0e14\u0e35\u0e22...", | ||||
| "Nonbreaking space": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e44\u0e21\u0e48\u0e41\u0e22\u0e01", | ||||
| "Page break": "\u0e15\u0e31\u0e27\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", | ||||
| "Paste as text": "\u0e27\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", | ||||
| "Preview": "\u0e41\u0e2a\u0e14\u0e07\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07", | ||||
| "Print...": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c...", | ||||
| "Save": "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01", | ||||
| "Find": "\u0e04\u0e49\u0e19\u0e2b\u0e32", | ||||
| "Replace with": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e14\u0e49\u0e27\u0e22", | ||||
| "Replace": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48", | ||||
| "Replace all": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", | ||||
| "Previous": "\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e35\u0e49", | ||||
| "Next": "\u0e16\u0e31\u0e14\u0e44\u0e1b", | ||||
| "Find and replace...": "\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e41\u0e25\u0e30\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48...", | ||||
| "Could not find the specified string.": "\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e2a\u0e15\u0e23\u0e34\u0e07\u0e17\u0e35\u0e48\u0e23\u0e30\u0e1a\u0e38", | ||||
| "Match case": "\u0e15\u0e23\u0e07\u0e15\u0e32\u0e21\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e43\u0e2b\u0e0d\u0e48-\u0e40\u0e25\u0e47\u0e01", | ||||
| "Find whole words only": "\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e17\u0e31\u0e49\u0e07\u0e04\u0e33\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19", | ||||
| "Spell check": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e33\u0e1c\u0e34\u0e14", | ||||
| "Ignore": "\u0e25\u0e30\u0e40\u0e27\u0e49\u0e19", | ||||
| "Ignore all": "\u0e25\u0e30\u0e40\u0e27\u0e49\u0e19\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", | ||||
| "Finish": "\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e34\u0e49\u0e19", | ||||
| "Add to Dictionary": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e43\u0e19\u0e1e\u0e08\u0e19\u0e32\u0e19\u0e38\u0e01\u0e23\u0e21", | ||||
| "Insert table": "\u0e41\u0e17\u0e23\u0e01\u0e15\u0e32\u0e23\u0e32\u0e07", | ||||
| "Table properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e15\u0e32\u0e23\u0e32\u0e07", | ||||
| "Delete table": "\u0e25\u0e1a\u0e15\u0e32\u0e23\u0e32\u0e07", | ||||
| "Cell": "\u0e40\u0e0b\u0e25\u0e25\u0e4c", | ||||
| "Row": "\u0e41\u0e16\u0e27", | ||||
| "Column": "\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c", | ||||
| "Cell properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e40\u0e0b\u0e25\u0e25\u0e4c", | ||||
| "Merge cells": "\u0e1c\u0e2a\u0e32\u0e19\u0e40\u0e0b\u0e25\u0e25\u0e4c", | ||||
| "Split cell": "\u0e41\u0e22\u0e01\u0e40\u0e0b\u0e25\u0e25\u0e4c", | ||||
| "Insert row before": "\u0e41\u0e17\u0e23\u0e01\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19", | ||||
| "Insert row after": "\u0e41\u0e17\u0e23\u0e01\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07", | ||||
| "Delete row": "\u0e25\u0e1a\u0e41\u0e16\u0e27", | ||||
| "Row properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e27", | ||||
| "Cut row": "\u0e15\u0e31\u0e14\u0e41\u0e16\u0e27", | ||||
| "Copy row": "\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01\u0e41\u0e16\u0e27", | ||||
| "Paste row before": "\u0e27\u0e32\u0e07\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19", | ||||
| "Paste row after": "\u0e27\u0e32\u0e07\u0e41\u0e16\u0e27\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07", | ||||
| "Insert column before": "\u0e41\u0e17\u0e23\u0e01\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e02\u0e49\u0e32\u0e07\u0e2b\u0e19\u0e49\u0e32", | ||||
| "Insert column after": "\u0e41\u0e17\u0e23\u0e01\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c\u0e02\u0e49\u0e32\u0e07\u0e2b\u0e25\u0e31\u0e07", | ||||
| "Delete column": "\u0e25\u0e1a\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c", | ||||
| "Cols": "\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c", | ||||
| "Rows": "\u0e41\u0e16\u0e27", | ||||
| "Width": "\u0e04\u0e27\u0e32\u0e21\u0e01\u0e27\u0e49\u0e32\u0e07", | ||||
| "Height": "\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e39\u0e07", | ||||
| "Cell spacing": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e40\u0e0b\u0e25\u0e25\u0e4c", | ||||
| "Cell padding": "\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07\u0e20\u0e32\u0e22\u0e43\u0e19\u0e40\u0e0b\u0e25\u0e25\u0e4c", | ||||
| "Show caption": "\u0e41\u0e2a\u0e14\u0e07\u0e04\u0e33\u0e1a\u0e23\u0e23\u0e22\u0e32\u0e22", | ||||
| "Left": "\u0e0b\u0e49\u0e32\u0e22", | ||||
| "Center": "\u0e01\u0e36\u0e48\u0e07\u0e01\u0e25\u0e32\u0e07", | ||||
| "Right": "\u0e02\u0e27\u0e32", | ||||
| "Cell type": "\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e40\u0e0b\u0e25\u0e25\u0e4c", | ||||
| "Scope": "\u0e02\u0e2d\u0e1a\u0e40\u0e02\u0e15", | ||||
| "Alignment": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e41\u0e19\u0e27", | ||||
| "H Align": "\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e07\u0e43\u0e19\u0e41\u0e19\u0e27\u0e19\u0e2d\u0e19", | ||||
| "V Align": "\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e07\u0e43\u0e19\u0e41\u0e19\u0e27\u0e15\u0e31\u0e49\u0e07", | ||||
| "Top": "\u0e1a\u0e19", | ||||
| "Middle": "\u0e01\u0e25\u0e32\u0e07", | ||||
| "Bottom": "\u0e25\u0e48\u0e32\u0e07", | ||||
| "Header cell": "\u0e40\u0e0b\u0e25\u0e25\u0e4c\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27", | ||||
| "Row group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e41\u0e16\u0e27", | ||||
| "Column group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e04\u0e2d\u0e25\u0e31\u0e21\u0e19\u0e4c", | ||||
| "Row type": "\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e27", | ||||
| "Header": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27", | ||||
| "Body": "\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", | ||||
| "Footer": "\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22", | ||||
| "Border color": "\u0e2a\u0e35\u0e02\u0e2d\u0e1a", | ||||
| "Insert template...": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a...", | ||||
| "Templates": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", | ||||
| "Template": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", | ||||
| "Text color": "\u0e2a\u0e35\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", | ||||
| "Background color": "\u0e2a\u0e35\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07", | ||||
| "Custom...": "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", | ||||
| "Custom color": "\u0e2a\u0e35\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", | ||||
| "No color": "\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2a\u0e35", | ||||
| "Remove color": "\u0e25\u0e1a\u0e2a\u0e35", | ||||
| "Table of Contents": "\u0e2a\u0e32\u0e23\u0e1a\u0e31\u0e0d", | ||||
| "Show blocks": "\u0e41\u0e2a\u0e14\u0e07\u0e1a\u0e25\u0e47\u0e2d\u0e01", | ||||
| "Show invisible characters": "\u0e41\u0e2a\u0e14\u0e07\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23\u0e17\u0e35\u0e48\u0e21\u0e2d\u0e07\u0e44\u0e21\u0e48\u0e40\u0e2b\u0e47\u0e19", | ||||
| "Word count": "\u0e19\u0e31\u0e1a\u0e08\u0e33\u0e19\u0e27\u0e19\u0e04\u0e33", | ||||
| "Count": "\u0e19\u0e31\u0e1a", | ||||
| "Document": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", | ||||
| "Selection": "\u0e01\u0e32\u0e23\u0e40\u0e25\u0e37\u0e2d\u0e01", | ||||
| "Words": "\u0e04\u0e33", | ||||
| "Words: {0}": "\u0e04\u0e33: {0}", | ||||
| "{0} words": "{0} \u0e04\u0e33", | ||||
| "File": "\u0e44\u0e1f\u0e25\u0e4c", | ||||
| "Edit": "\u0e41\u0e01\u0e49\u0e44\u0e02", | ||||
| "Insert": "\u0e41\u0e17\u0e23\u0e01", | ||||
| "View": "\u0e21\u0e38\u0e21\u0e21\u0e2d\u0e07", | ||||
| "Format": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a", | ||||
| "Table": "\u0e15\u0e32\u0e23\u0e32\u0e07", | ||||
| "Tools": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d", | ||||
| "Powered by {0}": "\u0e02\u0e31\u0e1a\u0e40\u0e04\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e42\u0e14\u0e22 {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48 Rich Text \u0e01\u0e14 ALT-F9 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e21\u0e19\u0e39 \u0e01\u0e14 ALT-F10 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e16\u0e1a\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d \u0e01\u0e14 ALT-0 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d", | ||||
| "Image title": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e", | ||||
| "Border width": "\u0e04\u0e27\u0e32\u0e21\u0e01\u0e27\u0e49\u0e32\u0e07\u0e40\u0e2a\u0e49\u0e19\u0e02\u0e2d\u0e1a", | ||||
| "Border style": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e40\u0e2a\u0e49\u0e19\u0e02\u0e2d\u0e1a", | ||||
| "Error": "\u0e04\u0e27\u0e32\u0e21\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14", | ||||
| "Warn": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e40\u0e15\u0e37\u0e2d\u0e19", | ||||
| "Valid": "\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07", | ||||
| "To open the popup, press Shift+Enter": "\u0e01\u0e14 Shift+Enter \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e1b\u0e34\u0e14\u0e1b\u0e4a\u0e2d\u0e1a\u0e2d\u0e31\u0e1e", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48 Rich Text \u0e01\u0e14 ALT-0 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d", | ||||
| "System Font": "\u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23\u0e02\u0e2d\u0e07\u0e23\u0e30\u0e1a\u0e1a", | ||||
| "Failed to upload image: {0}": "\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e2d\u0e31\u0e1b\u0e42\u0e2b\u0e25\u0e14\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e42\u0e2b\u0e25\u0e14\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19: {0} \u0e08\u0e32\u0e01 url {1}", | ||||
| "Failed to load plugin url: {0}": "\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e42\u0e2b\u0e25\u0e14 url \u0e02\u0e2d\u0e07\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19: {0}", | ||||
| "Failed to initialize plugin: {0}": "\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19: {0}", | ||||
| "example": "\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07", | ||||
| "Search": "\u0e04\u0e49\u0e19\u0e2b\u0e32", | ||||
| "All": "\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", | ||||
| "Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19", | ||||
| "Text": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", | ||||
| "Quotations": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", | ||||
| "Mathematical": "\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e04\u0e13\u0e34\u0e15\u0e28\u0e32\u0e2a\u0e15\u0e23\u0e4c", | ||||
| "Extended Latin": "\u0e20\u0e32\u0e29\u0e32\u0e25\u0e32\u0e15\u0e34\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e02\u0e22\u0e32\u0e22", | ||||
| "Symbols": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c", | ||||
| "Arrows": "\u0e25\u0e39\u0e01\u0e28\u0e23", | ||||
| "User Defined": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", | ||||
| "dollar sign": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e14\u0e2d\u0e25\u0e25\u0e48\u0e32\u0e23\u0e4c", | ||||
| "currency sign": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19", | ||||
| "euro-currency sign": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e22\u0e39\u0e42\u0e23", | ||||
| "colon sign": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e08\u0e38\u0e14\u0e04\u0e39\u0e48", | ||||
| "cruzeiro sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e04\u0e23\u0e39\u0e40\u0e0b\u0e42\u0e35\u0e23", | ||||
| "french franc sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e1f\u0e23\u0e31\u0e07\u0e01\u0e4c\u0e1d\u0e23\u0e31\u0e48\u0e07\u0e40\u0e28\u0e2a", | ||||
| "lira sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e25\u0e35\u0e23\u0e32", | ||||
| "mill sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e21\u0e34\u0e25\u0e25\u0e4c", | ||||
| "naira sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e44\u0e19\u0e23\u0e32", | ||||
| "peseta sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e1b\u0e40\u0e0b\u0e15\u0e32", | ||||
| "rupee sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e39\u0e1b\u0e35", | ||||
| "won sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e27\u0e2d\u0e19", | ||||
| "new sheqel sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e19\u0e34\u0e27\u0e40\u0e0a\u0e40\u0e01\u0e25", | ||||
| "dong sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e14\u0e2d\u0e07", | ||||
| "kip sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e01\u0e35\u0e1a", | ||||
| "tugrik sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e17\u0e39\u0e01\u0e23\u0e34\u0e01", | ||||
| "drachma sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e14\u0e23\u0e31\u0e04\u0e21\u0e32", | ||||
| "german penny symbol": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e1e\u0e19\u0e19\u0e35\u0e40\u0e22\u0e2d\u0e23\u0e21\u0e31\u0e19", | ||||
| "peso sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e1b\u0e42\u0e0b", | ||||
| "guarani sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e01\u0e27\u0e32\u0e23\u0e32\u0e19\u0e35", | ||||
| "austral sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e2d\u0e2a\u0e15\u0e23\u0e31\u0e25", | ||||
| "hryvnia sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2e\u0e23\u0e34\u0e1f\u0e40\u0e19\u0e35\u0e22", | ||||
| "cedi sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e0b\u0e14\u0e35", | ||||
| "livre tournois sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e1b\u0e2d\u0e19\u0e14\u0e4c\u0e15\u0e39\u0e23\u0e4c", | ||||
| "spesmilo sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e40\u0e1b\u0e2a\u0e21\u0e34\u0e42\u0e25", | ||||
| "tenge sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e17\u0e07\u0e40\u0e08", | ||||
| "indian rupee sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e39\u0e1b\u0e35\u0e2d\u0e34\u0e19\u0e40\u0e14\u0e35\u0e22", | ||||
| "turkish lira sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e25\u0e35\u0e23\u0e32\u0e15\u0e38\u0e23\u0e01\u0e35", | ||||
| "nordic mark sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e21\u0e32\u0e23\u0e4c\u0e04\u0e19\u0e2d\u0e23\u0e4c\u0e14\u0e34\u0e01", | ||||
| "manat sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e21\u0e32\u0e19\u0e31\u0e15", | ||||
| "ruble sign": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e39\u0e40\u0e1a\u0e34\u0e25", | ||||
| "yen character": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e22\u0e19", | ||||
| "yuan character": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e22\u0e27\u0e19", | ||||
| "yuan character, in hong kong and taiwan": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e22\u0e27\u0e19 \u0e43\u0e19\u0e2e\u0e48\u0e2d\u0e07\u0e01\u0e07\u0e41\u0e25\u0e30\u0e44\u0e15\u0e49\u0e2b\u0e27\u0e31\u0e19", | ||||
| "yen\/yuan character variant one": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e22\u0e19\/\u0e2b\u0e22\u0e27\u0e19 \u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48 1", | ||||
| "Loading emoticons...": "\u0e01\u0e33\u0e25\u0e31\u0e07\u0e42\u0e2b\u0e25\u0e14\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e41\u0e2a\u0e14\u0e07\u0e2d\u0e32\u0e23\u0e21\u0e13\u0e4c...", | ||||
| "Could not load emoticons": "\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e42\u0e2b\u0e25\u0e14\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e41\u0e2a\u0e14\u0e07\u0e2d\u0e32\u0e23\u0e21\u0e13\u0e4c\u0e44\u0e14\u0e49", | ||||
| "People": "\u0e1c\u0e39\u0e49\u0e04\u0e19", | ||||
| "Animals and Nature": "\u0e2a\u0e31\u0e15\u0e27\u0e4c\u0e41\u0e25\u0e30\u0e18\u0e23\u0e23\u0e21\u0e0a\u0e32\u0e15\u0e34", | ||||
| "Food and Drink": "\u0e2d\u0e32\u0e2b\u0e32\u0e23\u0e41\u0e25\u0e30\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e14\u0e37\u0e48\u0e21", | ||||
| "Activity": "\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21", | ||||
| "Travel and Places": "\u0e01\u0e32\u0e23\u0e17\u0e48\u0e2d\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e27\u0e41\u0e25\u0e30\u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48", | ||||
| "Objects": "\u0e27\u0e31\u0e15\u0e16\u0e38", | ||||
| "Flags": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22", | ||||
| "Characters": "\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23", | ||||
| "Characters (no spaces)": "\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23 (\u0e44\u0e21\u0e48\u0e21\u0e35\u0e0a\u0e48\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e07)", | ||||
| "{0} characters": "{0} \u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30", | ||||
| "Error: Form submit field collision.": "\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14: \u0e0a\u0e48\u0e2d\u0e07\u0e2a\u0e48\u0e07\u0e41\u0e1a\u0e1a\u0e1f\u0e2d\u0e23\u0e4c\u0e21\u0e02\u0e31\u0e14\u0e41\u0e22\u0e49\u0e07\u0e01\u0e31\u0e19", | ||||
| "Error: No form element found.": "\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14: \u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e2d\u0e07\u0e04\u0e4c\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a\u0e02\u0e2d\u0e07\u0e1f\u0e2d\u0e23\u0e4c\u0e21", | ||||
| "Update": "\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e43\u0e2b\u0e49\u0e17\u0e31\u0e19\u0e2a\u0e21\u0e31\u0e22", | ||||
| "Color swatch": "\u0e41\u0e16\u0e1a\u0e2a\u0e35", | ||||
| "Turquoise": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e21\u0e40\u0e02\u0e35\u0e22\u0e27", | ||||
| "Green": "\u0e40\u0e02\u0e35\u0e22\u0e27", | ||||
| "Blue": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19", | ||||
| "Purple": "\u0e21\u0e48\u0e27\u0e07", | ||||
| "Navy Blue": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19\u0e40\u0e02\u0e49\u0e21", | ||||
| "Dark Turquoise": "\u0e2a\u0e35\u0e1f\u0e49\u0e32\u0e04\u0e23\u0e32\u0e21\u0e40\u0e02\u0e49\u0e21", | ||||
| "Dark Green": "\u0e40\u0e02\u0e35\u0e22\u0e27\u0e40\u0e02\u0e49\u0e21", | ||||
| "Medium Blue": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19\u0e1b\u0e32\u0e19\u0e01\u0e25\u0e32\u0e07", | ||||
| "Medium Purple": "\u0e2a\u0e35\u0e21\u0e48\u0e27\u0e07\u0e01\u0e25\u0e32\u0e07\u0e46", | ||||
| "Midnight Blue": "\u0e2a\u0e35\u0e1f\u0e49\u0e32\u0e40\u0e02\u0e49\u0e21", | ||||
| "Yellow": "\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e07", | ||||
| "Orange": "\u0e2a\u0e49\u0e21", | ||||
| "Red": "\u0e41\u0e14\u0e07", | ||||
| "Light Gray": "\u0e2a\u0e35\u0e40\u0e17\u0e32\u0e2d\u0e48\u0e2d\u0e19", | ||||
| "Gray": "\u0e40\u0e17\u0e32", | ||||
| "Dark Yellow": "\u0e2a\u0e35\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e07\u0e40\u0e02\u0e49\u0e21", | ||||
| "Dark Orange": "\u0e2a\u0e49\u0e21\u0e40\u0e02\u0e49\u0e21", | ||||
| "Dark Red": "\u0e41\u0e14\u0e07\u0e40\u0e02\u0e49\u0e21", | ||||
| "Medium Gray": "\u0e2a\u0e35\u0e40\u0e17\u0e32\u0e01\u0e25\u0e32\u0e07\u0e46", | ||||
| "Dark Gray": "\u0e2a\u0e35\u0e40\u0e17\u0e32\u0e40\u0e02\u0e49\u0e21", | ||||
| "Light Green": "\u0e40\u0e02\u0e35\u0e22\u0e27\u0e2d\u0e48\u0e2d\u0e19", | ||||
| "Light Yellow": "\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e07\u0e2d\u0e48\u0e2d\u0e19", | ||||
| "Light Red": "\u0e41\u0e14\u0e07\u0e2d\u0e48\u0e2d\u0e19", | ||||
| "Light Purple": "\u0e21\u0e48\u0e27\u0e07\u0e2d\u0e48\u0e2d\u0e19", | ||||
| "Light Blue": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e48\u0e2d\u0e19", | ||||
| "Dark Purple": "\u0e21\u0e48\u0e27\u0e07\u0e40\u0e02\u0e49\u0e21", | ||||
| "Dark Blue": "\u0e19\u0e49\u0e33\u0e40\u0e07\u0e34\u0e19\u0e40\u0e02\u0e49\u0e21", | ||||
| "Black": "\u0e14\u0e33", | ||||
| "White": "\u0e02\u0e32\u0e27", | ||||
| "Switch to or from fullscreen mode": "\u0e2a\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e08\u0e32\u0e01\u0e42\u0e2b\u0e21\u0e14\u0e40\u0e15\u0e47\u0e21\u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d", | ||||
| "Open help dialog": "\u0e40\u0e1b\u0e34\u0e14\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e32\u0e23\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d", | ||||
| "history": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34", | ||||
| "styles": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a", | ||||
| "formatting": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a", | ||||
| "alignment": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e41\u0e19\u0e27", | ||||
| "indentation": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e22\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32", | ||||
| "permanent pen": "\u0e1b\u0e32\u0e01\u0e01\u0e32\u0e40\u0e04\u0e21\u0e35\u0e0a\u0e19\u0e34\u0e14\u0e25\u0e1a\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49", | ||||
| "comments": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", | ||||
| "Format Painter": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e40\u0e1e\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c", | ||||
| "Insert\/edit iframe": "\u0e41\u0e17\u0e23\u0e01\/\u0e41\u0e01\u0e49\u0e44\u0e02 iframe", | ||||
| "Capitalization": "\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e43\u0e2b\u0e0d\u0e48", | ||||
| "lowercase": "\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e40\u0e25\u0e47\u0e01", | ||||
| "UPPERCASE": "\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e43\u0e2b\u0e0d\u0e48", | ||||
| "Title Case": "\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e02\u0e2d\u0e07\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d", | ||||
| "Permanent Pen Properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e1b\u0e32\u0e01\u0e01\u0e32\u0e21\u0e32\u0e23\u0e4c\u0e04\u0e40\u0e01\u0e2d\u0e23\u0e4c", | ||||
| "Permanent pen properties...": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e1b\u0e32\u0e01\u0e01\u0e32\u0e21\u0e32\u0e23\u0e4c\u0e04\u0e40\u0e01\u0e2d\u0e23\u0e4c...", | ||||
| "Font": "\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23", | ||||
| "Size": "\u0e02\u0e19\u0e32\u0e14", | ||||
| "More...": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21...", | ||||
| "Spellcheck Language": "\u0e20\u0e32\u0e29\u0e32\u0e43\u0e19\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e01\u0e32\u0e23\u0e2a\u0e30\u0e01\u0e14", | ||||
| "Select...": "\u0e40\u0e25\u0e37\u0e2d\u0e01...", | ||||
| "Preferences": "\u0e04\u0e48\u0e32\u0e01\u0e33\u0e2b\u0e19\u0e14", | ||||
| "Yes": "\u0e43\u0e0a\u0e48", | ||||
| "No": "\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48", | ||||
| "Keyboard Navigation": "\u0e01\u0e32\u0e23\u0e19\u0e33\u0e17\u0e32\u0e07\u0e14\u0e49\u0e27\u0e22\u0e41\u0e1b\u0e49\u0e19\u0e1e\u0e34\u0e21\u0e1e\u0e4c", | ||||
| "Version": "\u0e23\u0e38\u0e48\u0e19", | ||||
| "Anchor": "\u0e08\u0e38\u0e14\u0e22\u0e36\u0e14", | ||||
| "Special character": "\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e1e\u0e34\u0e40\u0e28\u0e29", | ||||
| "Code sample": "\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e42\u0e04\u0e49\u0e14", | ||||
| "Color": "\u0e2a\u0e35", | ||||
| "Emoticons": "\u0e2d\u0e34\u0e42\u0e21\u0e15\u0e34\u0e04\u0e2d\u0e19", | ||||
| "Document properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", | ||||
| "Image": "\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e", | ||||
| "Insert link": "\u0e41\u0e17\u0e23\u0e01\u0e25\u0e34\u0e07\u0e01\u0e4c", | ||||
| "Target": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", | ||||
| "Link": "\u0e25\u0e34\u0e07\u0e01\u0e4c", | ||||
| "Poster": "\u0e42\u0e1b\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c", | ||||
| "Media": "\u0e2a\u0e37\u0e48\u0e2d", | ||||
| "Print": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c", | ||||
| "Prev": "\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32", | ||||
| "Find and replace": "\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e41\u0e25\u0e30\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48", | ||||
| "Whole words": "\u0e17\u0e31\u0e49\u0e07\u0e04\u0e33", | ||||
| "Spellcheck": "\u0e15\u0e23\u0e27\u0e08\u0e01\u0e32\u0e23\u0e2a\u0e30\u0e01\u0e14", | ||||
| "Caption": "\u0e1b\u0e49\u0e32\u0e22\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22", | ||||
| "Insert template": "\u0e41\u0e17\u0e23\u0e01\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/tr.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/tr.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('tr',{ | ||||
| "Redo": "Yinele", | ||||
| "Undo": "Geri al", | ||||
| "Cut": "Kes", | ||||
| "Copy": "Kopyala", | ||||
| "Paste": "Yap\u0131\u015ft\u0131r", | ||||
| "Select all": "T\u00fcm\u00fcn\u00fc se\u00e7", | ||||
| "New document": "Yeni dok\u00fcman", | ||||
| "Ok": "Tamam", | ||||
| "Cancel": "\u0130ptal", | ||||
| "Visual aids": "G\u00f6rsel ara\u00e7lar", | ||||
| "Bold": "Kal\u0131n", | ||||
| "Italic": "\u0130talik", | ||||
| "Underline": "Alt\u0131 \u00e7izili", | ||||
| "Strikethrough": "\u00dcst\u00fc \u00e7izgili", | ||||
| "Superscript": "\u00dcst simge", | ||||
| "Subscript": "Alt simge", | ||||
| "Clear formatting": "Bi\u00e7imi temizle", | ||||
| "Align left": "Sola hizala", | ||||
| "Align center": "Ortala", | ||||
| "Align right": "Sa\u011fa hizala", | ||||
| "Justify": "\u0130ki yana yasla", | ||||
| "Bullet list": "S\u0131ras\u0131z liste", | ||||
| "Numbered list": "S\u0131ral\u0131 liste", | ||||
| "Decrease indent": "Girintiyi azalt", | ||||
| "Increase indent": "Girintiyi art\u0131r", | ||||
| "Close": "Kapat", | ||||
| "Formats": "Bi\u00e7imler", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Taray\u0131c\u0131n\u0131z panoya direk eri\u015fimi desteklemiyor. L\u00fctfen Ctrl+X\/C\/V klavye k\u0131sayollar\u0131n\u0131 kullan\u0131n.", | ||||
| "Headers": "Ba\u015fl\u0131klar", | ||||
| "Header 1": "Ba\u015fl\u0131k 1", | ||||
| "Header 2": "Ba\u015fl\u0131k 2", | ||||
| "Header 3": "Ba\u015fl\u0131k 3", | ||||
| "Header 4": "Ba\u015fl\u0131k 4", | ||||
| "Header 5": "Ba\u015fl\u0131k 5", | ||||
| "Header 6": "Ba\u015fl\u0131k 6", | ||||
| "Headings": "Ba\u015fl\u0131klar", | ||||
| "Heading 1": "Ba\u015fl\u0131k 1", | ||||
| "Heading 2": "Ba\u015fl\u0131k 2", | ||||
| "Heading 3": "Ba\u015fl\u0131k 3", | ||||
| "Heading 4": "Ba\u015fl\u0131k 4", | ||||
| "Heading 5": "Ba\u015fl\u0131k 5", | ||||
| "Heading 6": "Ba\u015fl\u0131k 6", | ||||
| "Preformatted": "\u00d6nceden bi\u00e7imlendirilmi\u015f", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Kod", | ||||
| "Paragraph": "Paragraf", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Sat\u0131r i\u00e7i", | ||||
| "Blocks": "Bloklar", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "D\u00fcz metin modunda yap\u0131\u015ft\u0131r. Bu se\u00e7ene\u011fi kapatana kadar i\u00e7erikler d\u00fcz metin olarak yap\u0131\u015ft\u0131r\u0131l\u0131r.", | ||||
| "Fonts": "Yaz\u0131 Tipleri", | ||||
| "Font Sizes": "Yaz\u0131tipi B\u00fcy\u00fckl\u00fc\u011f\u00fc", | ||||
| "Class": "S\u0131n\u0131f", | ||||
| "Browse for an image": "Bir resim aray\u0131n", | ||||
| "OR": "VEYA", | ||||
| "Drop an image here": "Buraya bir resim koyun", | ||||
| "Upload": "Y\u00fckle", | ||||
| "Block": "Blok", | ||||
| "Align": "Hizala", | ||||
| "Default": "Varsay\u0131lan", | ||||
| "Circle": "Daire", | ||||
| "Disc": "Disk", | ||||
| "Square": "Kare", | ||||
| "Lower Alpha": "K\u00fc\u00e7\u00fck Harf", | ||||
| "Lower Greek": "K\u00fc\u00e7\u00fck Yunan Harfleri", | ||||
| "Lower Roman": "K\u00fc\u00e7\u00fck Roman Harfleri ", | ||||
| "Upper Alpha": "B\u00fcy\u00fck Harf", | ||||
| "Upper Roman": "B\u00fcy\u00fck Roman Harfleri ", | ||||
| "Anchor...": "\u00c7apa...", | ||||
| "Name": "\u0130sim", | ||||
| "Id": "Kimlik", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id bir harf ile ba\u015flamal\u0131d\u0131r ve harf, rakam, \u00e7izgi, nokta, iki nokta \u00fcst\u00fcste veya alt \u00e7izgi kullan\u0131labilir.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Kaydedilmemi\u015f de\u011fi\u015fiklikler var, sayfadan ayr\u0131lmak istedi\u011finize emin misiniz?", | ||||
| "Restore last draft": "Son tasla\u011f\u0131 geri y\u00fckle", | ||||
| "Special character...": "\u00d6zel karakter...", | ||||
| "Source code": "Kaynak kodu", | ||||
| "Insert\/Edit code sample": "\u00d6rnek kod ekle\/d\u00fczenle", | ||||
| "Language": "Dil", | ||||
| "Code sample...": "Kod \u00f6rne\u011fi...", | ||||
| "Color Picker": "Renk Se\u00e7ici", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Soldan sa\u011fa", | ||||
| "Right to left": "Sa\u011fdan sola", | ||||
| "Emoticons...": "\u0130fadeler...", | ||||
| "Metadata and Document Properties": "\u00d6nbilgi ve Belge \u00d6zellikleri", | ||||
| "Title": "Ba\u015fl\u0131k", | ||||
| "Keywords": "Anahtar kelimeler", | ||||
| "Description": "A\u00e7\u0131klama", | ||||
| "Robots": "Robotlar", | ||||
| "Author": "Yazar", | ||||
| "Encoding": "Kodlama", | ||||
| "Fullscreen": "Tam ekran", | ||||
| "Action": "Eylem", | ||||
| "Shortcut": "K\u0131sayol", | ||||
| "Help": "Yard\u0131m", | ||||
| "Address": "Adres", | ||||
| "Focus to menubar": "Men\u00fcye odaklan", | ||||
| "Focus to toolbar": "Ara\u00e7 tak\u0131m\u0131na odaklan", | ||||
| "Focus to element path": "\u00d6\u011fe yoluna odaklan", | ||||
| "Focus to contextual toolbar": "Ba\u011flamsal ara\u00e7 tak\u0131m\u0131na odaklan", | ||||
| "Insert link (if link plugin activated)": "Ba\u011flant\u0131 ekle (Ba\u011flant\u0131 eklentisi aktif ise)", | ||||
| "Save (if save plugin activated)": "Kaydet (Kay\u0131t eklentisi aktif ise)", | ||||
| "Find (if searchreplace plugin activated)": "Bul (Bul\/De\u011fi\u015ftir eklentisi aktif ise)", | ||||
| "Plugins installed ({0}):": "Eklentiler y\u00fcklendi ({0}):", | ||||
| "Premium plugins:": "Premium eklentiler:", | ||||
| "Learn more...": "Detayl\u0131 bilgi...", | ||||
| "You are using {0}": "\u015eu an {0} kullan\u0131yorsunuz", | ||||
| "Plugins": "Plugins", | ||||
| "Handy Shortcuts": "Handy Shortcuts", | ||||
| "Horizontal line": "Yatay \u00e7izgi", | ||||
| "Insert\/edit image": "Resim ekle\/d\u00fczenle", | ||||
| "Image description": "Resim a\u00e7\u0131klamas\u0131", | ||||
| "Source": "Kaynak", | ||||
| "Dimensions": "Boyutlar", | ||||
| "Constrain proportions": "Oranlar\u0131 koru", | ||||
| "General": "Genel", | ||||
| "Advanced": "Geli\u015fmi\u015f", | ||||
| "Style": "Stil", | ||||
| "Vertical space": "Dikey bo\u015fluk", | ||||
| "Horizontal space": "Yatay bo\u015fluk", | ||||
| "Border": "Kenarl\u0131k", | ||||
| "Insert image": "Resim ekle", | ||||
| "Image...": "Resim...", | ||||
| "Image list": "G\u00f6rsel listesi", | ||||
| "Rotate counterclockwise": "Saatin tersi y\u00f6n\u00fcnde d\u00f6nd\u00fcr", | ||||
| "Rotate clockwise": "Saat y\u00f6n\u00fcnde d\u00f6nd\u00fcr", | ||||
| "Flip vertically": "Dikine \u00e7evir", | ||||
| "Flip horizontally": "Enine \u00e7evir", | ||||
| "Edit image": "Resmi d\u00fczenle", | ||||
| "Image options": "Resim ayarlar\u0131", | ||||
| "Zoom in": "Yak\u0131nla\u015ft\u0131r", | ||||
| "Zoom out": "Uzakla\u015ft\u0131r", | ||||
| "Crop": "K\u0131rp", | ||||
| "Resize": "Yeniden Boyutland\u0131r", | ||||
| "Orientation": "Oryantasyon", | ||||
| "Brightness": "Parlakl\u0131k", | ||||
| "Sharpen": "Keskinle\u015ftir", | ||||
| "Contrast": "Kontrast", | ||||
| "Color levels": "Renk d\u00fczeyleri", | ||||
| "Gamma": "Gama", | ||||
| "Invert": "Ters \u00c7evir", | ||||
| "Apply": "Uygula", | ||||
| "Back": "Geri", | ||||
| "Insert date\/time": "Tarih\/saat ekle", | ||||
| "Date\/time": "Tarih\/saat", | ||||
| "Insert\/Edit Link": "Ba\u011flant\u0131 Ekle\/D\u00fczenle", | ||||
| "Insert\/edit link": "Ba\u011flant\u0131 ekle\/d\u00fczenle", | ||||
| "Text to display": "Yaz\u0131y\u0131 g\u00f6r\u00fcnt\u00fcle", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Ba\u011flant\u0131y\u0131 a\u00e7...", | ||||
| "Current window": "Mevcut pencere", | ||||
| "None": "Hi\u00e7biri", | ||||
| "New window": "Yeni pencere", | ||||
| "Remove link": "Ba\u011flant\u0131y\u0131 kald\u0131r", | ||||
| "Anchors": "\u00c7apalar", | ||||
| "Link...": "Ba\u011flant\u0131...", | ||||
| "Paste or type a link": "Bir ba\u011flant\u0131 yaz\u0131n yada yap\u0131\u015ft\u0131r\u0131n", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Girdi\u011finiz URL bir e-posta adresi gibi g\u00f6r\u00fcn\u00fcyor. Gerekli olan mailto: \u00f6nekini eklemek ister misiniz?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Girdi\u011finiz URL bir d\u0131\u015f ba\u011flant\u0131 gibi g\u00f6r\u00fcn\u00fcyor. Gerekli olan http:\/\/ \u00f6nekini eklemek ister misiniz?", | ||||
| "Link list": "Ba\u011flant\u0131 listesi", | ||||
| "Insert video": "Video ekle", | ||||
| "Insert\/edit video": "Video ekle\/d\u00fczenle", | ||||
| "Insert\/edit media": "Medya ekle\/d\u00fczenle", | ||||
| "Alternative source": "Alternatif kaynak", | ||||
| "Alternative source URL": "Alternatif kaynak URL", | ||||
| "Media poster (Image URL)": "Medya posteri (Resim URL)", | ||||
| "Paste your embed code below:": "Video g\u00f6mme kodunu a\u015fa\u011f\u0131ya yap\u0131\u015ft\u0131r\u0131n\u0131z:", | ||||
| "Embed": "G\u00f6mme", | ||||
| "Media...": "Medya...", | ||||
| "Nonbreaking space": "B\u00f6l\u00fcnemez bo\u015fluk", | ||||
| "Page break": "Sayfa sonu", | ||||
| "Paste as text": "Metin olarak yap\u0131\u015ft\u0131r", | ||||
| "Preview": "\u00d6nizleme", | ||||
| "Print...": "Yazd\u0131r...", | ||||
| "Save": "Kaydet", | ||||
| "Find": "Bul", | ||||
| "Replace with": "Bununla de\u011fi\u015ftir", | ||||
| "Replace": "De\u011fi\u015ftir", | ||||
| "Replace all": "T\u00fcm\u00fcn\u00fc de\u011fi\u015ftir", | ||||
| "Previous": "Geri", | ||||
| "Next": "Sonraki", | ||||
| "Find and replace...": "Bul ve de\u011fi\u015ftir...", | ||||
| "Could not find the specified string.": "Herhangi bir sonu\u00e7 bulunamad\u0131.", | ||||
| "Match case": "B\u00fcy\u00fck\/k\u00fc\u00e7\u00fck harf duyarl\u0131", | ||||
| "Find whole words only": "Sadece t\u00fcm kelimeyi ara", | ||||
| "Spell check": "Yaz\u0131m denetimi", | ||||
| "Ignore": "Yoksay", | ||||
| "Ignore all": "T\u00fcm\u00fcn\u00fc yoksay", | ||||
| "Finish": "Bitir", | ||||
| "Add to Dictionary": "S\u00f6zl\u00fc\u011fe Ekle", | ||||
| "Insert table": "Tablo ekle", | ||||
| "Table properties": "Tablo \u00f6zellikleri", | ||||
| "Delete table": "Tablo sil", | ||||
| "Cell": "H\u00fccre", | ||||
| "Row": "Sat\u0131r", | ||||
| "Column": "S\u00fctun", | ||||
| "Cell properties": "H\u00fccre \u00f6zellikleri", | ||||
| "Merge cells": "H\u00fccreleri birle\u015ftir", | ||||
| "Split cell": "H\u00fccre b\u00f6l", | ||||
| "Insert row before": "\u00dcste sat\u0131r ekle", | ||||
| "Insert row after": "Alta sat\u0131r ekle ", | ||||
| "Delete row": "Sat\u0131r sil", | ||||
| "Row properties": "Sat\u0131r \u00f6zellikleri", | ||||
| "Cut row": "Sat\u0131r\u0131 kes", | ||||
| "Copy row": "Sat\u0131r\u0131 kopyala", | ||||
| "Paste row before": "\u00dcste sat\u0131r yap\u0131\u015ft\u0131r", | ||||
| "Paste row after": "Alta sat\u0131r yap\u0131\u015ft\u0131r", | ||||
| "Insert column before": "Sola s\u00fctun ekle", | ||||
| "Insert column after": "Sa\u011fa s\u00fctun ekle", | ||||
| "Delete column": "S\u00fctun sil", | ||||
| "Cols": "S\u00fctunlar", | ||||
| "Rows": "Sat\u0131rlar", | ||||
| "Width": "Geni\u015flik", | ||||
| "Height": "Y\u00fckseklik", | ||||
| "Cell spacing": "H\u00fccre aral\u0131\u011f\u0131", | ||||
| "Cell padding": "H\u00fccre dolgusu", | ||||
| "Show caption": "Ba\u015fl\u0131\u011f\u0131 g\u00f6ster", | ||||
| "Left": "Sol", | ||||
| "Center": "Orta", | ||||
| "Right": "Sa\u011f", | ||||
| "Cell type": "H\u00fccre tipi", | ||||
| "Scope": "Kapsam", | ||||
| "Alignment": "Hizalama", | ||||
| "H Align": "Yatay Hizalama", | ||||
| "V Align": "Dikey Hizalama", | ||||
| "Top": "\u00dcst", | ||||
| "Middle": "Orta", | ||||
| "Bottom": "Alt", | ||||
| "Header cell": "Ba\u015fl\u0131k h\u00fccresi", | ||||
| "Row group": "Sat\u0131r grubu", | ||||
| "Column group": "S\u00fctun grubu", | ||||
| "Row type": "Sat\u0131r tipi", | ||||
| "Header": "Ba\u015fl\u0131k", | ||||
| "Body": "G\u00f6vde", | ||||
| "Footer": "Alt", | ||||
| "Border color": "Kenarl\u0131k rengi", | ||||
| "Insert template...": "\u015eablon ekle...", | ||||
| "Templates": "\u015eablonlar", | ||||
| "Template": "Taslak", | ||||
| "Text color": "Yaz\u0131 rengi", | ||||
| "Background color": "Arka plan rengi", | ||||
| "Custom...": "\u00d6zel...", | ||||
| "Custom color": "\u00d6zel renk", | ||||
| "No color": "Renk yok", | ||||
| "Remove color": "Rengi kald\u0131r", | ||||
| "Table of Contents": "\u0130\u00e7erik tablosu", | ||||
| "Show blocks": "Bloklar\u0131 g\u00f6ster", | ||||
| "Show invisible characters": "G\u00f6r\u00fcnmez karakterleri g\u00f6ster", | ||||
| "Word count": "Kelime say\u0131s\u0131", | ||||
| "Count": "Say\u0131m", | ||||
| "Document": "Belge", | ||||
| "Selection": "Se\u00e7im", | ||||
| "Words": "S\u00f6zc\u00fck", | ||||
| "Words: {0}": "Kelime: {0}", | ||||
| "{0} words": "{0} words", | ||||
| "File": "Dosya", | ||||
| "Edit": "D\u00fczenle", | ||||
| "Insert": "Ekle", | ||||
| "View": "G\u00f6r\u00fcn\u00fcm", | ||||
| "Format": "Bi\u00e7im", | ||||
| "Table": "Tablo", | ||||
| "Tools": "Ara\u00e7lar", | ||||
| "Powered by {0}": "Powered by {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zengin Metin Alan\u0131. Men\u00fc i\u00e7in ALT-F9 tu\u015funa bas\u0131n\u0131z. Ara\u00e7 \u00e7ubu\u011fu i\u00e7in ALT-F10 tu\u015funa bas\u0131n\u0131z. Yard\u0131m i\u00e7in ALT-0 tu\u015funa bas\u0131n\u0131z.", | ||||
| "Image title": "Resim ba\u015fl\u0131\u011f\u0131", | ||||
| "Border width": "Kenar geni\u015fli\u011fi", | ||||
| "Border style": "Kenar sitili", | ||||
| "Error": "Hata", | ||||
| "Warn": "Uyar\u0131", | ||||
| "Valid": "Ge\u00e7erli", | ||||
| "To open the popup, press Shift+Enter": "Popup'\u0131 a\u00e7mak i\u00e7in Shift+Enter'a bas\u0131n", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Zengin Metin Alan\u0131. Yard\u0131m i\u00e7in Alt-0'a bas\u0131n.", | ||||
| "System Font": "Sistem Yaz\u0131 Tipi", | ||||
| "Failed to upload image: {0}": "Resim y\u00fcklenemedi: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Eklenti y\u00fcklenemedi: {1} url\u2019sinden {0}", | ||||
| "Failed to load plugin url: {0}": "Url eklentisi y\u00fcklenemedi: {0}", | ||||
| "Failed to initialize plugin: {0}": "Eklenti ba\u015flat\u0131lamad\u0131: {0}", | ||||
| "example": "\u00f6rnek", | ||||
| "Search": "Ara", | ||||
| "All": "T\u00fcm\u00fc", | ||||
| "Currency": "Para birimi", | ||||
| "Text": "Metin", | ||||
| "Quotations": "Al\u0131nt\u0131", | ||||
| "Mathematical": "Matematik", | ||||
| "Extended Latin": "Uzat\u0131lm\u0131\u015f Latin", | ||||
| "Symbols": "Semboller", | ||||
| "Arrows": "Oklar", | ||||
| "User Defined": "Kullan\u0131c\u0131 Tan\u0131ml\u0131", | ||||
| "dollar sign": "dolar i\u015fareti", | ||||
| "currency sign": "para birimi i\u015fareti", | ||||
| "euro-currency sign": "euro para birimi i\u015fareti", | ||||
| "colon sign": "colon i\u015fareti", | ||||
| "cruzeiro sign": "cruzeiro i\u015fareti", | ||||
| "french franc sign": "frans\u0131z frang\u0131 i\u015fareti", | ||||
| "lira sign": "lira i\u015fareti", | ||||
| "mill sign": "mill i\u015fareti", | ||||
| "naira sign": "naira i\u015fareti", | ||||
| "peseta sign": "peseta i\u015fareti", | ||||
| "rupee sign": "rupi i\u015fareti", | ||||
| "won sign": "won i\u015fareti", | ||||
| "new sheqel sign": "yeni \u015fekel i\u015fareti", | ||||
| "dong sign": "dong i\u015fareti", | ||||
| "kip sign": "kip i\u015fareti", | ||||
| "tugrik sign": "tugrik i\u015fareti", | ||||
| "drachma sign": "drahma i\u015fareti", | ||||
| "german penny symbol": "alman kuru\u015f sembol\u00fc", | ||||
| "peso sign": "peso i\u015fareti", | ||||
| "guarani sign": "guarani i\u015fareti", | ||||
| "austral sign": "austral i\u015fareti", | ||||
| "hryvnia sign": "hrivniya i\u015fareti", | ||||
| "cedi sign": "cedi i\u015fareti", | ||||
| "livre tournois sign": "livre tournois i\u015fareti", | ||||
| "spesmilo sign": "spesmilo i\u015fareti", | ||||
| "tenge sign": "tenge i\u015fareti", | ||||
| "indian rupee sign": "hindistan rupisi i\u015fareti", | ||||
| "turkish lira sign": "t\u00fcrk liras\u0131 i\u015fareti", | ||||
| "nordic mark sign": "nordic i\u015fareti", | ||||
| "manat sign": "manat i\u015fareti", | ||||
| "ruble sign": "ruble i\u015fareti", | ||||
| "yen character": "yen karakteri", | ||||
| "yuan character": "yuan karakteri", | ||||
| "yuan character, in hong kong and taiwan": "yuan karakteri, hong kong ve tayvan'da kullan\u0131lan", | ||||
| "yen\/yuan character variant one": "yen\/yuan karakter de\u011fi\u015fkeni", | ||||
| "Loading emoticons...": "\u0130fadeler y\u00fckleniyor...", | ||||
| "Could not load emoticons": "\u0130fadeler y\u00fcklenemedi", | ||||
| "People": "\u0130nsan", | ||||
| "Animals and Nature": "Hayvanlar ve Do\u011fa", | ||||
| "Food and Drink": "Yiyecek ve \u0130\u00e7ecek", | ||||
| "Activity": "Etkinlik", | ||||
| "Travel and Places": "Gezi ve Yerler", | ||||
| "Objects": "Nesneler", | ||||
| "Flags": "Bayraklar", | ||||
| "Characters": "Karakter", | ||||
| "Characters (no spaces)": "Karakter (bo\u015fluksuz)", | ||||
| "{0} characters": "{0} karakter", | ||||
| "Error: Form submit field collision.": "Hata: Form g\u00f6nderme alan\u0131 \u00e7at\u0131\u015fmas\u0131.", | ||||
| "Error: No form element found.": "Hata: Form eleman\u0131 bulunamad\u0131.", | ||||
| "Update": "G\u00fcncelle\u015ftir", | ||||
| "Color swatch": "Renk \u00f6rne\u011fi", | ||||
| "Turquoise": "Turkuaz", | ||||
| "Green": "Ye\u015fil", | ||||
| "Blue": "Mavi", | ||||
| "Purple": "Mor", | ||||
| "Navy Blue": "Lacivert", | ||||
| "Dark Turquoise": "Koyu Turkuaz", | ||||
| "Dark Green": "Koyu Ye\u015fil", | ||||
| "Medium Blue": "Donuk Mavi", | ||||
| "Medium Purple": "Orta Mor", | ||||
| "Midnight Blue": "Gece Yar\u0131s\u0131 Mavisi", | ||||
| "Yellow": "Sar\u0131", | ||||
| "Orange": "Turuncu", | ||||
| "Red": "K\u0131rm\u0131z\u0131", | ||||
| "Light Gray": "A\u00e7\u0131k Gri", | ||||
| "Gray": "Gri", | ||||
| "Dark Yellow": "Koyu Sar\u0131", | ||||
| "Dark Orange": "Koyu Turuncu", | ||||
| "Dark Red": "Koyu K\u0131rm\u0131z\u0131", | ||||
| "Medium Gray": "Orta Gri", | ||||
| "Dark Gray": "Koyu Gri", | ||||
| "Light Green": "A\u00e7\u0131k Ye\u015fil", | ||||
| "Light Yellow": "A\u00e7\u0131k Sar\u0131", | ||||
| "Light Red": "A\u00e7\u0131k K\u0131rm\u0131z\u0131", | ||||
| "Light Purple": "A\u00e7\u0131k Mor", | ||||
| "Light Blue": "A\u00e7\u0131k Mavi", | ||||
| "Dark Purple": "Koyu Mor", | ||||
| "Dark Blue": "Lacivert", | ||||
| "Black": "Siyah", | ||||
| "White": "Beyaz", | ||||
| "Switch to or from fullscreen mode": "Tam ekran moduna ge\u00e7 veya \u00e7\u0131k", | ||||
| "Open help dialog": "Yard\u0131m penceresini a\u00e7", | ||||
| "history": "ge\u00e7mi\u015f", | ||||
| "styles": "stiller", | ||||
| "formatting": "bi\u00e7imlendirme", | ||||
| "alignment": "hizalanma", | ||||
| "indentation": "girinti", | ||||
| "permanent pen": "kal\u0131c\u0131 kalem", | ||||
| "comments": "yorumlar", | ||||
| "Format Painter": "Bi\u00e7im Boyac\u0131s\u0131", | ||||
| "Insert\/edit iframe": "\u0130frame ekle\/d\u00fczenle", | ||||
| "Capitalization": "B\u00fcy\u00fck Harfle Yaz\u0131m", | ||||
| "lowercase": "k\u00fc\u00e7\u00fck harf", | ||||
| "UPPERCASE": "B\u00dcY\u00dcK HARF", | ||||
| "Title Case": "\u0130lk Harfler B\u00fcy\u00fck", | ||||
| "Permanent Pen Properties": "Kal\u0131c\u0131 Kalem \u00d6zellikleri", | ||||
| "Permanent pen properties...": "Kal\u0131c\u0131 kalem \u00f6zellikleri...", | ||||
| "Font": "Yaz\u0131 Tipi", | ||||
| "Size": "Boyut", | ||||
| "More...": "Devam\u0131...", | ||||
| "Spellcheck Language": "Yaz\u0131m Denetimi Dili", | ||||
| "Select...": "Se\u00e7...", | ||||
| "Preferences": "Tercihler", | ||||
| "Yes": "Evet", | ||||
| "No": "Hay\u0131r", | ||||
| "Keyboard Navigation": "Klavye Tu\u015flar\u0131", | ||||
| "Version": "S\u00fcr\u00fcm", | ||||
| "Anchor": "\u00c7apa", | ||||
| "Special character": "\u00d6zel karakter", | ||||
| "Code sample": "Code sample", | ||||
| "Color": "Renk", | ||||
| "Emoticons": "\u0130fadeler", | ||||
| "Document properties": "Dok\u00fcman \u00f6zellikleri", | ||||
| "Image": "Resim", | ||||
| "Insert link": "Ba\u011flant\u0131 ekle", | ||||
| "Target": "Hedef", | ||||
| "Link": "Ba\u011flant\u0131", | ||||
| "Poster": "Poster", | ||||
| "Media": "Medya", | ||||
| "Print": "Yazd\u0131r", | ||||
| "Prev": "\u00d6nceki", | ||||
| "Find and replace": "Bul ve de\u011fi\u015ftir", | ||||
| "Whole words": "Tam kelimeler", | ||||
| "Spellcheck": "Yaz\u0131m denetimi", | ||||
| "Caption": "Ba\u015fl\u0131k", | ||||
| "Insert template": "\u015eablon ekle" | ||||
| }); | ||||
							
								
								
									
										389
									
								
								Modules/TinyMCE/langs/tr_TR.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										389
									
								
								Modules/TinyMCE/langs/tr_TR.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,389 @@ | ||||
| tinymce.addI18n('tr_TR',{ | ||||
| "Redo": "Yinele", | ||||
| "Undo": "Geri al", | ||||
| "Cut": "Kes", | ||||
| "Copy": "Kopyala", | ||||
| "Paste": "Yap\u0131\u015ft\u0131r", | ||||
| "Select all": "T\u00fcm\u00fcn\u00fc se\u00e7", | ||||
| "New document": "Yeni dok\u00fcman", | ||||
| "Ok": "Tamam", | ||||
| "Cancel": "\u0130ptal", | ||||
| "Visual aids": "G\u00f6rsel ara\u00e7lar", | ||||
| "Bold": "Kal\u0131n", | ||||
| "Italic": "\u0130talik", | ||||
| "Underline": "Alt\u0131 \u00e7izili", | ||||
| "Strikethrough": "\u00dcst\u00fc \u00e7izgili", | ||||
| "Superscript": "\u00dcst simge", | ||||
| "Subscript": "Alt simge", | ||||
| "Clear formatting": "Bi\u00e7imi temizle", | ||||
| "Align left": "Sola hizala", | ||||
| "Align center": "Ortala", | ||||
| "Align right": "Sa\u011fa hizala", | ||||
| "Justify": "\u0130ki yana yasla", | ||||
| "Bullet list": "S\u0131ras\u0131z liste", | ||||
| "Numbered list": "S\u0131ral\u0131 liste", | ||||
| "Decrease indent": "Girintiyi azalt", | ||||
| "Increase indent": "Girintiyi art\u0131r", | ||||
| "Close": "Kapat", | ||||
| "Formats": "Bi\u00e7imler", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Taray\u0131c\u0131n\u0131z panoya direk eri\u015fimi desteklemiyor. L\u00fctfen Ctrl+X\/C\/V klavye k\u0131sayollar\u0131n\u0131 kullan\u0131n.", | ||||
| "Headers": "Ba\u015fl\u0131klar", | ||||
| "Header 1": "Ba\u015fl\u0131k 1", | ||||
| "Header 2": "Ba\u015fl\u0131k 2", | ||||
| "Header 3": "Ba\u015fl\u0131k 3", | ||||
| "Header 4": "Ba\u015fl\u0131k 4", | ||||
| "Header 5": "Ba\u015fl\u0131k 5", | ||||
| "Header 6": "Ba\u015fl\u0131k 6", | ||||
| "Headings": "Ba\u015fl\u0131klar", | ||||
| "Heading 1": "Ba\u015fl\u0131k 1", | ||||
| "Heading 2": "Ba\u015fl\u0131k 2", | ||||
| "Heading 3": "Ba\u015fl\u0131k 3", | ||||
| "Heading 4": "Ba\u015fl\u0131k 4", | ||||
| "Heading 5": "Ba\u015fl\u0131k 5", | ||||
| "Heading 6": "Ba\u015fl\u0131k 6", | ||||
| "Preformatted": "\u00d6nceden bi\u00e7imlendirilmi\u015f", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "Kod", | ||||
| "Paragraph": "Paragraf", | ||||
| "Blockquote": "Blockquote", | ||||
| "Inline": "Sat\u0131r i\u00e7i", | ||||
| "Blocks": "Bloklar", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "D\u00fcz metin modunda yap\u0131\u015ft\u0131r. Bu se\u00e7ene\u011fi kapatana kadar i\u00e7erikler d\u00fcz metin olarak yap\u0131\u015ft\u0131r\u0131l\u0131r.", | ||||
| "Fonts": "Yaz\u0131 Tipleri", | ||||
| "Font Sizes": "Yaz\u0131tipi B\u00fcy\u00fckl\u00fc\u011f\u00fc", | ||||
| "Class": "S\u0131n\u0131f", | ||||
| "Browse for an image": "Bir resim aray\u0131n", | ||||
| "OR": "ya da", | ||||
| "Drop an image here": "Buraya bir resim koyun", | ||||
| "Upload": "Y\u00fckle", | ||||
| "Block": "Blok", | ||||
| "Align": "Hizala", | ||||
| "Default": "Varsay\u0131lan", | ||||
| "Circle": "Daire", | ||||
| "Disc": "Disk", | ||||
| "Square": "Kare", | ||||
| "Lower Alpha": "K\u00fc\u00e7\u00fck ABC", | ||||
| "Lower Greek": "K\u00fc\u00e7\u00fck Yunan alfabesi", | ||||
| "Lower Roman": "K\u00fc\u00e7\u00fck Roman alfabesi", | ||||
| "Upper Alpha": "B\u00fcy\u00fck ABC", | ||||
| "Upper Roman": "B\u00fcy\u00fck Roman alfabesi", | ||||
| "Anchor...": "\u00c7apa...", | ||||
| "Name": "\u0130sim", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id bir harf ile ba\u015flamal\u0131d\u0131r ve sadece harfleri, rakamlar\u0131, \u00e7izgileri, noktalar\u0131, virg\u00fclleri veya alt \u00e7izgileri i\u00e7ermelidir.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "Kaydedilmemi\u015f de\u011fi\u015fiklikler var, sayfadan ayr\u0131lmak istedi\u011finize emin misiniz?", | ||||
| "Restore last draft": "Son tasla\u011f\u0131 kurtar", | ||||
| "Special characters...": "\u00d6zel karakterler...", | ||||
| "Source code": "Kaynak kodu", | ||||
| "Insert\/Edit code sample": "Kod \u00f6rne\u011fini Kaydet\/D\u00fczenle", | ||||
| "Language": "Dil", | ||||
| "Code sample...": "Kod \u00f6rne\u011fi...", | ||||
| "Color Picker": "Renk Se\u00e7ici", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "Soldan sa\u011fa", | ||||
| "Right to left": "Sa\u011fdan sola", | ||||
| "Emoticons...": "\u0130fadeler...", | ||||
| "Metadata and Document Properties": "\u00d6nbilgi ve Belge \u00d6zellikleri", | ||||
| "Title": "Ba\u015fl\u0131k", | ||||
| "Keywords": "Anahtar kelimeler", | ||||
| "Description": "A\u00e7\u0131klama", | ||||
| "Robots": "Robotlar", | ||||
| "Author": "Yazar", | ||||
| "Encoding": "Kodlama", | ||||
| "Fullscreen": "Tam ekran", | ||||
| "Action": "Eylem", | ||||
| "Shortcut": "K\u0131sayol", | ||||
| "Help": "Yard\u0131m", | ||||
| "Address": "Adres", | ||||
| "Focus to menubar": "Men\u00fc \u00e7ubu\u011funa odaklan.", | ||||
| "Focus to toolbar": "Ara\u00e7 \u00e7ubu\u011funa odaklan.", | ||||
| "Focus to element path": "Eleman yoluna odaklan", | ||||
| "Focus to contextual toolbar": "Ba\u011flamsal ara\u00e7 \u00e7ubu\u011funa odaklan", | ||||
| "Insert link (if link plugin activated)": "Link ekle (Link eklentisi aktif ise)", | ||||
| "Save (if save plugin activated)": "Kaydet (Kay\u0131t eklentisi aktif ise)", | ||||
| "Find (if searchreplace plugin activated)": "Bul (SearchReplace eklentisi aktif ise)", | ||||
| "Plugins installed ({0}):": "Y\u00fckl\u00fc eklenti say\u0131s\u0131 : ({0}):", | ||||
| "Premium plugins:": "Premium eklentileri", | ||||
| "Learn more...": "Daha fazla bilgi edinin.", | ||||
| "You are using {0}": "{0} kullan\u0131yorsun.", | ||||
| "Plugins": "Eklentiler", | ||||
| "Handy Shortcuts": "Kullan\u0131\u015fl\u0131 K\u0131sayollar", | ||||
| "Horizontal line": "Yatay \u00e7izgi", | ||||
| "Insert\/edit image": "Resim ekle\/d\u00fczenle", | ||||
| "Image description": "Resim a\u00e7\u0131klamas\u0131", | ||||
| "Source": "Kaynak", | ||||
| "Dimensions": "Boyutlar", | ||||
| "Constrain proportions": "En - Boy oran\u0131n\u0131 koru", | ||||
| "General": "Genel", | ||||
| "Advanced": "Geli\u015fmi\u015f", | ||||
| "Style": "Stil", | ||||
| "Vertical space": "Dikey bo\u015fluk", | ||||
| "Horizontal space": "Yatay bo\u015fluk", | ||||
| "Border": "\u00c7er\u00e7eve", | ||||
| "Insert image": "Resim ekle", | ||||
| "Image...": "Resim...", | ||||
| "Image list": "Resim listesi", | ||||
| "Rotate counterclockwise": "Saat y\u00f6n\u00fcn\u00fcn tersine d\u00f6nd\u00fcr", | ||||
| "Rotate clockwise": "Saat y\u00f6n\u00fcnde d\u00f6nd\u00fcr", | ||||
| "Flip vertically": "Dikey \u00e7evir", | ||||
| "Flip horizontally": "Yatay \u00e7evir", | ||||
| "Edit image": "G\u00f6r\u00fcnt\u00fcy\u00fc d\u00fczenle", | ||||
| "Image options": "G\u00f6r\u00fcnt\u00fc se\u00e7enekleri", | ||||
| "Zoom in": "Yak\u0131nla\u015ft\u0131r", | ||||
| "Zoom out": "Uzakla\u015ft\u0131r", | ||||
| "Crop": "Kes", | ||||
| "Resize": "Yeniden Boyutland\u0131r", | ||||
| "Orientation": "Y\u00f6n\u00fcn\u00fc Belirle", | ||||
| "Brightness": "Parlakl\u0131k", | ||||
| "Sharpen": "Keskinle\u015ftir", | ||||
| "Contrast": "Kontrast", | ||||
| "Color levels": "Renk seviyesi", | ||||
| "Gamma": "Gama", | ||||
| "Invert": "Tersine \u00e7evir", | ||||
| "Apply": "Uygula", | ||||
| "Back": "Geri", | ||||
| "Insert date\/time": "Tarih \/ Zaman ekle", | ||||
| "Date\/time": "Tarih\/zaman", | ||||
| "Insert\/Edit Link": "Ba\u011flant\u0131 Ekle\/D\u00fczenle", | ||||
| "Insert\/edit link": "Ba\u011flant\u0131 ekle\/d\u00fczenle", | ||||
| "Text to display": "G\u00f6r\u00fcnen yaz\u0131", | ||||
| "Url": "Url", | ||||
| "Open link in...": "Ba\u011flant\u0131y\u0131 a\u00e7...", | ||||
| "Current window": "Mevcut pencere", | ||||
| "None": "Hi\u00e7biri", | ||||
| "New window": "Yeni pencere", | ||||
| "Remove link": "Ba\u011flant\u0131y\u0131 kald\u0131r", | ||||
| "Anchors": "\u00c7apalar", | ||||
| "Link...": "Ba\u011flant\u0131...", | ||||
| "Paste or type a link": "Bir ba\u011flant\u0131 yap\u0131\u015ft\u0131r\u0131n yada yaz\u0131n.", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Girdi\u011finiz URL bir eposta adresi gibi g\u00f6z\u00fck\u00fcyor. Gerekli olan mailto: \u00f6nekini eklemek ister misiniz?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Girdi\u011finiz URL bir d\u0131\u015f ba\u011flant\u0131 gibi g\u00f6z\u00fck\u00fcyor. Gerekli olan http:\/\/ \u00f6nekini eklemek ister misiniz?", | ||||
| "Link list": "Link listesi", | ||||
| "Insert video": "Video ekle", | ||||
| "Insert\/edit video": "Video ekle\/d\u00fczenle", | ||||
| "Insert\/edit media": "Medya ekle\/d\u00fczenle", | ||||
| "Alternative source": "Alternatif kaynak", | ||||
| "Alternative source URL": "Alternatif kaynak URL", | ||||
| "Media poster (Image URL)": "Medya posteri (Resim URL)", | ||||
| "Paste your embed code below:": "Medya g\u00f6mme kodunu buraya yap\u0131\u015ft\u0131r:", | ||||
| "Embed": "G\u00f6mme", | ||||
| "Media...": "Medya...", | ||||
| "Nonbreaking space": "B\u00f6l\u00fcnemez bo\u015fluk", | ||||
| "Page break": "Sayfa sonu", | ||||
| "Paste as text": "Metin olarak yap\u0131\u015ft\u0131r", | ||||
| "Preview": "\u00d6nizleme", | ||||
| "Print...": "Yazd\u0131r...", | ||||
| "Save": "Kaydet", | ||||
| "Find": "Bul", | ||||
| "Replace with": "Bununla de\u011fi\u015ftir", | ||||
| "Replace": "De\u011fi\u015ftir", | ||||
| "Replace all": "T\u00fcm\u00fcn\u00fc de\u011fi\u015ftir", | ||||
| "Previous": "Geri", | ||||
| "Next": "Sonraki", | ||||
| "Find and replace...": "Bul ve de\u011fi\u015ftir...", | ||||
| "Could not find the specified string.": "Herhangi bir sonu\u00e7 bulunamad\u0131.", | ||||
| "Match case": "B\u00fcy\u00fck \/ K\u00fc\u00e7\u00fck harfe duyarl\u0131", | ||||
| "Find whole words only": "Sadece t\u00fcm kelimeyi ara", | ||||
| "Spell check": "Yaz\u0131m denetimi", | ||||
| "Ignore": "Yoksay", | ||||
| "Ignore all": "T\u00fcm\u00fcn\u00fc yoksay", | ||||
| "Finish": "Bitir", | ||||
| "Add to Dictionary": "S\u00f6zl\u00fc\u011fe ekle", | ||||
| "Insert table": "Tablo ekle", | ||||
| "Table properties": "Tablo \u00f6zellikleri", | ||||
| "Delete table": "Tabloyu sil", | ||||
| "Cell": "H\u00fccre", | ||||
| "Row": "Sat\u0131r", | ||||
| "Column": "S\u00fctun", | ||||
| "Cell properties": "H\u00fccre \u00f6zellikleri", | ||||
| "Merge cells": "H\u00fccreleri birle\u015ftir", | ||||
| "Split cell": "H\u00fccreleri ay\u0131r", | ||||
| "Insert row before": "\u00d6ncesine yeni sat\u0131r ekle", | ||||
| "Insert row after": "Sonras\u0131na yeni sat\u0131r ekle", | ||||
| "Delete row": "Sat\u0131r\u0131 sil", | ||||
| "Row properties": "Sat\u0131r \u00f6zellikleri", | ||||
| "Cut row": "Sat\u0131r\u0131 kes", | ||||
| "Copy row": "Sat\u0131r\u0131 kopyala", | ||||
| "Paste row before": "\u00d6ncesine sat\u0131r yap\u0131\u015ft\u0131r", | ||||
| "Paste row after": "Sonras\u0131na sat\u0131r  yap\u0131\u015ft\u0131r", | ||||
| "Insert column before": "\u00d6ncesine yeni s\u00fctun ekle", | ||||
| "Insert column after": "Sonras\u0131na yeni s\u00fctun ekle", | ||||
| "Delete column": "S\u00fctunu sil", | ||||
| "Cols": "S\u00fctunlar", | ||||
| "Rows": "Sat\u0131rlar", | ||||
| "Width": "Geni\u015flik", | ||||
| "Height": "Y\u00fckseklik", | ||||
| "Cell spacing": "H\u00fccre aral\u0131\u011f\u0131", | ||||
| "Cell padding": "H\u00fccre i\u00e7 bo\u015flu\u011fu", | ||||
| "Show caption": "Ba\u015fl\u0131\u011f\u0131 g\u00f6ster", | ||||
| "Left": "Sol", | ||||
| "Center": "Orta", | ||||
| "Right": "Sa\u011f", | ||||
| "Cell type": "H\u00fccre tipi", | ||||
| "Scope": "Kapsam", | ||||
| "Alignment": "Hizalama", | ||||
| "H Align": "Yatay Hizalama", | ||||
| "V Align": "Dikey Hizalama", | ||||
| "Top": "\u00dcst", | ||||
| "Middle": "Orta", | ||||
| "Bottom": "Alt", | ||||
| "Header cell": "Ba\u015fl\u0131k h\u00fccresi", | ||||
| "Row group": "Sat\u0131r grubu", | ||||
| "Column group": "S\u00fctun grubu", | ||||
| "Row type": "Sat\u0131r tipi", | ||||
| "Header": "Ba\u015fl\u0131k", | ||||
| "Body": "G\u00f6vde", | ||||
| "Footer": "Alt", | ||||
| "Border color": "Kenarl\u0131k Rengi", | ||||
| "Insert template...": "\u015eablon ekle...", | ||||
| "Templates": "\u015eablonlar", | ||||
| "Template": "Tema", | ||||
| "Text color": "Yaz\u0131 rengi", | ||||
| "Background color": "Arkaplan rengi", | ||||
| "Custom...": "\u00d6zel", | ||||
| "Custom color": "\u00d6zel Renk", | ||||
| "No color": "Renk Yok", | ||||
| "Remove color": "Rengi kald\u0131r", | ||||
| "Table of Contents": "\u0130\u00e7indekiler", | ||||
| "Show blocks": "Bloklar\u0131 g\u00f6r\u00fcnt\u00fcle", | ||||
| "Show invisible characters": "G\u00f6r\u00fcnmez karakterleri g\u00f6ster", | ||||
| "Word count": "Kelime say\u0131s\u0131", | ||||
| "Words: {0}": "Kelime: {0}", | ||||
| "{0} words": "{0} kelime", | ||||
| "File": "Dosya", | ||||
| "Edit": "D\u00fczenle", | ||||
| "Insert": "Ekle", | ||||
| "View": "G\u00f6r\u00fcnt\u00fcle", | ||||
| "Format": "Bi\u00e7im", | ||||
| "Table": "Tablo", | ||||
| "Tools": "Ara\u00e7lar", | ||||
| "Powered by {0}": "{0} taraf\u0131ndan yap\u0131lm\u0131\u015ft\u0131r ", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zengin Metin Alan\u0131. Men\u00fc i\u00e7in ALT-F9 k\u0131sayolunu kullan\u0131n. Ara\u00e7 \u00e7ubu\u011fu i\u00e7in ALT-F10 k\u0131sayolunu kullan\u0131n. Yard\u0131m i\u00e7in ALT-0 k\u0131sayolunu kullan\u0131n.", | ||||
| "Image title": "Resim ba\u015fl\u0131\u011f\u0131", | ||||
| "Border width": "Kenar geni\u015fli\u011fi", | ||||
| "Border style": "Kenar sitili", | ||||
| "Error": "Hata", | ||||
| "Warn": "Uyar\u0131", | ||||
| "Valid": "Ge\u00e7erli", | ||||
| "To open the popup, press Shift+Enter": "Popup'\u0131 a\u00e7mak i\u00e7in Shift+Enter'a bas\u0131n", | ||||
| "Rich Text Area. Press ALT-0 for help.": "Zengin Metin Alan\u0131. Yard\u0131m i\u00e7in Alt-0'a bas\u0131n.", | ||||
| "System Font": "Sistem Yaz\u0131 Tipi", | ||||
| "Failed to upload image: {0}": "Resim y\u00fcklenemedi: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "Eklenti y\u00fcklenemedi: {1} url\u2019sinden {0} ", | ||||
| "Failed to load plugin url: {0}": "Url eklentisi y\u00fcklenemedi: {0}", | ||||
| "Failed to initialize plugin: {0}": "Eklenti ba\u015flat\u0131lamad\u0131: {0}", | ||||
| "example": "\u00f6rnek", | ||||
| "Search": "Ara", | ||||
| "All": "T\u00fcm\u00fc", | ||||
| "Currency": "Para birimi", | ||||
| "Text": "Metin", | ||||
| "Quotations": "Al\u0131nt\u0131", | ||||
| "Mathematical": "Matematik", | ||||
| "Extended Latin": "Uzat\u0131lm\u0131\u015f Latin", | ||||
| "Symbols": "Semboller", | ||||
| "Arrows": "Oklar", | ||||
| "User Defined": "Kullan\u0131c\u0131 Tan\u0131ml\u0131", | ||||
| "dollar sign": "dolar i\u015fareti", | ||||
| "currency sign": "para birimi i\u015fareti", | ||||
| "euro-currency sign": "euro para birimi i\u015fareti", | ||||
| "colon sign": "colon i\u015fareti", | ||||
| "cruzeiro sign": "cruzeiro i\u015fareti", | ||||
| "french franc sign": "frans\u0131z frang\u0131 i\u015fareti", | ||||
| "lira sign": "lira i\u015fareti", | ||||
| "mill sign": "mill i\u015fareti", | ||||
| "naira sign": "naira i\u015fareti", | ||||
| "peseta sign": "peseta i\u015fareti", | ||||
| "rupee sign": "rupi i\u015fareti", | ||||
| "won sign": "won i\u015fareti", | ||||
| "new sheqel sign": "yeni \u015fekel i\u015fareti", | ||||
| "dong sign": "dong i\u015fareti", | ||||
| "kip sign": "kip i\u015fareti", | ||||
| "tugrik sign": "tugrik i\u015fareti", | ||||
| "drachma sign": "drahma i\u015fareti", | ||||
| "german penny symbol": "alman kuru\u015f sembol\u00fc", | ||||
| "peso sign": "peso i\u015fareti", | ||||
| "guarani sign": "guarani i\u015fareti", | ||||
| "austral sign": "austral i\u015fareti", | ||||
| "hryvnia sign": "hrivniya i\u015fareti", | ||||
| "cedi sign": "cedi i\u015fareti", | ||||
| "livre tournois sign": "livre tournois i\u015fareti", | ||||
| "spesmilo sign": "spesmilo i\u015fareti", | ||||
| "tenge sign": "tenge i\u015fareti", | ||||
| "indian rupee sign": "hindistan rupisi i\u015fareti", | ||||
| "turkish lira sign": "t\u00fcrk liras\u0131 i\u015fareti", | ||||
| "nordic mark sign": "nordic i\u015fareti", | ||||
| "manat sign": "manat i\u015fareti", | ||||
| "ruble sign": "ruble i\u015fareti", | ||||
| "yen character": "yen karakteri", | ||||
| "yuan character": "yuan karakteri", | ||||
| "yuan character, in hong kong and taiwan": "yuan karakteri, hong kong ve tayvan'da kullan\u0131lan", | ||||
| "yen\/yuan character variant one": "yen\/yuan karakter de\u011fi\u015fkeni", | ||||
| "Loading emoticons...": "\u0130fadeler y\u00fckleniyor...", | ||||
| "Could not load emoticons": "\u0130fadeler y\u00fcklenemedi", | ||||
| "People": "\u0130nsan", | ||||
| "Animals and Nature": "Hayvanlar ve Do\u011fa", | ||||
| "Food and Drink": "Yiyecek ve \u0130\u00e7ecek", | ||||
| "Activity": "Etkinlik", | ||||
| "Travel and Places": "Gezi ve Yerler", | ||||
| "Objects": "Nesneler", | ||||
| "Flags": "Bayraklar", | ||||
| "Characters": "Karakter", | ||||
| "Characters (no spaces)": "Karakter (bo\u015fluksuz)", | ||||
| "Error: Form submit field collision.": "Hata: Form g\u00f6nderme alan\u0131 \u00e7at\u0131\u015fmas\u0131.", | ||||
| "Error: No form element found.": "Hata: Form eleman\u0131 bulunamad\u0131.", | ||||
| "Update": "G\u00fcncelle\u015ftir", | ||||
| "Color swatch": "Renk \u00f6rne\u011fi", | ||||
| "Turquoise": "Turkuaz", | ||||
| "Green": "Ye\u015fil", | ||||
| "Blue": "Mavi", | ||||
| "Purple": "Mor", | ||||
| "Navy Blue": "Lacivert", | ||||
| "Dark Turquoise": "Koyu Turkuaz", | ||||
| "Dark Green": "Koyu Ye\u015fil", | ||||
| "Medium Blue": "Donuk Mavi", | ||||
| "Medium Purple": "Orta Mor", | ||||
| "Midnight Blue": "Gece Yar\u0131s\u0131 Mavisi", | ||||
| "Yellow": "Sar\u0131", | ||||
| "Orange": "Turuncu", | ||||
| "Red": "K\u0131rm\u0131z\u0131", | ||||
| "Light Gray": "A\u00e7\u0131k Gri", | ||||
| "Gray": "Gri", | ||||
| "Dark Yellow": "Koyu Sar\u0131", | ||||
| "Dark Orange": "Koyu Turuncu", | ||||
| "Dark Red": "Koyu K\u0131rm\u0131z\u0131", | ||||
| "Medium Gray": "Orta Gri", | ||||
| "Dark Gray": "Koyu Gri", | ||||
| "Black": "Siyah", | ||||
| "White": "Beyaz", | ||||
| "Switch to or from fullscreen mode": "Tam ekran moduna ge\u00e7 veya \u00e7\u0131k", | ||||
| "Open help dialog": "Yard\u0131m penceresini a\u00e7", | ||||
| "history": "ge\u00e7mi\u015f", | ||||
| "styles": "stiller", | ||||
| "formatting": "bi\u00e7imlendirme", | ||||
| "alignment": "hizalanma", | ||||
| "indentation": "girinti", | ||||
| "permanent pen": "kal\u0131c\u0131 kalem", | ||||
| "comments": "yorumlar", | ||||
| "Anchor": "\u00c7apa", | ||||
| "Special character": "\u00d6zel karakter", | ||||
| "Code sample": "Kod \u00f6rne\u011fi", | ||||
| "Color": "Renk", | ||||
| "Emoticons": "G\u00fcl\u00fcc\u00fckler", | ||||
| "Document properties": "Dok\u00fcman \u00f6zellikleri", | ||||
| "Image": "Resim", | ||||
| "Insert link": "Ba\u011flant\u0131 ekle", | ||||
| "Target": "Hedef", | ||||
| "Link": "Ba\u011flant\u0131", | ||||
| "Poster": "Poster", | ||||
| "Media": "Medya", | ||||
| "Print": "Yazd\u0131r", | ||||
| "Prev": "\u00d6nceki", | ||||
| "Find and replace": "Bul ve de\u011fi\u015ftir", | ||||
| "Whole words": "Tam s\u00f6zc\u00fckler", | ||||
| "Spellcheck": "Yaz\u0131m denetimi", | ||||
| "Caption": "Ba\u015fl\u0131k", | ||||
| "Insert template": "\u015eablon ekle" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/uk.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/uk.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('uk',{ | ||||
| "Redo": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0438", | ||||
| "Undo": "\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438", | ||||
| "Cut": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438", | ||||
| "Copy": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438", | ||||
| "Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438", | ||||
| "Select all": "\u0412\u0438\u0434\u0456\u043b\u0438\u0442\u0438 \u0432\u0441\u0435", | ||||
| "New document": "\u0421\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442", | ||||
| "Ok": "\u0413\u0430\u0440\u0430\u0437\u0434", | ||||
| "Cancel": "\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438", | ||||
| "Visual aids": "\u041d\u0430\u043e\u0447\u043d\u0456 \u043f\u0440\u0438\u043b\u0430\u0434\u0434\u044f", | ||||
| "Bold": "\u0416\u0438\u0440\u043d\u0438\u0439", | ||||
| "Italic": "\u041a\u0443\u0440\u0441\u0438\u0432", | ||||
| "Underline": "\u041f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u043d\u044f", | ||||
| "Strikethrough": "\u041f\u0435\u0440\u0435\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u043d\u044f", | ||||
| "Superscript": "\u041d\u0430\u0434\u0440\u044f\u0434\u043a\u043e\u0432\u0438\u0439 \u0441\u0438\u043c\u0432\u043e\u043b", | ||||
| "Subscript": "\u041f\u0456\u0434\u0440\u044f\u0434\u043a\u043e\u0432\u0438\u0439 \u0441\u0438\u043c\u0432\u043e\u043b", | ||||
| "Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f", | ||||
| "Align left": "\u041f\u043e \u043b\u0456\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", | ||||
| "Align center": "\u0412\u0438\u0440\u0456\u0432\u043d\u044f\u0442\u0438 \u043f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", | ||||
| "Align right": "\u0412\u0438\u0440\u0456\u0432\u043d\u044f\u0442\u0438 \u0437\u0430 \u043f\u0440\u0430\u0432\u0438\u043c \u043a\u0440\u0430\u0454\u043c", | ||||
| "Justify": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f", | ||||
| "Bullet list": "\u041d\u0435\u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", | ||||
| "Numbered list": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a", | ||||
| "Decrease indent": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f", | ||||
| "Increase indent": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f", | ||||
| "Close": "\u0417\u0430\u043a\u0440\u0438\u0442\u0438", | ||||
| "Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454 \u043f\u0440\u044f\u043c\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0431\u0443\u0444\u0435\u0440\u0430 \u043e\u0431\u043c\u0456\u043d\u0443. \u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u043d\u0430\u0442\u043e\u043c\u0456\u0441\u0442\u044c \u0441\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044f \u043a\u043b\u0430\u0432\u0456\u0448 Ctrl\u00a0+\u00a0C\/V\/X.", | ||||
| "Headers": "\u041a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b\u0438", | ||||
| "Header 1": "\u041a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 1", | ||||
| "Header 2": "\u041a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 2", | ||||
| "Header 3": "\u041a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 3", | ||||
| "Header 4": "\u041a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 4", | ||||
| "Header 5": "\u041a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 5", | ||||
| "Header 6": "\u041a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b 6", | ||||
| "Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438", | ||||
| "Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1", | ||||
| "Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2", | ||||
| "Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3", | ||||
| "Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4", | ||||
| "Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5", | ||||
| "Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6", | ||||
| "Preformatted": "\u0424\u043e\u0440\u043c\u0430\u0442\u043e\u0432\u0430\u043d\u0438\u0439", | ||||
| "Div": "\u0420\u043e\u0437\u0434\u0456\u043b", | ||||
| "Pre": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0454 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f", | ||||
| "Code": "\u041a\u043e\u0434", | ||||
| "Paragraph": "\u0410\u0431\u0437\u0430\u0446", | ||||
| "Blockquote": "\u0411\u043b\u043e\u043a \u0446\u0438\u0442\u0443\u0432\u0430\u043d\u043d\u044f", | ||||
| "Inline": "\u0420\u044f\u0434\u043a\u043e\u0432\u0438\u0439", | ||||
| "Blocks": "\u0411\u043b\u043e\u043a\u0438", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u0437\u0434\u0456\u0439\u0441\u043d\u044e\u0454\u0442\u044c\u0441\u044f \u0443 \u0432\u0438\u0433\u043b\u044f\u0434\u0456 \u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0443, \u043f\u043e\u043a\u0438 \u043d\u0435 \u0432\u0456\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u0438 \u0434\u0430\u043d\u0443 \u043e\u043f\u0446\u0456\u044e.", | ||||
| "Fonts": "\u0428\u0440\u0438\u0444\u0442\u0438", | ||||
| "Font Sizes": "\u0420\u043e\u0437\u043c\u0456\u0440\u0438 \u0448\u0440\u0438\u0444\u0442\u0443", | ||||
| "Class": "\u041a\u043b\u0430\u0441", | ||||
| "Browse for an image": "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", | ||||
| "OR": "\u0410\u0411\u041e", | ||||
| "Drop an image here": "\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0456\u0442\u044c \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0441\u044e\u0434\u0438", | ||||
| "Upload": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438", | ||||
| "Block": "\u0411\u043b\u043e\u043a", | ||||
| "Align": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f", | ||||
| "Default": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0438\u0439", | ||||
| "Circle": "\u041e\u043a\u0440\u0443\u0436\u043d\u043e\u0441\u0442\u0456", | ||||
| "Disc": "\u041a\u0440\u0443\u0433\u0438", | ||||
| "Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442\u0438", | ||||
| "Lower Alpha": "\u041c\u0430\u043b\u0456 \u043b\u0430\u0442\u0438\u043d\u0441\u044c\u043a\u0456 \u0431\u0443\u043a\u0432\u0438", | ||||
| "Lower Greek": "\u041c\u0430\u043b\u0456 \u0433\u0440\u0435\u0446\u044c\u043a\u0456 \u0431\u0443\u043a\u0432\u0438", | ||||
| "Lower Roman": "\u041c\u0430\u043b\u0456 \u0440\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438", | ||||
| "Upper Alpha": "\u0412\u0435\u043b\u0438\u043a\u0456 \u043b\u0430\u0442\u0438\u043d\u0441\u044c\u043a\u0456 \u0431\u0443\u043a\u0432\u0438", | ||||
| "Upper Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438", | ||||
| "Anchor...": "\u042f\u043a\u0456\u0440\u2026", | ||||
| "Name": "\u041d\u0430\u0437\u0432\u0430", | ||||
| "Id": "\u041a\u043e\u0434", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u041a\u043e\u0434 \u043c\u0430\u0454 \u043f\u043e\u0447\u0438\u043d\u0430\u0442\u0438\u0441\u044f \u0437 \u043b\u0456\u0442\u0435\u0440\u0438 \u0456 \u043c\u043e\u0436\u0435 \u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u043b\u0438\u0448\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u0438 \u043b\u0456\u0442\u0435\u0440, \u0446\u0438\u0444\u0440, \u0434\u0435\u0444\u0456\u0441\u0443, \u043a\u0440\u0430\u043f\u043a\u0438, \u043a\u043e\u043c\u0438 \u0430\u0431\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u0433\u043e \u043f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u043d\u044f.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0412\u0430\u0441 \u0454 \u043d\u0435\u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0456 \u0437\u043c\u0456\u043d\u0438. \u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u043f\u0456\u0442\u0438?", | ||||
| "Restore last draft": "\u0412\u0456\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u043e\u0441\u0442\u0430\u043d\u043d\u044c\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0443", | ||||
| "Special character...": "\u0421\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0438\u0439 \u0441\u0438\u043c\u0432\u043e\u043b\u2026", | ||||
| "Source code": "\u0412\u0438\u0445\u0456\u0434\u043d\u0438\u0439 \u043a\u043e\u0434", | ||||
| "Insert\/Edit code sample": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u043f\u0440\u0438\u043a\u043b\u0430\u0434 \u043a\u043e\u0434\u0443", | ||||
| "Language": "\u041c\u043e\u0432\u0430", | ||||
| "Code sample...": "\u041f\u0440\u0438\u043a\u043b\u0430\u0434 \u043a\u043e\u0434\u0443\u2026", | ||||
| "Color Picker": "\u041f\u0456\u043f\u0435\u0442\u043a\u0430 \u043a\u043e\u043b\u044c\u043e\u0440\u0443", | ||||
| "R": "\u0427", | ||||
| "G": "\u0417", | ||||
| "B": "\u0411", | ||||
| "Left to right": "\u0417\u043b\u0456\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e", | ||||
| "Right to left": "\u0421\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0456\u0432\u043e", | ||||
| "Emoticons...": "\u0421\u043c\u0430\u0439\u043b\u0438\u043a\u0438\u2026", | ||||
| "Metadata and Document Properties": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u0456 \u0456 \u0432\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", | ||||
| "Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", | ||||
| "Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0456 \u0441\u043b\u043e\u0432\u0430", | ||||
| "Description": "\u041e\u043f\u0438\u0441", | ||||
| "Robots": "\u0420\u043e\u0431\u043e\u0442\u0438", | ||||
| "Author": "\u0410\u0432\u0442\u043e\u0440", | ||||
| "Encoding": "\u041a\u043e\u0434\u0443\u0432\u0430\u043d\u043d\u044f", | ||||
| "Fullscreen": "\u041f\u043e\u0432\u043d\u043e\u0435\u043a\u0440\u0430\u043d\u043d\u0438\u0439 \u0440\u0435\u0436\u0438\u043c", | ||||
| "Action": "\u0414\u0456\u044f", | ||||
| "Shortcut": "\u042f\u0440\u043b\u0438\u043a", | ||||
| "Help": "\u0414\u043e\u043f\u043e\u043c\u043e\u0433\u0430", | ||||
| "Address": "\u0410\u0434\u0440\u0435\u0441\u0430", | ||||
| "Focus to menubar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043c\u0435\u043d\u044e", | ||||
| "Focus to toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u0445", | ||||
| "Focus to element path": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u0448\u043b\u044f\u0445\u0443", | ||||
| "Focus to contextual toolbar": "\u0424\u043e\u043a\u0443\u0441 \u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0456", | ||||
| "Insert link (if link plugin activated)": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f (\u044f\u043a\u0449\u043e \u043f\u043b\u0430\u0433\u0456\u043d \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u044c \u0430\u043a\u0442\u0438\u0432\u043e\u0432\u0430\u043d\u0438\u0439)", | ||||
| "Save (if save plugin activated)": "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 (\u044f\u043a\u0449\u043e \u043f\u043b\u0430\u0433\u0456\u043d \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u0430\u043a\u0442\u0438\u0432\u043e\u0432\u0430\u043d\u043e)", | ||||
| "Find (if searchreplace plugin activated)": "\u0417\u043d\u0430\u0439\u0442\u0438 (\u044f\u043a\u0449\u043e \u043f\u043b\u0430\u0433\u0456\u043d \u043f\u043e\u0448\u0443\u043a\u0443 \u0430\u043a\u0442\u0438\u0432\u043e\u0432\u0430\u043d\u043e)", | ||||
| "Plugins installed ({0}):": "\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0456 \u043f\u043b\u0430\u0433\u0456\u043d\u0438 ({0}):", | ||||
| "Premium plugins:": "\u041f\u0440\u0435\u043c\u0456\u0443\u043c \u043f\u043b\u0430\u0433\u0456\u043d\u0438:", | ||||
| "Learn more...": "\u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u043e...", | ||||
| "You are using {0}": "\u0423 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u0456 {0}", | ||||
| "Plugins": "\u041f\u043b\u0430\u0433\u0456\u043d\u0438", | ||||
| "Handy Shortcuts": "\u041a\u043b\u0430\u0432\u0456\u0430\u0442\u0443\u0440\u043d\u0456 \u0441\u043a\u043e\u0440\u043e\u0447\u0435\u043d\u043d\u044f", | ||||
| "Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043b\u0456\u043d\u0456\u044f", | ||||
| "Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", | ||||
| "Image description": "\u041e\u043f\u0438\u0441 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", | ||||
| "Source": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e", | ||||
| "Dimensions": "\u0420\u043e\u0437\u043c\u0456\u0440", | ||||
| "Constrain proportions": "\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0456\u0457", | ||||
| "General": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0456", | ||||
| "Advanced": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u0456", | ||||
| "Style": "\u0421\u0442\u0438\u043b\u044c", | ||||
| "Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0442\u0435\u0440\u0432\u0430\u043b", | ||||
| "Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0442\u0435\u0440\u0432\u0430\u043b", | ||||
| "Border": "\u041c\u0435\u0436\u0430", | ||||
| "Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", | ||||
| "Image...": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f\u2026", | ||||
| "Image list": "\u041f\u0435\u0440\u0435\u043b\u0456\u043a \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u044c", | ||||
| "Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u043f\u0440\u043e\u0442\u0438 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u0457 \u0441\u0442\u0440\u0456\u043b\u043a\u0438", | ||||
| "Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u0437\u0430 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u044e \u0441\u0442\u0440\u0456\u043b\u043a\u043e\u044e", | ||||
| "Flip vertically": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0456", | ||||
| "Flip horizontally": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0456", | ||||
| "Edit image": "\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", | ||||
| "Image options": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", | ||||
| "Zoom in": "\u041d\u0430\u0431\u043b\u0438\u0437\u0438\u0442\u0438", | ||||
| "Zoom out": "\u0412\u0456\u0434\u0434\u0430\u043b\u0438\u0442\u0438", | ||||
| "Crop": "\u041e\u0431\u0440\u0456\u0437\u0430\u0442\u0438", | ||||
| "Resize": "\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0440\u043e\u0437\u043c\u0456\u0440", | ||||
| "Orientation": "\u041e\u0440\u0456\u0454\u043d\u0442\u0430\u0446\u0456\u044f", | ||||
| "Brightness": "\u042f\u0441\u043a\u0440\u0430\u0432\u0456\u0441\u0442\u044c", | ||||
| "Sharpen": "\u0427\u0456\u0442\u043a\u0456\u0441\u0442\u044c", | ||||
| "Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442", | ||||
| "Color levels": "\u0420\u0456\u0432\u043d\u0456 \u043a\u043e\u043b\u044c\u043e\u0440\u0456\u0432", | ||||
| "Gamma": "\u0413\u0430\u043c\u043c\u0430", | ||||
| "Invert": "\u0406\u043d\u0432\u0435\u0440\u0441\u0456\u044f", | ||||
| "Apply": "\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438", | ||||
| "Back": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438\u0441\u044f", | ||||
| "Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0434\u0430\u0442\u0443\/\u0447\u0430\u0441", | ||||
| "Date\/time": "\u0414\u0430\u0442\u0430\/\u0447\u0430\u0441", | ||||
| "Insert\/Edit Link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", | ||||
| "Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", | ||||
| "Text to display": "\u0422\u0435\u043a\u0441\u0442 \u0434\u043b\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", | ||||
| "Url": "\u0410\u0434\u0440\u0435\u0441\u0430 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", | ||||
| "Open link in...": "\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u0432\u2026", | ||||
| "Current window": "\u0423 \u043f\u043e\u0442\u043e\u0447\u043d\u043e\u043c\u0443 \u0432\u0456\u043a\u043d\u0456", | ||||
| "None": "\u041d\u0456", | ||||
| "New window": "\u0423 \u043d\u043e\u0432\u043e\u043c\u0443 \u0432\u0456\u043a\u043d\u0456", | ||||
| "Remove link": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", | ||||
| "Anchors": "\u042f\u043a\u043e\u0440\u0456", | ||||
| "Link...": "\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f\u2026", | ||||
| "Paste or type a link": "\u041d\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u0430\u0431\u043e \u0432\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0430\u0434\u0440\u0435\u0441\u0443 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0457 \u043f\u043e\u0448\u0442\u0438. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 mailto: \u043f\u0440\u0435\u0444\u0456\u043a\u0441?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u0454 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 http:\/\/ \u043f\u0440\u0435\u0444\u0456\u043a\u0441?", | ||||
| "Link list": "\u041f\u0435\u0440\u0435\u043b\u0456\u043a \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u044c", | ||||
| "Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0456\u0434\u0435\u043e", | ||||
| "Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0434\u0435\u043e", | ||||
| "Insert\/edit media": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0430\u0443\u0434\u0456\u043e", | ||||
| "Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e", | ||||
| "Alternative source URL": "\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0430\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e", | ||||
| "Media poster (Image URL)": "\u0421\u0432\u0456\u0442\u043b\u0438\u043d\u0430 \u043c\u0435\u0434\u0456\u0430 (\u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f)", | ||||
| "Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0447\u0435:", | ||||
| "Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438", | ||||
| "Media...": "\u041c\u0435\u0434\u0456\u0430\u2026", | ||||
| "Nonbreaking space": "\u041d\u0435\u0440\u043e\u0437\u0440\u0438\u0432\u043d\u0438\u0439 \u043f\u0440\u043e\u0431\u0456\u043b", | ||||
| "Page break": "\u0420\u043e\u0437\u0440\u0438\u0432 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438", | ||||
| "Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u044f\u043a \u0442\u0435\u043a\u0441\u0442", | ||||
| "Preview": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434", | ||||
| "Print...": "\u0414\u0440\u0443\u043a\u0443\u0432\u0430\u0442\u0438\u2026", | ||||
| "Save": "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438", | ||||
| "Find": "\u0417\u043d\u0430\u0439\u0442\u0438", | ||||
| "Replace with": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u043d\u0430", | ||||
| "Replace": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438", | ||||
| "Replace all": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0432\u0441\u0435", | ||||
| "Previous": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439", | ||||
| "Next": "\u0412\u043d\u0438\u0437", | ||||
| "Find and replace...": "\u041f\u043e\u0448\u0443\u043a \u0456 \u0437\u0430\u043c\u0456\u043d\u0430\u2026", | ||||
| "Could not find the specified string.": "\u0412\u043a\u0430\u0437\u0430\u043d\u0438\u0439 \u0440\u044f\u0434\u043e\u043a \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e", | ||||
| "Match case": "\u0412\u0440\u0430\u0445\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u0440\u0435\u0433\u0456\u0441\u0442\u0440", | ||||
| "Find whole words only": "\u0428\u0443\u043a\u0430\u0442\u0438 \u0442\u0456\u043b\u044c\u043a\u0438 \u0446\u0456\u043b\u0456 \u0441\u043b\u043e\u0432\u0430", | ||||
| "Spell check": "\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0443", | ||||
| "Ignore": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438", | ||||
| "Ignore all": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438 \u0432\u0441\u0435", | ||||
| "Finish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0438", | ||||
| "Add to Dictionary": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0434\u043e \u0421\u043b\u043e\u0432\u043d\u0438\u043a\u0430", | ||||
| "Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e", | ||||
| "Table properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0442\u0430\u0431\u043b\u0438\u0446\u0456", | ||||
| "Delete table": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e", | ||||
| "Cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430", | ||||
| "Row": "\u0420\u044f\u0434\u043e\u043a", | ||||
| "Column": "\u0421\u0442\u043e\u0432\u043f\u0435\u0446\u044c", | ||||
| "Cell properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438", | ||||
| "Merge cells": "\u041e\u0431'\u0454\u0434\u043d\u0430\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438", | ||||
| "Split cell": "\u0420\u043e\u0437\u0431\u0438\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0443", | ||||
| "Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439 \u0440\u044f\u0434\u043e\u043a \u0437\u0432\u0435\u0440\u0445\u0443", | ||||
| "Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439 \u0440\u044f\u0434\u043e\u043a \u0437\u043d\u0438\u0437\u0443", | ||||
| "Delete row": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a", | ||||
| "Row properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0440\u044f\u0434\u043a\u0430", | ||||
| "Cut row": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a", | ||||
| "Copy row": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a", | ||||
| "Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u0437\u0432\u0435\u0440\u0445\u0443", | ||||
| "Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u0437\u043d\u0438\u0437\u0443", | ||||
| "Insert column before": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043b\u0456\u0432\u043e\u0440\u0443\u0447", | ||||
| "Insert column after": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0440\u0430\u0432\u043e\u0440\u0443\u0447", | ||||
| "Delete column": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c", | ||||
| "Cols": "\u0421\u0442\u043e\u0432\u043f\u0446\u0456", | ||||
| "Rows": "\u0420\u044f\u0434\u043a\u0438", | ||||
| "Width": "\u0428\u0438\u0440\u0438\u043d\u0430", | ||||
| "Height": "\u0412\u0438\u0441\u043e\u0442\u0430", | ||||
| "Cell spacing": "\u0412\u0456\u0434\u0441\u0442\u0430\u043d\u044c \u043c\u0456\u0436 \u043a\u043e\u043c\u0456\u0440\u043a\u0430\u043c\u0438", | ||||
| "Cell padding": "\u041f\u043e\u043b\u044f \u043a\u043e\u043c\u0456\u0440\u043e\u043a", | ||||
| "Show caption": "\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", | ||||
| "Left": "\u041f\u043e \u043b\u0456\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", | ||||
| "Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", | ||||
| "Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", | ||||
| "Cell type": "\u0422\u0438\u043f \u043a\u043e\u043c\u0456\u0440\u043a\u0438", | ||||
| "Scope": "\u0421\u0444\u0435\u0440\u0430", | ||||
| "Alignment": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f", | ||||
| "H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0435  \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f", | ||||
| "V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f", | ||||
| "Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", | ||||
| "Middle": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443", | ||||
| "Bottom": "\u041f\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e", | ||||
| "Header cell": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", | ||||
| "Row group": "\u0413\u0440\u0443\u043f\u0430 \u0440\u044f\u0434\u043a\u0456\u0432", | ||||
| "Column group": "\u0413\u0440\u0443\u043f\u0430 \u0441\u0442\u043e\u0432\u043f\u0446\u0456\u0432", | ||||
| "Row type": "\u0422\u0438\u043f \u0440\u044f\u0434\u043a\u0430", | ||||
| "Header": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b", | ||||
| "Body": "\u0422\u0456\u043b\u043e", | ||||
| "Footer": "\u041d\u0438\u0436\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b", | ||||
| "Border color": "\u043a\u043e\u043b\u0456\u0440 \u0440\u0430\u043c\u043a\u0438", | ||||
| "Insert template...": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d\u2026", | ||||
| "Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438", | ||||
| "Template": "\u0428\u0430\u0431\u043b\u043e\u043d", | ||||
| "Text color": "\u041a\u043e\u043b\u0456\u0440 \u0442\u0435\u043a\u0441\u0442\u0443", | ||||
| "Background color": "\u041a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443", | ||||
| "Custom...": "\u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439", | ||||
| "Custom color": "\u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439 \u043a\u043e\u043b\u0456\u0440", | ||||
| "No color": "\u0431\u0435\u0437 \u043a\u043e\u043b\u044c\u043e\u0440\u0443", | ||||
| "Remove color": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043a\u043e\u043b\u0456\u0440", | ||||
| "Table of Contents": "\u0417\u043c\u0456\u0441\u0442", | ||||
| "Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u0431\u043b\u043e\u043a\u0438", | ||||
| "Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438", | ||||
| "Word count": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0441\u043b\u0456\u0432", | ||||
| "Count": "\u041b\u0456\u0447\u0438\u043b\u044c\u043d\u0438\u043a", | ||||
| "Document": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442", | ||||
| "Selection": "\u0412\u0438\u0434\u0456\u043b\u0435\u043d\u043d\u044f", | ||||
| "Words": "\u0421\u043b\u043e\u0432\u0430", | ||||
| "Words: {0}": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0441\u043b\u0456\u0432: {0}", | ||||
| "{0} words": "{0} \u0441\u043b\u0456\u0432", | ||||
| "File": "\u0424\u0430\u0439\u043b", | ||||
| "Edit": "\u0417\u043c\u0456\u043d\u0438\u0442\u0438", | ||||
| "Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438", | ||||
| "View": "\u0412\u0438\u0433\u043b\u044f\u0434", | ||||
| "Format": "\u0424\u043e\u0440\u043c\u0430\u0442", | ||||
| "Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u044f", | ||||
| "Tools": "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438", | ||||
| "Powered by {0}": "\u041f\u0440\u0430\u0446\u044e\u0454 \u043d\u0430 {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F9 \u0449\u043e\u0431 \u0432\u0438\u043a\u043b\u0438\u043a\u0430\u0442\u0438 \u043c\u0435\u043d\u044e, ALT-F10 \u043f\u0430\u043d\u0435\u043b\u044c \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432, ALT-0 \u0434\u043b\u044f \u0432\u0438\u043a\u043b\u0438\u043a\u0443 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u0438.", | ||||
| "Image title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", | ||||
| "Border width": "\u0428\u0438\u0440\u0438\u043d\u0430 \u043c\u0435\u0436\u0456", | ||||
| "Border style": "\u0421\u0442\u0438\u043b\u044c \u043c\u0435\u0436\u0456", | ||||
| "Error": "\u041f\u043e\u043c\u0438\u043b\u043a\u0430", | ||||
| "Warn": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u0436\u0435\u043d\u043d\u044f", | ||||
| "Valid": "\u0412\u0456\u0440\u043d\u0438\u0439", | ||||
| "To open the popup, press Shift+Enter": "\u0429\u043e\u0431 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u0441\u043f\u043b\u0438\u0432\u043d\u0435 \u0432\u0456\u043a\u043d\u043e, \u043d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c Shift\u00a0+\u00a0Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u043e\u0432\u0430\u043d\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0443. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT\u00a0+\u00a00, \u0449\u043e\u0431 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u0434\u043e\u0432\u0456\u0434\u043a\u0443.", | ||||
| "System Font": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u0438\u0439 \u0448\u0440\u0438\u0444\u0442", | ||||
| "Failed to upload image: {0}": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0432\u0456\u0434\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u043f\u043b\u0430\u0491\u0456\u043d: {0} \u0437\u0430 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f\u043c {1}", | ||||
| "Failed to load plugin url: {0}": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u043f\u043b\u0430\u0491\u0456\u043d: {0}", | ||||
| "Failed to initialize plugin: {0}": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0456\u043d\u0456\u0446\u0456\u0430\u043b\u0456\u0437\u0443\u0432\u0430\u0442\u0438 \u043f\u043b\u0430\u0491\u0456\u043d: {0}", | ||||
| "example": "\u043f\u0440\u0438\u043a\u043b\u0430\u0434", | ||||
| "Search": "\u041f\u043e\u0448\u0443\u043a", | ||||
| "All": "\u0412\u0441\u0435", | ||||
| "Currency": "\u0412\u0430\u043b\u044e\u0442\u0430", | ||||
| "Text": "\u0422\u0435\u043a\u0441\u0442", | ||||
| "Quotations": "\u0426\u0438\u0442\u0443\u0432\u0430\u043d\u043d\u044f", | ||||
| "Mathematical": "\u041c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u043d\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438", | ||||
| "Extended Latin": "\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u0430 \u043b\u0430\u0442\u0438\u043d\u0438\u0446\u044f", | ||||
| "Symbols": "\u0421\u0438\u043c\u0432\u043e\u043b\u0438", | ||||
| "Arrows": "\u0421\u0442\u0440\u0456\u043b\u043a\u0438", | ||||
| "User Defined": "\u0412\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u0456 \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0435\u043c", | ||||
| "dollar sign": "\u0437\u043d\u0430\u043a \u0434\u043e\u043b\u0430\u0440\u0430", | ||||
| "currency sign": "\u0437\u043d\u0430\u043a \u0432\u0430\u043b\u044e\u0442\u0438", | ||||
| "euro-currency sign": "\u0437\u043d\u0430\u043a \u0454\u0432\u0440\u043e", | ||||
| "colon sign": "\u0437\u043d\u0430\u043a \u0434\u0432\u043e\u043a\u0440\u0430\u043f\u043a\u0438", | ||||
| "cruzeiro sign": "\u0437\u043d\u0430\u043a \u043a\u0440\u0443\u0437\u0435\u0439\u0440\u043e", | ||||
| "french franc sign": "\u0437\u043d\u0430\u043a \u0444\u0440\u0430\u043d\u0446\u0443\u0437\u044c\u043a\u043e\u0433\u043e \u0444\u0440\u0430\u043d\u043a\u0443", | ||||
| "lira sign": "\u0437\u043d\u0430\u043a \u043b\u0456\u0440\u0438", | ||||
| "mill sign": "\u0437\u043d\u0430\u043a \u043c\u0456\u043b\u044e", | ||||
| "naira sign": "\u0437\u043d\u0430\u043a \u043d\u0430\u0439\u0440\u0438", | ||||
| "peseta sign": "\u0437\u043d\u0430\u043a \u043f\u0435\u0441\u0435\u0442\u0438", | ||||
| "rupee sign": "\u0437\u043d\u0430\u043a \u0440\u0443\u043f\u0456\u0457", | ||||
| "won sign": "\u0437\u043d\u0430\u043a \u0432\u043e\u043d\u0438", | ||||
| "new sheqel sign": "\u0437\u043d\u0430\u043a \u043d\u043e\u0432\u043e\u0433\u043e \u0448\u0435\u043a\u0435\u043b\u044f", | ||||
| "dong sign": "\u0437\u043d\u0430\u043a \u0434\u043e\u043d\u0433\u0443", | ||||
| "kip sign": "\u0437\u043d\u0430\u043a \u043a\u0456\u043f\u0443", | ||||
| "tugrik sign": "\u0437\u043d\u0430\u043a \u0442\u0443\u0433\u0440\u0438\u043a\u0430", | ||||
| "drachma sign": "\u0437\u043d\u0430\u043a \u0434\u0440\u0430\u0445\u043c\u0438", | ||||
| "german penny symbol": "\u0437\u043d\u0430\u043a \u043f\u0444\u0435\u043d\u0456\u0433\u0430", | ||||
| "peso sign": "\u0437\u043d\u0430\u043a \u043f\u0435\u0441\u043e", | ||||
| "guarani sign": "\u0437\u043d\u0430\u043a \u0433\u0443\u0430\u0440\u0430\u043d\u0456", | ||||
| "austral sign": "\u0437\u043d\u0430\u043a \u0430\u0443\u0441\u0442\u0440\u0430\u043b\u044e", | ||||
| "hryvnia sign": "\u0437\u043d\u0430\u043a \u0433\u0440\u0438\u0432\u043d\u0456", | ||||
| "cedi sign": "\u0437\u043d\u0430\u043a \u0441\u0435\u0434\u0456", | ||||
| "livre tournois sign": "\u0437\u043d\u0430\u043a \u0442\u0443\u0440\u0441\u044c\u043a\u043e\u0433\u043e \u043b\u0456\u0432\u0440\u0443", | ||||
| "spesmilo sign": "\u0437\u043d\u0430\u043a \u0441\u043f\u0435\u0441\u043c\u0456\u043b\u043e", | ||||
| "tenge sign": "\u0437\u043d\u0430\u043a \u0442\u0435\u043d\u0433\u0435", | ||||
| "indian rupee sign": "\u0437\u043d\u0430\u043a \u0456\u043d\u0434\u0456\u0439\u0441\u044c\u043a\u043e\u0457 \u0440\u0443\u043f\u0456\u0457", | ||||
| "turkish lira sign": "\u0437\u043d\u0430\u043a \u0442\u0443\u0440\u0435\u0446\u044c\u043a\u043e\u0457 \u043b\u0456\u0440\u0438", | ||||
| "nordic mark sign": "\u0437\u043d\u0430\u043a \u043f\u0456\u0432\u043d\u0456\u0447\u043d\u043e\u0457 \u043c\u0430\u0440\u043a\u0438", | ||||
| "manat sign": "\u0437\u043d\u0430\u043a \u043c\u0430\u043d\u0430\u0442\u0443", | ||||
| "ruble sign": "\u0437\u043d\u0430\u043a \u0440\u0443\u0431\u043b\u044f", | ||||
| "yen character": "\u0441\u0438\u043c\u0432\u043e\u043b \u0454\u043d\u0438", | ||||
| "yuan character": "\u0441\u0438\u043c\u0432\u043e\u043b \u044e\u0430\u043d\u044e", | ||||
| "yuan character, in hong kong and taiwan": "\u0441\u0438\u043c\u0432\u043e\u043b \u044e\u0430\u043d\u044e \u0432 \u0413\u043e\u043d\u043a\u043e\u043d\u0437\u0456 \u0456 \u0422\u0430\u0439\u0432\u0430\u043d\u0456", | ||||
| "yen\/yuan character variant one": "\u0441\u0438\u043c\u0432\u043e\u043b \u0454\u043d\u0438\/\u044e\u0430\u043d\u044e, \u043f\u0435\u0440\u0448\u0438\u0439 \u0432\u0430\u0440\u0456\u0430\u043d\u0442", | ||||
| "Loading emoticons...": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0441\u043c\u0430\u0439\u043b\u0438\u043a\u0456\u0432\u2026", | ||||
| "Could not load emoticons": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u0441\u043c\u0430\u0439\u043b\u0438\u043a\u0438", | ||||
| "People": "\u041b\u044e\u0434\u0438", | ||||
| "Animals and Nature": "\u0422\u0432\u0430\u0440\u0438\u043d\u0438 \u0442\u0430 \u043f\u0440\u0438\u0440\u043e\u0434\u0430", | ||||
| "Food and Drink": "\u0407\u0436\u0430 \u0442\u0430 \u043d\u0430\u043f\u043e\u0457", | ||||
| "Activity": "\u0410\u043a\u0442\u0438\u0432\u043d\u0456\u0441\u0442\u044c", | ||||
| "Travel and Places": "\u041f\u043e\u0434\u043e\u0440\u043e\u0436\u0456 \u0456 \u043c\u0456\u0441\u0446\u044f", | ||||
| "Objects": "\u041e\u0431\u2019\u0454\u043a\u0442\u0438", | ||||
| "Flags": "\u041f\u0440\u0430\u043f\u043e\u0440\u0438", | ||||
| "Characters": "\u0421\u0438\u043c\u0432\u043e\u043b\u0438", | ||||
| "Characters (no spaces)": "\u0421\u0438\u043c\u0432\u043e\u043b\u0438 (\u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u0456\u043b\u0456\u0432)", | ||||
| "{0} characters": "\u041a\u0456\u043b\u044c\u043a\u0456\u0441\u0442\u044c \u0441\u0438\u043c\u0432\u043e\u043b\u0456\u0432: {0}", | ||||
| "Error: Form submit field collision.": "\u041f\u043e\u043c\u0438\u043b\u043a\u0430: \u043a\u043e\u043b\u0456\u0437\u0456\u044f \u043f\u043e\u043b\u044f \u0432\u0456\u0434\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u044f \u0444\u043e\u0440\u043c\u0438.", | ||||
| "Error: No form element found.": "\u041f\u043e\u043c\u0438\u043b\u043a\u0430: \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e \u0435\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0444\u043e\u0440\u043c\u0438.", | ||||
| "Update": "\u041e\u043d\u043e\u0432\u0438\u0442\u0438", | ||||
| "Color swatch": "\u0417\u0440\u0430\u0437\u043e\u043a \u043a\u043e\u043b\u044c\u043e\u0440\u0443", | ||||
| "Turquoise": "\u0411\u0456\u0440\u044e\u0437\u043e\u0432\u0438\u0439", | ||||
| "Green": "\u0417\u0435\u043b\u0435\u043d\u0438\u0439", | ||||
| "Blue": "\u0421\u0438\u043d\u0456\u0439", | ||||
| "Purple": "\u0424\u0456\u043e\u043b\u0435\u0442\u043e\u0432\u0438\u0439", | ||||
| "Navy Blue": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0438\u043d\u0456\u0439", | ||||
| "Dark Turquoise": "\u0422\u0435\u043c\u043d\u043e-\u0431\u0456\u0440\u044e\u0437\u043e\u0432\u0438\u0439", | ||||
| "Dark Green": "\u0422\u0435\u043c\u043d\u043e-\u0437\u0435\u043b\u0435\u043d\u0438\u0439", | ||||
| "Medium Blue": "\u0421\u0435\u0440\u0435\u0434\u043d\u044c\u043e-\u0441\u0438\u043d\u0456\u0439", | ||||
| "Medium Purple": "\u0421\u0435\u0440\u0435\u0434\u043d\u044c\u043e-\u0444\u0456\u043e\u043b\u0435\u0442\u043e\u0432\u0438\u0439", | ||||
| "Midnight Blue": "\u041e\u043f\u0456\u0432\u043d\u0456\u0447\u043d\u0430 \u0431\u043b\u0430\u043a\u0438\u0442\u044c", | ||||
| "Yellow": "\u0416\u043e\u0432\u0442\u0438\u0439", | ||||
| "Orange": "\u041f\u043e\u043c\u0430\u0440\u0430\u043d\u0447\u0435\u0432\u0438\u0439", | ||||
| "Red": "\u0427\u0435\u0440\u0432\u043e\u043d\u0438\u0439", | ||||
| "Light Gray": "\u0421\u0432\u0456\u0442\u043b\u043e-\u0441\u0456\u0440\u0438\u0439", | ||||
| "Gray": "\u0421\u0456\u0440\u0438\u0439", | ||||
| "Dark Yellow": "\u0422\u0435\u043c\u043d\u043e-\u0436\u043e\u0432\u0442\u0438\u0439", | ||||
| "Dark Orange": "\u0422\u0435\u043c\u043d\u043e-\u043f\u043e\u043c\u0430\u0440\u0430\u043d\u0447\u0435\u0432\u0438\u0439", | ||||
| "Dark Red": "\u0422\u0435\u043c\u043d\u043e-\u0447\u0435\u0440\u0432\u043e\u043d\u0438\u0439", | ||||
| "Medium Gray": "\u0421\u0435\u0440\u0435\u0434\u043d\u044c\u043e-\u0441\u0456\u0440\u0438\u0439", | ||||
| "Dark Gray": "\u0422\u0435\u043c\u043d\u043e-\u0441\u0456\u0440\u0438\u0439", | ||||
| "Light Green": "\u0421\u0432\u0456\u0442\u043b\u043e-\u0437\u0435\u043b\u0435\u043d\u0438\u0439", | ||||
| "Light Yellow": "\u0421\u0432\u0456\u0442\u043b\u043e-\u0436\u043e\u0432\u0442\u0438\u0439", | ||||
| "Light Red": "\u0421\u0432\u0456\u0442\u043b\u043e-\u0447\u0435\u0440\u0432\u043e\u043d\u0438\u0439", | ||||
| "Light Purple": "\u0421\u0432\u0456\u0442\u043b\u043e-\u0444\u0456\u043e\u043b\u0435\u0442\u043e\u0432\u0438\u0439", | ||||
| "Light Blue": "\u0421\u0432\u0456\u0442\u043b\u043e-\u0441\u0438\u043d\u0456\u0439", | ||||
| "Dark Purple": "\u0422\u0435\u043c\u043d\u043e-\u0444\u0456\u043e\u043b\u0435\u0442\u043e\u0432\u0438\u0439", | ||||
| "Dark Blue": "\u0422\u0435\u043c\u043d\u043e-\u0433\u043e\u043b\u0443\u0431\u0438\u0439", | ||||
| "Black": "\u0427\u043e\u0440\u043d\u0438\u0439", | ||||
| "White": "\u0411\u0456\u043b\u0438\u0439", | ||||
| "Switch to or from fullscreen mode": "\u041f\u0435\u0440\u0435\u043c\u0438\u043a\u0430\u043d\u043d\u044f \u043f\u043e\u0432\u043d\u043e\u0435\u043a\u0440\u0430\u043d\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0443", | ||||
| "Open help dialog": "\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u0432\u0456\u043a\u043d\u043e \u0434\u043e\u0432\u0456\u0434\u043a\u0438", | ||||
| "history": "\u0456\u0441\u0442\u043e\u0440\u0456\u044f", | ||||
| "styles": "\u0441\u0442\u0438\u043b\u0456", | ||||
| "formatting": "\u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f", | ||||
| "alignment": "\u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f", | ||||
| "indentation": "\u0432\u0456\u0434\u0441\u0442\u0443\u043f", | ||||
| "permanent pen": "\u043c\u0430\u0440\u043a\u0435\u0440", | ||||
| "comments": "\u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0456", | ||||
| "Format Painter": "\u0424\u043e\u0440\u043c\u0430\u0442 \u0437\u0430 \u0437\u0440\u0430\u0437\u043a\u043e\u043c", | ||||
| "Insert\/edit iframe": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 iframe", | ||||
| "Capitalization": "\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f \u0432\u0435\u043b\u0438\u043a\u0438\u0445 \u043b\u0456\u0442\u0435\u0440", | ||||
| "lowercase": "\u043d\u0438\u0436\u043d\u0456\u0439 \u0440\u0435\u0433\u0456\u0441\u0442\u0440", | ||||
| "UPPERCASE": "\u0412\u0415\u0420\u0425\u041d\u0406\u0419 \u0420\u0415\u0413\u0406\u0421\u0422\u0420", | ||||
| "Title Case": "\u0420\u0435\u0433\u0456\u0441\u0442\u0440 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430", | ||||
| "Permanent Pen Properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u043c\u0430\u0440\u043a\u0435\u0440\u0430", | ||||
| "Permanent pen properties...": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u043c\u0430\u0440\u043a\u0435\u0440\u0430\u2026", | ||||
| "Font": "\u0428\u0440\u0438\u0444\u0442", | ||||
| "Size": "\u0420\u043e\u0437\u043c\u0456\u0440", | ||||
| "More...": "\u0411\u0456\u043b\u044c\u0448\u0435\u2026", | ||||
| "Spellcheck Language": "\u041c\u043e\u0432\u0430 \u043f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0438 \u043e\u0440\u0444\u043e\u0433\u0440\u0430\u0444\u0456\u0457", | ||||
| "Select...": "\u0412\u0438\u0431\u0440\u0430\u0442\u0438\u2026", | ||||
| "Preferences": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438", | ||||
| "Yes": "\u0422\u0430\u043a", | ||||
| "No": "\u041d\u0456", | ||||
| "Keyboard Navigation": "\u041a\u0435\u0440\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u0430 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u043e\u044e \u043a\u043b\u0430\u0432\u0456\u0430\u0442\u0443\u0440\u0438", | ||||
| "Version": "\u0412\u0435\u0440\u0441\u0456\u044f", | ||||
| "Anchor": "\u042f\u043a\u0456\u0440", | ||||
| "Special character": "\u0421\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438", | ||||
| "Code sample": "\u041f\u0440\u0438\u043a\u043b\u0430\u0434 \u043a\u043e\u0434\u0443", | ||||
| "Color": "\u043a\u043e\u043b\u0456\u0440", | ||||
| "Emoticons": "\u0415\u043c\u043e\u0446\u0456\u0457", | ||||
| "Document properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430", | ||||
| "Image": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", | ||||
| "Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", | ||||
| "Target": "\u0412\u0456\u0434\u043a\u0440\u0438\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", | ||||
| "Link": "\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f", | ||||
| "Poster": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f", | ||||
| "Media": "\u041c\u0435\u0434\u0456\u0430\u0434\u0430\u043d\u0456", | ||||
| "Print": "\u0414\u0440\u0443\u043a\u0443\u0432\u0430\u0442\u0438", | ||||
| "Prev": "\u0412\u0433\u043e\u0440\u0443", | ||||
| "Find and replace": "\u041f\u043e\u0448\u0443\u043a \u0456 \u0437\u0430\u043c\u0456\u043d\u0430", | ||||
| "Whole words": "\u0426\u0456\u043b\u0456 \u0441\u043b\u043e\u0432\u0430", | ||||
| "Spellcheck": "\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0430 \u043e\u0440\u0444\u043e\u0433\u0440\u0430\u0444\u0456\u0457", | ||||
| "Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", | ||||
| "Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d" | ||||
| }); | ||||
							
								
								
									
										261
									
								
								Modules/TinyMCE/langs/vi.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										261
									
								
								Modules/TinyMCE/langs/vi.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,261 @@ | ||||
| tinymce.addI18n('vi',{ | ||||
| "Redo": "L\u00e0m l\u1ea1i", | ||||
| "Undo": "H\u1ee7y thao t\u00e1c", | ||||
| "Cut": "C\u1eaft", | ||||
| "Copy": "Sao ch\u00e9p", | ||||
| "Paste": "D\u00e1n", | ||||
| "Select all": "Ch\u1ecdn t\u1ea5t c\u1ea3", | ||||
| "New document": "T\u1ea1o t\u00e0i li\u1ec7u m\u1edbi", | ||||
| "Ok": "\u0110\u1ed3ng \u00dd", | ||||
| "Cancel": "Hu\u1ef7 B\u1ecf", | ||||
| "Visual aids": "M\u1edf khung so\u1ea1n th\u1ea3o", | ||||
| "Bold": "In \u0111\u1eadm", | ||||
| "Italic": "In nghi\u00eang", | ||||
| "Underline": "G\u1ea1ch d\u01b0\u1edbi", | ||||
| "Strikethrough": "G\u1ea1ch ngang", | ||||
| "Superscript": "K\u00fd t\u1ef1 m\u0169", | ||||
| "Subscript": "K\u00fd t\u1ef1 th\u1ea5p", | ||||
| "Clear formatting": "L\u01b0\u1ee3c b\u1ecf ph\u1ea7n hi\u1ec7u \u1ee9ng", | ||||
| "Align left": "Canh tr\u00e1i", | ||||
| "Align center": "Canh gi\u1eefa", | ||||
| "Align right": "Canh ph\u1ea3i", | ||||
| "Justify": "Canh \u0111\u1ec1u hai b\u00ean", | ||||
| "Bullet list": "Danh s\u00e1ch d\u1ea1ng bi\u1ec3u t\u01b0\u1ee3ng", | ||||
| "Numbered list": "Danh s\u00e1ch d\u1ea1ng s\u1ed1", | ||||
| "Decrease indent": "Th\u1ee5t l\u00f9i d\u00f2ng", | ||||
| "Increase indent": "T\u0103ng kho\u1ea3ng c\u00e1ch d\u00f2ng", | ||||
| "Close": "\u0110\u00f3ng L\u1ea1i", | ||||
| "Formats": "\u0110\u1ecbnh d\u1ea1ng", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Tr\u00ecnh duy\u1ec7t c\u1ee7a b\u1ea1n kh\u00f4ng h\u1ed7 tr\u1ee3 truy c\u1eadp truy c\u1eadp b\u1ed9 nh\u1edb \u1ea3o, vui l\u00f2ng s\u1eed d\u1ee5ng c\u00e1c t\u1ed5 h\u1ee3p ph\u00edm Ctrl + X, C, V.", | ||||
| "Headers": "\u0110\u1ea7u trang", | ||||
| "Header 1": "Ti\u00eau \u0111\u1ec1 1", | ||||
| "Header 2": "Ti\u00eau \u0111\u1ec1 2", | ||||
| "Header 3": "Ti\u00eau \u0111\u1ec1 3", | ||||
| "Header 4": "Ti\u00eau \u0111\u1ec1 4", | ||||
| "Header 5": "Ti\u00eau \u0111\u1ec1 5", | ||||
| "Header 6": "Ti\u00eau \u0111\u1ec1 6", | ||||
| "Headings": "Ph\u1ea7n \u0111\u1ea7u", | ||||
| "Heading 1": "H1", | ||||
| "Heading 2": "H2", | ||||
| "Heading 3": "H3", | ||||
| "Heading 4": "H4", | ||||
| "Heading 5": "H5", | ||||
| "Heading 6": "G6", | ||||
| "Preformatted": "\u0110\u1ecbnh d\u1ea1ng s\u1eb5n", | ||||
| "Div": "Khung", | ||||
| "Pre": "\u0110\u1ecbnh d\u1ea1ng", | ||||
| "Code": "M\u00e3", | ||||
| "Paragraph": "\u0110o\u1ea1n v\u0103n", | ||||
| "Blockquote": "\u0110o\u1ea1n Tr\u00edch D\u1eabn", | ||||
| "Inline": "C\u00f9ng d\u00f2ng", | ||||
| "Blocks": "Bao", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Ch\u1ee9c n\u0103ng D\u00e1n \u0111ang trong tr\u1ea1ng th\u00e1i v\u0103n b\u1ea3n \u0111\u01a1n gi\u1ea3n. N\u1ed9i dung s\u1ebd \u0111\u01b0\u1ee3c d\u00e1n d\u01b0\u1edbi d\u1ea1ng v\u0103n b\u1ea3n thu\u1ea7n, kh\u00f4ng c\u00f3 \u0111\u1ecbnh d\u1ea1ng.", | ||||
| "Font Family": "Ki\u1ec3u ch\u1eef", | ||||
| "Font Sizes": "C\u1ee1 ch\u1eef", | ||||
| "Class": "L\u1edbp", | ||||
| "Browse for an image": "Ch\u00e8n m\u1ed9t h\u00ecnh \u1ea3nh", | ||||
| "OR": "HO\u1eb6C", | ||||
| "Drop an image here": "Th\u1ea3 h\u00ecnh \u1ea3nh v\u00e0o \u0111\u00e2y", | ||||
| "Upload": "T\u1ea3i l\u00ean", | ||||
| "Block": "Kh\u1ed1i", | ||||
| "Align": "Canh l\u1ec1", | ||||
| "Default": "M\u1eb7c \u0111\u1ecbnh", | ||||
| "Circle": "H\u00ecnh tr\u00f2n", | ||||
| "Disc": "H\u00ecnh tr\u00f2n  d\u1ea1ng m\u1ecfng", | ||||
| "Square": "\u00d4 vu\u00f4ng", | ||||
| "Lower Alpha": "K\u00fd t\u1ef1 th\u01b0\u1eddng", | ||||
| "Lower Greek": "S\u1ed1 hy l\u1ea1p th\u01b0\u1eddng", | ||||
| "Lower Roman": "S\u1ed1 la m\u00e3 th\u01b0\u1eddng", | ||||
| "Upper Alpha": "K\u00fd t\u1ef1 hoa", | ||||
| "Upper Roman": "S\u1ed1 la m\u00e3 hoa", | ||||
| "Anchor": "Neo", | ||||
| "Name": "T\u00ean", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "B\u1ea1n ch\u01b0a l\u01b0u thay \u0111\u1ed5i b\u1ea1n c\u00f3 ch\u1eafc b\u1ea1n mu\u1ed1n di chuy\u1ec3n \u0111i?", | ||||
| "Restore last draft": "Kh\u00f4i ph\u1ee5c b\u1ea3n g\u1ea7n nh\u1ea5t", | ||||
| "Special character": "K\u00fd t\u1ef1 \u0111\u1eb7c bi\u1ec7t", | ||||
| "Source code": "M\u00e3 ngu\u1ed3n", | ||||
| "Insert\/Edit code sample": "Ch\u00e8n\/S\u1eeda m\u00e3 m\u1eabu", | ||||
| "Language": "Ng\u00f4n ng\u1eef", | ||||
| "Code sample": "M\u00e3 m\u1eabu", | ||||
| "Color": "M\u00e0u s\u1eafc", | ||||
| "R": "M\u00e0u \u0111\u1ecf", | ||||
| "G": "M\u00e0u xanh l\u00e1 c\u00e2y", | ||||
| "B": "M\u00e0u xanh da tr\u1eddi", | ||||
| "Left to right": "Tr\u00e1i sang ph\u1ea3i", | ||||
| "Right to left": "Ph\u1ea3i sang tr\u00e1i", | ||||
| "Emoticons": "Bi\u1ec3u t\u01b0\u1ee3ng c\u1ea3m x\u00fac", | ||||
| "Document properties": "Thu\u1ed9c t\u00ednh t\u00e0i li\u1ec7u", | ||||
| "Title": "Ti\u00eau \u0111\u1ec1", | ||||
| "Keywords": "T\u1eeb kh\u00f3a", | ||||
| "Description": "M\u00f4 t\u1ea3", | ||||
| "Robots": "Robots", | ||||
| "Author": "T\u00e1c gi\u1ea3", | ||||
| "Encoding": "M\u00e3 h\u00f3a", | ||||
| "Fullscreen": "To\u00e0n m\u00e0n h\u00ecnh", | ||||
| "Action": "H\u00e0nh \u0111\u1ed9ng", | ||||
| "Shortcut": "L\u1ed1i t\u1eaft", | ||||
| "Help": "Tr\u1ee3 gi\u00fap", | ||||
| "Address": "\u0110\u1ecba ch\u1ec9", | ||||
| "Focus to menubar": "Focus to menubar", | ||||
| "Focus to toolbar": "Focus to toolbar", | ||||
| "Focus to element path": "Focus to element path", | ||||
| "Focus to contextual toolbar": "Focus to contextual toolbar", | ||||
| "Insert link (if link plugin activated)": "Ch\u00e8n \u0111\u01b0\u1eddng d\u1eabn", | ||||
| "Save (if save plugin activated)": "L\u01b0u", | ||||
| "Find (if searchreplace plugin activated)": "T\u00ecm ki\u1ebfm", | ||||
| "Plugins installed ({0}):": "Plugins installed ({0}):", | ||||
| "Premium plugins:": "Premium plugins:", | ||||
| "Learn more...": "Learn more...", | ||||
| "You are using {0}": "You are using {0}", | ||||
| "Plugins": "Plugins", | ||||
| "Handy Shortcuts": "Handy Shortcuts", | ||||
| "Horizontal line": "K\u1ebb ngang", | ||||
| "Insert\/edit image": "Ch\u00e8n\/s\u1eeda \u1ea3nh", | ||||
| "Image description": "M\u00f4 t\u1ea3 \u1ea3nh", | ||||
| "Source": "Ngu\u1ed3n", | ||||
| "Dimensions": "K\u00edch th\u01b0\u1edbc", | ||||
| "Constrain proportions": "T\u1ef7 l\u1ec7 h\u1ea1n ch\u1ebf", | ||||
| "General": "Chung", | ||||
| "Advanced": "N\u00e2ng cao", | ||||
| "Style": "Ki\u1ec3u", | ||||
| "Vertical space": "N\u1eb1m d\u1ecdc", | ||||
| "Horizontal space": "N\u1eb1m ngang", | ||||
| "Border": "\u0110\u01b0\u1eddng vi\u1ec1n", | ||||
| "Insert image": "Ch\u00e8n \u1ea3nh", | ||||
| "Image": "Image", | ||||
| "Image list": "Image list", | ||||
| "Rotate counterclockwise": "Xoay tr\u00e1i", | ||||
| "Rotate clockwise": "Xoay ph\u1ea3i", | ||||
| "Flip vertically": "L\u1eadt d\u1ecdc", | ||||
| "Flip horizontally": "L\u1eadt ngang", | ||||
| "Edit image": "Ch\u1ec9nh s\u1eeda \u1ea3nh", | ||||
| "Image options": "T\u00f9y ch\u1ecdn \u1ea3nh", | ||||
| "Zoom in": "Thu nh\u1ecf", | ||||
| "Zoom out": "Ph\u00f3ng to", | ||||
| "Crop": "C\u1eaft \u1ea3nh", | ||||
| "Resize": "Thay \u0111\u1ed5i k\u00edch th\u01b0\u1edbc", | ||||
| "Orientation": "\u0110\u1ecbnh h\u01b0\u1edbng", | ||||
| "Brightness": "\u0110\u1ed9 s\u00e1ng", | ||||
| "Sharpen": "L\u00e0m s\u1eafc n\u00e9t", | ||||
| "Contrast": "\u0110\u1ed9 t\u01b0\u01a1ng ph\u1ea3n", | ||||
| "Color levels": "M\u1ee9c \u0111\u1ed9 m\u00e0u", | ||||
| "Gamma": "M\u00e0u Gamma", | ||||
| "Invert": "\u0110\u1ea3o ng\u01b0\u1ee3c", | ||||
| "Apply": "\u00c1p d\u1ee5ng", | ||||
| "Back": "Quay l\u1ea1i", | ||||
| "Insert date\/time": "Ch\u00e8n ng\u00e0y\/th\u00e1ng", | ||||
| "Date\/time": "Date\/time", | ||||
| "Insert link": "Ch\u00e8n li\u00ean k\u1ebft", | ||||
| "Insert\/edit link": "Ch\u00e8n\/s\u1eeda li\u00ean k\u1ebft", | ||||
| "Text to display": "N\u1ed9i dung hi\u1ec3n th\u1ecb", | ||||
| "Url": "Url", | ||||
| "Target": "\u0110\u00edch", | ||||
| "None": "Kh\u00f4ng", | ||||
| "New window": "C\u1eeda s\u1ed5 m\u1edbi", | ||||
| "Remove link": "B\u1ecf li\u00ean k\u1ebft", | ||||
| "Anchors": "Neo", | ||||
| "Link": "Link", | ||||
| "Paste or type a link": "Paste or type a link", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0110\u1ecba ch\u1ec9 URL b\u1ea1n v\u1eeba nh\u1eadp gi\u1ed1ng nh\u01b0 m\u1ed9t \u0111\u1ecba ch\u1ec9 email. B\u1ea1n c\u00f3 mu\u1ed1n th\u00eam ti\u1ec1n t\u1ed1 mailto: kh\u00f4ng?", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0110\u1ecba ch\u1ec9 URL b\u1ea1n v\u1eeba nh\u1eadp gi\u1ed1ng nh\u01b0 m\u1ed9t li\u00ean k\u1ebft. B\u1ea1n c\u00f3 mu\u1ed1n th\u00eam ti\u1ec1n t\u1ed1 http:\/\/ kh\u00f4ng?", | ||||
| "Link list": "Link list", | ||||
| "Insert video": "Ch\u00e8n video", | ||||
| "Insert\/edit video": "Ch\u00e8n\/s\u1eeda video", | ||||
| "Insert\/edit media": "Insert\/edit media", | ||||
| "Alternative source": "Ngu\u1ed3n thay th\u1ebf", | ||||
| "Poster": "Ng\u01b0\u1eddi g\u1eedi", | ||||
| "Paste your embed code below:": "D\u00e1n m\u00e3 nh\u00fang c\u1ee7a b\u1ea1n d\u01b0\u1edbi \u0111\u00e2y:", | ||||
| "Embed": "Nh\u00fang", | ||||
| "Media": "Media", | ||||
| "Nonbreaking space": "Kh\u00f4ng xu\u1ed1ng h\u00e0ng", | ||||
| "Page break": "Ng\u1eaft trang", | ||||
| "Paste as text": "D\u00e1n \u0111o\u1ea1n v\u0103n b\u1ea3n", | ||||
| "Preview": "Xem th\u1eed", | ||||
| "Print": "In", | ||||
| "Save": "L\u01b0u", | ||||
| "Find": "T\u00ecm ki\u1ebfm", | ||||
| "Replace with": "Thay th\u1ebf b\u1edfi", | ||||
| "Replace": "Thay th\u1ebf", | ||||
| "Replace all": "Thay t\u1ea5t c\u1ea3", | ||||
| "Prev": "Tr\u01b0\u1edbc", | ||||
| "Next": "K\u1ebf ti\u1ebfp", | ||||
| "Find and replace": "T\u00ecm v\u00e0 thay th\u1ebf", | ||||
| "Could not find the specified string.": "Kh\u00f4ng t\u00ecm th\u1ea5y chu\u1ed7i qui \u0111\u1ecbnh", | ||||
| "Match case": "Tr\u01b0\u1eddng h\u1ee3p xem", | ||||
| "Whole words": "To\u00e0n b\u1ed9 t\u1eeb", | ||||
| "Spellcheck": "Ki\u1ec3m tra ch\u00ednh t\u1ea3", | ||||
| "Ignore": "B\u1ecf qua", | ||||
| "Ignore all": "B\u1ecf qua t\u1ea5t", | ||||
| "Finish": "Ho\u00e0n t\u1ea5t", | ||||
| "Add to Dictionary": "Th\u00eam v\u00e0o t\u1eeb \u0111i\u1ec3n", | ||||
| "Insert table": "Th\u00eam b\u1ea3ng", | ||||
| "Table properties": "Thu\u1ed9c t\u00ednh b\u1ea3ng", | ||||
| "Delete table": "Xo\u00e1 b\u1ea3ng", | ||||
| "Cell": "\u00d4", | ||||
| "Row": "D\u00f2ng", | ||||
| "Column": "C\u1ed9t", | ||||
| "Cell properties": "Thu\u1ed9c t\u00ednh \u00f4", | ||||
| "Merge cells": "Tr\u1ed9n \u00f4", | ||||
| "Split cell": "Chia c\u1eaft \u00f4", | ||||
| "Insert row before": "Th\u00eam d\u00f2ng ph\u00eda tr\u00ean", | ||||
| "Insert row after": "Th\u00eam d\u00f2ng ph\u00eda d\u01b0\u1edbi", | ||||
| "Delete row": "Xo\u00e1 d\u00f2ng", | ||||
| "Row properties": "Thu\u1ed9c t\u00ednh d\u00f2ng", | ||||
| "Cut row": "C\u1eaft d\u00f2ng", | ||||
| "Copy row": "Sao ch\u00e9p d\u00f2ng", | ||||
| "Paste row before": "D\u00e1n v\u00e0o ph\u00eda tr\u01b0\u1edbc, tr\u00ean", | ||||
| "Paste row after": "D\u00e1n v\u00e0o ph\u00eda sau, d\u01b0\u1edbi", | ||||
| "Insert column before": "Th\u00eam c\u1ed9t b\u00ean tr\u00e1i", | ||||
| "Insert column after": "Th\u00eam c\u1ed9t b\u00ean ph\u1ea3i", | ||||
| "Delete column": "Xo\u00e1 c\u1ed9t", | ||||
| "Cols": "C\u1ed9t", | ||||
| "Rows": "D\u00f2ng", | ||||
| "Width": "\u0110\u1ed9 R\u1ed9ng", | ||||
| "Height": "\u0110\u1ed9 Cao", | ||||
| "Cell spacing": "Kho\u1ea3ng c\u00e1ch \u00f4", | ||||
| "Cell padding": "Kho\u1ea3ng c\u00e1ch trong \u00f4", | ||||
| "Caption": "Ti\u00eau \u0111\u1ec1", | ||||
| "Left": "Tr\u00e1i", | ||||
| "Center": "Gi\u1eefa", | ||||
| "Right": "Ph\u1ea3i", | ||||
| "Cell type": "Lo\u1ea1i \u00f4", | ||||
| "Scope": "Quy\u1ec1n", | ||||
| "Alignment": "Canh ch\u1ec9nh", | ||||
| "H Align": "L\u1ec1 ngang", | ||||
| "V Align": "L\u1ec1 d\u1ecdc", | ||||
| "Top": "Tr\u00ean", | ||||
| "Middle": "Kho\u1ea3ng gi\u1eefa", | ||||
| "Bottom": "D\u01b0\u1edbi", | ||||
| "Header cell": "Ti\u00eau \u0111\u1ec1 \u00f4", | ||||
| "Row group": "Gom nh\u00f3m d\u00f2ng", | ||||
| "Column group": "Gom nh\u00f3m c\u1ed9t", | ||||
| "Row type": "Th\u1ec3 lo\u1ea1i d\u00f2ng", | ||||
| "Header": "Ti\u00eau \u0111\u1ec1", | ||||
| "Body": "N\u1ed9i dung", | ||||
| "Footer": "Ch\u00e2n", | ||||
| "Border color": "M\u00e0u vi\u1ec1n", | ||||
| "Insert template": "Th\u00eam m\u1eabu", | ||||
| "Templates": "M\u1eabu", | ||||
| "Template": "Template", | ||||
| "Text color": "M\u00e0u v\u0103n b\u1ea3n", | ||||
| "Background color": "M\u00e0u n\u1ec1n", | ||||
| "Custom...": "Tu\u1ef3 ch\u1ec9nh...", | ||||
| "Custom color": "Tu\u1ef3 ch\u1ec9nh m\u00e0u", | ||||
| "No color": "Kh\u00f4ng c\u00f3 m\u00e0u", | ||||
| "Table of Contents": "Table of Contents", | ||||
| "Show blocks": "Hi\u1ec3n th\u1ecb kh\u1ed1i", | ||||
| "Show invisible characters": "Hi\u1ec3n th\u1ecb k\u00fd t\u1ef1 \u1ea9n", | ||||
| "Words: {0}": "T\u1eeb: {0}", | ||||
| "{0} words": "{0} words", | ||||
| "File": "T\u1eadp tin", | ||||
| "Edit": "S\u1eeda", | ||||
| "Insert": "Ch\u00e8n", | ||||
| "View": "Xem", | ||||
| "Format": "\u0110\u1ecbnh d\u1ea1ng", | ||||
| "Table": "B\u1ea3ng", | ||||
| "Tools": "C\u00f4ng c\u1ee5", | ||||
| "Powered by {0}": "Powered by {0}", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. B\u1ea5m ALT-F9 m\u1edf menu. B\u1ea5m ALT-F10 m\u1edf thanh c\u00f4ng c\u1ee5. B\u1ea5m ALT-0 m\u1edf tr\u1ee3 gi\u00fap" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/zh_CN.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/zh_CN.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('zh_CN',{ | ||||
| "Redo": "\u91cd\u505a", | ||||
| "Undo": "\u64a4\u9500", | ||||
| "Cut": "\u526a\u5207", | ||||
| "Copy": "\u590d\u5236", | ||||
| "Paste": "\u7c98\u8d34", | ||||
| "Select all": "\u5168\u9009", | ||||
| "New document": "\u65b0\u6587\u4ef6", | ||||
| "Ok": "\u786e\u5b9a", | ||||
| "Cancel": "\u53d6\u6d88", | ||||
| "Visual aids": "\u7f51\u683c\u7ebf", | ||||
| "Bold": "\u7c97\u4f53", | ||||
| "Italic": "\u659c\u4f53", | ||||
| "Underline": "\u4e0b\u5212\u7ebf", | ||||
| "Strikethrough": "\u5220\u9664\u7ebf", | ||||
| "Superscript": "\u4e0a\u6807", | ||||
| "Subscript": "\u4e0b\u6807", | ||||
| "Clear formatting": "\u6e05\u9664\u683c\u5f0f", | ||||
| "Align left": "\u5de6\u8fb9\u5bf9\u9f50", | ||||
| "Align center": "\u4e2d\u95f4\u5bf9\u9f50", | ||||
| "Align right": "\u53f3\u8fb9\u5bf9\u9f50", | ||||
| "Justify": "\u4e24\u7aef\u5bf9\u9f50", | ||||
| "Bullet list": "\u9879\u76ee\u7b26\u53f7", | ||||
| "Numbered list": "\u7f16\u53f7\u5217\u8868", | ||||
| "Decrease indent": "\u51cf\u5c11\u7f29\u8fdb", | ||||
| "Increase indent": "\u589e\u52a0\u7f29\u8fdb", | ||||
| "Close": "\u5173\u95ed", | ||||
| "Formats": "\u683c\u5f0f", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u4f60\u7684\u6d4f\u89c8\u5668\u4e0d\u652f\u6301\u6253\u5f00\u526a\u8d34\u677f\uff0c\u8bf7\u4f7f\u7528Ctrl+X\/C\/V\u7b49\u5feb\u6377\u952e\u3002", | ||||
| "Headers": "\u6807\u9898", | ||||
| "Header 1": "\u6807\u98981", | ||||
| "Header 2": "\u6807\u98982", | ||||
| "Header 3": "\u6807\u98983", | ||||
| "Header 4": "\u6807\u98984", | ||||
| "Header 5": "\u6807\u98985", | ||||
| "Header 6": "\u6807\u98986", | ||||
| "Headings": "\u6807\u9898", | ||||
| "Heading 1": "\u6807\u98981", | ||||
| "Heading 2": "\u6807\u98982", | ||||
| "Heading 3": "\u6807\u98983", | ||||
| "Heading 4": "\u6807\u98984", | ||||
| "Heading 5": "\u6807\u98985", | ||||
| "Heading 6": "\u6807\u98986", | ||||
| "Preformatted": "\u9884\u5148\u683c\u5f0f\u5316\u7684", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "\u4ee3\u7801", | ||||
| "Paragraph": "\u6bb5\u843d", | ||||
| "Blockquote": "\u5f15\u6587\u533a\u5757", | ||||
| "Inline": "\u6587\u672c", | ||||
| "Blocks": "\u57fa\u5757", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u5f53\u524d\u4e3a\u7eaf\u6587\u672c\u7c98\u8d34\u6a21\u5f0f\uff0c\u518d\u6b21\u70b9\u51fb\u53ef\u4ee5\u56de\u5230\u666e\u901a\u7c98\u8d34\u6a21\u5f0f\u3002", | ||||
| "Fonts": "\u5b57\u4f53", | ||||
| "Font Sizes": "\u5b57\u53f7", | ||||
| "Class": "\u7c7b\u578b", | ||||
| "Browse for an image": "\u6d4f\u89c8\u56fe\u50cf", | ||||
| "OR": "\u6216", | ||||
| "Drop an image here": "\u62d6\u653e\u4e00\u5f20\u56fe\u50cf\u81f3\u6b64", | ||||
| "Upload": "\u4e0a\u4f20", | ||||
| "Block": "\u5757", | ||||
| "Align": "\u5bf9\u9f50", | ||||
| "Default": "\u9ed8\u8ba4", | ||||
| "Circle": "\u7a7a\u5fc3\u5706", | ||||
| "Disc": "\u5b9e\u5fc3\u5706", | ||||
| "Square": "\u65b9\u5757", | ||||
| "Lower Alpha": "\u5c0f\u5199\u82f1\u6587\u5b57\u6bcd", | ||||
| "Lower Greek": "\u5c0f\u5199\u5e0c\u814a\u5b57\u6bcd", | ||||
| "Lower Roman": "\u5c0f\u5199\u7f57\u9a6c\u5b57\u6bcd", | ||||
| "Upper Alpha": "\u5927\u5199\u82f1\u6587\u5b57\u6bcd", | ||||
| "Upper Roman": "\u5927\u5199\u7f57\u9a6c\u5b57\u6bcd", | ||||
| "Anchor...": "\u951a\u70b9...", | ||||
| "Name": "\u540d\u79f0", | ||||
| "Id": "\u6807\u8bc6\u7b26", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u6807\u8bc6\u7b26\u5e94\u8be5\u4ee5\u5b57\u6bcd\u5f00\u5934\uff0c\u540e\u8ddf\u5b57\u6bcd\u3001\u6570\u5b57\u3001\u7834\u6298\u53f7\u3001\u70b9\u3001\u5192\u53f7\u6216\u4e0b\u5212\u7ebf\u3002", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u4f60\u8fd8\u6709\u6587\u6863\u5c1a\u672a\u4fdd\u5b58\uff0c\u786e\u5b9a\u8981\u79bb\u5f00\uff1f", | ||||
| "Restore last draft": "\u6062\u590d\u4e0a\u6b21\u7684\u8349\u7a3f", | ||||
| "Special character...": "\u7279\u6b8a\u5b57\u7b26...", | ||||
| "Source code": "\u6e90\u4ee3\u7801", | ||||
| "Insert\/Edit code sample": "\u63d2\u5165\/\u7f16\u8f91\u4ee3\u7801\u793a\u4f8b", | ||||
| "Language": "\u8bed\u8a00", | ||||
| "Code sample...": "\u793a\u4f8b\u4ee3\u7801...", | ||||
| "Color Picker": "\u9009\u8272\u5668", | ||||
| "R": "R", | ||||
| "G": "G", | ||||
| "B": "B", | ||||
| "Left to right": "\u4ece\u5de6\u5230\u53f3", | ||||
| "Right to left": "\u4ece\u53f3\u5230\u5de6", | ||||
| "Emoticons...": "\u8868\u60c5\u7b26\u53f7...", | ||||
| "Metadata and Document Properties": "\u5143\u6570\u636e\u548c\u6587\u6863\u5c5e\u6027", | ||||
| "Title": "\u6807\u9898", | ||||
| "Keywords": "\u5173\u952e\u8bcd", | ||||
| "Description": "\u63cf\u8ff0", | ||||
| "Robots": "\u673a\u5668\u4eba", | ||||
| "Author": "\u4f5c\u8005", | ||||
| "Encoding": "\u7f16\u7801", | ||||
| "Fullscreen": "\u5168\u5c4f", | ||||
| "Action": "\u64cd\u4f5c", | ||||
| "Shortcut": "\u5feb\u6377\u952e", | ||||
| "Help": "\u5e2e\u52a9", | ||||
| "Address": "\u5730\u5740", | ||||
| "Focus to menubar": "\u79fb\u52a8\u7126\u70b9\u5230\u83dc\u5355\u680f", | ||||
| "Focus to toolbar": "\u79fb\u52a8\u7126\u70b9\u5230\u5de5\u5177\u680f", | ||||
| "Focus to element path": "\u79fb\u52a8\u7126\u70b9\u5230\u5143\u7d20\u8def\u5f84", | ||||
| "Focus to contextual toolbar": "\u79fb\u52a8\u7126\u70b9\u5230\u4e0a\u4e0b\u6587\u83dc\u5355", | ||||
| "Insert link (if link plugin activated)": "\u63d2\u5165\u94fe\u63a5 (\u5982\u679c\u94fe\u63a5\u63d2\u4ef6\u5df2\u6fc0\u6d3b)", | ||||
| "Save (if save plugin activated)": "\u4fdd\u5b58(\u5982\u679c\u4fdd\u5b58\u63d2\u4ef6\u5df2\u6fc0\u6d3b)", | ||||
| "Find (if searchreplace plugin activated)": "\u67e5\u627e(\u5982\u679c\u67e5\u627e\u66ff\u6362\u63d2\u4ef6\u5df2\u6fc0\u6d3b)", | ||||
| "Plugins installed ({0}):": "\u5df2\u5b89\u88c5\u63d2\u4ef6 ({0}):", | ||||
| "Premium plugins:": "\u4f18\u79c0\u63d2\u4ef6\uff1a", | ||||
| "Learn more...": "\u4e86\u89e3\u66f4\u591a...", | ||||
| "You are using {0}": "\u4f60\u6b63\u5728\u4f7f\u7528 {0}", | ||||
| "Plugins": "\u63d2\u4ef6", | ||||
| "Handy Shortcuts": "\u5feb\u6377\u952e", | ||||
| "Horizontal line": "\u6c34\u5e73\u5206\u5272\u7ebf", | ||||
| "Insert\/edit image": "\u63d2\u5165\/\u7f16\u8f91\u56fe\u7247", | ||||
| "Image description": "\u56fe\u7247\u63cf\u8ff0", | ||||
| "Source": "\u5730\u5740", | ||||
| "Dimensions": "\u5927\u5c0f", | ||||
| "Constrain proportions": "\u4fdd\u6301\u7eb5\u6a2a\u6bd4", | ||||
| "General": "\u666e\u901a", | ||||
| "Advanced": "\u9ad8\u7ea7", | ||||
| "Style": "\u6837\u5f0f", | ||||
| "Vertical space": "\u5782\u76f4\u8fb9\u8ddd", | ||||
| "Horizontal space": "\u6c34\u5e73\u8fb9\u8ddd", | ||||
| "Border": "\u8fb9\u6846", | ||||
| "Insert image": "\u63d2\u5165\u56fe\u7247", | ||||
| "Image...": "\u56fe\u7247...", | ||||
| "Image list": "\u56fe\u7247\u5217\u8868", | ||||
| "Rotate counterclockwise": "\u9006\u65f6\u9488\u65cb\u8f6c", | ||||
| "Rotate clockwise": "\u987a\u65f6\u9488\u65cb\u8f6c", | ||||
| "Flip vertically": "\u5782\u76f4\u7ffb\u8f6c", | ||||
| "Flip horizontally": "\u6c34\u5e73\u7ffb\u8f6c", | ||||
| "Edit image": "\u7f16\u8f91\u56fe\u7247", | ||||
| "Image options": "\u56fe\u7247\u9009\u9879", | ||||
| "Zoom in": "\u653e\u5927", | ||||
| "Zoom out": "\u7f29\u5c0f", | ||||
| "Crop": "\u88c1\u526a", | ||||
| "Resize": "\u8c03\u6574\u5927\u5c0f", | ||||
| "Orientation": "\u65b9\u5411", | ||||
| "Brightness": "\u4eae\u5ea6", | ||||
| "Sharpen": "\u9510\u5316", | ||||
| "Contrast": "\u5bf9\u6bd4\u5ea6", | ||||
| "Color levels": "\u989c\u8272\u5c42\u6b21", | ||||
| "Gamma": "\u4f3d\u9a6c\u503c", | ||||
| "Invert": "\u53cd\u8f6c", | ||||
| "Apply": "\u5e94\u7528", | ||||
| "Back": "\u540e\u9000", | ||||
| "Insert date\/time": "\u63d2\u5165\u65e5\u671f\/\u65f6\u95f4", | ||||
| "Date\/time": "\u65e5\u671f\/\u65f6\u95f4", | ||||
| "Insert\/Edit Link": "\u63d2\u5165\/\u7f16\u8f91\u94fe\u63a5", | ||||
| "Insert\/edit link": "\u63d2\u5165\/\u7f16\u8f91\u94fe\u63a5", | ||||
| "Text to display": "\u663e\u793a\u6587\u5b57", | ||||
| "Url": "\u5730\u5740", | ||||
| "Open link in...": "\u94fe\u63a5\u6253\u5f00\u4f4d\u7f6e...", | ||||
| "Current window": "\u5f53\u524d\u7a97\u53e3", | ||||
| "None": "\u65e0", | ||||
| "New window": "\u5728\u65b0\u7a97\u53e3\u6253\u5f00", | ||||
| "Remove link": "\u5220\u9664\u94fe\u63a5", | ||||
| "Anchors": "\u951a\u70b9", | ||||
| "Link...": "\u94fe\u63a5...", | ||||
| "Paste or type a link": "\u7c98\u8d34\u6216\u8f93\u5165\u94fe\u63a5", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u4e3a\u90ae\u4ef6\u5730\u5740\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7f00\u5417\uff1f", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u5c5e\u4e8e\u5916\u90e8\u94fe\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7f00\u5417\uff1f", | ||||
| "Link list": "\u94fe\u63a5\u5217\u8868", | ||||
| "Insert video": "\u63d2\u5165\u89c6\u9891", | ||||
| "Insert\/edit video": "\u63d2\u5165\/\u7f16\u8f91\u89c6\u9891", | ||||
| "Insert\/edit media": "\u63d2\u5165\/\u7f16\u8f91\u5a92\u4f53", | ||||
| "Alternative source": "\u955c\u50cf", | ||||
| "Alternative source URL": "\u66ff\u4ee3\u6765\u6e90\u7f51\u5740", | ||||
| "Media poster (Image URL)": "\u5c01\u9762(\u56fe\u7247\u5730\u5740)", | ||||
| "Paste your embed code below:": "\u5c06\u5185\u5d4c\u4ee3\u7801\u7c98\u8d34\u5728\u4e0b\u9762:", | ||||
| "Embed": "\u5185\u5d4c", | ||||
| "Media...": "\u591a\u5a92\u4f53...", | ||||
| "Nonbreaking space": "\u4e0d\u95f4\u65ad\u7a7a\u683c", | ||||
| "Page break": "\u5206\u9875\u7b26", | ||||
| "Paste as text": "\u7c98\u8d34\u4e3a\u6587\u672c", | ||||
| "Preview": "\u9884\u89c8", | ||||
| "Print...": "\u6253\u5370...", | ||||
| "Save": "\u4fdd\u5b58", | ||||
| "Find": "\u67e5\u627e", | ||||
| "Replace with": "\u66ff\u6362\u4e3a", | ||||
| "Replace": "\u66ff\u6362", | ||||
| "Replace all": "\u5168\u90e8\u66ff\u6362", | ||||
| "Previous": "\u4e0a\u4e00\u4e2a", | ||||
| "Next": "\u4e0b\u4e00\u4e2a", | ||||
| "Find and replace...": "\u67e5\u627e\u5e76\u66ff\u6362...", | ||||
| "Could not find the specified string.": "\u672a\u627e\u5230\u641c\u7d22\u5185\u5bb9.", | ||||
| "Match case": "\u533a\u5206\u5927\u5c0f\u5199", | ||||
| "Find whole words only": "\u5168\u5b57\u5339\u914d", | ||||
| "Spell check": "\u62fc\u5199\u68c0\u67e5", | ||||
| "Ignore": "\u5ffd\u7565", | ||||
| "Ignore all": "\u5168\u90e8\u5ffd\u7565", | ||||
| "Finish": "\u5b8c\u6210", | ||||
| "Add to Dictionary": "\u6dfb\u52a0\u5230\u5b57\u5178", | ||||
| "Insert table": "\u63d2\u5165\u8868\u683c", | ||||
| "Table properties": "\u8868\u683c\u5c5e\u6027", | ||||
| "Delete table": "\u5220\u9664\u8868\u683c", | ||||
| "Cell": "\u5355\u5143\u683c", | ||||
| "Row": "\u884c", | ||||
| "Column": "\u5217", | ||||
| "Cell properties": "\u5355\u5143\u683c\u5c5e\u6027", | ||||
| "Merge cells": "\u5408\u5e76\u5355\u5143\u683c", | ||||
| "Split cell": "\u62c6\u5206\u5355\u5143\u683c", | ||||
| "Insert row before": "\u5728\u4e0a\u65b9\u63d2\u5165", | ||||
| "Insert row after": "\u5728\u4e0b\u65b9\u63d2\u5165", | ||||
| "Delete row": "\u5220\u9664\u884c", | ||||
| "Row properties": "\u884c\u5c5e\u6027", | ||||
| "Cut row": "\u526a\u5207\u884c", | ||||
| "Copy row": "\u590d\u5236\u884c", | ||||
| "Paste row before": "\u7c98\u8d34\u5230\u4e0a\u65b9", | ||||
| "Paste row after": "\u7c98\u8d34\u5230\u4e0b\u65b9", | ||||
| "Insert column before": "\u5728\u5de6\u4fa7\u63d2\u5165", | ||||
| "Insert column after": "\u5728\u53f3\u4fa7\u63d2\u5165", | ||||
| "Delete column": "\u5220\u9664\u5217", | ||||
| "Cols": "\u5217", | ||||
| "Rows": "\u884c", | ||||
| "Width": "\u5bbd", | ||||
| "Height": "\u9ad8", | ||||
| "Cell spacing": "\u5355\u5143\u683c\u5916\u95f4\u8ddd", | ||||
| "Cell padding": "\u5355\u5143\u683c\u5185\u8fb9\u8ddd", | ||||
| "Show caption": "\u663e\u793a\u6807\u9898", | ||||
| "Left": "\u5de6\u5bf9\u9f50", | ||||
| "Center": "\u5c45\u4e2d", | ||||
| "Right": "\u53f3\u5bf9\u9f50", | ||||
| "Cell type": "\u5355\u5143\u683c\u7c7b\u578b", | ||||
| "Scope": "\u8303\u56f4", | ||||
| "Alignment": "\u5bf9\u9f50\u65b9\u5f0f", | ||||
| "H Align": "\u6c34\u5e73\u5bf9\u9f50", | ||||
| "V Align": "\u5782\u76f4\u5bf9\u9f50", | ||||
| "Top": "\u9876\u90e8\u5bf9\u9f50", | ||||
| "Middle": "\u5782\u76f4\u5c45\u4e2d", | ||||
| "Bottom": "\u5e95\u90e8\u5bf9\u9f50", | ||||
| "Header cell": "\u8868\u5934\u5355\u5143\u683c", | ||||
| "Row group": "\u884c\u7ec4", | ||||
| "Column group": "\u5217\u7ec4", | ||||
| "Row type": "\u884c\u7c7b\u578b", | ||||
| "Header": "\u8868\u5934", | ||||
| "Body": "\u8868\u4f53", | ||||
| "Footer": "\u8868\u5c3e", | ||||
| "Border color": "\u8fb9\u6846\u989c\u8272", | ||||
| "Insert template...": "\u63d2\u5165\u6a21\u677f...", | ||||
| "Templates": "\u6a21\u677f", | ||||
| "Template": "\u6a21\u677f", | ||||
| "Text color": "\u6587\u5b57\u989c\u8272", | ||||
| "Background color": "\u80cc\u666f\u8272", | ||||
| "Custom...": "\u81ea\u5b9a\u4e49...", | ||||
| "Custom color": "\u81ea\u5b9a\u4e49\u989c\u8272", | ||||
| "No color": "\u65e0", | ||||
| "Remove color": "\u79fb\u9664\u989c\u8272", | ||||
| "Table of Contents": "\u5185\u5bb9\u5217\u8868", | ||||
| "Show blocks": "\u663e\u793a\u533a\u5757\u8fb9\u6846", | ||||
| "Show invisible characters": "\u663e\u793a\u4e0d\u53ef\u89c1\u5b57\u7b26", | ||||
| "Word count": "\u5b57\u6570", | ||||
| "Count": "\u8ba1\u6570", | ||||
| "Document": "\u6587\u6863", | ||||
| "Selection": "\u9009\u62e9", | ||||
| "Words": "\u5355\u8bcd", | ||||
| "Words: {0}": "\u5b57\u6570\uff1a{0}", | ||||
| "{0} words": "{0} \u5b57", | ||||
| "File": "\u6587\u4ef6", | ||||
| "Edit": "\u7f16\u8f91", | ||||
| "Insert": "\u63d2\u5165", | ||||
| "View": "\u89c6\u56fe", | ||||
| "Format": "\u683c\u5f0f", | ||||
| "Table": "\u8868\u683c", | ||||
| "Tools": "\u5de5\u5177", | ||||
| "Powered by {0}": "\u7531{0}\u9a71\u52a8", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u5728\u7f16\u8f91\u533a\u6309ALT-F9\u6253\u5f00\u83dc\u5355\uff0c\u6309ALT-F10\u6253\u5f00\u5de5\u5177\u680f\uff0c\u6309ALT-0\u67e5\u770b\u5e2e\u52a9", | ||||
| "Image title": "\u56fe\u7247\u6807\u9898", | ||||
| "Border width": "\u8fb9\u6846\u5bbd\u5ea6", | ||||
| "Border style": "\u8fb9\u6846\u6837\u5f0f", | ||||
| "Error": "\u9519\u8bef", | ||||
| "Warn": "\u8b66\u544a", | ||||
| "Valid": "\u6709\u6548", | ||||
| "To open the popup, press Shift+Enter": "\u6309Shitf+Enter\u952e\u6253\u5f00\u5bf9\u8bdd\u6846", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u7f16\u8f91\u533a\u3002\u6309Alt+0\u952e\u6253\u5f00\u5e2e\u52a9\u3002", | ||||
| "System Font": "\u7cfb\u7edf\u5b57\u4f53", | ||||
| "Failed to upload image: {0}": "\u56fe\u7247\u4e0a\u4f20\u5931\u8d25: {0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u63d2\u4ef6\u52a0\u8f7d\u5931\u8d25: {0} \u6765\u81ea\u94fe\u63a5 {1}", | ||||
| "Failed to load plugin url: {0}": "\u63d2\u4ef6\u52a0\u8f7d\u5931\u8d25 \u94fe\u63a5: {0}", | ||||
| "Failed to initialize plugin: {0}": "\u63d2\u4ef6\u521d\u59cb\u5316\u5931\u8d25: {0}", | ||||
| "example": "\u793a\u4f8b", | ||||
| "Search": "\u641c\u7d22", | ||||
| "All": "\u5168\u90e8", | ||||
| "Currency": "\u8d27\u5e01", | ||||
| "Text": "\u6587\u5b57", | ||||
| "Quotations": "\u5f15\u7528", | ||||
| "Mathematical": "\u6570\u5b66", | ||||
| "Extended Latin": "\u62c9\u4e01\u8bed\u6269\u5145", | ||||
| "Symbols": "\u7b26\u53f7", | ||||
| "Arrows": "\u7bad\u5934", | ||||
| "User Defined": "\u81ea\u5b9a\u4e49", | ||||
| "dollar sign": "\u7f8e\u5143\u7b26\u53f7", | ||||
| "currency sign": "\u8d27\u5e01\u7b26\u53f7", | ||||
| "euro-currency sign": "\u6b27\u5143\u7b26\u53f7", | ||||
| "colon sign": "\u5192\u53f7", | ||||
| "cruzeiro sign": "\u514b\u9c81\u8d5b\u7f57\u5e01\u7b26\u53f7", | ||||
| "french franc sign": "\u6cd5\u90ce\u7b26\u53f7", | ||||
| "lira sign": "\u91cc\u62c9\u7b26\u53f7", | ||||
| "mill sign": "\u5bc6\u5c14\u7b26\u53f7", | ||||
| "naira sign": "\u5948\u62c9\u7b26\u53f7", | ||||
| "peseta sign": "\u6bd4\u585e\u5854\u7b26\u53f7", | ||||
| "rupee sign": "\u5362\u6bd4\u7b26\u53f7", | ||||
| "won sign": "\u97e9\u5143\u7b26\u53f7", | ||||
| "new sheqel sign": "\u65b0\u8c22\u514b\u5c14\u7b26\u53f7", | ||||
| "dong sign": "\u8d8a\u5357\u76fe\u7b26\u53f7", | ||||
| "kip sign": "\u8001\u631d\u57fa\u666e\u7b26\u53f7", | ||||
| "tugrik sign": "\u56fe\u683c\u91cc\u514b\u7b26\u53f7", | ||||
| "drachma sign": "\u5fb7\u62c9\u514b\u9a6c\u7b26\u53f7", | ||||
| "german penny symbol": "\u5fb7\u56fd\u4fbf\u58eb\u7b26\u53f7", | ||||
| "peso sign": "\u6bd4\u7d22\u7b26\u53f7", | ||||
| "guarani sign": "\u74dc\u62c9\u5c3c\u7b26\u53f7", | ||||
| "austral sign": "\u6fb3\u5143\u7b26\u53f7", | ||||
| "hryvnia sign": "\u683c\u91cc\u592b\u5c3c\u4e9a\u7b26\u53f7", | ||||
| "cedi sign": "\u585e\u5730\u7b26\u53f7", | ||||
| "livre tournois sign": "\u91cc\u5f17\u5f17\u5c14\u7b26\u53f7", | ||||
| "spesmilo sign": "spesmilo\u7b26\u53f7", | ||||
| "tenge sign": "\u575a\u6208\u7b26\u53f7", | ||||
| "indian rupee sign": "\u5370\u5ea6\u5362\u6bd4", | ||||
| "turkish lira sign": "\u571f\u8033\u5176\u91cc\u62c9", | ||||
| "nordic mark sign": "\u5317\u6b27\u9a6c\u514b", | ||||
| "manat sign": "\u9a6c\u7eb3\u7279\u7b26\u53f7", | ||||
| "ruble sign": "\u5362\u5e03\u7b26\u53f7", | ||||
| "yen character": "\u65e5\u5143\u5b57\u6837", | ||||
| "yuan character": "\u4eba\u6c11\u5e01\u5143\u5b57\u6837", | ||||
| "yuan character, in hong kong and taiwan": "\u5143\u5b57\u6837\uff08\u6e2f\u53f0\u5730\u533a\uff09", | ||||
| "yen\/yuan character variant one": "\u5143\u5b57\u6837\uff08\u5927\u5199\uff09", | ||||
| "Loading emoticons...": "\u52a0\u8f7d\u8868\u60c5\u7b26\u53f7...", | ||||
| "Could not load emoticons": "\u4e0d\u80fd\u52a0\u8f7d\u8868\u60c5\u7b26\u53f7", | ||||
| "People": "\u4eba\u7c7b", | ||||
| "Animals and Nature": "\u52a8\u7269\u548c\u81ea\u7136", | ||||
| "Food and Drink": "\u98df\u7269\u548c\u996e\u54c1", | ||||
| "Activity": "\u6d3b\u52a8", | ||||
| "Travel and Places": "\u65c5\u6e38\u548c\u5730\u70b9", | ||||
| "Objects": "\u7269\u4ef6", | ||||
| "Flags": "\u65d7\u5e1c", | ||||
| "Characters": "\u5b57\u7b26", | ||||
| "Characters (no spaces)": "\u5b57\u7b26(\u65e0\u7a7a\u683c)", | ||||
| "{0} characters": "{0} \u4e2a\u5b57\u7b26", | ||||
| "Error: Form submit field collision.": "\u9519\u8bef: \u8868\u5355\u63d0\u4ea4\u5b57\u6bb5\u51b2\u7a81\u3002", | ||||
| "Error: No form element found.": "\u9519\u8bef: \u6ca1\u6709\u8868\u5355\u63a7\u4ef6\u3002", | ||||
| "Update": "\u66f4\u65b0", | ||||
| "Color swatch": "\u989c\u8272\u6837\u672c", | ||||
| "Turquoise": "\u9752\u7eff\u8272", | ||||
| "Green": "\u7eff\u8272", | ||||
| "Blue": "\u84dd\u8272", | ||||
| "Purple": "\u7d2b\u8272", | ||||
| "Navy Blue": "\u6d77\u519b\u84dd", | ||||
| "Dark Turquoise": "\u6df1\u84dd\u7eff\u8272", | ||||
| "Dark Green": "\u6df1\u7eff\u8272", | ||||
| "Medium Blue": "\u4e2d\u84dd\u8272", | ||||
| "Medium Purple": "\u4e2d\u7d2b\u8272", | ||||
| "Midnight Blue": "\u6df1\u84dd\u8272", | ||||
| "Yellow": "\u9ec4\u8272", | ||||
| "Orange": "\u6a59\u8272", | ||||
| "Red": "\u7ea2\u8272", | ||||
| "Light Gray": "\u6d45\u7070\u8272", | ||||
| "Gray": "\u7070\u8272", | ||||
| "Dark Yellow": "\u6697\u9ec4\u8272", | ||||
| "Dark Orange": "\u6df1\u6a59\u8272", | ||||
| "Dark Red": "\u6df1\u7ea2\u8272", | ||||
| "Medium Gray": "\u4e2d\u7070\u8272", | ||||
| "Dark Gray": "\u6df1\u7070\u8272", | ||||
| "Light Green": "\u6d45\u7eff\u8272", | ||||
| "Light Yellow": "\u6d45\u9ec4\u8272", | ||||
| "Light Red": "\u6d45\u7ea2\u8272", | ||||
| "Light Purple": "\u6d45\u7d2b\u8272", | ||||
| "Light Blue": "\u6d45\u84dd\u8272", | ||||
| "Dark Purple": "\u6df1\u7d2b\u8272", | ||||
| "Dark Blue": "\u6df1\u84dd\u8272", | ||||
| "Black": "\u9ed1\u8272", | ||||
| "White": "\u767d\u8272", | ||||
| "Switch to or from fullscreen mode": "\u5207\u6362\u5168\u5c4f\u6a21\u5f0f", | ||||
| "Open help dialog": "\u6253\u5f00\u5e2e\u52a9\u5bf9\u8bdd\u6846", | ||||
| "history": "\u5386\u53f2", | ||||
| "styles": "\u6837\u5f0f", | ||||
| "formatting": "\u683c\u5f0f\u5316", | ||||
| "alignment": "\u5bf9\u9f50", | ||||
| "indentation": "\u7f29\u8fdb", | ||||
| "permanent pen": "\u8bb0\u53f7\u7b14", | ||||
| "comments": "\u5907\u6ce8", | ||||
| "Format Painter": "\u683c\u5f0f\u5237", | ||||
| "Insert\/edit iframe": "\u63d2\u5165\/\u7f16\u8f91\u6846\u67b6", | ||||
| "Capitalization": "\u5927\u5199", | ||||
| "lowercase": "\u5c0f\u5199", | ||||
| "UPPERCASE": "\u5927\u5199", | ||||
| "Title Case": "\u9996\u5b57\u6bcd\u5927\u5199", | ||||
| "Permanent Pen Properties": "\u6c38\u4e45\u7b14\u5c5e\u6027", | ||||
| "Permanent pen properties...": "\u6c38\u4e45\u7b14\u5c5e\u6027...", | ||||
| "Font": "\u5b57\u4f53", | ||||
| "Size": "\u5b57\u53f7", | ||||
| "More...": "\u66f4\u591a...", | ||||
| "Spellcheck Language": "\u62fc\u5199\u68c0\u67e5\u8bed\u8a00", | ||||
| "Select...": "\u9009\u62e9...", | ||||
| "Preferences": "\u9996\u9009\u9879", | ||||
| "Yes": "\u662f", | ||||
| "No": "\u5426", | ||||
| "Keyboard Navigation": "\u952e\u76d8\u6307\u5f15", | ||||
| "Version": "\u7248\u672c", | ||||
| "Anchor": "\u951a\u70b9", | ||||
| "Special character": "\u7279\u6b8a\u7b26\u53f7", | ||||
| "Code sample": "\u4ee3\u7801\u793a\u4f8b", | ||||
| "Color": "\u989c\u8272", | ||||
| "Emoticons": "\u8868\u60c5", | ||||
| "Document properties": "\u6587\u6863\u5c5e\u6027", | ||||
| "Image": "\u56fe\u7247", | ||||
| "Insert link": "\u63d2\u5165\u94fe\u63a5", | ||||
| "Target": "\u6253\u5f00\u65b9\u5f0f", | ||||
| "Link": "\u94fe\u63a5", | ||||
| "Poster": "\u5c01\u9762", | ||||
| "Media": "\u5a92\u4f53", | ||||
| "Print": "\u6253\u5370", | ||||
| "Prev": "\u4e0a\u4e00\u4e2a", | ||||
| "Find and replace": "\u67e5\u627e\u548c\u66ff\u6362", | ||||
| "Whole words": "\u5168\u5b57\u5339\u914d", | ||||
| "Spellcheck": "\u62fc\u5199\u68c0\u67e5", | ||||
| "Caption": "\u6807\u9898", | ||||
| "Insert template": "\u63d2\u5165\u6a21\u677f" | ||||
| }); | ||||
							
								
								
									
										419
									
								
								Modules/TinyMCE/langs/zh_TW.js
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										419
									
								
								Modules/TinyMCE/langs/zh_TW.js
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,419 @@ | ||||
| tinymce.addI18n('zh_TW',{ | ||||
| "Redo": "\u91cd\u505a", | ||||
| "Undo": "\u64a4\u92b7", | ||||
| "Cut": "\u526a\u4e0b", | ||||
| "Copy": "\u8907\u88fd", | ||||
| "Paste": "\u8cbc\u4e0a", | ||||
| "Select all": "\u5168\u9078", | ||||
| "New document": "\u65b0\u6587\u4ef6", | ||||
| "Ok": "\u78ba\u5b9a", | ||||
| "Cancel": "\u53d6\u6d88", | ||||
| "Visual aids": "\u5c0f\u5e6b\u624b", | ||||
| "Bold": "\u7c97\u9ad4", | ||||
| "Italic": "\u659c\u9ad4", | ||||
| "Underline": "\u4e0b\u5283\u7dda", | ||||
| "Strikethrough": "\u522a\u9664\u7dda", | ||||
| "Superscript": "\u4e0a\u6a19", | ||||
| "Subscript": "\u4e0b\u6a19", | ||||
| "Clear formatting": "\u6e05\u9664\u683c\u5f0f", | ||||
| "Align left": "\u5de6\u908a\u5c0d\u9f4a", | ||||
| "Align center": "\u4e2d\u9593\u5c0d\u9f4a", | ||||
| "Align right": "\u53f3\u908a\u5c0d\u9f4a", | ||||
| "Justify": "\u5de6\u53f3\u5c0d\u9f4a", | ||||
| "Bullet list": "\u9805\u76ee\u6e05\u55ae", | ||||
| "Numbered list": "\u6578\u5b57\u6e05\u55ae", | ||||
| "Decrease indent": "\u6e1b\u5c11\u7e2e\u6392", | ||||
| "Increase indent": "\u589e\u52a0\u7e2e\u6392", | ||||
| "Close": "\u95dc\u9589", | ||||
| "Formats": "\u683c\u5f0f", | ||||
| "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u60a8\u7684\u700f\u89bd\u5668\u4e0d\u652f\u63f4\u5b58\u53d6\u526a\u8cbc\u7c3f\uff0c\u53ef\u4ee5\u4f7f\u7528\u5feb\u901f\u9375 Ctrl + X\/C\/V \u4ee3\u66ff\u526a\u4e0b\u3001\u8907\u88fd\u8207\u8cbc\u4e0a\u3002", | ||||
| "Headers": "\u6a19\u984c", | ||||
| "Header 1": "\u6a19\u984c 1", | ||||
| "Header 2": "\u6a19\u984c 2", | ||||
| "Header 3": "\u6a19\u984c 3", | ||||
| "Header 4": "\u6a19\u984c 4", | ||||
| "Header 5": "\u6a19\u984c 5", | ||||
| "Header 6": "\u6a19\u984c 6", | ||||
| "Headings": "\u6a19\u984c", | ||||
| "Heading 1": "\u6a19\u984c1", | ||||
| "Heading 2": "\u6a19\u984c2", | ||||
| "Heading 3": "\u6a19\u984c3", | ||||
| "Heading 4": "\u6a19\u984c4", | ||||
| "Heading 5": "\u6a19\u984c5", | ||||
| "Heading 6": "\u6a19\u984c6", | ||||
| "Preformatted": "\u9810\u5148\u683c\u5f0f\u5316\u7684", | ||||
| "Div": "Div", | ||||
| "Pre": "Pre", | ||||
| "Code": "\u4ee3\u78bc", | ||||
| "Paragraph": "\u6bb5\u843d", | ||||
| "Blockquote": "\u5f15\u6587\u5340\u584a", | ||||
| "Inline": "\u5167\u806f", | ||||
| "Blocks": "\u57fa\u584a", | ||||
| "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u76ee\u524d\u5c07\u4ee5\u7d14\u6587\u5b57\u7684\u6a21\u5f0f\u8cbc\u4e0a\uff0c\u60a8\u53ef\u4ee5\u518d\u9ede\u9078\u4e00\u6b21\u53d6\u6d88\u3002", | ||||
| "Fonts": "\u5b57\u578b", | ||||
| "Font Sizes": "\u5b57\u578b\u5927\u5c0f", | ||||
| "Class": "\u985e\u578b", | ||||
| "Browse for an image": "\u5f9e\u5716\u7247\u4e2d\u700f\u89bd", | ||||
| "OR": "\u6216", | ||||
| "Drop an image here": "\u62d6\u66f3\u5716\u7247\u81f3\u6b64", | ||||
| "Upload": "\u4e0a\u50b3", | ||||
| "Block": "\u5340\u584a", | ||||
| "Align": "\u5c0d\u9f4a", | ||||
| "Default": "\u9810\u8a2d", | ||||
| "Circle": "\u7a7a\u5fc3\u5713", | ||||
| "Disc": "\u5be6\u5fc3\u5713", | ||||
| "Square": "\u6b63\u65b9\u5f62", | ||||
| "Lower Alpha": "\u5c0f\u5beb\u82f1\u6587\u5b57\u6bcd", | ||||
| "Lower Greek": "\u5e0c\u81d8\u5b57\u6bcd", | ||||
| "Lower Roman": "\u5c0f\u5beb\u7f85\u99ac\u6578\u5b57", | ||||
| "Upper Alpha": "\u5927\u5beb\u82f1\u6587\u5b57\u6bcd", | ||||
| "Upper Roman": "\u5927\u5beb\u7f85\u99ac\u6578\u5b57", | ||||
| "Anchor...": "\u9328\u9ede...", | ||||
| "Name": "\u540d\u7a31", | ||||
| "Id": "Id", | ||||
| "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "Id\u61c9\u4ee5\u5b57\u6bcd\u958b\u982d\uff0c\u5f8c\u9762\u63a5\u8457\u5b57\u6bcd\uff0c\u6578\u5b57\uff0c\u7834\u6298\u865f\uff0c\u9ede\u6578\uff0c\u5192\u865f\u6216\u4e0b\u5283\u7dda\u3002", | ||||
| "You have unsaved changes are you sure you want to navigate away?": "\u7de8\u8f2f\u5c1a\u672a\u88ab\u5132\u5b58\uff0c\u4f60\u78ba\u5b9a\u8981\u96e2\u958b\uff1f", | ||||
| "Restore last draft": "\u8f09\u5165\u4e0a\u4e00\u6b21\u7de8\u8f2f\u7684\u8349\u7a3f", | ||||
| "Special character...": "\u7279\u6b8a\u5b57\u5143......", | ||||
| "Source code": "\u539f\u59cb\u78bc", | ||||
| "Insert\/Edit code sample": "\u63d2\u5165\/\u7de8\u8f2f \u7a0b\u5f0f\u78bc\u7bc4\u4f8b", | ||||
| "Language": "\u8a9e\u8a00", | ||||
| "Code sample...": "\u7a0b\u5f0f\u78bc\u7bc4\u4f8b...", | ||||
| "Color Picker": "\u9078\u8272\u5668", | ||||
| "R": "\u7d05", | ||||
| "G": "\u7da0", | ||||
| "B": "\u85cd", | ||||
| "Left to right": "\u5f9e\u5de6\u5230\u53f3", | ||||
| "Right to left": "\u5f9e\u53f3\u5230\u5de6", | ||||
| "Emoticons...": "\u8868\u60c5\u7b26\u865f\u2026", | ||||
| "Metadata and Document Properties": "\u5f8c\u8a2d\u8cc7\u6599\u8207\u6587\u4ef6\u5c6c\u6027", | ||||
| "Title": "\u6a19\u984c", | ||||
| "Keywords": "\u95dc\u9375\u5b57", | ||||
| "Description": "\u63cf\u8ff0", | ||||
| "Robots": "\u6a5f\u5668\u4eba", | ||||
| "Author": "\u4f5c\u8005", | ||||
| "Encoding": "\u7de8\u78bc", | ||||
| "Fullscreen": "\u5168\u87a2\u5e55", | ||||
| "Action": "\u52d5\u4f5c", | ||||
| "Shortcut": "\u5feb\u901f\u9375", | ||||
| "Help": "\u5e6b\u52a9", | ||||
| "Address": "\u5730\u5740", | ||||
| "Focus to menubar": "\u8df3\u81f3\u9078\u55ae\u5217", | ||||
| "Focus to toolbar": "\u8df3\u81f3\u5de5\u5177\u5217", | ||||
| "Focus to element path": "\u8df3\u81f3HTML\u5143\u7d20\u5217", | ||||
| "Focus to contextual toolbar": "\u8df3\u81f3\u5feb\u6377\u9078\u55ae", | ||||
| "Insert link (if link plugin activated)": "\u65b0\u589e\u6377\u5f91 (\u6377\u5f91\u5916\u639b\u555f\u7528\u6642)", | ||||
| "Save (if save plugin activated)": "\u5132\u5b58 (\u5132\u5b58\u5916\u639b\u555f\u7528\u6642)", | ||||
| "Find (if searchreplace plugin activated)": "\u5c0b\u627e (\u5c0b\u627e\u53d6\u4ee3\u5916\u639b\u555f\u7528\u6642)", | ||||
| "Plugins installed ({0}):": "({0}) \u500b\u5916\u639b\u5df2\u5b89\u88dd\uff1a", | ||||
| "Premium plugins:": "\u52a0\u503c\u5916\u639b\uff1a", | ||||
| "Learn more...": "\u4e86\u89e3\u66f4\u591a...", | ||||
| "You are using {0}": "\u60a8\u6b63\u5728\u4f7f\u7528 {0}", | ||||
| "Plugins": "\u5916\u639b", | ||||
| "Handy Shortcuts": "\u5feb\u901f\u9375", | ||||
| "Horizontal line": "\u6c34\u5e73\u7dda", | ||||
| "Insert\/edit image": "\u63d2\u5165\/\u7de8\u8f2f \u5716\u7247", | ||||
| "Image description": "\u5716\u7247\u63cf\u8ff0", | ||||
| "Source": "\u5716\u7247\u7db2\u5740", | ||||
| "Dimensions": "\u5c3a\u5bf8", | ||||
| "Constrain proportions": "\u7b49\u6bd4\u4f8b\u7e2e\u653e", | ||||
| "General": "\u4e00\u822c", | ||||
| "Advanced": "\u9032\u968e", | ||||
| "Style": "\u6a23\u5f0f", | ||||
| "Vertical space": "\u9ad8\u5ea6", | ||||
| "Horizontal space": "\u5bec\u5ea6", | ||||
| "Border": "\u908a\u6846", | ||||
| "Insert image": "\u63d2\u5165\u5716\u7247", | ||||
| "Image...": "\u5716\u7247......", | ||||
| "Image list": "\u5716\u7247\u6e05\u55ae", | ||||
| "Rotate counterclockwise": "\u9006\u6642\u91dd\u65cb\u8f49", | ||||
| "Rotate clockwise": "\u9806\u6642\u91dd\u65cb\u8f49", | ||||
| "Flip vertically": "\u5782\u76f4\u7ffb\u8f49", | ||||
| "Flip horizontally": "\u6c34\u5e73\u7ffb\u8f49", | ||||
| "Edit image": "\u7de8\u8f2f\u5716\u7247", | ||||
| "Image options": "\u5716\u7247\u9078\u9805", | ||||
| "Zoom in": "\u653e\u5927", | ||||
| "Zoom out": "\u7e2e\u5c0f", | ||||
| "Crop": "\u88c1\u526a", | ||||
| "Resize": "\u8abf\u6574\u5927\u5c0f", | ||||
| "Orientation": "\u65b9\u5411", | ||||
| "Brightness": "\u4eae\u5ea6", | ||||
| "Sharpen": "\u92b3\u5316", | ||||
| "Contrast": "\u5c0d\u6bd4", | ||||
| "Color levels": "\u984f\u8272\u5c64\u6b21", | ||||
| "Gamma": "\u4f3d\u99ac\u503c", | ||||
| "Invert": "\u53cd\u8f49", | ||||
| "Apply": "\u61c9\u7528", | ||||
| "Back": "\u5f8c\u9000", | ||||
| "Insert date\/time": "\u63d2\u5165 \u65e5\u671f\/\u6642\u9593", | ||||
| "Date\/time": "\u65e5\u671f\/\u6642\u9593", | ||||
| "Insert\/Edit Link": "\u63d2\u5165\/\u7de8\u8f2f\u9023\u7d50", | ||||
| "Insert\/edit link": "\u63d2\u5165\/\u7de8\u8f2f\u9023\u7d50", | ||||
| "Text to display": "\u986f\u793a\u6587\u5b57", | ||||
| "Url": "\u7db2\u5740", | ||||
| "Open link in...": "\u958b\u555f\u9023\u7d50\u65bc...", | ||||
| "Current window": "\u76ee\u524d\u8996\u7a97", | ||||
| "None": "\u7121", | ||||
| "New window": "\u53e6\u958b\u8996\u7a97", | ||||
| "Remove link": "\u79fb\u9664\u9023\u7d50", | ||||
| "Anchors": "\u52a0\u5165\u9328\u9ede", | ||||
| "Link...": "\u9023\u7d50...", | ||||
| "Paste or type a link": "\u8cbc\u4e0a\u6216\u8f38\u5165\u9023\u7d50", | ||||
| "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5beb\u7684URL\u70ba\u96fb\u5b50\u90f5\u4ef6\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7db4\u55ce\uff1f", | ||||
| "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5beb\u7684URL\u5c6c\u65bc\u5916\u90e8\u93c8\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7db4\u55ce\uff1f", | ||||
| "Link list": "\u9023\u7d50\u6e05\u55ae", | ||||
| "Insert video": "\u63d2\u5165\u5f71\u97f3", | ||||
| "Insert\/edit video": "\u63d2\u4ef6\/\u7de8\u8f2f \u5f71\u97f3", | ||||
| "Insert\/edit media": "\u63d2\u5165\/\u7de8\u8f2f \u5a92\u9ad4", | ||||
| "Alternative source": "\u66ff\u4ee3\u5f71\u97f3", | ||||
| "Alternative source URL": "\u66ff\u4ee3\u4f86\u6e90URL", | ||||
| "Media poster (Image URL)": "\u5a92\u9ad4\u6d77\u5831\uff08\u5f71\u50cfImage URL\uff09", | ||||
| "Paste your embed code below:": "\u8acb\u5c07\u60a8\u7684\u5d4c\u5165\u5f0f\u7a0b\u5f0f\u78bc\u8cbc\u5728\u4e0b\u9762:", | ||||
| "Embed": "\u5d4c\u5165\u78bc", | ||||
| "Media...": "\u5a92\u9ad4...", | ||||
| "Nonbreaking space": "\u4e0d\u5206\u884c\u7684\u7a7a\u683c", | ||||
| "Page break": "\u5206\u9801", | ||||
| "Paste as text": "\u4ee5\u7d14\u6587\u5b57\u8cbc\u4e0a", | ||||
| "Preview": "\u9810\u89bd", | ||||
| "Print...": "\u5217\u5370...", | ||||
| "Save": "\u5132\u5b58", | ||||
| "Find": "\u641c\u5c0b", | ||||
| "Replace with": "\u66f4\u63db", | ||||
| "Replace": "\u66ff\u63db", | ||||
| "Replace all": "\u66ff\u63db\u5168\u90e8", | ||||
| "Previous": "\u4e0a\u4e00\u500b", | ||||
| "Next": "\u4e0b\u4e00\u500b", | ||||
| "Find and replace...": "\u5c0b\u627e\u53ca\u53d6\u4ee3...", | ||||
| "Could not find the specified string.": "\u7121\u6cd5\u67e5\u8a62\u5230\u6b64\u7279\u5b9a\u5b57\u4e32", | ||||
| "Match case": "\u76f8\u5339\u914d\u6848\u4ef6", | ||||
| "Find whole words only": "\u50c5\u627e\u51fa\u5b8c\u6574\u5b57\u532f", | ||||
| "Spell check": "\u62fc\u5beb\u6aa2\u67e5", | ||||
| "Ignore": "\u5ffd\u7565", | ||||
| "Ignore all": "\u5ffd\u7565\u6240\u6709", | ||||
| "Finish": "\u5b8c\u6210", | ||||
| "Add to Dictionary": "\u52a0\u5165\u5b57\u5178\u4e2d", | ||||
| "Insert table": "\u63d2\u5165\u8868\u683c", | ||||
| "Table properties": "\u8868\u683c\u5c6c\u6027", | ||||
| "Delete table": "\u522a\u9664\u8868\u683c", | ||||
| "Cell": "\u5132\u5b58\u683c", | ||||
| "Row": "\u5217", | ||||
| "Column": "\u884c", | ||||
| "Cell properties": "\u5132\u5b58\u683c\u5c6c\u6027", | ||||
| "Merge cells": "\u5408\u4f75\u5132\u5b58\u683c", | ||||
| "Split cell": "\u5206\u5272\u5132\u5b58\u683c", | ||||
| "Insert row before": "\u63d2\u5165\u5217\u5728...\u4e4b\u524d", | ||||
| "Insert row after": "\u63d2\u5165\u5217\u5728...\u4e4b\u5f8c", | ||||
| "Delete row": "\u522a\u9664\u5217", | ||||
| "Row properties": "\u5217\u5c6c\u6027", | ||||
| "Cut row": "\u526a\u4e0b\u5217", | ||||
| "Copy row": "\u8907\u88fd\u5217", | ||||
| "Paste row before": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u524d", | ||||
| "Paste row after": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u5f8c", | ||||
| "Insert column before": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u524d", | ||||
| "Insert column after": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u5f8c", | ||||
| "Delete column": "\u522a\u9664\u884c", | ||||
| "Cols": "\u6b04\u4f4d\u6bb5", | ||||
| "Rows": "\u5217", | ||||
| "Width": "\u5bec\u5ea6", | ||||
| "Height": "\u9ad8\u5ea6", | ||||
| "Cell spacing": "\u5132\u5b58\u683c\u5f97\u9593\u8ddd", | ||||
| "Cell padding": "\u5132\u5b58\u683c\u7684\u908a\u8ddd", | ||||
| "Show caption": "\u986f\u793a\u6a19\u984c", | ||||
| "Left": "\u5de6\u908a", | ||||
| "Center": "\u4e2d\u9593", | ||||
| "Right": "\u53f3\u908a", | ||||
| "Cell type": "\u5132\u5b58\u683c\u7684\u985e\u578b", | ||||
| "Scope": "\u7bc4\u570d", | ||||
| "Alignment": "\u5c0d\u9f4a", | ||||
| "H Align": "\u6c34\u5e73\u4f4d\u7f6e", | ||||
| "V Align": "\u5782\u76f4\u4f4d\u7f6e", | ||||
| "Top": "\u7f6e\u9802", | ||||
| "Middle": "\u7f6e\u4e2d", | ||||
| "Bottom": "\u7f6e\u5e95", | ||||
| "Header cell": "\u6a19\u982d\u5132\u5b58\u683c", | ||||
| "Row group": "\u5217\u7fa4\u7d44", | ||||
| "Column group": "\u6b04\u4f4d\u7fa4\u7d44", | ||||
| "Row type": "\u884c\u7684\u985e\u578b", | ||||
| "Header": "\u6a19\u982d", | ||||
| "Body": "\u4e3b\u9ad4", | ||||
| "Footer": "\u9801\u5c3e", | ||||
| "Border color": "\u908a\u6846\u984f\u8272", | ||||
| "Insert template...": "\u63d2\u5165\u6a23\u7248...", | ||||
| "Templates": "\u6a23\u7248", | ||||
| "Template": "\u6a23\u677f", | ||||
| "Text color": "\u6587\u5b57\u984f\u8272", | ||||
| "Background color": "\u80cc\u666f\u984f\u8272", | ||||
| "Custom...": "\u81ea\u8a02", | ||||
| "Custom color": "\u81ea\u8a02\u984f\u8272", | ||||
| "No color": "No color", | ||||
| "Remove color": "\u79fb\u9664\u984f\u8272", | ||||
| "Table of Contents": "\u76ee\u9304", | ||||
| "Show blocks": "\u986f\u793a\u5340\u584a\u8cc7\u8a0a", | ||||
| "Show invisible characters": "\u986f\u793a\u96b1\u85cf\u5b57\u5143", | ||||
| "Word count": "\u8a08\u7b97\u5b57\u6578", | ||||
| "Count": "\u8a08\u7b97", | ||||
| "Document": "\u6587\u4ef6", | ||||
| "Selection": "\u9078\u9805", | ||||
| "Words": "\u5b57\u6578", | ||||
| "Words: {0}": "\u5b57\u6578\uff1a{0}", | ||||
| "{0} words": "{0} \u5b57\u5143", | ||||
| "File": "\u6a94\u6848", | ||||
| "Edit": "\u7de8\u8f2f", | ||||
| "Insert": "\u63d2\u5165", | ||||
| "View": "\u6aa2\u8996", | ||||
| "Format": "\u683c\u5f0f", | ||||
| "Table": "\u8868\u683c", | ||||
| "Tools": "\u5de5\u5177", | ||||
| "Powered by {0}": "\u7531 {0} \u63d0\u4f9b", | ||||
| "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u8c50\u5bcc\u7684\u6587\u672c\u5340\u57df\u3002\u6309ALT-F9\u524d\u5f80\u4e3b\u9078\u55ae\u3002\u6309ALT-F10\u547c\u53eb\u5de5\u5177\u6b04\u3002\u6309ALT-0\u5c0b\u6c42\u5e6b\u52a9", | ||||
| "Image title": "\u5716\u7247\u6a19\u984c", | ||||
| "Border width": "\u6846\u7dda\u5bec\u5ea6", | ||||
| "Border style": "\u6846\u7dda\u6a23\u5f0f", | ||||
| "Error": "\u932f\u8aa4", | ||||
| "Warn": "\u8b66\u544a", | ||||
| "Valid": "\u6709\u6548", | ||||
| "To open the popup, press Shift+Enter": "\u8981\u958b\u555f\u5f48\u51fa\u8996\u7a97\uff0c\u8acb\u6309Shift+Enter", | ||||
| "Rich Text Area. Press ALT-0 for help.": "\u5bcc\u6587\u672c\u5340\u57df\u3002\u8acb\u6309ALT-0\u5c0b\u6c42\u5354\u52a9\u3002", | ||||
| "System Font": "\u7cfb\u7d71\u5b57\u578b", | ||||
| "Failed to upload image: {0}": "\u7121\u6cd5\u4e0a\u50b3\u5f71\u50cf\uff1a{0}", | ||||
| "Failed to load plugin: {0} from url {1}": "\u7121\u6cd5\u4e0a\u50b3\u63d2\u4ef6\uff1a{0}\u81eaurl{1}", | ||||
| "Failed to load plugin url: {0}": "\u7121\u6cd5\u4e0a\u50b3\u63d2\u4ef6\uff1a{0}", | ||||
| "Failed to initialize plugin: {0}": "\u7121\u6cd5\u555f\u52d5\u63d2\u4ef6\uff1a{0}", | ||||
| "example": "\u7bc4\u4f8b", | ||||
| "Search": "\u641c\u7d22", | ||||
| "All": "\u5168\u90e8", | ||||
| "Currency": "\u8ca8\u5e63", | ||||
| "Text": "\u6587\u672c", | ||||
| "Quotations": "\u5f15\u7528", | ||||
| "Mathematical": "\u6578\u5b78", | ||||
| "Extended Latin": "\u62c9\u4e01\u5b57\u6bcd\u64f4\u5145", | ||||
| "Symbols": "\u7b26\u865f", | ||||
| "Arrows": "\u7bad\u982d", | ||||
| "User Defined": "\u4f7f\u7528\u8005\u5df2\u5b9a\u7fa9", | ||||
| "dollar sign": "\u7f8e\u5143\u7b26\u865f", | ||||
| "currency sign": "\u8ca8\u5e63\u7b26\u865f", | ||||
| "euro-currency sign": "\u6b50\u5143\u7b26\u865f", | ||||
| "colon sign": "\u79d1\u6717\u7b26\u865f", | ||||
| "cruzeiro sign": "\u514b\u9b6f\u8cfd\u7f85\u7b26\u865f", | ||||
| "french franc sign": "\u6cd5\u6717\u7b26\u865f", | ||||
| "lira sign": "\u91cc\u62c9\u7b26\u865f", | ||||
| "mill sign": "\u6587\u7b26\u865f", | ||||
| "naira sign": "\u5948\u62c9\u7b26\u865f", | ||||
| "peseta sign": "\u6bd4\u585e\u5854\u7b26\u865f", | ||||
| "rupee sign": "\u76e7\u6bd4\u7b26\u865f", | ||||
| "won sign": "\u97d3\u571c\u7b26\u865f", | ||||
| "new sheqel sign": "\u65b0\u8b1d\u514b\u723e\u7b26\u865f", | ||||
| "dong sign": "\u8d8a\u5357\u76fe\u7b26\u865f", | ||||
| "kip sign": "\u8001\u64be\u5e63\u7b26\u865f", | ||||
| "tugrik sign": "\u8499\u53e4\u5e63\u7b26\u865f", | ||||
| "drachma sign": "\u5fb7\u514b\u62c9\u99ac\u7b26\u865f", | ||||
| "german penny symbol": "\u5fb7\u570b\u5206\u7b26\u865f", | ||||
| "peso sign": "\u62ab\u7d22\u7b26\u865f", | ||||
| "guarani sign": "\u5df4\u62c9\u572d\u5e63\u7b26\u865f", | ||||
| "austral sign": "\u963f\u6839\u5ef7\u5e63\u7b26\u865f", | ||||
| "hryvnia sign": "\u70cf\u514b\u862d\u5e63\u7b26\u865f", | ||||
| "cedi sign": "\u8fe6\u7d0d\u5e63\u7b26\u865f", | ||||
| "livre tournois sign": "\u91cc\u5f17\u723e\u7b26\u865f", | ||||
| "spesmilo sign": "\u570b\u969b\u5e63\u7b26\u865f", | ||||
| "tenge sign": "\u54c8\u85a9\u514b\u5e63\u7b26\u865f", | ||||
| "indian rupee sign": "\u5370\u5ea6\u76e7\u6bd4\u7b26\u865f", | ||||
| "turkish lira sign": "\u571f\u8033\u5176\u91cc\u62c9\u7b26\u865f", | ||||
| "nordic mark sign": "\u5317\u6b50\u99ac\u514b\u7b26\u865f", | ||||
| "manat sign": "\u4e9e\u585e\u62dc\u7136\u5e63\u7b26\u865f", | ||||
| "ruble sign": "\u76e7\u5e03\u7b26\u865f", | ||||
| "yen character": "\u65e5\u5713\u7b26\u865f", | ||||
| "yuan character": "\u4eba\u6c11\u5e63\u7b26\u865f", | ||||
| "yuan character, in hong kong and taiwan": "\u6e2f\u5143\u8207\u53f0\u5e63\u7b26\u865f", | ||||
| "yen\/yuan character variant one": "\u65e5\u5713\/\u4eba\u6c11\u5e63\u7b26\u865f\u8b8a\u5316\u578b", | ||||
| "Loading emoticons...": "\u8f09\u5165\u8868\u60c5\u7b26\u865f\u2026", | ||||
| "Could not load emoticons": "\u7121\u6cd5\u8f09\u5165\u8868\u60c5\u7b26\u865f", | ||||
| "People": "\u4eba", | ||||
| "Animals and Nature": "\u52d5\u7269\u8207\u81ea\u7136", | ||||
| "Food and Drink": "\u98f2\u98df", | ||||
| "Activity": "\u6d3b\u52d5", | ||||
| "Travel and Places": "\u65c5\u884c\u8207\u5730\u9ede", | ||||
| "Objects": "\u7269\u4ef6", | ||||
| "Flags": "\u65d7\u6a19", | ||||
| "Characters": "\u5b57\u5143", | ||||
| "Characters (no spaces)": "\u5b57\u5143\uff08\u7121\u7a7a\u683c\uff09", | ||||
| "{0} characters": "{0}\u5b57\u5143", | ||||
| "Error: Form submit field collision.": "\u932f\u8aa4\uff1a\u8868\u683c\u905e\u4ea4\u6b04\u4f4d\u885d\u7a81\u3002", | ||||
| "Error: No form element found.": "\u932f\u8aa4\uff1a\u627e\u4e0d\u5230\u8868\u683c\u5143\u7d20\u3002", | ||||
| "Update": "\u66f4\u65b0", | ||||
| "Color swatch": "\u8272\u5f69\u6a23\u672c", | ||||
| "Turquoise": "\u571f\u8033\u5176\u85cd", | ||||
| "Green": "\u7da0\u8272", | ||||
| "Blue": "\u85cd\u8272", | ||||
| "Purple": "\u7d2b\u8272", | ||||
| "Navy Blue": "\u6df1\u85cd\u8272", | ||||
| "Dark Turquoise": "\u6df1\u571f\u8033\u5176\u85cd", | ||||
| "Dark Green": "\u6df1\u7da0\u8272", | ||||
| "Medium Blue": "\u4e2d\u85cd\u8272", | ||||
| "Medium Purple": "\u4e2d\u7d2b\u8272", | ||||
| "Midnight Blue": "\u9ed1\u85cd\u8272", | ||||
| "Yellow": "\u9ec3\u8272", | ||||
| "Orange": "\u6a59\u8272", | ||||
| "Red": "\u7d05\u8272", | ||||
| "Light Gray": "\u6dfa\u7070\u8272", | ||||
| "Gray": "\u7070\u8272", | ||||
| "Dark Yellow": "\u6df1\u9ec3\u8272", | ||||
| "Dark Orange": "\u6df1\u6a59\u8272", | ||||
| "Dark Red": "\u6697\u7d05\u8272", | ||||
| "Medium Gray": "\u4e2d\u7070\u8272", | ||||
| "Dark Gray": "\u6df1\u7070\u8272", | ||||
| "Light Green": "\u6de1\u7da0\u8272", | ||||
| "Light Yellow": "\u6dfa\u9ec3\u8272", | ||||
| "Light Red": "\u6dfa\u7d05\u8272", | ||||
| "Light Purple": "\u6dfa\u7d2b\u8272", | ||||
| "Light Blue": "\u6dfa\u85cd\u8272", | ||||
| "Dark Purple": "\u6df1\u7d2b\u8272", | ||||
| "Dark Blue": "\u6df1\u85cd\u8272", | ||||
| "Black": "\u9ed1\u8272", | ||||
| "White": "\u767d\u8272", | ||||
| "Switch to or from fullscreen mode": "\u8f49\u63db\u81ea\/\u81f3\u5168\u87a2\u5e55\u6a21\u5f0f", | ||||
| "Open help dialog": "\u958b\u555f\u5354\u52a9\u5c0d\u8a71", | ||||
| "history": "\u6b77\u53f2", | ||||
| "styles": "\u6a23\u5f0f", | ||||
| "formatting": "\u683c\u5f0f", | ||||
| "alignment": "\u5c0d\u9f4a", | ||||
| "indentation": "\u7e2e\u6392", | ||||
| "permanent pen": "\u6c38\u4e45\u6027\u7b46", | ||||
| "comments": "\u8a3b\u89e3", | ||||
| "Format Painter": "\u8907\u88fd\u683c\u5f0f", | ||||
| "Insert\/edit iframe": "\u63d2\u5165\/\u7de8\u8f2fiframe", | ||||
| "Capitalization": "\u5927\u5beb", | ||||
| "lowercase": "\u5c0f\u5beb", | ||||
| "UPPERCASE": "\u5927\u5beb", | ||||
| "Title Case": "\u5b57\u9996\u5927\u5beb", | ||||
| "Permanent Pen Properties": "\u6c38\u4e45\u6a19\u8a18\u5c6c\u6027", | ||||
| "Permanent pen properties...": "\u6c38\u4e45\u6a19\u8a18\u5c6c\u6027......", | ||||
| "Font": "\u5b57\u578b", | ||||
| "Size": "\u5b57\u5f62\u5927\u5c0f", | ||||
| "More...": "\u66f4\u591a\u8cc7\u8a0a......", | ||||
| "Spellcheck Language": "\u62fc\u5beb\u8a9e\u8a00", | ||||
| "Select...": "\u9078\u64c7......", | ||||
| "Preferences": "\u9996\u9078\u9805", | ||||
| "Yes": "\u662f", | ||||
| "No": "\u5426", | ||||
| "Keyboard Navigation": "\u9375\u76e4\u5c0e\u822a", | ||||
| "Version": "\u7248\u672c", | ||||
| "Anchor": "\u52a0\u5165\u9328\u9ede", | ||||
| "Special character": "\u7279\u6b8a\u5b57\u5143", | ||||
| "Code sample": "\u7a0b\u5f0f\u78bc\u7bc4\u4f8b", | ||||
| "Color": "\u984f\u8272", | ||||
| "Emoticons": "\u8868\u60c5", | ||||
| "Document properties": "\u6587\u4ef6\u7684\u5c6c\u6027", | ||||
| "Image": "\u5716\u7247", | ||||
| "Insert link": "\u63d2\u5165\u9023\u7d50", | ||||
| "Target": "\u958b\u555f\u65b9\u5f0f", | ||||
| "Link": "\u9023\u7d50", | ||||
| "Poster": "\u9810\u89bd\u5716\u7247", | ||||
| "Media": "\u5a92\u9ad4", | ||||
| "Print": "\u5217\u5370", | ||||
| "Prev": "\u4e0a\u4e00\u500b", | ||||
| "Find and replace": "\u5c0b\u627e\u53ca\u53d6\u4ee3", | ||||
| "Whole words": "\u6574\u500b\u55ae\u5b57", | ||||
| "Spellcheck": "\u62fc\u5b57\u6aa2\u67e5", | ||||
| "Caption": "\u8868\u683c\u6a19\u984c", | ||||
| "Insert template": "\u63d2\u5165\u6a23\u7248" | ||||
| }); | ||||
| @@ -69,7 +69,8 @@ | ||||
| 				"ElectronClient/gui/NoteEditor/utils/useMarkupToHtml.js", | ||||
| 				"ElectronClient/gui/NoteEditor/utils/useResourceRefresher.js", | ||||
| 				"ElectronClient/gui/NoteEditor/utils/useFormNote.js", | ||||
| 				"ElectronClient/gui/NoteEditor/utils/useResourceInfos.js" | ||||
| 				"ElectronClient/gui/NoteEditor/utils/useResourceInfos.js", | ||||
| 				"Modules/TinyMCE/langs/*.js" | ||||
| 			], | ||||
| 			"folder_exclude_patterns": | ||||
| 			[ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user