├── .gitignore ├── README.md ├── app ├── Auth │ ├── CommentPolicy.php │ ├── OptionPolicy.php │ ├── PagePolicy.php │ ├── PostPolicy.php │ ├── TermPolicy.php │ └── UserPolicy.php ├── Controllers │ ├── CategoryController.php │ ├── CommentController.php │ ├── OptionController.php │ ├── PageController.php │ ├── PostController.php │ ├── TagController.php │ └── UserController.php ├── Http │ ├── Kernel.php │ └── Middleware │ │ └── VerifyNonce.php ├── Models │ ├── Attachment.php │ ├── Category.php │ ├── Comment.php │ ├── Option.php │ ├── Page.php │ ├── Post.php │ ├── Tag.php │ └── User.php └── Services │ └── AuthService.php ├── composer.json ├── config ├── app.php ├── editor.php ├── external.php ├── galaxy.php ├── paths.php └── urls.php ├── galaxy ├── init.php ├── package.json ├── resources ├── assets │ ├── js │ │ ├── admin.js │ │ └── theme.js │ └── sass │ │ ├── admin.scss │ │ └── theme.scss ├── components │ └── builder │ │ └── content.php ├── pages │ └── extensions │ │ └── theme-options.php ├── themes │ └── templates │ │ ├── 401.php │ │ ├── 404.php │ │ ├── 500.php │ │ ├── functions.php │ │ ├── index.php │ │ ├── screenshot.png │ │ └── style.css ├── views │ └── master.php └── visuals │ └── builder │ └── content.php ├── routes └── public.php ├── server.php ├── storage └── cache │ └── .gitignore ├── webpack.mix.js └── wordpress └── assets ├── components └── builder │ └── content.png ├── templates ├── admin │ ├── css │ │ └── admin.css │ └── js │ │ └── admin.js ├── mix-manifest.json ├── screenshot.png └── theme │ ├── css │ └── theme.css │ └── js │ └── theme.js └── typerocket ├── css ├── core.css ├── dev.css └── redactor.css ├── fonts ├── typerocket-icons.eot ├── typerocket-icons.svg ├── typerocket-icons.ttf └── typerocket-icons.woff ├── img ├── chosen-sprite.png └── chosen-sprite@2x.png ├── js ├── builder.ext.js ├── core.js ├── global.js ├── lib │ ├── chosen.min.js │ └── redactor │ │ ├── _langs │ │ ├── ar.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── en.js │ │ ├── es.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ko.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt_br.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── zh_cn.js │ │ └── zh_tw.js │ │ ├── _plugins │ │ ├── alignment │ │ │ ├── alignment.js │ │ │ └── alignment.min.js │ │ ├── beyondgrammar │ │ │ ├── beyondgrammar.js │ │ │ └── beyondgrammar.min.js │ │ ├── clips │ │ │ ├── clips.css │ │ │ ├── clips.js │ │ │ ├── clips.min.css │ │ │ └── clips.min.js │ │ ├── counter │ │ │ ├── counter.js │ │ │ └── counter.min.js │ │ ├── definedlinks │ │ │ ├── definedlinks.js │ │ │ └── definedlinks.min.js │ │ ├── filemanager │ │ │ ├── filemanager.css │ │ │ ├── filemanager.js │ │ │ ├── filemanager.min.css │ │ │ └── filemanager.min.js │ │ ├── fontcolor │ │ │ ├── fontcolor.js │ │ │ └── fontcolor.min.js │ │ ├── fontfamily │ │ │ ├── fontfamily.js │ │ │ └── fontfamily.min.js │ │ ├── fontsize │ │ │ ├── fontsize.js │ │ │ └── fontsize.min.js │ │ ├── fullscreen │ │ │ ├── fullscreen.js │ │ │ └── fullscreen.min.js │ │ ├── handle │ │ │ ├── handle.css │ │ │ ├── handle.js │ │ │ ├── handle.min.css │ │ │ └── handle.min.js │ │ ├── imagemanager │ │ │ ├── imagemanager.js │ │ │ └── imagemanager.min.js │ │ ├── inlinestyle │ │ │ ├── inlinestyle.css │ │ │ ├── inlinestyle.js │ │ │ ├── inlinestyle.min.css │ │ │ └── inlinestyle.min.js │ │ ├── limiter │ │ │ ├── limiter.js │ │ │ └── limiter.min.js │ │ ├── properties │ │ │ ├── properties.js │ │ │ └── properties.min.js │ │ ├── specialchars │ │ │ ├── specialchars.js │ │ │ └── specialchars.min.js │ │ ├── table │ │ │ ├── table.js │ │ │ └── table.min.js │ │ ├── textdirection │ │ │ ├── textdirection.js │ │ │ └── textdirection.min.js │ │ ├── textexpander │ │ │ ├── textexpander.js │ │ │ └── textexpander.min.js │ │ ├── variable │ │ │ ├── variable.css │ │ │ ├── variable.js │ │ │ ├── variable.min.css │ │ │ └── variable.min.js │ │ ├── video │ │ │ ├── video.js │ │ │ └── video.min.js │ │ └── widget │ │ │ ├── widget.js │ │ │ └── widget.min.js │ │ ├── redactor.js │ │ └── redactor.min.js └── location.field.js └── mix-manifest.json /.gitignore: -------------------------------------------------------------------------------- 1 | # Your Files 2 | 3 | # Vendor 4 | node_modules 5 | /vendor 6 | package-lock.json 7 | 8 | # Environment 9 | .env 10 | /wp-config.php 11 | /sql/run/* 12 | .phpunit.result.cache 13 | npm-debug.log 14 | yarn-error.log 15 | /galaxy-config.php 16 | 17 | # WordPress 18 | /wordpress/*.* 19 | /wordpress/.maintenance 20 | /wordpress/wp-admin 21 | /wordpress/wp-includes 22 | /wordpress/wp-content/* 23 | !/wordpress/wp-content/mu-plugins/ 24 | 25 | # Source Maps 26 | *.css.map 27 | *.js.map 28 | 29 | # OS 30 | *~ 31 | .DS_Store* 32 | ehthumbs.db 33 | Thumbs.db 34 | 35 | # IDE 36 | .idea 37 | .settings 38 | .project 39 | .build 40 | .vscode 41 | 42 | # File Types 43 | *.log 44 | *.zip 45 | .svn -------------------------------------------------------------------------------- /app/Auth/CommentPolicy.php: -------------------------------------------------------------------------------- 1 | isCapable('edit_posts') || $comment->getUserID() == $auth->getID()) { 13 | return true; 14 | } 15 | 16 | return false; 17 | } 18 | 19 | public function create(AuthUser $auth) 20 | { 21 | if( $auth->isCapable('edit_posts') ) { 22 | return true; 23 | } 24 | 25 | return false; 26 | } 27 | 28 | public function destroy(AuthUser $auth, WPComment $comment) 29 | { 30 | if( $auth->isCapable('edit_posts') || $comment->getUserID() == $auth->getID()) { 31 | return true; 32 | } 33 | 34 | return false; 35 | } 36 | } -------------------------------------------------------------------------------- /app/Auth/OptionPolicy.php: -------------------------------------------------------------------------------- 1 | isCapable('manage_options') ) { 13 | return true; 14 | } 15 | 16 | return false; 17 | } 18 | 19 | public function create(AuthUser $auth) 20 | { 21 | if( $auth->isCapable('manage_options') ) { 22 | return true; 23 | } 24 | 25 | return false; 26 | } 27 | 28 | public function destroy(AuthUser $auth) 29 | { 30 | if( $auth->isCapable('manage_options') ) { 31 | return true; 32 | } 33 | 34 | return false; 35 | } 36 | 37 | 38 | } -------------------------------------------------------------------------------- /app/Auth/PagePolicy.php: -------------------------------------------------------------------------------- 1 | isCapable('edit_pages') || $auth->getID() == $page->getUserID()) { 17 | return true; 18 | } 19 | 20 | return false; 21 | } 22 | 23 | public function create(AuthUser $auth ) 24 | { 25 | if( $auth->isCapable('edit_pages') ) { 26 | return true; 27 | } 28 | 29 | return false; 30 | } 31 | 32 | public function destroy(AuthUser $auth, Page $page) 33 | { 34 | if( $auth->isCapable('delete_pages') || $page->getUserID() == $auth->getID()) { 35 | return true; 36 | } 37 | 38 | return false; 39 | } 40 | 41 | } -------------------------------------------------------------------------------- /app/Auth/PostPolicy.php: -------------------------------------------------------------------------------- 1 | isCapable('edit_posts') || $auth->getID() == $post->getUserID()) { 17 | return true; 18 | } 19 | 20 | return false; 21 | } 22 | 23 | public function create(AuthUser $auth ) 24 | { 25 | if( $auth->isCapable('edit_posts') ) { 26 | return true; 27 | } 28 | 29 | return false; 30 | } 31 | 32 | public function destroy(AuthUser $auth, WPPost $post) 33 | { 34 | if( $auth->isCapable('edit_posts') || $post->getUserID() == $auth->getID()) { 35 | return true; 36 | } 37 | 38 | return false; 39 | } 40 | 41 | } -------------------------------------------------------------------------------- /app/Auth/TermPolicy.php: -------------------------------------------------------------------------------- 1 | isCapable('manage_categories') ) { 12 | return true; 13 | } 14 | 15 | return false; 16 | } 17 | 18 | public function create(AuthUser $auth) 19 | { 20 | if( $auth->isCapable('manage_categories') ) { 21 | return true; 22 | } 23 | 24 | return false; 25 | } 26 | 27 | public function destroy(AuthUser $auth) 28 | { 29 | if( $auth->isCapable('manage_categories') ) { 30 | return true; 31 | } 32 | 33 | return false; 34 | } 35 | } -------------------------------------------------------------------------------- /app/Auth/UserPolicy.php: -------------------------------------------------------------------------------- 1 | isCapable('edit_users') || $user->getID() != $auth->getID()) { 13 | return true; 14 | } 15 | 16 | return false; 17 | } 18 | 19 | public function create(AuthUser $auth) 20 | { 21 | if( $auth->isCapable('create_users') ) { 22 | return true; 23 | } 24 | 25 | return false; 26 | } 27 | 28 | public function destroy(AuthUser $auth, WPUser $user) 29 | { 30 | if( $auth->isCapable('delete_users') || $user->getID() != $auth->getID()) { 31 | return true; 32 | } 33 | 34 | return false; 35 | } 36 | } -------------------------------------------------------------------------------- /app/Controllers/CategoryController.php: -------------------------------------------------------------------------------- 1 | 17 | [], 18 | 'http' => 19 | [ VerifyNonce::class ], 20 | 'user' => 21 | [ CanEditUsers::class ], 22 | 'post' => 23 | [ CanEditPosts::class ], 24 | 'comment' => 25 | [ CanEditComments::class ], 26 | 'option' => 27 | [ CanManageOptions::class ], 28 | 'term' => 29 | [ CanManageCategories::class ], 30 | 'search' => 31 | [ AuthAdmin::class ], 32 | 'rest' => 33 | [ AuthAdmin::class ], 34 | ]; 35 | } 36 | -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyNonce.php: -------------------------------------------------------------------------------- 1 | belongsToTaxonomy(Category::class, 'category'); 13 | } 14 | 15 | public function tags() 16 | { 17 | return $this->belongsToTaxonomy(Tag::class, 'post_tag'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Models/Tag.php: -------------------------------------------------------------------------------- 1 | '\App\Auth\PostPolicy', 11 | '\App\Models\Page' => '\App\Auth\PagePolicy', 12 | '\App\Models\Attachment' => '\App\Auth\PostPolicy', 13 | '\App\Models\Tag' => '\App\Auth\TermPolicy', 14 | '\App\Models\Category' => '\App\Auth\TermPolicy', 15 | '\App\Models\Option' => '\App\Auth\OptionPolicy', 16 | '\App\Models\User' => '\App\Auth\UserPolicy', 17 | '\App\Models\Comment' => '\App\Auth\CommentPolicy', 18 | 19 | // TypeRocket 20 | '\TypeRocket\Models\WPPost' => '\App\Auth\PostPolicy', 21 | '\TypeRocket\Models\WPTerm' => '\App\Auth\TermPolicy', 22 | '\TypeRocket\Models\WPUser' => '\App\Auth\UserPolicy', 23 | '\TypeRocket\Models\WPComment' => '\App\Auth\CommentPolicy', 24 | '\TypeRocket\Models\WPOption' => '\App\Auth\OptionPolicy', 25 | ]; 26 | } -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "typerocket/pro", 3 | "description": "TypeRocket Pro for WordPress.", 4 | "keywords": ["framework", "typerocket", "wordpress"], 5 | "license": "GPL-3.0-or-later", 6 | "homepage": "https://typerocket.com", 7 | "repositories": { 8 | "wpackagist": { 9 | "type": "composer", 10 | "url": "https://wpackagist.org" 11 | } 12 | }, 13 | "authors": [ 14 | { 15 | "name": "Robojuice", 16 | "homepage": "https://robojuice.com", 17 | "role": "Creator" 18 | } 19 | ], 20 | "support": { 21 | "docs": "https://typerocket.com/docs/v1/" 22 | }, 23 | "require": { 24 | "php": ">=7", 25 | "typerocket/pro-core": "^1.1", 26 | "ext-json": "*" 27 | }, 28 | "scripts": { 29 | "post-create-project-cmd": [ 30 | "php galaxy config:seed" 31 | ], 32 | "post-update-cmd": [ 33 | "php galaxy core:update" 34 | ] 35 | }, 36 | "minimum-stability": "stable" 37 | } -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- 1 | [ 12 | '\TypeRocket\Extensions\Seo' => [ null ], 13 | '\TypeRocket\Extensions\PageBuilder' => null, 14 | '\TypeRocket\Extensions\PostTypesUI' => null, 15 | '\TypeRocket\Extensions\ThemeOptions' => null, 16 | '\TypeRocket\Extensions\DevTools' => [ true ], 17 | '\TypeRocket\Extensions\PostMessages' => null, 18 | '\TypeRocket\Extensions\Gutenberg' => [ true ], 19 | ], 20 | 21 | /* 22 | |-------------------------------------------------------------------------- 23 | | Services 24 | |-------------------------------------------------------------------------- 25 | | 26 | | Services you want loaded into the container as singletons. 27 | | 28 | */ 29 | 'services' => [ 30 | '\App\Services\AuthService', 31 | ], 32 | 33 | /* 34 | |-------------------------------------------------------------------------- 35 | | Front-end 36 | |-------------------------------------------------------------------------- 37 | | 38 | | Require TypeRocket on the front-end. 39 | | 40 | */ 41 | 'frontend' => false, 42 | 43 | /* 44 | |-------------------------------------------------------------------------- 45 | | Debug 46 | |-------------------------------------------------------------------------- 47 | | 48 | | Turn on Debugging for TypeRocket. Set to false to disable. 49 | | 50 | */ 51 | 'debug' => immutable('WP_DEBUG', true), 52 | 53 | /* 54 | |-------------------------------------------------------------------------- 55 | | Seed 56 | |-------------------------------------------------------------------------- 57 | | 58 | | A 'random' string of text to help with security from time to time. 59 | | 60 | */ 61 | 'seed' => 'PUT_TYPEROCKET_SEED_HERE', 62 | 63 | /* 64 | |-------------------------------------------------------------------------- 65 | | Class Overrides 66 | |-------------------------------------------------------------------------- 67 | | 68 | | Set the classes to use as the default for helper functions. 69 | | 70 | */ 71 | 'class' => [ 72 | 'icons' => '\TypeRocket\Elements\Icons', 73 | 'form' => '\TypeRocket\Elements\Form', 74 | ], 75 | 76 | /* 77 | |-------------------------------------------------------------------------- 78 | | Template Engine 79 | |-------------------------------------------------------------------------- 80 | | 81 | | The template engine used to build views for the front-end and admin. 82 | | 83 | | Options: 84 | | - \TypeRocket\Template\TemplateEngine 85 | | - \TypeRocket\Template\TwigTemplateEngine 86 | | 87 | */ 88 | 'templates' => [ 89 | 'views' => '\TypeRocket\Template\TemplateEngine', 90 | 'pages' => '\TypeRocket\Template\TemplateEngine', 91 | ], 92 | 93 | /* 94 | |-------------------------------------------------------------------------- 95 | | Rooting 96 | |-------------------------------------------------------------------------- 97 | | 98 | | The templates to use for the TypeRocket theme. Must be using TypeRocket 99 | | as root for this feature to work. 100 | | 101 | */ 102 | 'root' => [ 103 | 'override' => true, 104 | 'theme' => 'templates', 105 | 'wordpress' => 'wordpress' 106 | ], 107 | 108 | /* 109 | |-------------------------------------------------------------------------- 110 | | Reporting 111 | |-------------------------------------------------------------------------- 112 | */ 113 | 'report' => [ 114 | 'error' => '\TypeRocket\Utility\ExceptionReport' 115 | ], 116 | 117 | /* 118 | |-------------------------------------------------------------------------- 119 | | Error Handling 120 | |-------------------------------------------------------------------------- 121 | */ 122 | 'errors' => [ 123 | /* 124 | |-------------------------------------------------------------------------- 125 | | Whoops PHP 126 | |-------------------------------------------------------------------------- 127 | | 128 | | Use Whoops PHP when TypeRocket debugging is enabled. 129 | | 130 | */ 131 | 'whoops' => true, 132 | 133 | /* 134 | |-------------------------------------------------------------------------- 135 | | Throw Errors 136 | |-------------------------------------------------------------------------- 137 | | 138 | | TypeRocket defines an error handler function that throws \ErrorException. 139 | | You can disable this functionality but it may impact the template error 140 | | system that allows you to define 500.php theme templates. 141 | | 142 | | @link https://www.php.net/manual/en/function.set-error-handler.php 143 | | 144 | | Recommended Levels: `E_ALL` or `E_ERROR | E_PARSE` 145 | | 146 | */ 147 | 'throw' => true, 148 | 'level' => E_ALL 149 | ] 150 | 151 | ]; 152 | -------------------------------------------------------------------------------- /config/editor.php: -------------------------------------------------------------------------------- 1 | [ 22 | 'wpmedia', 23 | 'specialchars', 24 | ], 25 | 26 | /* 27 | |-------------------------------------------------------------------------- 28 | | Redactor Load File 29 | |-------------------------------------------------------------------------- 30 | | 31 | | Options include: `minified` and `dev` 32 | | 33 | */ 34 | 'load' => 'minified', 35 | 36 | /* 37 | |-------------------------------------------------------------------------- 38 | | Redactor Language 39 | |-------------------------------------------------------------------------- 40 | | 41 | | Options can be found @link https://imperavi.com/redactor/docs/get-started/languages/ 42 | | 43 | */ 44 | 'lang' => 'en' 45 | 46 | ]; -------------------------------------------------------------------------------- /config/external.php: -------------------------------------------------------------------------------- 1 | [ 14 | 'api_key' => immutable('TR_GOOGLE_MAPS_API_KEY'), 15 | 'map_zoom' => 15, 16 | 'ui' => false 17 | ] 18 | ]; -------------------------------------------------------------------------------- /config/galaxy.php: -------------------------------------------------------------------------------- 1 | tr_wp_root(), 15 | 16 | /* 17 | |-------------------------------------------------------------------------- 18 | | Commands 19 | |-------------------------------------------------------------------------- 20 | | 21 | | Add your custom commands for Galaxy. TypeRocket commands use Symfony 22 | | framework see http://symfony.com/doc/current/console.html 23 | | 24 | */ 25 | 'commands' => [] 26 | ]; -------------------------------------------------------------------------------- /config/paths.php: -------------------------------------------------------------------------------- 1 | TR_APP_ROOT_PATH . '/app', 12 | 13 | /* 14 | |-------------------------------------------------------------------------- 15 | | Storage 16 | |-------------------------------------------------------------------------- 17 | | 18 | | The PATH where files are to be stored. 19 | | 20 | */ 21 | 'storage' => TR_ALT_PATH . '/storage', 22 | 23 | /* 24 | |-------------------------------------------------------------------------- 25 | | Cache 26 | |-------------------------------------------------------------------------- 27 | | 28 | | The PATH where files are to be cached. 29 | | 30 | */ 31 | 'cache' => TR_ALT_PATH . '/storage/cache', 32 | 33 | /* 34 | |-------------------------------------------------------------------------- 35 | | Resources 36 | |-------------------------------------------------------------------------- 37 | | 38 | | The PATH were resources can be found. 39 | | 40 | */ 41 | 'resources' => TR_ALT_PATH . '/resources', 42 | 43 | /* 44 | |-------------------------------------------------------------------------- 45 | | Views 46 | |-------------------------------------------------------------------------- 47 | | 48 | | The PATH were front-end views can be found. 49 | | 50 | */ 51 | 'views' => TR_ALT_PATH . '/resources/views', 52 | 53 | /* 54 | |-------------------------------------------------------------------------- 55 | | Pages 56 | |-------------------------------------------------------------------------- 57 | | 58 | | The PATH were admin pages can be found. 59 | | 60 | */ 61 | 'pages' => TR_ALT_PATH . '/resources/pages', 62 | 63 | /* 64 | |-------------------------------------------------------------------------- 65 | | Visuals 66 | |-------------------------------------------------------------------------- 67 | | 68 | | The PATH were component visuals can be found. 69 | | 70 | */ 71 | 'visuals' => TR_ALT_PATH . '/resources/visuals', 72 | 73 | /* 74 | |-------------------------------------------------------------------------- 75 | | Components 76 | |-------------------------------------------------------------------------- 77 | | 78 | | The PATH were components can be found. 79 | | 80 | */ 81 | 'components' => TR_ALT_PATH . '/resources/components', 82 | 83 | /* 84 | |-------------------------------------------------------------------------- 85 | | Themes 86 | |-------------------------------------------------------------------------- 87 | | 88 | | The PATH were theme templates can be found. Used if you install 89 | | TypeRocket as root. 90 | | 91 | */ 92 | 'themes' => TR_ALT_PATH . '/resources/themes', 93 | 94 | /* 95 | |-------------------------------------------------------------------------- 96 | | Routes 97 | |-------------------------------------------------------------------------- 98 | | 99 | | The PATH were theme templates can be found. Used if you install 100 | | TypeRocket as root. 101 | | 102 | */ 103 | 'routes' => TR_ALT_PATH . '/routes', 104 | 105 | /* 106 | |-------------------------------------------------------------------------- 107 | | Migrations 108 | |-------------------------------------------------------------------------- 109 | | 110 | | The PATHs for migrations and run migrations. 111 | | 112 | */ 113 | 'migrations' => TR_ALT_PATH . '/database/migrations', 114 | 115 | /* 116 | |-------------------------------------------------------------------------- 117 | | Composer Vendor 118 | |-------------------------------------------------------------------------- 119 | | 120 | | The PATH were composer vendor files are located. 121 | | 122 | */ 123 | 'vendor' => TR_PATH . '/vendor', 124 | 125 | /* 126 | |-------------------------------------------------------------------------- 127 | | Core 128 | |-------------------------------------------------------------------------- 129 | | 130 | | The PATH were composer vendor files are located. 131 | | 132 | */ 133 | 'core' => TR_PATH . '/vendor/typerocket/pro-core', 134 | 135 | /* 136 | |-------------------------------------------------------------------------- 137 | | Assets 138 | |-------------------------------------------------------------------------- 139 | | 140 | | The PATH where TypeRocket theme and build assets are located. 141 | | 142 | */ 143 | 'assets' => TR_PATH . '/wordpress/assets', 144 | 145 | /* 146 | |-------------------------------------------------------------------------- 147 | | TypeRocket Base 148 | |-------------------------------------------------------------------------- 149 | | 150 | | The PATH where TypeRocket root is located. 151 | | 152 | */ 153 | 'base' => TR_PATH, 154 | ]; 155 | -------------------------------------------------------------------------------- /config/urls.php: -------------------------------------------------------------------------------- 1 | tr_assets_url_build(), 12 | 13 | /* 14 | |-------------------------------------------------------------------------- 15 | | Components 16 | |-------------------------------------------------------------------------- 17 | | 18 | | The URL where TypeRocket component assets are found. 19 | | 20 | */ 21 | 'components' => tr_assets_url_build( '/components' ), 22 | 23 | /* 24 | |-------------------------------------------------------------------------- 25 | | Typerocket Assets 26 | |-------------------------------------------------------------------------- 27 | | 28 | | The URL where TypeRocket assets are found. 29 | | 30 | */ 31 | 'typerocket' => tr_assets_url_build( '/typerocket' ), 32 | ]; 33 | -------------------------------------------------------------------------------- /galaxy: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | TR_APP_NAMESPACE . '\\', 'folder' => __DIR__ . '/app/']); 26 | 27 | // Run vendor autoloader 28 | if( !defined('TR_AUTO_LOADER') ) 29 | require __DIR__ . '/vendor/autoload.php'; 30 | else 31 | call_user_func(TR_AUTO_LOADER); 32 | 33 | // Run app autoloader 34 | $tr_autoload_map = TR_AUTOLOAD_APP; 35 | tr_autoload_psr4($tr_autoload_map); 36 | 37 | // Define configuration path 38 | if( !defined('TR_CORE_CONFIG_PATH') ) 39 | define('TR_CORE_CONFIG_PATH', __DIR__ . '/config' ); 40 | 41 | // Boot container 42 | ( new Container )->boot(); 43 | 44 | // Load TypeRocket 45 | if (defined('WPINC')) { 46 | (new System)->boot(); 47 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "npm run development", 5 | "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 6 | "watch": "npm run development -- --watch", 7 | "watch-poll": "npm run watch -- --watch-poll", 8 | "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", 9 | "prod": "npm run production", 10 | "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" 11 | }, 12 | "devDependencies": { 13 | "cross-env": "^5.1", 14 | "laravel-mix": "^4.0.7", 15 | "lodash": "^4.17.13", 16 | "resolve-url-loader": "^2.3.1", 17 | "sass": "^1.15.2", 18 | "sass-loader": "^7.1.0", 19 | "ts-loader": "^6.2.0", 20 | "typescript": "^3.6.4", 21 | "vue-template-compiler": "^2.6.10" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /resources/assets/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/pro/c1f8ff21679c6d9d157bdcb2322935f2da3992fe/resources/assets/js/admin.js -------------------------------------------------------------------------------- /resources/assets/js/theme.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/assets/sass/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/pro/c1f8ff21679c6d9d157bdcb2322935f2da3992fe/resources/assets/sass/admin.scss -------------------------------------------------------------------------------- /resources/assets/sass/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/pro/c1f8ff21679c6d9d157bdcb2322935f2da3992fe/resources/assets/sass/theme.scss -------------------------------------------------------------------------------- /resources/components/builder/content.php: -------------------------------------------------------------------------------- 1 |

Content Component

2 | text('Headline'); 5 | echo $form->image('Featured Image'); 6 | echo $form->editor('Content'); -------------------------------------------------------------------------------- /resources/pages/extensions/theme-options.php: -------------------------------------------------------------------------------- 1 |

Theme Options

2 | useRest()->open(); 5 | 6 | // Hours 7 | $hours = $form->repeater('Company Hours') 8 | ->setControlAdd('Add Hours') 9 | ->hideContract() 10 | ->setFields( 11 | $form->row( 12 | $form->text('Day', ['placeholder' => 'Monday, Tuesday, ect.']), 13 | $form->time('Start Time'), 14 | $form->time('End Time') 15 | ) 16 | ) 17 | ->when('company_open'); 18 | 19 | // About 20 | $about = $form->fieldset('Company', 'Details about your company.', [ 21 | $form->text('Company Name'), 22 | $form->image('Company Logo'), 23 | $form->input('Company Email')->setTypeEmail(), 24 | $form->text('Company Phone'), 25 | $form->toggle('Company Open')->setText('Company open for business'), 26 | $hours, 27 | ]); 28 | 29 | // Links 30 | $links = $form->fieldset('Links', 'Global page links.', [ 31 | $form->search('Terms Page')->setPostTypeOptions('page'), 32 | $form->search('Privacy Page')->setPostTypeOptions('page'), 33 | ]); 34 | 35 | // Design 36 | $design = $form->fieldset('Design', 'Site design settings.', [ 37 | $form->swatches('Site Color')->setOptions([ 38 | 'Vibrant' => ['#333', '#0073aa'], 39 | 'Colorful' => ['#523f6d', '#a3b745'], 40 | ]) 41 | ]); 42 | 43 | // API 44 | $help = 'Get Your Google Maps API.'; 45 | 46 | $api = $form->fieldset('Google APIs', 'Connection for Google Maps.', [ 47 | $form->text('Google Maps API Key')->setHelp($help), 48 | ]); 49 | 50 | // Save 51 | $save = $form->submit( 'Save Changes' ); 52 | 53 | // Layout 54 | $tabs = tr_tabs()->setFooter( $save )->layoutLeft(); 55 | $tabs->tab('About', 'building', $about)->setDescription('Company information'); 56 | $tabs->tab('API', 'dashboard', $api)->setDescription('Access keys for APIs'); 57 | $tabs->tab('Design', 'droplet', $design)->setDescription('Site design settings'); 58 | $tabs->tab('Links', 'link', $links)->setDescription('Global page links'); 59 | $tabs->render(); 60 | 61 | echo $form->close(); 62 | ?> -------------------------------------------------------------------------------- /resources/themes/templates/401.php: -------------------------------------------------------------------------------- 1 | define('WP_DISABLE_FATAL_ERROR_HANDLER', true); -------------------------------------------------------------------------------- /resources/themes/templates/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 12 | 13 | 14 | 15 | > 16 | 17 | 18 |
19 | 20 | 21 |
22 | 23 |
24 | 25 |

26 |
27 | 28 | 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /resources/visuals/builder/content.php: -------------------------------------------------------------------------------- 1 | 11 |
12 |

13 | 14 | 15 |
-------------------------------------------------------------------------------- /routes/public.php: -------------------------------------------------------------------------------- 1 | php -S localhost:8888 ../server.php 7 | */ 8 | $uri = urldecode( 9 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 10 | ); 11 | if ($uri !== '/' && file_exists(__DIR__.'/wordpress'.$uri)) { 12 | return false; 13 | } 14 | require_once __DIR__.'/wordpress/index.php'; -------------------------------------------------------------------------------- /storage/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- 1 | const mix = require('laravel-mix'); 2 | 3 | /* 4 | |-------------------------------------------------------------------------- 5 | | Template Assets 6 | |-------------------------------------------------------------------------- 7 | | 8 | | All public assets must be compiled to the /wordpress/assets/templates 9 | | directory. Commands like mix.babel and mix.copyDirectory do not use 10 | | the configured public path. 11 | | 12 | | Laravel Mix documentation can be found at https://laravel-mix.com/. 13 | | 14 | | Watch: `npm run watch` 15 | | Production: `npm run prod` 16 | | 17 | */ 18 | 19 | // Options 20 | let pub = 'wordpress/assets/templates'; 21 | mix.setPublicPath(pub).options({ processCssUrls: false }); 22 | 23 | // Front-end 24 | mix.js('resources/assets/js/theme.js', 'theme/js') 25 | .sass('resources/assets/sass/theme.scss', 'theme/css'); 26 | 27 | // Admin 28 | mix.js('resources/assets/js/admin.js', 'admin/js') 29 | .sass('resources/assets/sass/admin.scss', 'admin/css'); 30 | 31 | // Version 32 | if (mix.inProduction()) { 33 | mix.version(); 34 | } 35 | -------------------------------------------------------------------------------- /wordpress/assets/components/builder/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/pro/c1f8ff21679c6d9d157bdcb2322935f2da3992fe/wordpress/assets/components/builder/content.png -------------------------------------------------------------------------------- /wordpress/assets/templates/admin/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/pro/c1f8ff21679c6d9d157bdcb2322935f2da3992fe/wordpress/assets/templates/admin/css/admin.css -------------------------------------------------------------------------------- /wordpress/assets/templates/admin/js/admin.js: -------------------------------------------------------------------------------- 1 | !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=1)}({1:function(e,t,n){e.exports=n("v0lo")},v0lo:function(e,t){}}); -------------------------------------------------------------------------------- /wordpress/assets/templates/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/admin/js/admin.js": "/admin/js/admin.js?id=770cee5edc3daa20e0d2", 3 | "/theme/js/theme.js": "/theme/js/theme.js?id=5ea28b46c65b9973544f", 4 | "/theme/css/theme.css": "/theme/css/theme.css?id=d41d8cd98f00b204e980", 5 | "/admin/css/admin.css": "/admin/css/admin.css?id=d41d8cd98f00b204e980" 6 | } 7 | -------------------------------------------------------------------------------- /wordpress/assets/templates/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/pro/c1f8ff21679c6d9d157bdcb2322935f2da3992fe/wordpress/assets/templates/screenshot.png -------------------------------------------------------------------------------- /wordpress/assets/templates/theme/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/pro/c1f8ff21679c6d9d157bdcb2322935f2da3992fe/wordpress/assets/templates/theme/css/theme.css -------------------------------------------------------------------------------- /wordpress/assets/templates/theme/js/theme.js: -------------------------------------------------------------------------------- 1 | !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=0)}({"/84e":function(e,t){},0:function(e,t,n){n("G8l9"),n("/84e"),e.exports=n("BLqG")},BLqG:function(e,t){},G8l9:function(e,t){}}); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/css/dev.css: -------------------------------------------------------------------------------- 1 | #tr-dev-toolbar,.login-action-login>#tr-dev-toolbar{display:none}@media screen and (min-width:600px){#tr-dev-toolbar{direction:ltr;color:#ccc;font-size:13px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;position:fixed;display:block;bottom:0;left:0;width:100%;min-width:600px;z-index:99999;background:#23282d;background:var(--tr-profile-color-bg,#23282d)}#tr-dev-toolbar-details{border-top:5px solid var(--tr-profile-color,#0073aa)}#tr-dev-toolbar .dev-nav{line-height:32px;height:32px}#tr-dev-toolbar a.item{cursor:pointer}#tr-dev-toolbar a.item:active,#tr-dev-toolbar a.item:focus,#tr-dev-toolbar a.item:hover{background:var(--tr-profile-color,#0073aa);color:#fff}#tr-dev-toolbar .item{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:0 8px 0 7px;height:32px;display:inline-block;text-decoration:none;color:#ccc}html{padding-bottom:32px!important}.tr-dev-toolbar #adminmenuwrap{padding-bottom:32px}@-webkit-keyframes tr-warn-dev-color-change{0%{color:#ff3052}50%{color:#ff8739}to{color:#ff3052}}@keyframes tr-warn-dev-color-change{0%{color:#ff3052}50%{color:#ff8739}to{color:#ff3052}}@-webkit-keyframes tr-bad-dev-color-change{0%{color:#ffd32f}50%{color:#ff8739}to{color:#ffd32f}}@keyframes tr-bad-dev-color-change{0%{color:#ffd32f}50%{color:#ff8739}to{color:#ffd32f}}.tr-dev-toolbar-details-num-good{color:#c8ffc2}.tr-dev-toolbar-details-num-weak{color:#bafffd}.tr-dev-toolbar-details-num-bad{color:#ff8739;-webkit-animation:tr-bad-dev-color-change 2s infinite;animation:tr-bad-dev-color-change 2s infinite}.tr-dev-toolbar-details-num-warning{color:#ff3052;-webkit-animation:tr-warn-dev-color-change 2s infinite;animation:tr-warn-dev-color-change 2s infinite}.tr-dev-toolbar-details-section{max-height:50vh;position:relative;overflow-y:scroll;background:#23282d}.tr-dev-toolbar-details-table{width:100%;max-width:100%;box-sizing:border-box;color:#ccc;font-size:13px;border-spacing:0;border:none;margin:0;overflow:scroll;border-collapse:collapse;line-height:1.5em;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.tr-dev-toolbar-details-table-head{font-weight:700;text-align:left;margin:0}.tr-dev-toolbar-details-table-head-item-id{text-align:right}.tr-dev-toolbar-details-table-head th{background:#23282d;position:-webkit-sticky;position:sticky;border:none;top:0;margin:0;padding:5px;font-weight:700;color:var(--tr-profile-color,#0073aa)}.tr-dev-toolbar-details-table-row:nth-child(odd){background:hsla(0,0%,100%,.1)}.tr-dev-toolbar-details-table-item{padding:8px;border:none;margin:0;overflow:visible}.tr-dev-toolbar-details-table-item-sql{font-family:Menlo,Consolas,monaco,monospace;width:50%}.tr-dev-toolbar-details-table-item-time{width:135px;font-family:Menlo,Consolas,monaco,monospace}.tr-dev-toolbar-details-table-item-id{text-align:right}.tr-dev-toolbar-details-table-summary{display:block;padding:0 5px;line-height:32px;background:var(--tr-profile-color,#0073aa);color:#fff}.tr-dev-toolbar-details-table-summary code{padding:0 5px;display:inline-block;background:rgba(0,0,0,.4)}}#tr-dev-toolbar .tr-dev-toolbar-select-css{display:block;font-size:12px;font-family:sans-serif;font-weight:700;color:#fff;line-height:1.3em;padding:.6em 1.4em .5em .8em;width:100%;max-width:100%;box-sizing:border-box;margin:0;border:1px solid #aaa;box-shadow:0 1px 0 1px rgba(0,0,0,.04);border-radius:.5em;-moz-appearance:none;-webkit-appearance:none;appearance:none;background-color:#222;outline:none;background-image:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");background-repeat:no-repeat,repeat;background-position:right .7em top 50%,0 0;background-size:.65em auto,100%}#tr-dev-toolbar .tr-dev-toolbar-select-css:hover{border-color:#fff}#tr-dev-toolbar .tr-dev-toolbar-select-css option{font-weight:400;line-height:1.3em;outline:none}#tr-dev-toolbar .tr-dev-toolbar-select-css:focus{border-color:#aaa;box-shadow:0 0 1px 3px rgba(59,153,252,.7);box-shadow:0 0 0 3px -moz-mac-focusring;color:#fff;outline:none}#tr-dev-toolbar .tr-dev-toolbar-select-css::-ms-expand{display:none} -------------------------------------------------------------------------------- /wordpress/assets/typerocket/fonts/typerocket-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/pro/c1f8ff21679c6d9d157bdcb2322935f2da3992fe/wordpress/assets/typerocket/fonts/typerocket-icons.eot -------------------------------------------------------------------------------- /wordpress/assets/typerocket/fonts/typerocket-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/pro/c1f8ff21679c6d9d157bdcb2322935f2da3992fe/wordpress/assets/typerocket/fonts/typerocket-icons.ttf -------------------------------------------------------------------------------- /wordpress/assets/typerocket/fonts/typerocket-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/pro/c1f8ff21679c6d9d157bdcb2322935f2da3992fe/wordpress/assets/typerocket/fonts/typerocket-icons.woff -------------------------------------------------------------------------------- /wordpress/assets/typerocket/img/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/pro/c1f8ff21679c6d9d157bdcb2322935f2da3992fe/wordpress/assets/typerocket/img/chosen-sprite.png -------------------------------------------------------------------------------- /wordpress/assets/typerocket/img/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeRocket/pro/c1f8ff21679c6d9d157bdcb2322935f2da3992fe/wordpress/assets/typerocket/img/chosen-sprite@2x.png -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/builder.ext.js: -------------------------------------------------------------------------------- 1 | !function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=2)}({2:function(e,t,n){e.exports=n("rE4h")},rE4h:function(e,t){var n=wp.editPost,r=(n.PluginSidebar,n.PluginSidebarMoreMenuItem,n.PluginDocumentSettingPanel),o=wp.components,i=(o.TextControl,o.Panel,o.PanelBody,o.PanelRow,wp.plugins.registerPlugin),c=wp.data,a=(c.withSelect,c.withDispatch,wp.i18n.__),l=window.location;i("plugin-document-setting-typerocket-builder",{icon:!1,render:function(){return React.createElement(r,{name:"typerocket-builder",title:"Editor",className:"typerocket-builder"},React.createElement("p",null,a("Click a link below to switch your current editor.","typerocket-domain")),React.createElement("p",null,React.createElement("i",{class:"dashicons dashicons-external"})," ",React.createElement("a",{href:"".concat(l,"&tr_builder=1")},a("Use Page Builder","typerocket-domain"))),React.createElement("p",null,React.createElement("i",{class:"dashicons dashicons-external"})," ",React.createElement("a",{href:"".concat(l,"&tr_builder=0")},a("Use Classic Editor","typerocket-domain"))))}})}}); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/global.js: -------------------------------------------------------------------------------- 1 | window.TypeRocket={httpCallbacks:[],repeaterCallbacks:[],lastSubmittedForm:!1,redactor:{extend:{},lang:"en",plugins:[],override:{}},builderCallbacks:[]}; 2 | -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/ar.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['ar'] = { 4 | "format": "تنسيق", 5 | "image": "صورة", 6 | "file": "ملف", 7 | "link": "رابط", 8 | "bold": "متين", 9 | "italic": "مائل", 10 | "deleted": "مشطوب", 11 | "underline": "مسطر", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "قوائم", 21 | "link-insert": "إدراج رابط", 22 | "link-edit": "تحرير الرابط", 23 | "link-in-new-tab": "فتح الرابط في تبويب جديد", 24 | "unlink": "إلغاء الرابط", 25 | "cancel": "إلغاء", 26 | "close": "إغلاق", 27 | "insert": "إدراج", 28 | "save": "حفظ", 29 | "delete": "حذف", 30 | "text": "النص", 31 | "edit": "تحرير", 32 | "title": "العنوان", 33 | "paragraph": "نص عادي", 34 | "quote": "اقتباس", 35 | "code": "كود", 36 | "heading1": "عنوان 1", 37 | "heading2": "عنوان 2", 38 | "heading3": "عنوان 3", 39 | "heading4": "عنوان 4", 40 | "heading5": "عنوان 5", 41 | "heading6": "عنوان 6", 42 | "filename": "الاسم", 43 | "optional": "اختياري", 44 | "unorderedlist": "قائمة نقطية", 45 | "orderedlist": "قائمة رقمية", 46 | "outdent": "زيادة المسافة البادئة", 47 | "indent": "إنقاض المسافة البادئة", 48 | "horizontalrule": "خط أفقي", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "محرر النص الغني", 53 | "caption": "الشرح", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/cs.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['cs'] = { 4 | "format": "Formát", 5 | "image": "Obrázek", 6 | "file": "Soubor", 7 | "link": "Odkaz", 8 | "bold": "Tučné", 9 | "italic": "Kurzíva", 10 | "deleted": "Přeškrtnuté", 11 | "underline": "Podtržené", 12 | "superscript": "Horní index", 13 | "subscript": "Dolní index", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Seznamy", 21 | "link_insert": "Vložit odkaz ...", 22 | "link_edit": "Upravit odkaz", 23 | "link_new_tab": "Otevírat odkaz v novém okně", 24 | "unlink": "Odstranit odkaz", 25 | "cancel": "Zrušit", 26 | "close": "Zavřít", 27 | "insert": "Vložit", 28 | "save": "Uložit", 29 | "delete": "Smazat", 30 | "text": "Text", 31 | "edit": "Upravit", 32 | "title": "Titulek", 33 | "paragraph": "Odstavec", 34 | "quote": "Citace", 35 | "code": "Kód", 36 | "header1": "Nadpis 1", 37 | "header2": "Nadpis 2", 38 | "header3": "Nadpis 3", 39 | "header4": "Nadpis 4", 40 | "header5": "Nadpis 5", 41 | "header6": "Nadpis 6", 42 | "filename": "Název (volitelné)", 43 | "optional": "volitelný", 44 | "unorderedlist": "Seznam s odrážkami", 45 | "orderedlist": "Číslovaný seznam", 46 | "outdent": "Zmenšit odsazení", 47 | "indent": "Zvětšit odsazení", 48 | "horizontalrule": "Vodorovná čára", 49 | "upload": "Nahrát", 50 | "upload-label": "Přesuňte sem soubory nebo klikněte pro výběr", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rich textový editor", 53 | "caption": "Titulok", 54 | "bulletslist": "Odrážek", 55 | "numberslist": "Číslováníe", 56 | "image_position": "Zarovnání", 57 | "none": "Žádné", 58 | "left": "Vlevo", 59 | "right": "Vpravo", 60 | "center": "Center", 61 | "undo": "Zpět", 62 | "redo": "Obnovit" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/da.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['da'] = { 4 | "format": "Format", 5 | "image": "Billede", 6 | "file": "Fil", 7 | "link": "link", 8 | "bold": "Fed", 9 | "italic": "Kursiv", 10 | "deleted": "Slettet", 11 | "underline": "Understreg", 12 | "superscript": "Hævet", 13 | "subscript": "Sænket", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Lister", 21 | "link-insert": "Indsæt link", 22 | "link-edit": "Redigér link", 23 | "link-in-new-tab": "Åbn link i ny fane", 24 | "unlink": "Fjern link", 25 | "cancel": "Fortryd", 26 | "close": "Luk", 27 | "insert": "Indsæt", 28 | "save": "Gem", 29 | "delete": "Slet", 30 | "text": "Tekst", 31 | "edit": "Redigér", 32 | "title": "Titel", 33 | "paragraph": "Paragraf", 34 | "quote": "Citat", 35 | "code": "Kode", 36 | "heading1": "Overskrift 1", 37 | "heading2": "Overskrift 2", 38 | "heading3": "Overskrift 3", 39 | "heading4": "Overskrift 4", 40 | "heading5": "Overskrift 5", 41 | "heading6": "Overskrift 6", 42 | "filename": "Navn", 43 | "optional": "valgfri", 44 | "unorderedlist": "Usorteret liste", 45 | "orderedlist": "Sorteret liste", 46 | "outdent": "Formindsk indrykning", 47 | "indent": "Forøg indrykning", 48 | "horizontalrule": "Vandret linje", 49 | "upload": "Upload", 50 | "upload-label": "Slip filer her eller klik for at uploade", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Tekst editor", 53 | "caption": "Caption", 54 | "bulletslist": "Punktliste", 55 | "numberslist": "Nummereret liste", 56 | "image-position": "Position", 57 | "none": "Ingen", 58 | "left": "Venstre", 59 | "right": "Højre", 60 | "center": "Center", 61 | "undo": "Fortryd", 62 | "redo": "Annullér fortryd" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/de.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang["de"] = { 4 | "format": "Format", 5 | "image": "Bild", 6 | "file": "Datei", 7 | "link": "Link", 8 | "bold": "Fett", 9 | "italic": "Kursiv", 10 | "deleted": "Durchgestrichen", 11 | "underline": "Unterstrichen", 12 | "superscript": "Hochgestellt", 13 | "subscript": "Tiefgestellt", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Hoch", 19 | "subscript-abbr": "Tief", 20 | "lists": "Liste", 21 | "link-insert": "Link einfügen", 22 | "link-edit": "Link bearbeiten", 23 | "link-in-new-tab": "Link in neuem Tab öffnen", 24 | "unlink": "Link entfernen", 25 | "cancel": "Abbrechen", 26 | "close": "Schließen", 27 | "insert": "Einfügen", 28 | "save": "Speichern", 29 | "delete": "Löschen", 30 | "text": "Text", 31 | "edit": "Bearbeiten", 32 | "title": "Titel", 33 | "paragraph": "Normaler Text", 34 | "quote": "Zitat", 35 | "code": "Code", 36 | "heading1": "Überschrift 1", 37 | "heading2": "Überschrift 2", 38 | "heading3": "Überschrift 3", 39 | "heading4": "Überschrift 4", 40 | "heading5": "Überschrift 5", 41 | "heading6": "Überschrift 6", 42 | "filename": "Name", 43 | "optional": "Optional", 44 | "unorderedlist": "Aufzählung", 45 | "orderedlist": "Nummerierung", 46 | "outdent": "Einzug verkleinern", 47 | "indent": "Einzug vergrößern", 48 | "horizontalrule": "Linie", 49 | "upload": "Upload", 50 | "upload-label": "Bilder hier ablegen oder für Upload klicken", 51 | "upload-change-label": "Neues Bild hier ablegen", 52 | "accessibility-help-label": "Rich-Text-Editor", 53 | "caption": "Beschriftung", 54 | "bulletslist": "Aufzählung", 55 | "numberslist": "Nummerierung", 56 | "image-position": "Position", 57 | "none": "Keine", 58 | "left": "Links", 59 | "right": "Rechts", 60 | "center": "Mitte", 61 | "undo": "Rückgängig", 62 | "redo": "Wiederholen", 63 | 64 | /* Table plugin */ 65 | "table": "Tabelle", 66 | "insert-table": "Tabelle einfügen", 67 | "insert-row-above": "Zeile oberhalb hinzufügen", 68 | "insert-row-below": "Zeile unterhalb hinzufügen", 69 | "insert-column-left": "Spalte links einfügen", 70 | "insert-column-right": "Spalte rechts einfügen", 71 | "add-head": "Tabellenrubrik einfügen", 72 | "delete-head": "Tabellenrubrik löschen", 73 | "delete-column": "Spalte löschen", 74 | "delete-row": "Zeile löschen", 75 | "delete-table": "Tabelle löschen", 76 | 77 | /* Fullscreen plugin */ 78 | "fullscreen": "Vollbildanzeige", 79 | 80 | /* Font color plugin */ 81 | "fontcolor": "Schriftfarbe", 82 | "highlight": "Hintergrundsfarbe", 83 | 84 | /* Font family plugin */ 85 | "fontfamily": "Schriftfamilie", 86 | "remove-font-family": "Schriftart zurücksetzen", 87 | 88 | /* Font size plugin */ 89 | "size": "Schriftgrösse", 90 | "remove-size": "Textgröße zurücksetzen", 91 | 92 | /* Imagemanager/Filemanager plugin */ 93 | "choose": "Wählen", 94 | 95 | /* Alignment plugin */ 96 | "align": "Ausrichten", 97 | "align-left": "Text links ausrichten", 98 | "align-center": "Text zentrieren", 99 | "align-right": "Text rechts ausrichten", 100 | "align-justify": "Text ausrichten", 101 | 102 | /* Video plugin */ 103 | "video": "Video", 104 | "video-html-code": "Video von Youtube oder Vimeo einbetten" 105 | }; 106 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/en.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['en'] = { 4 | "format": "Format", 5 | "image": "Image", 6 | "file": "File", 7 | "link": "Link", 8 | "bold": "Bold", 9 | "italic": "Italic", 10 | "deleted": "Strikethrough", 11 | "underline": "Underline", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Lists", 21 | "link-insert": "Insert Link", 22 | "link-edit": "Edit Link", 23 | "link-in-new-tab": "Open link in new tab", 24 | "unlink": "Unlink", 25 | "cancel": "Cancel", 26 | "close": "Close", 27 | "insert": "Insert", 28 | "save": "Save", 29 | "delete": "Delete", 30 | "text": "Text", 31 | "edit": "Edit", 32 | "title": "Title", 33 | "paragraph": "Normal text", 34 | "quote": "Quote", 35 | "code": "Code", 36 | "heading1": "Heading 1", 37 | "heading2": "Heading 2", 38 | "heading3": "Heading 3", 39 | "heading4": "Heading 4", 40 | "heading5": "Heading 5", 41 | "heading6": "Heading 6", 42 | "filename": "Name", 43 | "optional": "optional", 44 | "unorderedlist": "Unordered List", 45 | "orderedlist": "Ordered List", 46 | "outdent": "Outdent", 47 | "indent": "Indent", 48 | "horizontalrule": "Line", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rich text editor", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/es.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['es'] = { 4 | "format": "Formato", 5 | "image": "Imagen", 6 | "file": "Archivo", 7 | "link": "Enlace", 8 | "bold": "Negrita", 9 | "italic": "Cursiva", 10 | "deleted": "Tachado", 11 | "underline": "Subrayado", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "N", 15 | "italic-abbr": "C", 16 | "deleted-abbr": "T", 17 | "underline-abbr": "S", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Listas", 21 | "link-insert": "Insertar enlace", 22 | "link-edit": "Editar enlace", 23 | "link-in-new-tab": "Abrir enlace en nueva pestaña", 24 | "unlink": "Quitar enlace", 25 | "cancel": "Cancelar", 26 | "close": "Cerrar", 27 | "insert": "Insertar", 28 | "save": "Guardar", 29 | "delete": "Borrar", 30 | "text": "Texto", 31 | "edit": "Editar", 32 | "title": "Título", 33 | "paragraph": "Texto normal", 34 | "quote": "Citar", 35 | "code": "Código", 36 | "heading1": "Cabecera 1", 37 | "heading2": "Cabecera 2", 38 | "heading3": "Cabecera 3", 39 | "heading4": "Cabecera 4", 40 | "heading5": "Cabecera 5", 41 | "heading6": "Cabecera 6", 42 | "filename": "Nombre", 43 | "optional": "Opcional", 44 | "unorderedlist": "Lista sin orden", 45 | "orderedlist": "Lista ordenada", 46 | "outdent": "Quitar sangría", 47 | "indent": "Sangría", 48 | "horizontalrule": "Línea", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Editor de texto enriquecido", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); 65 | -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/fa.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['fa'] = { 4 | "format": "فرمت", 5 | "image": "تصویر", 6 | "file": "فایل", 7 | "link": "لینک", 8 | "bold": "ضخیم", 9 | "italic": "کج", 10 | "deleted": "خط خورده", 11 | "underline": "زیرخط دار", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "لیست", 21 | "link-insert": "اضافه کردن لینک", 22 | "link-edit": "ویرایش لینک", 23 | "link-in-new-tab": "باز شدن لینک در صفحه جدید", 24 | "unlink": "غیرفعال کردن لینک", 25 | "cancel": "لغو", 26 | "close": "بستن", 27 | "insert": "اضافه", 28 | "save": "ذخیره", 29 | "delete": "حذف", 30 | "text": "متن", 31 | "edit": "ویرایش", 32 | "title": "عنوان", 33 | "paragraph": "متن معمولی", 34 | "quote": "نقل قول", 35 | "code": "کد", 36 | "heading1": "سربرگ ۱", 37 | "heading2": "سربرگ ۲", 38 | "heading3": "سربرگ ۳", 39 | "heading4": "سربرگ ۴", 40 | "heading5": "سربرگ ۵", 41 | "heading6": "سربرگ ۶", 42 | "filename": "نام", 43 | "optional": "اختیاری", 44 | "unorderedlist": "لیست نامرتب", 45 | "orderedlist": "لیست مرتب", 46 | "outdent": "بیرون آمدگی", 47 | "indent": "تورفتگی", 48 | "horizontalrule": "خط", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "ویرایشگر متن پیشرفته", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/fi.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['fi'] = { 4 | "format": "Muotoilut", 5 | "image": "Kuva", 6 | "file": "Tiedosto", 7 | "link": "Linkki", 8 | "bold": "Lihavointi", 9 | "italic": "Kursivointi", 10 | "deleted": "Poistettu", 11 | "underline": "Alleviivaa", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Luettelot", 21 | "link-insert": "Lisää linkki", 22 | "link-edit": "Muokkaa linkkiä", 23 | "link-in-new-tab": "Avaa linkki uudessa välilehdessä", 24 | "unlink": "Poista linkki", 25 | "cancel": "Peru", 26 | "close": "Sulkea", 27 | "insert": "Lisää", 28 | "save": "Tallenna", 29 | "delete": "Poista", 30 | "text": "Teksti", 31 | "edit": "Muokata", 32 | "title": "Title", 33 | "paragraph": "Normaaliteksti", 34 | "quote": "Lainaus", 35 | "code": "Koodi", 36 | "heading1": "Otsikko 1", 37 | "heading2": "Otsikko 2", 38 | "heading3": "Otsikko 3", 39 | "heading4": "Otsikko 4", 40 | "heading5": "Otsikko 5", 41 | "heading6": "Otsikko 6", 42 | "filename": "Nimi (valinnainen)", 43 | "optional": "valinnainen", 44 | "unorderedlist": "Luettelo luettelomerkein", 45 | "orderedlist": "Numeroitu luettelo", 46 | "outdent": "Vähennä sisennystä", 47 | "indent": "Lisää sisennystä", 48 | "horizontalrule": "Viiva", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rich text editor", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/fr.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['fr'] = { 4 | "format": "Format", 5 | "image": "Image", 6 | "file": "Fichier", 7 | "link": "Lien", 8 | "bold": "Gras", 9 | "italic": "Italique", 10 | "deleted": "Barré", 11 | "underline": "Souligné", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Listes", 21 | "link-insert": "Insérer un lien", 22 | "link-edit": "Editer le lien", 23 | "link-in-new-tab": "Ouvrir le lien dans un nouvel onglet", 24 | "unlink": "Retirer le lien", 25 | "cancel": "Annuler", 26 | "close": "Fermer", 27 | "insert": "Insérer", 28 | "save": "Sauvegarder", 29 | "delete": "Supprimer", 30 | "text": "Texte", 31 | "edit": "Editer", 32 | "title": "Titre", 33 | "paragraph": "Texte normal", 34 | "quote": "Citation", 35 | "code": "Code", 36 | "heading1": "Titre 1", 37 | "heading2": "Titre 2", 38 | "heading3": "Titre 3", 39 | "heading4": "Titre 4", 40 | "heading5": "Titre 5", 41 | "heading6": "Titre 6", 42 | "filename": "Nom", 43 | "optional": "Optionnel", 44 | "unorderedlist": "Liste non-ordonnée", 45 | "orderedlist": "Liste ordonnée", 46 | "outdent": "Réduire le retrait", 47 | "indent": "Augmenter le retrait", 48 | "horizontalrule": "Ligne", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Editeur de texte enrichi", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/he.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['he'] = { 4 | "format": "פורמט", 5 | "image": "תמונה", 6 | "file": "קובץ", 7 | "link": "קישור", 8 | "bold": "מודגש", 9 | "italic": "נטוי", 10 | "deleted": "מחוק", 11 | "underline": "Underline", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "רשימות", 21 | "link-insert": "הוסף קישור", 22 | "link-edit": "ערוך קישור", 23 | "link-in-new-tab": "פתח קישור בחלון חדש", 24 | "unlink": "הסר קישור", 25 | "cancel": "בטל", 26 | "close": "סגור", 27 | "insert": "הכנס", 28 | "save": "שמור", 29 | "delete": "מחק", 30 | "text": "טקסט", 31 | "edit": "ערוך", 32 | "title": "כותרת", 33 | "paragraph": "טקסט רגיל", 34 | "quote": "ציטוט", 35 | "code": "קוד", 36 | "heading1": "כותרת 1", 37 | "heading2": "כותרת 2", 38 | "heading3": "כותרת 3", 39 | "heading4": "כותרת 4", 40 | "heading5": "כותרת 5", 41 | "heading6": "כותרת 6", 42 | "filename": "שם", 43 | "optional": "אופציונאלי", 44 | "unorderedlist": "רשימת נקודות", 45 | "orderedlist": "רשימה ממוספרת", 46 | "outdent": "קרב לשוליים", 47 | "indent": "הרחק מהשוליים", 48 | "horizontalrule": "קו אופקי", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "עורך טקסט עשיר", 53 | "caption": "כיתוב", 54 | "bulletslist": "נקודות", 55 | "numberslist": "ממוספר", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/hr.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['en'] = { 4 | "format": "Oblikovanje", 5 | "image": "Slika", 6 | "file": "Datoteka", 7 | "link": "Poveznica", 8 | "bold": "Podebljano", 9 | "italic": "Kurziv", 10 | "deleted": "Precrtano", 11 | "underline": "Podcrtano", 12 | "superscript": "Eksponent", 13 | "subscript": "Indeks", 14 | "bold-abbr": "P", 15 | "italic-abbr": "K", 16 | "deleted-abbr": "Pr", 17 | "underline-abbr": "Po", 18 | "superscript-abbr": "Eks", 19 | "subscript-abbr": "Ind", 20 | "lists": "Liste", 21 | "link-insert": "Umetni poveznicu", 22 | "link-edit": "Uredi poveznicu", 23 | "link-in-new-tab": "Otvori poveznicu u novoj kartici", 24 | "unlink": "Ukloni poveznicu", 25 | "cancel": "Odustani", 26 | "close": "Zatvori", 27 | "insert": "Umetni", 28 | "save": "Spremi", 29 | "delete": "Obriši", 30 | "text": "Tekst", 31 | "edit": "Uredi", 32 | "title": "Naslov", 33 | "paragraph": "Obični tekst", 34 | "quote": "Citat", 35 | "code": "Kod", 36 | "heading1": "Naslov 1", 37 | "heading2": "Naslov 2", 38 | "heading3": "Naslov 3", 39 | "heading4": "Naslov 4", 40 | "heading5": "Naslov 5", 41 | "heading6": "Naslov 6", 42 | "filename": "Naziv", 43 | "optional": "opcionalno", 44 | "unorderedlist": "Lista s oznakama", 45 | "orderedlist": "Numerirana lista", 46 | "outdent": "Izvučenost", 47 | "indent": "Uvučenost", 48 | "horizontalrule": "Redak", 49 | "upload": "Učitaj", 50 | "upload-label": "Povuci datoteke ovdje ili klikni za učitavanje", 51 | "upload-change-label": "Povuci ovdje novu sliku kako bi se promijenila", 52 | "accessibility-help-label": "Rich text uređivanje", 53 | "caption": "Natpis", 54 | "bulletslist": "Natuknice", 55 | "numberslist": "Brojevi", 56 | "image-position": "Pozicija", 57 | "none": "Nijedno", 58 | "left": "Lijevo", 59 | "right": "Desno", 60 | "center": "Sredina", 61 | "undo": "Poništi korak", 62 | "redo": "Ponovi korak" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/hu.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['hu'] = { 4 | "format": "Formázás", 5 | "image": "Kép", 6 | "file": "Fájl", 7 | "link": "Hivatkozás", 8 | "bold": "Félkövér", 9 | "italic": "Dőlt", 10 | "deleted": "Áthúzott", 11 | "underline": "Aláhúzott", 12 | "superscript": "Felső index", 13 | "subscript": "Alsó index", 14 | "bold-abbr": "F", 15 | "italic-abbr": "D", 16 | "deleted-abbr": "H", 17 | "underline-abbr": "A", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Listák", 21 | "link-insert": "Hivatkozás beszúrása", 22 | "link-edit": "Hivatkozás módosítása", 23 | "link-in-new-tab": "Megnyitás új lapon", 24 | "unlink": "Hivatkozás törlése", 25 | "cancel": "Mégsem", 26 | "close": "Bezárás", 27 | "insert": "Beillesztés", 28 | "save": "Mentés", 29 | "delete": "Törlés", 30 | "text": "Szöveg", 31 | "edit": "Szerkesztés", 32 | "title": "Cím", 33 | "paragraph": "Normál szöveg", 34 | "quote": "Idézet", 35 | "code": "Forráskód", 36 | "heading1": "Címsor 1", 37 | "heading2": "Címsor 2", 38 | "heading3": "Címsor 3", 39 | "heading4": "Címsor 4", 40 | "heading5": "Címsor 5", 41 | "heading6": "Címsor 6", 42 | "filename": "Név", 43 | "optional": "választható", 44 | "unorderedlist": "Rendezett lista", 45 | "orderedlist": "Számozott lista", 46 | "outdent": "Behúzás csökkentése", 47 | "indent": "Behúzás növelése", 48 | "horizontalrule": "Vonal", 49 | "upload": "Feltöltés", 50 | "upload-label": "Át a fájlokat vagy kattintson ide, hogy kiválassza", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Szövegszerkesztő", 53 | "caption": "Felirat", 54 | "bulletslist": "Golyók", 55 | "numberslist": "Számok", 56 | "image-position": "Pozíció", 57 | "none": "Egyik sem", 58 | "left": "Balra", 59 | "right": "Jobb", 60 | "center": "Középre", 61 | "undo": "Kibont", 62 | "redo": "Újra" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/it.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['it'] = { 4 | "format": "Formato", 5 | "image": "Immagine", 6 | "file": "File", 7 | "link": "Link", 8 | "bold": "Grassetto", 9 | "italic": "Corsivo", 10 | "deleted": "Barrato", 11 | "underline": "Sottolineato", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "G", 15 | "italic-abbr": "C", 16 | "deleted-abbr": "B", 17 | "underline-abbr": "S", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Liste", 21 | "link-insert": "Inserisci link", 22 | "link-edit": "Modifica link", 23 | "link-in-new-tab": "Apri link in un nuovo tab", 24 | "unlink": "Elimina link", 25 | "cancel": "Annulla", 26 | "close": "Chiudi", 27 | "insert": "Inserisci", 28 | "save": "Salva", 29 | "delete": "Cancella", 30 | "text": "Testo", 31 | "edit": "Modifica", 32 | "title": "Titolo", 33 | "paragraph": "Testo Normale", 34 | "quote": "Citazione", 35 | "code": "Codice", 36 | "heading1": "Titolo 1", 37 | "heading2": "Titolo 2", 38 | "heading3": "Titolo 3", 39 | "heading4": "Titolo 4", 40 | "heading5": "Titolo 5", 41 | "heading6": "Titolo 6", 42 | "filename": "Nome", 43 | "optional": "opzionale", 44 | "unorderedlist": "Lista non ordinata", 45 | "orderedlist": "Lista ordinata", 46 | "outdent": "De-indenta", 47 | "indent": "Indenta", 48 | "horizontalrule": "Linea", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Editor di testo", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/ja.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['ja'] = { 4 | "format": "フォーマットする", 5 | "image": "画像", 6 | "file": "ファイル", 7 | "link": "リンク", 8 | "bold": "太字", 9 | "italic": "イタリック体", 10 | "deleted": "取り消し線", 11 | "underline": "下線", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "リスト", 21 | "link-insert": "リンクを挿入する", 22 | "link-edit": "リンクを編集する", 23 | "link-in-new-tab": "新しいタブでリンクを開く", 24 | "unlink": "リンクを解除する", 25 | "cancel": "取り消す", 26 | "close": "閉じる", 27 | "insert": "挿入する", 28 | "save": "保存する", 29 | "delete": "削除する", 30 | "text": "テキスト", 31 | "edit": "編集する", 32 | "title": "タイトル", 33 | "paragraph": "標準テキスト", 34 | "quote": "引用", 35 | "code": "コード", 36 | "heading1": "見出し 1", 37 | "heading2": "見出し 2", 38 | "heading3": "見出し 3", 39 | "heading4": "見出し 4", 40 | "heading5": "見出し 5", 41 | "heading6": "見出し 6", 42 | "filename": "名前", 43 | "optional": "任意", 44 | "unorderedlist": "番号なしリスト", 45 | "orderedlist": "番号付きリスト", 46 | "outdent": "インデントを戻す", 47 | "indent": "インデントする", 48 | "horizontalrule": "線", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "リッチテキストエディタ", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/ko.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['ko'] = { 4 | "format": "포맷", 5 | "image": "이미지", 6 | "file": "파일", 7 | "link": "링크", 8 | "bold": "굵게", 9 | "italic": "기울임꼴", 10 | "deleted": "취소선", 11 | "underline": "밑줄", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "목록", 21 | "link-insert": "링크 삽입", 22 | "link-edit": "링크 편집", 23 | "link-in-new-tab": "새 탭에 링크 열기", 24 | "unlink": "링크 끊기", 25 | "cancel": "취소", 26 | "close": "닫기", 27 | "insert": "삽입", 28 | "save": "저장", 29 | "delete": "삭제", 30 | "text": "글", 31 | "edit": "편집", 32 | "title": "제목", 33 | "paragraph": "보통 글", 34 | "quote": "인용", 35 | "code": "코드", 36 | "heading1": "제목 1", 37 | "heading2": "제목 2", 38 | "heading3": "제목 3", 39 | "heading4": "제목 4", 40 | "heading5": "제목 5", 41 | "heading6": "제목 6", 42 | "filename": "이름", 43 | "optional": "선택", 44 | "unorderedlist": "주문 안된 목록", 45 | "orderedlist": "주문 목록", 46 | "outdent": "내어쓰기", 47 | "indent": "들여쓰기", 48 | "horizontalrule": "행", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rich text 편집기", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/nl.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['nl'] = { 4 | "format": "Format", 5 | "image": "Afbeelding", 6 | "file": "Bestand", 7 | "link": "Link", 8 | "bold": "Vet", 9 | "italic": "Cursief", 10 | "deleted": "Doorstreept", 11 | "underline": "Onderstreept", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Lijsten", 21 | "link-insert": "Link invoegen", 22 | "link-edit": "Link Bewerken", 23 | "link-in-new-tab": "Open link in nieuw tabblad", 24 | "unlink": "Ontkoppelen", 25 | "cancel": "Annuleren", 26 | "close": "Afsluiten", 27 | "insert": "Invoegen", 28 | "save": "Opslaan", 29 | "delete": "Verwijder", 30 | "text": "Tekst", 31 | "edit": "Bewerken", 32 | "title": "Titel", 33 | "paragraph": "Normale tekst", 34 | "quote": "Citaat", 35 | "code": "Code", 36 | "heading1": "Koptekst 1", 37 | "heading2": "Koptekst 2", 38 | "heading3": "Koptekst 3", 39 | "heading4": "Koptekst 4", 40 | "heading5": "Koptekst 5", 41 | "heading6": "Koptekst 6", 42 | "filename": "Bestandsnaam", 43 | "optional": "Optioneel", 44 | "unorderedlist": "Ongeordende lijst", 45 | "orderedlist": "Geordende lijst", 46 | "outdent": "Uitspringen", 47 | "indent": "Inspringen", 48 | "horizontalrule": "Streep", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "RTF editor", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/no.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['no'] = { 4 | "format": "Format", 5 | "image": "Bilde", 6 | "file": "Fil", 7 | "link": "Link", 8 | "bold": "Fet", 9 | "italic": "Kursiv", 10 | "deleted": "Gjennomstreking", 11 | "underline": "Understreking", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "F", 15 | "italic-abbr": "K", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Punkt", 21 | "link-insert": "Sett inn link", 22 | "link-edit": "Rediger link", 23 | "link-in-new-tab": "Åpne link i ny fane", 24 | "unlink": "Fjern Understreking", 25 | "cancel": "Abryt", 26 | "close": "Lukk", 27 | "insert": "Sett inn", 28 | "save": "Lagre", 29 | "delete": "Slett", 30 | "text": "Tekst", 31 | "edit": "Rediger", 32 | "title": "Tittel", 33 | "paragraph": "Normal tekst", 34 | "quote": "Sitat", 35 | "code": "Kode", 36 | "heading1": "Overskrift 1", 37 | "heading2": "Overskrift 2", 38 | "heading3": "Overskrift 3", 39 | "heading4": "Overskrift 4", 40 | "heading5": "Overskrift 5", 41 | "heading6": "Overskrift 6", 42 | "filename": "Navn", 43 | "optional": "valgfri", 44 | "unorderedlist": "Unordered List", 45 | "orderedlist": "Punktliste", 46 | "outdent": "Reduser innrykk", 47 | "indent": "Øk innrykk", 48 | "horizontalrule": "Linje", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rik-tekst behandler", 53 | "caption": "Bildetekst", 54 | "bulletslist": "Punkter", 55 | "numberslist": "Nummerering", 56 | "image-position": "Posisjon", 57 | "none": "Ingen", 58 | "left": "Venstre", 59 | "right": "Høgre", 60 | "center": "Senter", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/pl.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['pl'] = { 4 | "format": "Formatuj", 5 | "image": "Obrazek", 6 | "file": "Plik", 7 | "link": "Link", 8 | "bold": "Pogrubienie", 9 | "italic": "Kursywa", 10 | "deleted": "Przekreślenie", 11 | "underline": "Podkreślenie", 12 | "superscript": "Indeks górny", 13 | "subscript": "Indeks dolny", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Lista", 21 | "link-insert": "Wstaw link", 22 | "link-edit": "Edytuj link", 23 | "link-in-new-tab": "Otwórz link w nowej karcie", 24 | "unlink": "Usuń link", 25 | "cancel": "Anuluj", 26 | "close": "Zamknij", 27 | "insert": "Wstaw", 28 | "save": "Zapisz", 29 | "delete": "Usuń", 30 | "text": "Text", 31 | "edit": "Edytuj", 32 | "title": "Tytuł", 33 | "paragraph": "Zwykły tekst", 34 | "quote": "Cytat", 35 | "code": "Kod", 36 | "heading1": "Nagłówek 1", 37 | "heading2": "Nagłówek 2", 38 | "heading3": "Nagłówek 3", 39 | "heading4": "Nagłówek 4", 40 | "heading5": "Nagłówek 5", 41 | "heading6": "Nagłówek 6", 42 | "filename": "Nazwa", 43 | "optional": "opcjonalnie", 44 | "unorderedlist": "Lista punktowana", 45 | "orderedlist": "Lista numerowana", 46 | "outdent": "Zmniejsz wcięcie", 47 | "indent": "Zwiększ wcięcie", 48 | "horizontalrule": "Linia pozioma", 49 | "upload": "Przekazać plik", 50 | "upload-label": "Upuść pliki tutaj lub kliknij, aby przesłać", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Edytor tekstu", 53 | "caption": "Podpis", 54 | "bulletslist": "Kule", 55 | "numberslist": "Liczby", 56 | "image-position": "Pozycja", 57 | "none": "Żaden", 58 | "left": "Lewo", 59 | "right": "Prawa", 60 | "center": "Centrum", 61 | "undo": "Cofnij", 62 | "redo": "Ponów" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/pt_br.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['pt_br'] = { 4 | "format": "Formato", 5 | "image": "Imagem", 6 | "file": "Arquivo", 7 | "link": "Link", 8 | "bold": "Negrito", 9 | "italic": "Itálico", 10 | "deleted": "Tachado", 11 | "underline": "Sublinhado", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "N", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "T", 17 | "underline-abbr": "S", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Listas", 21 | "link-insert": "Inserir link", 22 | "link-edit": "Editar link", 23 | "link-in-new-tab": "Abrir link em nova guia", 24 | "unlink": "Desvincular", 25 | "cancel": "Cancelar", 26 | "close": "Fechar", 27 | "insert": "Inserir", 28 | "save": "Salvar", 29 | "delete": "Excluir", 30 | "text": "Texto", 31 | "edit": "Editar", 32 | "title": "Título", 33 | "paragraph": "Texto normal", 34 | "quote": "Citação", 35 | "code": "Código", 36 | "header1": "Cabeçalho 1", 37 | "header2": "Cabeçalho 2", 38 | "header3": "Cabeçalho 3", 39 | "header4": "Cabeçalho 4", 40 | "header5": "Cabeçalho 5", 41 | "header6": "Cabeçalho 6", 42 | "filename": "Nome", 43 | "optional": "Opcional", 44 | "unorderedlist": "Lista não ordenada", 45 | "orderedlist": "Lista ordenada", 46 | "outdent": "Diminuir recuo", 47 | "indent": "Recuar", 48 | "horizontalrule": "Linha", 49 | "upload": "Enviar", 50 | "upload-label": "Solte os arquivos aqui ou clique para enviar", 51 | "upload-change-label": "Solte uma nova imagem para alterar", 52 | "accessibility-help-label": "Editor de Rich Text", 53 | "caption": "Subtitulo", 54 | "bulletslist": "Lista com ponto", 55 | "numberslist": "Lista numérica", 56 | "image-position": "Posição", 57 | "none": "Nenhum", 58 | "left": "Esquerda", 59 | "right": "Direita", 60 | "center": "Centro", 61 | "undo": "Desfazer", 62 | "redo": "Refazer", 63 | "table": "Tabela", 64 | "insert-table": "Inserir tabela", 65 | "insert-row-above": "Inserir linha à acima", 66 | "insert-row-below": "Inserir linha à abaixo", 67 | "insert-column-left": "Inserir coluna à esquerda", 68 | "insert-column-right": "Inserir coluna à direita", 69 | "add-head": "Adicionar cabeçalho", 70 | "delete-head": "Remover cabeçalho", 71 | "delete-column": "Remover coluna", 72 | "delete-row": "Remover linha", 73 | "delete-table": "Remover tabela", 74 | "fontcolor": "Cor do texto", 75 | "text": "Texto", 76 | "highlight": "Destaque", 77 | "fontfamily": "Fonte", 78 | "remove-font-family": "Remover fonte", 79 | "choose": "Escolher", 80 | "size": "Tamanho", 81 | "remove-size": "Remover tamanho da fonte", 82 | "fullscreen": "Tela cheia", 83 | "align": "Alinhar", 84 | "align-left": "Alinhar à esquerda", 85 | "align-center": "Alinhar ao centro", 86 | "align-right": "Alinhar à direita", 87 | "align-justify": "Alinhar justificado", 88 | "words": "Palavras", 89 | "chars": "Caracteres", 90 | "style": "Estilo", 91 | "properties": "Propriedades", 92 | "specialchars": "Caracteres especiais", 93 | "change-text-direction": "Direção do texto", 94 | "left-to-right": "Esquerda para direita", 95 | "right-to-left": "Direita para esquerda", 96 | "change": "Trocar", 97 | "variable": "Variável", 98 | "variable-select": "Por favor, selecione a variável", 99 | "video": "Vídeo", 100 | "video-html-code": "Código de incorporação de vídeo ou link do YouTube/Vimeo", 101 | "widget": "Widget", 102 | "widget-html-code": "Código HTML do Widget" 103 | }; 104 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/ro.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['ro'] = { 4 | "format": "Format", 5 | "image": "Imagine", 6 | "file": "Fișier", 7 | "link": "Link", 8 | "bold": "Aldin", 9 | "italic": "Cursiv", 10 | "deleted": "Tăiere cu o linie", 11 | "underline": "Subliniere", 12 | "superscript": "Exponent", 13 | "subscript": "Indice", 14 | "bold-abbr": "A", 15 | "italic-abbr": "C", 16 | "deleted-abbr": "T", 17 | "underline-abbr": "S", 18 | "superscript-abbr": "Exp", 19 | "subscript-abbr": "Ind", 20 | "lists": "Liste", 21 | "link-insert": "Inserare link", 22 | "link-edit": "Editare link", 23 | "link-in-new-tab": "Deschidere link în filă nouă", 24 | "unlink": "Anulare link", 25 | "cancel": "Revocare", 26 | "close": "Închidere", 27 | "insert": "Inserare", 28 | "save": "Salvare", 29 | "delete": "Ștergere", 30 | "text": "Text", 31 | "edit": "Editare", 32 | "title": "Titlu", 33 | "paragraph": "Text normal", 34 | "quote": "Citat", 35 | "code": "Cod", 36 | "heading1": "Antet 1", 37 | "heading2": "Antet 2", 38 | "heading3": "Antet 3", 39 | "heading4": "Antet 4", 40 | "heading5": "Antet 5", 41 | "heading6": "Antet 6", 42 | "filename": "Nume", 43 | "optional": "opțional", 44 | "unorderedlist": "Listă neordonată", 45 | "orderedlist": "Listă ordonată", 46 | "outdent": "Indentare negativă", 47 | "indent": "Indentare", 48 | "horizontalrule": "Linie", 49 | "upload": "Încărcare", 50 | "upload-label": "Fixați fișierele aici sau faceți clic pentru a le încărca", 51 | "upload-change-label": "Fixați o nouă imagine pentru a schimba", 52 | "accessibility-help-label": "Editor de text îmbogățit", 53 | "caption": "Legendă", 54 | "bulletslist": "Marcatori", 55 | "numberslist": "Numere", 56 | "image-position": "Poziție", 57 | "none": "Niciuna/niciunul", 58 | "left": "Stânga", 59 | "right": "Dreapta", 60 | "center": "Centru", 61 | "undo": "Anulare", 62 | "redo": "Refacere" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/ru.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['ru'] = { 4 | "format": "Формат", 5 | "image": "Картинка", 6 | "file": "Файл", 7 | "link": "Ссылка", 8 | "bold": "Полужирный", 9 | "italic": "Курсив", 10 | "deleted": "Зачеркнутый", 11 | "underline": "Подчеркнутый", 12 | "superscript": "Надстрочный", 13 | "subscript": "Подстрочный", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Списки", 21 | "link-insert": "Вставить ссылку", 22 | "link-edit": "Редактировать ссылку", 23 | "link-in-new-tab": "Открыть ссылку в новом табе", 24 | "unlink": "Удалить ссылку", 25 | "cancel": "Отменить", 26 | "close": "Закрыть", 27 | "insert": "Вставить", 28 | "save": "Сохранить", 29 | "delete": "Удалить", 30 | "text": "Текст", 31 | "edit": "Редактировать", 32 | "title": "Title", 33 | "paragraph": "Обычный текст", 34 | "quote": "Цитата", 35 | "code": "Код", 36 | "heading1": "Заголовок 1", 37 | "heading2": "Заголовок 2", 38 | "heading3": "Заголовок 3", 39 | "heading4": "Заголовок 4", 40 | "heading5": "Заголовок 5", 41 | "heading6": "Заголовок 6", 42 | "filename": "Имя файла", 43 | "optional": "необязательно", 44 | "unorderedlist": "Ненумерованный список", 45 | "orderedlist": "Нумерованный список", 46 | "outdent": "Убрать отступ", 47 | "indent": "Добавить отступ", 48 | "horizontalrule": "Линия", 49 | "upload": "Загрузить", 50 | "upload-label": "Перетащите файлы или нажмите для загрузки", 51 | "upload-change-label": "Перетащите новую картинку", 52 | "accessibility-help-label": "Редактор форматированного текста", 53 | "caption": "Подпись", 54 | "bulletslist": "Маркеры", 55 | "numberslist": "Нумерация", 56 | "image-position": "Обтекание", 57 | "none": "Нет", 58 | "left": "Слева", 59 | "right": "Справа", 60 | "center": "По центру", 61 | "undo": "Отменить", 62 | "redo": "Повторить" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/sk.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['sk'] = { 4 | "format": "Formát", 5 | "image": "Obrázok", 6 | "file": "Súbor", 7 | "link": "Odkaz", 8 | "bold": "Tučné", 9 | "italic": "Kurzíva", 10 | "deleted": "Preškrtnuté", 11 | "underline": "Podčiarknuté", 12 | "superscript": "Horný index", 13 | "subscript": "Spodný index", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Zoznam", 21 | "link-insert": "Vložiť odkaz", 22 | "link-edit": "Upraviť odkaz", 23 | "link-in-new-tab": "Otvoriť odkaz v novom okne", 24 | "unlink": "Zrušiť odkaz", 25 | "cancel": "Zrušiť", 26 | "close": "Zatvoriť", 27 | "insert": "Vložiť", 28 | "save": "Uložiť", 29 | "delete": "Vymazať", 30 | "text": "Text", 31 | "edit": "Upraviť", 32 | "title": "Názov", 33 | "paragraph": "Odsek", 34 | "quote": "Citácia", 35 | "code": "Kód", 36 | "heading1": "Nadpis 1", 37 | "heading2": "Nadpis 2", 38 | "heading3": "Nadpis 3", 39 | "heading4": "Nadpis 4", 40 | "heading5": "Nadpis 5", 41 | "heading6": "Nadpis 6", 42 | "filename": "Meno", 43 | "optional": "voliteľné", 44 | "unorderedlist": "Nezoradený zoznam", 45 | "orderedlist": "Zoradený zoznam", 46 | "outdent": "Predsadiť", 47 | "indent": "Odsadiť", 48 | "horizontalrule": "Linka", 49 | "upload": "Nahrať", 50 | "upload-label": "Presuňte sem súbory alebo kliknite pre výber", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rich text editor", 53 | "caption": "Titulok", 54 | "bulletslist": "odrážkový zoznam", 55 | "numberslist": "číslovaný zoznam", 56 | "image-position": "Pozícia", 57 | "none": "Žiadne", 58 | "left": "Vľavo", 59 | "right": "Vpravo", 60 | "center": "Na stred", 61 | "undo": "Späť", 62 | "redo": "Obnoviť" 63 | }; 64 | })(Redactor); 65 | -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/sl.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['sl'] = { 4 | "format": "Oblikovanje", 5 | "image": "Slika", 6 | "file": "Datoteka", 7 | "link": "Povezava", 8 | "bold": "Krepko", 9 | "italic": "Ležeče", 10 | "deleted": "Prečrtano", 11 | "underline": "Podčrtano", 12 | "superscript": "Nadpisano", 13 | "subscript": "Podpisano", 14 | "bold-abbr": "K", 15 | "italic-abbr": "L", 16 | "deleted-abbr": "P", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Nad", 19 | "subscript-abbr": "Pod", 20 | "lists": "Seznami", 21 | "link-insert": "Vstavi povezavo", 22 | "link-edit": "Uredi povezavo", 23 | "link-in-new-tab": "Odpri povezavo v novem zavihku", 24 | "unlink": "Odstrani povezavo", 25 | "cancel": "Prekliči", 26 | "close": "Zapri", 27 | "insert": "Vstavi", 28 | "save": "Shrani", 29 | "delete": "Izbriši", 30 | "text": "Besedilo", 31 | "edit": "Uredi", 32 | "title": "Naslov", 33 | "paragraph": "Navadno besedilo", 34 | "quote": "Navedek", 35 | "code": "Koda", 36 | "heading1": "Naslov 1", 37 | "heading2": "Naslov 2", 38 | "heading3": "Naslov 3", 39 | "heading4": "Naslov 4", 40 | "heading5": "Naslov 5", 41 | "heading6": "Naslov 6", 42 | "filename": "Ime", 43 | "optional": "izbirno", 44 | "unorderedlist": "Označen seznam", 45 | "orderedlist": "Oštevilčen seznam", 46 | "outdent": "Zmanjšaj zamik", 47 | "indent": "Povečaj zamik", 48 | "horizontalrule": "Črta", 49 | "upload": "Naloži", 50 | "upload-label": "Povleci datoteke sem ali klikni za nalaganje", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Urejevalnik obogatenega besedila", 53 | "caption": "Napis", 54 | "bulletslist": "Oznake", 55 | "numberslist": "Številčenje", 56 | "image-position": "Položaj", 57 | "none": "Brez", 58 | "left": "Levo", 59 | "right": "Desno", 60 | "center": "Sredinsko", 61 | "undo": "Razveljavi", 62 | "redo": "Uveljavi" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/sv.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['sv'] = { 4 | "format": "Format", 5 | "image": "Bild", 6 | "file": "Fil", 7 | "link": "Länk", 8 | "bold": "Fet", 9 | "italic": "Kursiv", 10 | "deleted": "Överstruken", 11 | "underline": "Understruken", 12 | "superscript": "Upphöjd", 13 | "subscript": "Nedsänkt", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Lista", 21 | "link-insert": "Infoga länk", 22 | "link-edit": "Redigera länk", 23 | "link-in-new-tab": "Öppna länk i nytt fönster", 24 | "unlink": "Radera länk", 25 | "cancel": "Avbryt", 26 | "close": "Stäng", 27 | "insert": "Infoga", 28 | "save": "Spara", 29 | "delete": "Radera", 30 | "text": "Text", 31 | "edit": "Redigera", 32 | "title": "Titel", 33 | "paragraph": "Normal text", 34 | "quote": "Citat", 35 | "code": "Kod", 36 | "heading1": "Titel 1", 37 | "heading2": "Titel 2", 38 | "heading3": "Titel 3", 39 | "heading4": "Titel 4", 40 | "heading5": "Titel 5", 41 | "heading6": "Titel 6", 42 | "filename": "Namn", 43 | "optional": "valfritt", 44 | "unorderedlist": "Osorterad lista", 45 | "orderedlist": "Sorterad lista", 46 | "outdent": "Minska utdrag", 47 | "indent": "Öka utdrag", 48 | "horizontalrule": "Linje", 49 | "upload": "Ladda upp", 50 | "upload-label": "Släpp filer här eller klicka för att ladda upp", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Textredigerare", 53 | "caption": "Undertext", 54 | "bulletslist": "Punkter", 55 | "numberslist": "Nummer", 56 | "image-position": "Position", 57 | "none": "Ingen", 58 | "left": "Vänster", 59 | "right": "Höger", 60 | "center": "Centrerad", 61 | "undo": "Ångra", 62 | "redo": "Gör om", 63 | 64 | /* Table plugin */ 65 | "table": "Tabell", 66 | "insert-table": "Infoga tabell", 67 | "insert-row-above": "Infoga rad ovanför", 68 | "insert-row-below": "Infoga rad undertill", 69 | "insert-column-left": "Infoga kolumn till vänster", 70 | "insert-column-right": "Infoga kolumn till höger", 71 | "add-head": "Lägg till rubrikrad", 72 | "delete-head": "Ta bort rubrikrad", 73 | "delete-column": "Ta bort kolumn", 74 | "delete-row": "Ta bort rad", 75 | "delete-table": "Ta bort tabell", 76 | 77 | /* Fullscreen plugin */ 78 | "fullscreen": "Fullskärm", 79 | 80 | /* Font color plugin */ 81 | "fontcolor": "Textfärg", 82 | "highlight": "Färgöverstrykning", 83 | 84 | /* Font family plugin */ 85 | "fontfamily": "Typsnitt", 86 | "remove-font-family": "Återställ typsnitt", 87 | 88 | /* Font size plugin */ 89 | "size": "Storlek", 90 | "remove-size": "Återställ textstorlek", 91 | 92 | /* Imagemanager/Filemanager plugin */ 93 | "choose": "Välj", 94 | 95 | /* Alignment plugin */ 96 | "align": "Justera", 97 | "align-left": "Vänsterjustera", 98 | "align-center": "Mittenjustera", 99 | "align-right": "Högerjustera", 100 | "align-justify": "Marginaljustera", 101 | 102 | /* Video plugin */ 103 | "video": "Video", 104 | "video-html-code": "Inbäddningslänk eller Youtube/Vimeo länk" 105 | 106 | }; 107 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/tr.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['tr'] = { 4 | "format": "Format", 5 | "image": "Görsel", 6 | "file": "Dosya", 7 | "link": "Link", 8 | "bold": "Kalın", 9 | "italic": "İtalik", 10 | "deleted": "Üzeri çizgili", 11 | "underline": "Altı çizgili", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Listeleme", 21 | "link-insert": "Link ekle", 22 | "link-edit": "Linki düzenle", 23 | "link-in-new-tab": "Yeni bir pencerede aç", 24 | "unlink": "Linki Kaldır", 25 | "cancel": "Vazgeç", 26 | "close": "Kapat", 27 | "insert": "Ekle", 28 | "save": "Kaydet", 29 | "delete": "Sil", 30 | "text": "Metin", 31 | "edit": "Düzenle", 32 | "title": "Başlık", 33 | "paragraph": "Normal yazı", 34 | "quote": "Alıntı", 35 | "code": "Kod", 36 | "heading1": "Başlık 1", 37 | "heading2": "Başlık 2", 38 | "heading3": "Başlık 3", 39 | "heading4": "Başlık 4", 40 | "heading5": "Başlık 5", 41 | "heading6": "Başlık 6", 42 | "filename": "İsim", 43 | "optional": "opsiyonel", 44 | "unorderedlist": "Sırasız Liste", 45 | "orderedlist": "Sıralı Liste", 46 | "outdent": "Dışarı Doğru", 47 | "indent": "İçeri Doğru", 48 | "horizontalrule": "Çizgi", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Zenginleştirilmiş yazı editorü", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/zh_cn.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['zh_cn'] = { 4 | "format": "格式", 5 | "image": "图片", 6 | "file": "文件", 7 | "link": "链接", 8 | "bold": "加粗", 9 | "italic": "斜体", 10 | "deleted": "删除线", 11 | "underline": "底线", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "列表", 21 | "link-insert": "插入链接", 22 | "link-edit": "编辑链接", 23 | "link-in-new-tab": "在新页面中打开", 24 | "unlink": "取消链接", 25 | "cancel": "取消", 26 | "close": "关闭", 27 | "insert": "插入", 28 | "save": "保存", 29 | "delete": "删除", 30 | "text": "文本", 31 | "edit": "编辑", 32 | "title": "标题", 33 | "paragraph": "段落", 34 | "quote": "引用", 35 | "code": "代码", 36 | "heading1": "标题 1", 37 | "heading2": "标题 2", 38 | "heading3": "标题 3", 39 | "heading4": "标题 4", 40 | "heading5": "标题 5", 41 | "heading6": "标题 6", 42 | "filename": "文件名", 43 | "optional": "optional", 44 | "unorderedlist": "无序列表", 45 | "orderedlist": "有序列表", 46 | "outdent": "向左缩进", 47 | "indent": "向右缩进", 48 | "horizontalrule": "水平分隔线", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "富文本编辑器", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_langs/zh_tw.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['zh_tw'] = { 4 | "format": "樣式", 5 | "image": "插入圖片", 6 | "file": "插入文件", 7 | "link": "連結", 8 | "bold": "將文字變成粗體", 9 | "italic": "將文字變成斜體", 10 | "deleted": "刪除線", 11 | "underline": "底線", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "列表", 21 | "link-insert": "插入連結", 22 | "link-edit": "編輯連結", 23 | "link-in-new-tab": "開啟新分頁", 24 | "unlink": "移除連結", 25 | "cancel": "取消", 26 | "close": "關閉", 27 | "insert": "插入", 28 | "save": "儲存", 29 | "delete": "刪除", 30 | "text": "內文", 31 | "edit": "編輯", 32 | "title": "標題", 33 | "paragraph": "段落", 34 | "quote": "引用", 35 | "code": "原始碼", 36 | "heading1": "標題 1", 37 | "heading2": "標題 2", 38 | "heading3": "標題 3", 39 | "heading4": "標題 4", 40 | "heading5": "標題 5", 41 | "heading6": "標題 6", 42 | "filename": "檔案名稱", 43 | "optional": "optional", 44 | "unorderedlist": "項目列表", 45 | "orderedlist": "編號列表", 46 | "outdent": "減少縮排", 47 | "indent": "增加縮排", 48 | "horizontalrule": "插入水平線", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rich text editor", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_plugins/alignment/alignment.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.add('plugin', 'alignment', { 4 | translations: { 5 | en: { 6 | "align": "Align", 7 | "align-left": "Align Left", 8 | "align-center": "Align Center", 9 | "align-right": "Align Right", 10 | "align-justify": "Align Justify" 11 | } 12 | }, 13 | init: function(app) 14 | { 15 | this.app = app; 16 | this.opts = app.opts; 17 | this.lang = app.lang; 18 | this.block = app.block; 19 | this.toolbar = app.toolbar; 20 | }, 21 | // public 22 | start: function() 23 | { 24 | var dropdown = {}; 25 | 26 | dropdown.left = { title: this.lang.get('align-left'), api: 'plugin.alignment.set', args: 'left' }; 27 | dropdown.center = { title: this.lang.get('align-center'), api: 'plugin.alignment.set', args: 'center' }; 28 | dropdown.right = { title: this.lang.get('align-right'), api: 'plugin.alignment.set', args: 'right' }; 29 | dropdown.justify = { title: this.lang.get('align-justify'), api: 'plugin.alignment.set', args: 'justify' }; 30 | 31 | var $button = this.toolbar.addButton('alignment', { title: this.lang.get('align') }); 32 | $button.setIcon(''); 33 | $button.setDropdown(dropdown); 34 | }, 35 | set: function(type) 36 | { 37 | if (type === 'left' && this.opts.direction === 'ltr') 38 | { 39 | return this._remove(); 40 | } 41 | 42 | var args = { 43 | style: { 'text-align': type } 44 | }; 45 | 46 | this.block.toggle(args); 47 | }, 48 | 49 | // private 50 | _remove: function() 51 | { 52 | this.block.remove({ style: 'text-align' }); 53 | } 54 | }); 55 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_plugins/alignment/alignment.min.js: -------------------------------------------------------------------------------- 1 | Redactor.add("plugin","alignment",{translations:{en:{align:"Align","align-left":"Align Left","align-center":"Align Center","align-right":"Align Right","align-justify":"Align Justify"}},init:function(t){this.app=t,this.opts=t.opts,this.lang=t.lang,this.block=t.block,this.toolbar=t.toolbar},start:function(){var t={};t.left={title:this.lang.get("align-left"),api:"plugin.alignment.set",args:"left"},t.center={title:this.lang.get("align-center"),api:"plugin.alignment.set",args:"center"},t.right={title:this.lang.get("align-right"),api:"plugin.alignment.set",args:"right"},t.justify={title:this.lang.get("align-justify"),api:"plugin.alignment.set",args:"justify"};var i=this.toolbar.addButton("alignment",{title:this.lang.get("align")});i.setIcon(''),i.setDropdown(t)},set:function(t){if("left"===t&&"ltr"===this.opts.direction)return this._remove();var i={style:{"text-align":t}};this.block.toggle(i)},_remove:function(){this.block.remove({style:"text-align"})}}); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_plugins/beyondgrammar/beyondgrammar.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.add('plugin', 'beyondgrammar', { 4 | init: function(app) 5 | { 6 | this.app = app; 7 | this.opts = app.opts; 8 | this.editor = app.editor; 9 | this.cleaner = app.cleaner; 10 | }, 11 | // messages 12 | onoriginalblur: function(e) 13 | { 14 | var $target = $R.dom(e.target); 15 | if ($target.hasClass('pwa-suggest')) 16 | { 17 | e.preventDefault(); 18 | this.app.stopBlur = true; 19 | return; 20 | } 21 | 22 | this.app.stopBlur = false; 23 | }, 24 | onsource: { 25 | closed: function() 26 | { 27 | this.editor.focus(); 28 | this._activate(); 29 | } 30 | }, 31 | // public 32 | start: function() 33 | { 34 | this.GrammarChecker = this._getGrammarChecker(); 35 | if (!this.opts.beyondgrammar || !this.GrammarChecker) return; 36 | 37 | // add cleaner rules 38 | this.cleaner.addUnconvertRules('spellcheck', function($wrapper) 39 | { 40 | $wrapper.find('.pwa-mark').unwrap(); 41 | }); 42 | 43 | // activate 44 | this._activate(); 45 | }, 46 | 47 | // private 48 | _activate: function() 49 | { 50 | // editor 51 | var $editor = this.editor.getElement(); 52 | $editor.attr('spellcheck', false); 53 | 54 | var checker = new this.GrammarChecker($editor.get(), this.opts.beyondgrammar.service, this.opts.beyondgrammar.grammar); 55 | checker.init().then(function() 56 | { 57 | //grammar checker is inited and can be activate 58 | checker.activate(); 59 | }); 60 | }, 61 | _getGrammarChecker: function() 62 | { 63 | return (typeof window["BeyondGrammar"] === 'undefined') ? false : window["BeyondGrammar"]["GrammarChecker"]; 64 | } 65 | }); 66 | })(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_plugins/beyondgrammar/beyondgrammar.min.js: -------------------------------------------------------------------------------- 1 | !function(r){r.add("plugin","beyondgrammar",{init:function(t){this.app=t,this.opts=t.opts,this.editor=t.editor,this.cleaner=t.cleaner},onoriginalblur:function(t){if(r.dom(t.target).hasClass("pwa-suggest"))return t.preventDefault(),void(this.app.stopBlur=!0);this.app.stopBlur=!1},onsource:{closed:function(){this.editor.focus(),this._activate()}},start:function(){this.GrammarChecker=this._getGrammarChecker(),this.opts.beyondgrammar&&this.GrammarChecker&&(this.cleaner.addUnconvertRules("spellcheck",function(t){t.find(".pwa-mark").unwrap()}),this._activate())},_activate:function(){var t=this.editor.getElement();t.attr("spellcheck",!1);var r=new this.GrammarChecker(t.get(),this.opts.beyondgrammar.service,this.opts.beyondgrammar.grammar);r.init().then(function(){r.activate()})},_getGrammarChecker:function(){return void 0!==window.BeyondGrammar&&window.BeyondGrammar.GrammarChecker}})}(Redactor); -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_plugins/clips/clips.css: -------------------------------------------------------------------------------- 1 | .redactor-clips-list { 2 | list-style: none; 3 | margin: 0; 4 | padding: 0; 5 | } 6 | .redactor-clips-list li { 7 | display: inline-block; 8 | margin-right: 4px; 9 | margin-bottom: 4px; 10 | } 11 | .redactor-clips-list span { 12 | white-space: nowrap; 13 | background: rgba(0,125,255, .75); 14 | color: #fff; 15 | display: inline-block; 16 | padding: 3px 6px; 17 | line-height: 1; 18 | border-radius: 4px; 19 | cursor: pointer; 20 | } -------------------------------------------------------------------------------- /wordpress/assets/typerocket/js/lib/redactor/_plugins/clips/clips.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.add('plugin', 'clips', { 4 | translations: { 5 | en: { 6 | "clips": "Clips", 7 | "clips-select": "Please, select a clip" 8 | } 9 | }, 10 | modals: { 11 | 'clips': '' 12 | }, 13 | init: function(app) 14 | { 15 | this.app = app; 16 | this.opts = app.opts; 17 | this.lang = app.lang; 18 | this.toolbar = app.toolbar; 19 | this.insertion = app.insertion; 20 | }, 21 | // messages 22 | onmodal: { 23 | clips: { 24 | open: function($modal) 25 | { 26 | this._build($modal); 27 | } 28 | } 29 | }, 30 | 31 | // public 32 | start: function() 33 | { 34 | if (!this.opts.clips) return; 35 | 36 | var data = { 37 | title: this.lang.get('clips'), 38 | api: 'plugin.clips.open' 39 | }; 40 | 41 | var $button = this.toolbar.addButton('clips', data); 42 | $button.setIcon(''); 43 | }, 44 | open: function(type) 45 | { 46 | var options = { 47 | title: this.lang.get('clips'), 48 | width: '600px', 49 | name: 'clips' 50 | }; 51 | 52 | this.app.api('module.modal.build', options); 53 | }, 54 | 55 | // private 56 | _build: function($modal) 57 | { 58 | var $body = $modal.getBody(); 59 | var $label = this._buildLabel(); 60 | var $list = this._buildList(); 61 | 62 | this._buildItems($list); 63 | 64 | $body.html(''); 65 | $body.append($label); 66 | $body.append($list); 67 | 68 | }, 69 | _buildLabel: function() 70 | { 71 | var $label = $R.dom('