├── .bowerrc
├── .gitignore
├── CHANGELOG.md
├── README.md
├── app
└── components
│ ├── node-theme.vue
│ ├── site-theme.vue
│ └── widget-theme.vue
├── bower.json
├── composer.json
├── gulpfile.js
├── image.jpg
├── index.php
├── js
└── theme.js
├── languages
├── ar_EG
│ └── messages.php
├── ar_SA
│ └── messages.php
├── az@latin
│ └── messages.php
├── az_AZ
│ └── messages.php
├── bg_BG
│ └── messages.php
├── bn
│ └── messages.php
├── bo
│ └── messages.php
├── ca_ES
│ └── messages.php
├── cs_CZ
│ └── messages.php
├── cy
│ └── messages.php
├── da_DK
│ └── messages.php
├── de_AT
│ └── messages.php
├── de_CH
│ └── messages.php
├── de_DE
│ └── messages.php
├── el_GR
│ └── messages.php
├── en_GB
│ └── messages.php
├── en_HU
│ └── messages.php
├── en_US
│ └── messages.php
├── es_419
│ └── messages.php
├── es_AR
│ └── messages.php
├── es_CL
│ └── messages.php
├── es_CO
│ └── messages.php
├── es_ES
│ └── messages.php
├── es_MX
│ └── messages.php
├── et_EE
│ └── messages.php
├── fa
│ └── messages.php
├── fa_IR
│ └── messages.php
├── fi_FI
│ └── messages.php
├── fo
│ └── messages.php
├── fr_BE
│ └── messages.php
├── fr_CA
│ └── messages.php
├── fr_CH
│ └── messages.php
├── fr_FR
│ └── messages.php
├── gl_ES
│ └── messages.php
├── he_IL
│ └── messages.php
├── hr_HR
│ └── messages.php
├── hu_HU
│ └── messages.php
├── id_ID
│ └── messages.php
├── is_IS
│ └── messages.php
├── it_IT
│ └── messages.php
├── ja
│ └── messages.php
├── ja_JP
│ └── messages.php
├── ka_GE
│ └── messages.php
├── ko_KR
│ └── messages.php
├── ku
│ └── messages.php
├── lt_LT
│ └── messages.php
├── mk_MK
│ └── messages.php
├── ml
│ └── messages.php
├── ms_MY
│ └── messages.php
├── my_MM
│ └── messages.php
├── nb_NO
│ └── messages.php
├── nl_BE
│ └── messages.php
├── nl_NL
│ └── messages.php
├── pl_PL
│ └── messages.php
├── pt_BR
│ └── messages.php
├── pt_PT
│ └── messages.php
├── ro_RO
│ └── messages.php
├── ru@petr1708
│ └── messages.php
├── ru_RU
│ └── messages.php
├── ru_ee
│ └── messages.php
├── sk_SK
│ └── messages.php
├── sl_SI
│ └── messages.php
├── so
│ └── messages.php
├── sq
│ └── messages.php
├── sr_RS
│ └── messages.php
├── sr_RS@latin
│ └── messages.php
├── sv_SE
│ └── messages.php
├── ta
│ └── messages.php
├── te_IN
│ └── messages.php
├── th
│ └── messages.php
├── tl_PH
│ └── messages.php
├── tr_TR
│ └── messages.php
├── udm
│ └── messages.php
├── ug
│ └── messages.php
├── uk_UA
│ └── messages.php
├── uz
│ └── messages.php
├── vi_VN
│ └── messages.php
├── zh-Hant
│ └── messages.php
├── zh_CN
│ └── messages.php
└── zh_TW
│ └── messages.php
├── less
├── theme.less
└── uikit
│ ├── accordion.less
│ ├── alert.less
│ ├── article.less
│ ├── autocomplete.less
│ ├── badge.less
│ ├── base.less
│ ├── block.less
│ ├── breadcrumb.less
│ ├── button.less
│ ├── close.less
│ ├── column.less
│ ├── comment.less
│ ├── contrast.less
│ ├── datepicker.less
│ ├── description-list.less
│ ├── dotnav.less
│ ├── dropdown.less
│ ├── form-advanced.less
│ ├── form-password.less
│ ├── form.less
│ ├── grid.less
│ ├── htmleditor.less
│ ├── icon.less
│ ├── images
│ ├── checkbox-check-disabled.svg
│ ├── checkbox-check.svg
│ ├── checkbox-indeterminate.svg
│ ├── close-contrast.svg
│ ├── close.svg
│ ├── minus.svg
│ ├── navbar-toggle-contrast.svg
│ ├── navbar-toggle.svg
│ ├── overlay-plus.svg
│ ├── plus.svg
│ └── search.svg
│ ├── list.less
│ ├── modal.less
│ ├── nav.less
│ ├── navbar.less
│ ├── nestable.less
│ ├── notify.less
│ ├── offcanvas.less
│ ├── overlay.less
│ ├── pagination.less
│ ├── panel.less
│ ├── placeholder.less
│ ├── progress.less
│ ├── search.less
│ ├── slidenav.less
│ ├── sortable.less
│ ├── sticky.less
│ ├── subnav.less
│ ├── tab.less
│ ├── table.less
│ ├── text.less
│ ├── thumbnail.less
│ ├── thumbnav.less
│ ├── tooltip.less
│ ├── uikit.less
│ ├── utility.less
│ └── variables.less
├── package.json
├── views
├── blog
│ ├── post.php
│ └── posts.php
├── menu-navbar.php
├── position-blank.php
├── position-grid.php
├── position-panel.php
├── system
│ └── site
│ │ └── page.php
└── template.php
└── webpack.config.js
/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "directory": "app/assets"
3 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /app/bundle/*
2 | /app/assets/*
3 | /css
4 | /node_modules
5 | .DS_Store
6 | .idea
7 | *.zip
8 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Changelog
2 |
3 | ## 1.0.1 (July 10, 2019)
4 |
5 | ### Added
6 | - Added new translations
7 |
8 | ## 1.0.0 (April 13, 2016)
9 |
10 | ### Changed
11 | - Changed article divider
12 |
13 | ## 0.11.1 (April 7, 2016)
14 |
15 | ### Added
16 | - Added page title fallback if no logo is picked
17 |
18 | ### Changed
19 | - Made the logo height responsive
20 |
21 | ## 0.11.0 (February 24, 2016)
22 |
23 | ### Changed
24 | - Use view.init event for theme params
25 |
26 | ### Removed
27 | - Removed system messages
28 |
29 | ## 0.10.1 (February 24, 2016)
30 |
31 | ### Added
32 | - Added optional parallax effect for hero image
33 | - Added style option for top, main and bottom sections
34 | - Added optional off-canvas logo
35 | - Added translations
36 |
37 | ## 0.10.0 (December 15, 2015)
38 |
39 | ### Changed
40 | - Switched to Vuejs 1.0
41 | - Nicer code and blockquotes style
42 | - Better block-large padding for large screens
43 | - Updated button font-size and transition
44 | - Optimized close button and added better support for modal dialog blank
45 | - Added tab style for contrast
46 | - Rounded comment avatars
47 | - Smaller badges
48 | - Minor tweaks for alert, dropdown and icon
49 |
50 | ### Removed
51 | - Removed text centering in footer
52 |
53 | ## 0.9.3 (October 16, 2015)
54 |
55 | ### Fixed
56 | - Fixed missing CSS folder
57 |
58 | ## 0.9.2 (October 14, 2015)
59 |
60 | ### Added
61 | - Added missing meta data in post view
62 |
63 | ### Fixed
64 | - Fixed widget html class
65 | - Fixed date conversion to ISO8601 in blog views
66 |
67 | ## 0.9.1 (September 14, 2015)
68 |
69 | ### Fixed
70 | - Fixed undefined index `hero`
71 | - Fixed blog markup
72 |
73 | ## 0.9.0 (September 10, 2015)
74 |
75 | - Initial release
76 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # One Theme
2 |
3 | Pagekit's default theme.
--------------------------------------------------------------------------------
/app/components/site-theme.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
{{ 'Theme' | trans }}
6 |
7 |
8 |
9 |
10 |
11 |
12 |
31 |
32 |
33 |
34 |
65 |
--------------------------------------------------------------------------------
/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "theme-one",
3 | "dependencies": {
4 | "uikit": "#master"
5 | },
6 | "private": true
7 | }
8 |
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "pagekit/theme-one",
3 | "type": "pagekit-theme",
4 | "version": "1.0.1",
5 | "title": "One",
6 | "description": "Pagekit's default theme.",
7 | "license": "MIT",
8 | "copyright": "(c) 2016 Pagekit",
9 | "authors": [
10 | {
11 | "name": "Pagekit",
12 | "email": "info@pagekit.com",
13 | "homepage": "http://pagekit.com"
14 | }
15 | ],
16 | "extra": {
17 | "image": "image.jpg"
18 | },
19 | "archive": {
20 | "exclude": ["!/app", "!/css", "/app/assets"]
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/gulpfile.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Popular Tasks
3 | * -------------
4 | *
5 | * compile: compiles the .less files of the specified packages
6 | * lint: runs jshint on all .js files
7 | */
8 |
9 | var gulp = require('gulp'),
10 | header = require('gulp-header'),
11 | less = require('gulp-less'),
12 | rename = require('gulp-rename');
13 |
14 | // banner for the css files
15 | var banner = "/*! <%= data.title %> <%= data.version %> | <%= data.copyright %> | <%= data.license %> License */\n";
16 |
17 | gulp.task('default', ['compile']);
18 |
19 |
20 | /**
21 | * Compile all less files
22 | */
23 | gulp.task('compile', function () {
24 |
25 | return gulp.src('less/theme.less', {base: __dirname})
26 | .pipe(less({compress: true}))
27 | .pipe(header(banner, { data: require('./composer.json') }))
28 | .pipe(rename(function (file) {
29 | // the compiled less file should be stored in the css/ folder instead of the less/ folder
30 | file.dirname = file.dirname.replace('less', 'css');
31 | }))
32 | .pipe(gulp.dest(__dirname));
33 | });
34 |
35 | /**
36 | * Watch for changes in files
37 | */
38 | gulp.task('watch', function () {
39 | gulp.watch('less/*.less', ['compile']);
40 | });
41 |
--------------------------------------------------------------------------------
/image.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pagekit/theme-one/eba555742a4aa30c6a2cbabb74fe026a9028f38b/image.jpg
--------------------------------------------------------------------------------
/js/theme.js:
--------------------------------------------------------------------------------
1 | (function($){
2 |
3 | $(function(){
4 |
5 | // fit footer
6 | (function(main, meta, fn){
7 |
8 | if (!main.length) return;
9 |
10 | fn = function() {
11 |
12 | main.css('min-height','');
13 |
14 | meta = document.body.getBoundingClientRect();
15 |
16 | if (meta.height < window.innerHeight) {
17 | main.css('min-height', (main.outerHeight() + (window.innerHeight - meta.height))+'px');
18 | }
19 |
20 | return fn;
21 | };
22 |
23 | UIkit.$win.on('load resize', fn());
24 |
25 | })($('#tm-main'));
26 |
27 | });
28 |
29 | })(jQuery);
30 |
--------------------------------------------------------------------------------
/languages/ar_EG/messages.php:
--------------------------------------------------------------------------------
1 | 'عنوان',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => 'صامتة',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => 'حفظ',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/ar_SA/messages.php:
--------------------------------------------------------------------------------
1 | 'العنوان',
3 | 'Theme' => 'القالب',
4 | 'Hide Title' => 'إخفاء العنوان',
5 | 'Title Size' => 'حجم النص',
6 | 'Extra large title.' => 'نص عريض',
7 | 'Alignment' => 'المحاذاة',
8 | 'Center the title and content.' => 'توسيط العنوان و الوسائط',
9 | 'HTML Class' => 'HTML كلاس',
10 | 'Sidebar' => 'الشريط الجانبي',
11 | 'Show the sidebar before the content.' => 'إظهار الشريط الجانبي قبل المحتوى ',
12 | 'Hero Image' => 'الصورة الرئيسية',
13 | 'Full viewport height' => 'ملئ الشاشة',
14 | 'Invert colors' => 'الألوان "الوضع المعكوس"',
15 | 'Transparent navbar as overlay' => 'شفافية الشريط',
16 | 'Enable parallax effect' => 'تمكين التأثبر parallax',
17 | 'Select a background image for the hero position.' => 'إختيار صورة الخلفية كصورة رئيسية',
18 | 'Top Style' => 'أفضل قالب',
19 | 'Default' => 'إفتراضي',
20 | 'Muted' => 'صامت',
21 | 'Main Style' => 'التصميم الرئيسي',
22 | 'Bottom Style' => 'التصميم الاخير',
23 | 'Save' => 'حفظ',
24 | 'Logo Contrast' => 'تباين الشعار',
25 | 'Select an alternative logo which looks great on images.' => 'إختيار شعار بديل مناسب للصورة',
26 | 'Logo Off-canvas' => 'إيقاف الشعار الزيتي',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => 'حجم 1',
29 | 'H2' => 'حجم 2',
30 | 'H3' => 'حجم 3',
31 | 'H4' => 'حجم 4',
32 | 'Panel Style' => 'شكل اللوحة',
33 | 'None' => 'لاشيء',
34 | 'Box' => 'صندوق',
35 | 'Box Primary' => 'الصندوق الأولي',
36 | 'Box Secondary' => 'الصندوق الثانوي',
37 | 'Header' => 'الرأس',
38 | 'Written by %name% on %date%' => 'الكتابة على الشكل %name% الى %date%',
39 | 'Read more' => 'إقرأ المزيد',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} لا تعليق {1} %num% التعليق ',
41 | );
--------------------------------------------------------------------------------
/languages/az@latin/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/az_AZ/messages.php:
--------------------------------------------------------------------------------
1 | 'Başlıq',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Başlığı Gizlət',
5 | 'Title Size' => 'Başlığın Ölçüsü',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => 'Yadda Saxla',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => 'B1',
29 | 'H2' => 'B2',
30 | 'H3' => 'B3',
31 | 'H4' => 'B4',
32 | 'Panel Style' => '',
33 | 'None' => 'Heç biri',
34 | 'Box' => 'Qutu',
35 | 'Box Primary' => 'Əsas Qutu',
36 | 'Box Secondary' => 'İkinci Dərəcəli Qutu',
37 | 'Header' => 'Başlıq',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => 'Ətraflı oxu',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/bg_BG/messages.php:
--------------------------------------------------------------------------------
1 | 'Заглавие',
3 | 'Theme' => 'Тема',
4 | 'Hide Title' => 'Скрий заглавие',
5 | 'Title Size' => 'Размер на заглавие',
6 | 'Extra large title.' => 'По-голямо заглавие',
7 | 'Alignment' => 'Подреждане',
8 | 'Center the title and content.' => 'Центрирай заглавието и съдържанието.',
9 | 'HTML Class' => 'HTML клас',
10 | 'Sidebar' => 'Странична лента',
11 | 'Show the sidebar before the content.' => 'Покажи страничната лента преди съдържанието.',
12 | 'Hero Image' => 'Основна снимка',
13 | 'Full viewport height' => 'Височина по размера на екрана',
14 | 'Invert colors' => 'Обърни цветовете',
15 | 'Transparent navbar as overlay' => 'Прозрачна навигационна лента като покривало',
16 | 'Enable parallax effect' => 'Разреши "паралакс" ефект',
17 | 'Select a background image for the hero position.' => 'Избери фонова снимка за основната позиция.',
18 | 'Top Style' => 'Стил на върха',
19 | 'Default' => 'По подразбиране',
20 | 'Muted' => 'Приглушено',
21 | 'Main Style' => 'Основен стил',
22 | 'Bottom Style' => 'Стил на дъното',
23 | 'Save' => 'Запиши',
24 | 'Logo Contrast' => 'Контраст на логото',
25 | 'Select an alternative logo which looks great on images.' => 'Изберете алтернативно лого, което изглежда добре върху снимки.',
26 | 'Logo Off-canvas' => 'Лого извън страница',
27 | 'Select an optional logo for the off-canvas menu.' => 'Изберете лого по избор за менюто извън страница.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Стил на панела',
33 | 'None' => 'Без',
34 | 'Box' => 'Кутия',
35 | 'Box Primary' => 'Основна кутия',
36 | 'Box Secondary' => 'Второстепенна кутия',
37 | 'Header' => 'Горна част',
38 | 'Written by %name% on %date%' => 'Написан от %name% на %date%',
39 | 'Read more' => 'Прочети още',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Няма коментари|{1} %num% коментар|]1,Inf[ %num% коментари',
41 | );
--------------------------------------------------------------------------------
/languages/bn/messages.php:
--------------------------------------------------------------------------------
1 | 'শিরোনাম',
3 | 'Theme' => 'থিম',
4 | 'Hide Title' => 'শিরোনাম লুকান',
5 | 'Title Size' => 'শিরোনাম আকার',
6 | 'Extra large title.' => 'অতিরিক্ত বড় শিরোনাম।',
7 | 'Alignment' => 'সমতলতা',
8 | 'Center the title and content.' => 'শিরোনাম ও বিষয়বস্তু কেন্দ্রে আনুন।',
9 | 'HTML Class' => 'এইচটিএমএল ক্লাস',
10 | 'Sidebar' => 'সাইডবার',
11 | 'Show the sidebar before the content.' => 'বিষয়বস্তুর আগে সাইডবার প্রদর্শন করা হবে।',
12 | 'Hero Image' => 'নায়ক ছবি',
13 | 'Full viewport height' => 'সম্পূর্ণ ভিউপোর্ট উচ্চতা',
14 | 'Invert colors' => 'উল্ট রংগুলো',
15 | 'Transparent navbar as overlay' => 'আস্তরণ হিসেবে স্বচ্ছ ন্যাভবার',
16 | 'Enable parallax effect' => 'প্যারালাক্স প্রভাব সক্রিয় করুন',
17 | 'Select a background image for the hero position.' => 'নায়ক অবস্থানের জন্য একটি পটভূমির চিত্র নির্বাচন করুন।',
18 | 'Top Style' => 'উপরের স্টাইল',
19 | 'Default' => 'ডিফল্ট',
20 | 'Muted' => 'নিঃশব্দ',
21 | 'Main Style' => 'প্রধান স্টাইল',
22 | 'Bottom Style' => 'নিচের স্টাইল',
23 | 'Save' => 'সংরক্ষণ করুন',
24 | 'Logo Contrast' => 'লোগো কনট্রাস্ট',
25 | 'Select an alternative logo which looks great on images.' => 'একটি বিকল্প লোগো নির্বাচন করুন, যেটা আপনার ছবি গুলির মধ্যে ভাল দেখাচ্ছে।',
26 | 'Logo Off-canvas' => 'অফ-ক্যানভাস লোগো',
27 | 'Select an optional logo for the off-canvas menu.' => 'অফ-ক্যানভাস মেন্যুর জন্য ঐচ্ছিক লোগো নির্বাচন করুন',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'প্যানেল স্টাইল',
33 | 'None' => 'কোনোটা না',
34 | 'Box' => 'বক্স',
35 | 'Box Primary' => 'প্রাথমিক বক্স',
36 | 'Box Secondary' => 'মাধ্যমিক বক্স',
37 | 'Header' => 'শিরোলেখ',
38 | 'Written by %name% on %date%' => 'লিখেছেন %name% %date% তারিখে',
39 | 'Read more' => 'আরও পড়ুন',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} কমেন্ট নাই|{1} %num% কমেন্ট|]1,Inf[ %num% কমেন্টগুলি',
41 | );
--------------------------------------------------------------------------------
/languages/bo/messages.php:
--------------------------------------------------------------------------------
1 | 'ཁ་བྱང་།',
3 | 'Theme' => 'དཔེ་སྒྲོམ།',
4 | 'Hide Title' => 'ཁ་བྱང་སྦས།',
5 | 'Title Size' => 'ཁ་བྱང་གི་ཚེག་བར།',
6 | 'Extra large title.' => 'ཁ་བྱང་ཞོལ་མ།',
7 | 'Alignment' => 'བསྟར་ཕྲེང་།',
8 | 'Center the title and content.' => 'ལྟེ་བའི་ཁ་བྱང་དང་ནང་དོན།',
9 | 'HTML Class' => 'HTMLརྣམ་པ།',
10 | 'Sidebar' => 'ཟུར་སྣོན།',
11 | 'Show the sidebar before the content.' => 'ནང་དོན་གཙོ་བོ་མ་འཆར་གོང་ལ་ཟུར་སྣོན་གྱི་ནང་དོན་འཆར་རུ་བཅུག',
12 | 'Hero Image' => 'རི་མོ་གཙོ་བོ།',
13 | 'Full viewport height' => 'ངོས་གང་བོ་ཅན།',
14 | 'Invert colors' => 'ལྡོག་མདོག',
15 | 'Transparent navbar as overlay' => 'གདམ་བྱང་གི་རྒྱབ་ལྗོངས་ཁ་དོག་མདོག་ཅན་དུ་བསྒྱུར།',
16 | 'Enable parallax effect' => 'འཆར་རྣམ་གསར་བར་བསྒྱུར།',
17 | 'Select a background image for the hero position.' => 'རྒྱབ་ལྗོངས་ཀྱི་ལྟེ་བའི་རི་མོ་གོ་ས་བརྗེ་རྒྱུའི་རི་མོ་ཞིག་གདམ་གསེས་བྱ་རོགས།',
18 | 'Top Style' => 'དབུ་ཡི་རྣམ་པ།',
19 | 'Default' => 'གདོད་མའི་རྣམ་པ།',
20 | 'Muted' => 'སྒྲ་འཇགས།',
21 | 'Main Style' => 'ངོས་གཙོ་བོའི་རྣམ་པ།',
22 | 'Bottom Style' => 'འཐེབ་གཅུས་ཀྱི་ཚུགས་ཀ',
23 | 'Save' => 'གསོག་འཇོག',
24 | 'Logo Contrast' => 'མཚོན་རིས་ཀྱི་འཆར་སྟངས།',
25 | 'Select an alternative logo which looks great on images.' => 'མིག་ལ་མཛེས་པའི་མཚོན་རིས་ཤིག་གདམ་གསེས་བྱ་རོགས།',
26 | 'Logo Off-canvas' => 'འཆར་ངོས་ཡན་གྱི་མཚོན་རིས།',
27 | 'Select an optional logo for the off-canvas menu.' => 'འཆར་ངོས་ཡན་གྱི་བར་སྟོང་ལ་མངོན་རུང་བའི་མཚོན་རིས་ཤིག་གདམ་གསེས་བྱ་རོགས།',
28 | 'H1' => 'ཁ་བྱང་དང་པོ།H1',
29 | 'H2' => 'ཁ་བྱང་གཉིས་པ། H2',
30 | 'H3' => 'ཁ་བྱང་གསུམ་པ། H3',
31 | 'H4' => 'ཁ་བྱང་བཞི་བ། H4',
32 | 'Panel Style' => 'ངོས་པང་གི་རྣམ་པ།',
33 | 'None' => 'གང་ཡང་མེད།',
34 | 'Box' => 'སྒྲོམ་སྒམ།',
35 | 'Box Primary' => 'རྨང་གཞིའི་དཔེ་སྒྲོམ།',
36 | 'Box Secondary' => 'དཔེ་སྒྲོམ་ཞོལ་མ།',
37 | 'Header' => 'ཁ་བྱང་།',
38 | 'Written by %name% on %date%' => '%name% ནས་on %date%ལ་བྲིས།',
39 | 'Read more' => 'འཕྲོ་མའི་ནང་དོན།',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} དཔྱད་བརྗོད་མེད།|{1} %num% དཔྱད་བརྗོད།|]1,Inf[ %num% དཔྱད་བརྗོད།',
41 | );
--------------------------------------------------------------------------------
/languages/ca_ES/messages.php:
--------------------------------------------------------------------------------
1 | 'Títol',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Amaga el títol',
5 | 'Title Size' => 'Mida del Títol',
6 | 'Extra large title.' => 'Títol extra gran.',
7 | 'Alignment' => 'Alineació',
8 | 'Center the title and content.' => 'Centra el títol i el contingut.',
9 | 'HTML Class' => 'Classe HTML',
10 | 'Sidebar' => 'Barra lateral',
11 | 'Show the sidebar before the content.' => 'Mostra la barra lateral abans del contingut.',
12 | 'Hero Image' => 'Imatge Principal',
13 | 'Full viewport height' => 'Alçada completa del viewport',
14 | 'Invert colors' => 'Inverteix els colors',
15 | 'Transparent navbar as overlay' => 'Barra de navegació transparent superposada',
16 | 'Enable parallax effect' => 'Activa l\'efecte de parallax',
17 | 'Select a background image for the hero position.' => 'Selcciona la imatge de fons per a la posició Principal.',
18 | 'Top Style' => 'Estil Superior',
19 | 'Default' => 'Valor per defecte',
20 | 'Muted' => 'Silenciat',
21 | 'Main Style' => 'Estil principal',
22 | 'Bottom Style' => 'Estil Inferior',
23 | 'Save' => 'Desa',
24 | 'Logo Contrast' => 'Contrast del Logotip',
25 | 'Select an alternative logo which looks great on images.' => 'Selecciona un logotip alternatiu que quedi bé sobre imatges.',
26 | 'Logo Off-canvas' => 'Logotip Off-Canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Selecciona un logotip opcional per al menu off-canvas.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Estil del Quadre',
33 | 'None' => 'Cap',
34 | 'Box' => 'Caixa',
35 | 'Box Primary' => 'Caixa Primària',
36 | 'Box Secondary' => 'Caixa Secundària',
37 | 'Header' => 'Capçalera',
38 | 'Written by %name% on %date%' => 'Escrit per %name% el %date%',
39 | 'Read more' => 'Llegeix-ne més',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} No hi ha comentaris|{1} %num% Comentari|]1,Inf[ %num% Comentaris',
41 | );
--------------------------------------------------------------------------------
/languages/cs_CZ/messages.php:
--------------------------------------------------------------------------------
1 | 'Titulek',
3 | 'Theme' => 'Šablona',
4 | 'Hide Title' => 'Skrýt nadpis',
5 | 'Title Size' => 'Velikost titulku',
6 | 'Extra large title.' => 'Extra velký titulek',
7 | 'Alignment' => 'Zarovnání',
8 | 'Center the title and content.' => 'Vystředit titulek a obsah',
9 | 'HTML Class' => 'HTML třída',
10 | 'Sidebar' => 'Postranní panel',
11 | 'Show the sidebar before the content.' => 'Zobrazit před obsahem postranní panel.',
12 | 'Hero Image' => 'Hero obrázek',
13 | 'Full viewport height' => 'Výška přes celou zobrazovací plochu',
14 | 'Invert colors' => 'Invertní barvy',
15 | 'Transparent navbar as overlay' => 'Průhledný panel nabídky',
16 | 'Enable parallax effect' => 'Povolit efekt paralax',
17 | 'Select a background image for the hero position.' => 'Vyberte obrázek pro pozadí pozice "Hero".',
18 | 'Top Style' => 'Styl pozice "Top"',
19 | 'Default' => 'Výchozí',
20 | 'Muted' => 'Muted',
21 | 'Main Style' => 'Styl pozice "Main"',
22 | 'Bottom Style' => 'Styl pozice "Bottom"',
23 | 'Save' => 'Uložit',
24 | 'Logo Contrast' => 'Kontrastní logo',
25 | 'Select an alternative logo which looks great on images.' => 'Vyberte logo, které bude na stránkách lépe vypadat.',
26 | 'Logo Off-canvas' => 'Off-canvas logo',
27 | 'Select an optional logo for the off-canvas menu.' => 'Vyberte logo off-canvas nabídky.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Styl pozice "Panel"',
33 | 'None' => 'Žádný',
34 | 'Box' => 'Box',
35 | 'Box Primary' => 'Box Primary',
36 | 'Box Secondary' => 'Box Secondary',
37 | 'Header' => 'Header',
38 | 'Written by %name% on %date%' => '%name%, %date%',
39 | 'Read more' => 'Číst dál',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Bez komentářů|{1} %num% komentář|{2,3,4} %num% komentáře|]5,Inf[ %num% komentářů',
41 | );
--------------------------------------------------------------------------------
/languages/cy/messages.php:
--------------------------------------------------------------------------------
1 | 'Teitl',
3 | 'Theme' => 'Thema',
4 | 'Hide Title' => 'Cuddio\'r Teitl',
5 | 'Title Size' => 'Maint y Teitl',
6 | 'Extra large title.' => 'Teitl enfawr.',
7 | 'Alignment' => 'Aliniad',
8 | 'Center the title and content.' => 'Canoli\'r teitl a\'r cynnwys.',
9 | 'HTML Class' => 'Dosbarth HTML',
10 | 'Sidebar' => 'Bar Ochr',
11 | 'Show the sidebar before the content.' => 'Dangos y bar ochr cyn y cynnwys.',
12 | 'Hero Image' => 'Delwedd Hero',
13 | 'Full viewport height' => 'Uchder gweledol llawn',
14 | 'Invert colors' => 'Gwyrdroi\'r lliwiau',
15 | 'Transparent navbar as overlay' => 'Bar llywio tryloyw fel tros-haen',
16 | 'Enable parallax effect' => 'Galluogi effaith paralacs',
17 | 'Select a background image for the hero position.' => 'Dewisiwch ddelwedd gefndir ar gyfer y safle hero.',
18 | 'Top Style' => 'Arddull y Top',
19 | 'Default' => 'Diofyn',
20 | 'Muted' => 'Tawelwyd',
21 | 'Main Style' => 'Prif Arddull',
22 | 'Bottom Style' => 'Arddull y Gwaelod',
23 | 'Save' => 'Cadw',
24 | 'Logo Contrast' => 'Logo sy\'n Cyferbynnu',
25 | 'Select an alternative logo which looks great on images.' => 'Dewisiwch logo amgen sy\'n edrych yn wych wedi\'i osod dros ddelweddau.',
26 | 'Logo Off-canvas' => 'Logo oddi ar y cynfas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Dewisiwch logo opsiynol ar gyfer y ddewislen oddi ar y cynfas.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Arddull y Panel',
33 | 'None' => 'Dim',
34 | 'Box' => 'Bocs',
35 | 'Box Primary' => 'Bocs Cynradd',
36 | 'Box Secondary' => 'Bocs Eilradd',
37 | 'Header' => 'Pennyn',
38 | 'Written by %name% on %date%' => 'Ysgrifennwyd gan %name% ar %date%',
39 | 'Read more' => 'Darllen mwy',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Dim sylw|{1} %num% Sylw|]1,Inf[ %num% Sylw',
41 | );
--------------------------------------------------------------------------------
/languages/da_DK/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => 'Læs mere',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/de_AT/messages.php:
--------------------------------------------------------------------------------
1 | 'Titel',
3 | 'Theme' => 'Theme',
4 | 'Hide Title' => 'Titel ausblenden',
5 | 'Title Size' => 'Titel Schriftgröße',
6 | 'Extra large title.' => 'Extra langer Titel.',
7 | 'Alignment' => 'Ausrichtung',
8 | 'Center the title and content.' => 'Titel und Content zentrieren.',
9 | 'HTML Class' => 'HTML Class',
10 | 'Sidebar' => 'Sidebar',
11 | 'Show the sidebar before the content.' => 'Sidebar vor Content anzeigen.',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => 'Volle viewport Höhe',
14 | 'Invert colors' => 'Farben invertieren',
15 | 'Transparent navbar as overlay' => 'Transparente Navigationsleiste als Overlay',
16 | 'Enable parallax effect' => 'Parallax Effekt aktivieren',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => 'Standard',
20 | 'Muted' => 'Stumm geschaltet',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => 'Speichern',
24 | 'Logo Contrast' => 'Logo Kontrast',
25 | 'Select an alternative logo which looks great on images.' => 'Wähle ein Logo, das sich gut von Bildern abhebt.',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => 'Logo für das Off-Canvas Menü',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Panel Style',
33 | 'None' => 'Keine',
34 | 'Box' => 'Box',
35 | 'Box Primary' => 'Box Primary',
36 | 'Box Secondary' => 'Box Secondary',
37 | 'Header' => 'Header',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => 'weiterlesen',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Keine Kommentare|{1} %num% Kommentar|]1,Inf[ %num% Kommentare',
41 | );
--------------------------------------------------------------------------------
/languages/de_CH/messages.php:
--------------------------------------------------------------------------------
1 | 'Titel',
3 | 'Theme' => 'Theme',
4 | 'Hide Title' => 'Titel verstecken',
5 | 'Title Size' => 'Titel Grösse',
6 | 'Extra large title.' => 'Extra grosser Titel',
7 | 'Alignment' => 'Ausrichtung',
8 | 'Center the title and content.' => 'Titel und Inhalt zentrieren.',
9 | 'HTML Class' => 'HTML Class',
10 | 'Sidebar' => 'Seitenleiste',
11 | 'Show the sidebar before the content.' => 'Zeige Seitenleiste vor dem Inhalt.',
12 | 'Hero Image' => 'Hauptbild',
13 | 'Full viewport height' => 'Volle Höhe',
14 | 'Invert colors' => 'Farben invertieren',
15 | 'Transparent navbar as overlay' => 'Transparente Navigation als Overlay.',
16 | 'Enable parallax effect' => 'Aktiviere Parallax-Effekt',
17 | 'Select a background image for the hero position.' => 'Wählen Sie ein Hintergrundbild für die Hauptposition.',
18 | 'Top Style' => 'Top Style',
19 | 'Default' => 'Standard',
20 | 'Muted' => 'Stumm',
21 | 'Main Style' => 'Hauptinhalt Style',
22 | 'Bottom Style' => 'Bottom Style',
23 | 'Save' => 'Speichern',
24 | 'Logo Contrast' => 'Logo Kontrast',
25 | 'Select an alternative logo which looks great on images.' => 'Wähle ein alternatives Logo, welches grossartige auf Bildern aussieht.',
26 | 'Logo Off-canvas' => 'Logo Off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Wähle ein optionales Logo für das off-canvas Menü.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Panel Style',
33 | 'None' => 'Keine',
34 | 'Box' => 'Box',
35 | 'Box Primary' => 'Box Primary',
36 | 'Box Secondary' => 'Box Secondary',
37 | 'Header' => 'Header',
38 | 'Written by %name% on %date%' => 'Geschrieben von %name% am %date%',
39 | 'Read more' => 'Mehr lesen',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Keine Kommentare|{1} %num% Kommentar|]1,Inf[ %num% Kommentare',
41 | );
--------------------------------------------------------------------------------
/languages/de_DE/messages.php:
--------------------------------------------------------------------------------
1 | 'Titel',
3 | 'Theme' => 'Theme',
4 | 'Hide Title' => 'Titel verstecken',
5 | 'Title Size' => 'Titel Größe',
6 | 'Extra large title.' => 'Extra großer Titel.',
7 | 'Alignment' => 'Ausrichtung',
8 | 'Center the title and content.' => 'Zentriere den Titel und Inhalt.',
9 | 'HTML Class' => 'HTML Klasse',
10 | 'Sidebar' => 'Sidebar',
11 | 'Show the sidebar before the content.' => 'Zeige die Sidebar über dem Content an.',
12 | 'Hero Image' => 'Hero Bild',
13 | 'Full viewport height' => 'Volle Fensterhöhe',
14 | 'Invert colors' => 'Farben umkehren',
15 | 'Transparent navbar as overlay' => 'Transparente Navigationsleiste als Overlay',
16 | 'Enable parallax effect' => 'Parallax Effekt aktivieren',
17 | 'Select a background image for the hero position.' => 'Wähle ein Hintergrundbild für die Hero-Position',
18 | 'Top Style' => 'Top Stil',
19 | 'Default' => 'Standard',
20 | 'Muted' => 'Dezent',
21 | 'Main Style' => 'Main Stil',
22 | 'Bottom Style' => 'Bottom Stil',
23 | 'Save' => 'Speichern',
24 | 'Logo Contrast' => 'Kontrast-Logo',
25 | 'Select an alternative logo which looks great on images.' => 'Wähle ein alternatives Logo, das sich gut auf Bildern absetzt.',
26 | 'Logo Off-canvas' => 'Logo im Off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Optionales Logo für das Off-canvas Menü auswählen.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Panel-Stil',
33 | 'None' => 'Keine Auswahl',
34 | 'Box' => 'Box',
35 | 'Box Primary' => 'Box Primary',
36 | 'Box Secondary' => 'Box Secondary',
37 | 'Header' => 'Header',
38 | 'Written by %name% on %date%' => 'geschrieben von %name% am %date%',
39 | 'Read more' => 'mehr lesen',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Keine Kommentare|{1} %num% Kommentar|]1,Inf[ %num% Kommentare',
41 | );
--------------------------------------------------------------------------------
/languages/el_GR/messages.php:
--------------------------------------------------------------------------------
1 | 'Τίτλος',
3 | 'Theme' => 'Θέμα',
4 | 'Hide Title' => 'Απόκρυψη Τίτλου',
5 | 'Title Size' => 'Μέγεθος Τίτλου',
6 | 'Extra large title.' => 'Πολύ μεγάλος τίτλος.',
7 | 'Alignment' => 'Στοίχιση',
8 | 'Center the title and content.' => 'Κεντράρισμα τίτλου και κειμένου.',
9 | 'HTML Class' => 'Κλάση HTML',
10 | 'Sidebar' => 'Πλευρική Στήλη',
11 | 'Show the sidebar before the content.' => 'Προβολή της πλευρικής στήλης πριν από το περιεχόμενο.',
12 | 'Hero Image' => 'Κεντρική εικόνα',
13 | 'Full viewport height' => 'Πλήρες ύψος παραθύρου προβολής',
14 | 'Invert colors' => 'Αντιστροφή χρωμάτων',
15 | 'Transparent navbar as overlay' => 'Διαφανής μπάρα πλοήγησης ',
16 | 'Enable parallax effect' => 'Ενεργοποίηση εφέ parallax',
17 | 'Select a background image for the hero position.' => 'Επιλέξτε θέμα για την Κεντρική Εικόνα',
18 | 'Top Style' => 'Στυλ Επάνω',
19 | 'Default' => 'Προεπιλογή',
20 | 'Muted' => 'Αθόρυβο',
21 | 'Main Style' => 'Κεντρικό Στυλ',
22 | 'Bottom Style' => 'Στυλ Κάτω',
23 | 'Save' => 'Αποθήκευση',
24 | 'Logo Contrast' => 'Χρωματική αντίθεση Λογότυπου',
25 | 'Select an alternative logo which looks great on images.' => 'Επιλογή εναλλακτικού λογότυπου που φαίνεται ωραία πάνω από τις εικόνες.',
26 | 'Logo Off-canvas' => 'Off-canvas λογότυπο',
27 | 'Select an optional logo for the off-canvas menu.' => 'Επιλέξτε ένα προαιρετικό λογότυπο για το off-canvas μενού.',
28 | 'H1' => 'H1',
29 | 'H2' => 'Η2',
30 | 'H3' => 'Η3',
31 | 'H4' => 'Η4',
32 | 'Panel Style' => 'Στυλ πλαισίου',
33 | 'None' => 'Κανένα',
34 | 'Box' => 'Κουτί',
35 | 'Box Primary' => 'Κύριο Κουτί',
36 | 'Box Secondary' => 'Δευτερεύον Κουτί',
37 | 'Header' => 'Επικεφαλίδα',
38 | 'Written by %name% on %date%' => 'Συντάχθηκε από %name% στις %date%',
39 | 'Read more' => 'Διαβάστε περισσότερα',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Κανένα σχόλιο|{1} %num% Σχόλιο|]1,Inf[ %num% Σχόλια',
41 | );
--------------------------------------------------------------------------------
/languages/en_GB/messages.php:
--------------------------------------------------------------------------------
1 | 'Title',
3 | 'Theme' => 'Theme',
4 | 'Hide Title' => 'Hide Title',
5 | 'Title Size' => 'Title Size',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/en_HU/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/en_US/messages.php:
--------------------------------------------------------------------------------
1 | 'Title',
3 | 'Theme' => 'Theme',
4 | 'Hide Title' => 'Hide Title',
5 | 'Title Size' => 'Title Size',
6 | 'Extra large title.' => 'Extra Large Title',
7 | 'Alignment' => 'Alignment',
8 | 'Center the title and content.' => 'Center the title and content.',
9 | 'HTML Class' => 'HTML Class',
10 | 'Sidebar' => 'Sidebar',
11 | 'Show the sidebar before the content.' => 'Show the sidebar before the content.',
12 | 'Hero Image' => 'Hero Image',
13 | 'Full viewport height' => 'Full viewport height',
14 | 'Invert colors' => 'Invert colors',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/es_419/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => 'Silenciado',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => 'Encabezado',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => 'Leer más',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/es_AR/messages.php:
--------------------------------------------------------------------------------
1 | 'Título',
3 | 'Theme' => 'Theme/Tema',
4 | 'Hide Title' => 'Ocultar título',
5 | 'Title Size' => 'Tamaño del título',
6 | 'Extra large title.' => 'Título extra grande.',
7 | 'Alignment' => 'Alineación',
8 | 'Center the title and content.' => 'Centrar título y contenido.',
9 | 'HTML Class' => 'Clase HTML',
10 | 'Sidebar' => 'Barra lateral',
11 | 'Show the sidebar before the content.' => 'Muestra la barra lateral antes del contenido.',
12 | 'Hero Image' => 'Imagen Hero',
13 | 'Full viewport height' => 'Vista altura completa',
14 | 'Invert colors' => 'Colores invertidos',
15 | 'Transparent navbar as overlay' => 'Barra de navegación transparente superpuesta',
16 | 'Enable parallax effect' => 'Habilitar efecto parallax ',
17 | 'Select a background image for the hero position.' => 'Seleccione una imagen de fondo para la posición hero',
18 | 'Top Style' => 'Estilo Top',
19 | 'Default' => 'Por defecto',
20 | 'Muted' => 'Apagado',
21 | 'Main Style' => 'Estilo Main',
22 | 'Bottom Style' => 'Estilo Bottom ',
23 | 'Save' => 'Guardar',
24 | 'Logo Contrast' => 'Contraste de Logo',
25 | 'Select an alternative logo which looks great on images.' => 'Seleccione un logotipo alternativo que se vea muy bien en las imágenes.',
26 | 'Logo Off-canvas' => 'Logo Off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Seleccione un logotipo opcional para el menú Off-Canvas',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Estilo de panel',
33 | 'None' => 'Ninguna',
34 | 'Box' => 'Caja',
35 | 'Box Primary' => 'Caja primaria',
36 | 'Box Secondary' => 'Caja secundaria',
37 | 'Header' => 'Encabezado',
38 | 'Written by %name% on %date%' => 'Escrito por %name% en %date%',
39 | 'Read more' => 'Leer más',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} No hay comentarios|{1}%num% Comentario|]1,Inf[ %num% Comentarios',
41 | );
--------------------------------------------------------------------------------
/languages/es_CL/messages.php:
--------------------------------------------------------------------------------
1 | 'Título',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Ocultar título',
5 | 'Title Size' => 'Tamaño del Título',
6 | 'Extra large title.' => 'Título extra grande.',
7 | 'Alignment' => 'Alineación',
8 | 'Center the title and content.' => 'Centrar título y contenido.',
9 | 'HTML Class' => 'Clase HTML',
10 | 'Sidebar' => 'Barra lateral',
11 | 'Show the sidebar before the content.' => 'Mostrar barra lateral antes del contenido.',
12 | 'Hero Image' => 'Imagen del Hero',
13 | 'Full viewport height' => 'Ventana a altura completa',
14 | 'Invert colors' => 'Invertir colores',
15 | 'Transparent navbar as overlay' => 'Barra de navegación transparente superpuesta',
16 | 'Enable parallax effect' => 'Activar efecto Parallax',
17 | 'Select a background image for the hero position.' => 'Seleccionar una imagen de fondo para la posición del Hero',
18 | 'Top Style' => 'Estilo superior',
19 | 'Default' => 'Por defecto',
20 | 'Muted' => 'Silenciado',
21 | 'Main Style' => 'Estilo Principal',
22 | 'Bottom Style' => 'Estilo Inferior',
23 | 'Save' => 'Guardar',
24 | 'Logo Contrast' => 'Logo Contrastante',
25 | 'Select an alternative logo which looks great on images.' => 'Selecciona un logo alternativo que se vea bien sobre imágenes.',
26 | 'Logo Off-canvas' => 'Logo Fuera del Lienzo',
27 | 'Select an optional logo for the off-canvas menu.' => 'Seleccionar un logo opcional para el menú fuera del lienzo.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Estilo del Panel',
33 | 'None' => 'Ninguno',
34 | 'Box' => 'Cajón',
35 | 'Box Primary' => 'Cajón Primario',
36 | 'Box Secondary' => 'Cajón Secundario',
37 | 'Header' => 'Cabecera',
38 | 'Written by %name% on %date%' => 'Escrito por %name%, el %date%',
39 | 'Read more' => 'Leer más',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Ningun comentario|{1} %num% Comentario|]1,Inf[ %num% Comentarios',
41 | );
--------------------------------------------------------------------------------
/languages/es_CO/messages.php:
--------------------------------------------------------------------------------
1 | 'Título',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Ocultar Título',
5 | 'Title Size' => 'Tamaño del Título',
6 | 'Extra large title.' => 'Título extra largo.',
7 | 'Alignment' => 'Alineación',
8 | 'Center the title and content.' => 'Centrar título y contenido.',
9 | 'HTML Class' => 'Clase HTML',
10 | 'Sidebar' => 'Barra lateral',
11 | 'Show the sidebar before the content.' => 'Mostrar la barra lateral antes del contenido.',
12 | 'Hero Image' => 'Imagen Destacada',
13 | 'Full viewport height' => 'Altura completa de ventana',
14 | 'Invert colors' => 'Invertir colores',
15 | 'Transparent navbar as overlay' => 'Barra de navegación transparente superpuesta',
16 | 'Enable parallax effect' => 'Habilitar efecto parallax',
17 | 'Select a background image for the hero position.' => 'Selecciona la imagen de fondo para la posición destacada.',
18 | 'Top Style' => 'Estilo Superior',
19 | 'Default' => 'Por defecto',
20 | 'Muted' => 'Silenciado',
21 | 'Main Style' => 'Estilo Principal',
22 | 'Bottom Style' => 'Estilo Inferior',
23 | 'Save' => 'Guardar',
24 | 'Logo Contrast' => 'Logo para Contraste',
25 | 'Select an alternative logo which looks great on images.' => 'Selecciona un logo alterno que luzca bien sobre imagenes.',
26 | 'Logo Off-canvas' => 'Logo para Off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Selecciona un logo opcional para el menú off-canvas.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Estilo del Panel',
33 | 'None' => 'Ninguno',
34 | 'Box' => 'Marco',
35 | 'Box Primary' => 'Marco Principal',
36 | 'Box Secondary' => 'Marco Secundario',
37 | 'Header' => 'Encabezado',
38 | 'Written by %name% on %date%' => 'Escrito por %name% el %date%',
39 | 'Read more' => 'Leer más',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Sin comentarios|{1} %num% Comentario|]1,Inf[ %num% Comentarios',
41 | );
--------------------------------------------------------------------------------
/languages/es_ES/messages.php:
--------------------------------------------------------------------------------
1 | 'Título',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Ocultar título',
5 | 'Title Size' => 'Tamaño del título',
6 | 'Extra large title.' => 'Título extra largo.',
7 | 'Alignment' => 'Alineación',
8 | 'Center the title and content.' => 'Centrar el título y contenido.',
9 | 'HTML Class' => 'Clase HTML',
10 | 'Sidebar' => 'Barra lateral',
11 | 'Show the sidebar before the content.' => 'Mostrar barra lateral antes del contenido.',
12 | 'Hero Image' => 'Imagen del Hero',
13 | 'Full viewport height' => 'Ventana a altura completa',
14 | 'Invert colors' => 'Invertir colores',
15 | 'Transparent navbar as overlay' => 'Barra de navegación transparente como superposición',
16 | 'Enable parallax effect' => 'Activar efecto Parallax',
17 | 'Select a background image for the hero position.' => 'Seleccionar una imagen de fondo para la posición del Hero',
18 | 'Top Style' => 'Estilo superior',
19 | 'Default' => 'Defecto',
20 | 'Muted' => 'Muteado',
21 | 'Main Style' => 'Estilo principal',
22 | 'Bottom Style' => 'Estilo inferior',
23 | 'Save' => 'Guardar',
24 | 'Logo Contrast' => 'Logo invertido',
25 | 'Select an alternative logo which looks great on images.' => 'Selecciona un logo alternativo que se vea bien sobre imágenes.',
26 | 'Logo Off-canvas' => 'Logo fuera de lugar',
27 | 'Select an optional logo for the off-canvas menu.' => 'Seleccionar un logo opcional para las afueras del menú.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Estilo del panel',
33 | 'None' => 'Ninguno',
34 | 'Box' => 'Cajón',
35 | 'Box Primary' => 'Cajón primario',
36 | 'Box Secondary' => 'Cajón secundario',
37 | 'Header' => 'Cabecera',
38 | 'Written by %name% on %date%' => 'Escrito por %name%, el %date%',
39 | 'Read more' => 'Leer más',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Ningun comentario|{1} %num% Comentario|]1,Inf[ %num% Comentarios',
41 | );
--------------------------------------------------------------------------------
/languages/es_MX/messages.php:
--------------------------------------------------------------------------------
1 | 'Título',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Esconder Título',
5 | 'Title Size' => 'Tamaño de Título',
6 | 'Extra large title.' => 'Título Extra grande',
7 | 'Alignment' => 'Alineación ',
8 | 'Center the title and content.' => 'Centrar Título y contenido',
9 | 'HTML Class' => 'Clase HTML',
10 | 'Sidebar' => 'Barra lateral',
11 | 'Show the sidebar before the content.' => 'Mostrar barra lateral antes del contenido ',
12 | 'Hero Image' => 'Hero Imagen',
13 | 'Full viewport height' => 'altura completa de ventana',
14 | 'Invert colors' => 'Invertir colores',
15 | 'Transparent navbar as overlay' => 'Barra de navegación transparente ',
16 | 'Enable parallax effect' => 'Activar efecto parallax',
17 | 'Select a background image for the hero position.' => 'Selecciona una imagen de fondo para la posición Hero',
18 | 'Top Style' => 'Estilo superior',
19 | 'Default' => 'Defecto',
20 | 'Muted' => 'Mudo',
21 | 'Main Style' => 'Estilo Principal',
22 | 'Bottom Style' => 'Estilo Inferior',
23 | 'Save' => 'Guardar',
24 | 'Logo Contrast' => 'Contraste de logo',
25 | 'Select an alternative logo which looks great on images.' => 'Selecciona logo alternativo que se vea bien sobre imágenes ',
26 | 'Logo Off-canvas' => 'Logo Off-Canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Selecciona un logo opcional para el menu Off-Canvas',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Estilo de panel',
33 | 'None' => 'Ninguno',
34 | 'Box' => 'Caja',
35 | 'Box Primary' => 'Caja Primaria',
36 | 'Box Secondary' => 'Caja Secundaria',
37 | 'Header' => 'Cabecera',
38 | 'Written by %name% on %date%' => 'Escrito por %name% en %date%',
39 | 'Read more' => 'Leer más',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} No comentarios|{1} %num% Comentario|]1,Inf[ %num% Comentarios',
41 | );
--------------------------------------------------------------------------------
/languages/et_EE/messages.php:
--------------------------------------------------------------------------------
1 | 'Pealkiri',
3 | 'Theme' => 'Kujundus',
4 | 'Hide Title' => 'Peida pealkiri',
5 | 'Title Size' => 'Pealkirja suurus',
6 | 'Extra large title.' => 'Eriti suur pealkiri.',
7 | 'Alignment' => 'Joondus',
8 | 'Center the title and content.' => 'Joonda pealkiri ja sisu keskele.',
9 | 'HTML Class' => 'HTML Class',
10 | 'Sidebar' => 'Külgriba',
11 | 'Show the sidebar before the content.' => 'Näita külgriba ennem sisu.',
12 | 'Hero Image' => 'Hero pilt',
13 | 'Full viewport height' => 'Vaateakna täiskõrgus',
14 | 'Invert colors' => 'Pööra värvid teistpidi',
15 | 'Transparent navbar as overlay' => 'Läbipaistev navigatsiooniriba kui ülekate',
16 | 'Enable parallax effect' => 'Luba parallax effekti',
17 | 'Select a background image for the hero position.' => 'Vali taustapilt hero asukohale',
18 | 'Top Style' => 'Pea stiil',
19 | 'Default' => 'Vikimisi',
20 | 'Muted' => 'Vigistatud',
21 | 'Main Style' => 'Peamine stiil',
22 | 'Bottom Style' => 'Alumine stiil',
23 | 'Save' => 'Salvesta',
24 | 'Logo Contrast' => 'Logo kontrast',
25 | 'Select an alternative logo which looks great on images.' => 'Vali alternatiivne logo, mis sobib paremini piltide peale',
26 | 'Logo Off-canvas' => 'Logo Off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Vali lisalogo off-canvas menüüle.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Paneeli stiil',
33 | 'None' => 'Ükski',
34 | 'Box' => 'Kast',
35 | 'Box Primary' => 'Esmane kast',
36 | 'Box Secondary' => 'Sekundaarne kast',
37 | 'Header' => 'Pealkiri',
38 | 'Written by %name% on %date%' => 'Kirjutanud %name% %date%',
39 | 'Read more' => 'Loe edasi',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Kommentaare ei ole|{1} %num% Kommentaar|]1,Inf[ %num% Kommentaari',
41 | );
--------------------------------------------------------------------------------
/languages/fa/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/fa_IR/messages.php:
--------------------------------------------------------------------------------
1 | 'عنوان',
3 | 'Theme' => 'پوسته',
4 | 'Hide Title' => 'پنهان کردن عنوان',
5 | 'Title Size' => 'اندازه عنوان',
6 | 'Extra large title.' => 'عنوان بسیار بزرگ',
7 | 'Alignment' => 'هم ترازی',
8 | 'Center the title and content.' => 'وسطچین کردن عنوان و محتوا',
9 | 'HTML Class' => 'کلاس HTML',
10 | 'Sidebar' => 'نوار کناری',
11 | 'Show the sidebar before the content.' => 'نوار کناری را قبل از محتوا نشان بده.',
12 | 'Hero Image' => 'ابر تصویر',
13 | 'Full viewport height' => 'ارتفاع دید کامل',
14 | 'Invert colors' => 'رنگ معکوس',
15 | 'Transparent navbar as overlay' => 'نوار پیمایش شفاف به عنوان پوشش',
16 | 'Enable parallax effect' => 'فعال کردن اثر همپوشانی',
17 | 'Select a background image for the hero position.' => 'انتخاب عکس پشت زمینه برای ابر موقعیت',
18 | 'Top Style' => 'استایل بالا',
19 | 'Default' => 'پیشفرض',
20 | 'Muted' => 'بی صدا',
21 | 'Main Style' => 'استایل اصلی',
22 | 'Bottom Style' => 'استایل پایین',
23 | 'Save' => 'ذخیره سازی',
24 | 'Logo Contrast' => 'کنتراست لوگو',
25 | 'Select an alternative logo which looks great on images.' => 'یک نشان جایگزین که روی تصویر زیبا نمایش داده می شود را انتخاب کنید.',
26 | 'Logo Off-canvas' => 'نشان خارج از قاب',
27 | 'Select an optional logo for the off-canvas menu.' => 'یک نشان برای فهرست خارج از قاب انتخاب کنید.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'سبک پنل',
33 | 'None' => 'هیچ یک',
34 | 'Box' => 'جعبه',
35 | 'Box Primary' => 'کادر اصلی',
36 | 'Box Secondary' => 'کادر ثانویه',
37 | 'Header' => 'سر صفحه',
38 | 'Written by %name% on %date%' => 'نوشته شده توسط %name% در %date%',
39 | 'Read more' => 'بیشتر بخوانید',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} بدون نظر|{1} %num% نظر|]1,Inf[ %num% نظرها',
41 | );
--------------------------------------------------------------------------------
/languages/fi_FI/messages.php:
--------------------------------------------------------------------------------
1 | 'Otsikko',
3 | 'Theme' => 'Teema',
4 | 'Hide Title' => 'Piilota Otsikko',
5 | 'Title Size' => 'Otsikon Koko',
6 | 'Extra large title.' => 'Erittäin suuri otsikko.',
7 | 'Alignment' => 'Kohdistaminen',
8 | 'Center the title and content.' => 'Keskitä otsikko ja sisältö.',
9 | 'HTML Class' => 'HTML Luokka',
10 | 'Sidebar' => 'Sivupalkki',
11 | 'Show the sidebar before the content.' => 'Näytä sivupalkki ennen sisältöä',
12 | 'Hero Image' => 'Hero Kuva',
13 | 'Full viewport height' => 'Täysi ikkunan leveys',
14 | 'Invert colors' => 'Käännä värit',
15 | 'Transparent navbar as overlay' => 'Läpinäkyvä valikkopalkki sisällön päällä',
16 | 'Enable parallax effect' => 'Ota käyttöön parallaksi efekti',
17 | 'Select a background image for the hero position.' => 'Valitse taustakuva hero sijaintiin',
18 | 'Top Style' => '',
19 | 'Default' => 'Oletus',
20 | 'Muted' => 'Hillitty',
21 | 'Main Style' => 'Päätyyli',
22 | 'Bottom Style' => '',
23 | 'Save' => 'Tallenna',
24 | 'Logo Contrast' => 'Logon kontrasti',
25 | 'Select an alternative logo which looks great on images.' => 'Valitse vaihtoehtoinen logo näytettäväksi kuvien päällä.',
26 | 'Logo Off-canvas' => 'Logo Off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Valitse vapaaehtoinen logo off-canvas valikolle.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Paneelin tyyli',
33 | 'None' => 'Ei mitään',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => 'Kirjoittanut %name% %date%',
39 | 'Read more' => 'Lue lisää',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/fo/messages.php:
--------------------------------------------------------------------------------
1 | 'Heitið',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/fr_BE/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/fr_CA/messages.php:
--------------------------------------------------------------------------------
1 | 'Titre',
3 | 'Theme' => 'Thèmes',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => 'Enregistrer',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => '',
33 | 'None' => 'Aucun',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => 'En-tête',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/fr_CH/messages.php:
--------------------------------------------------------------------------------
1 | 'Titre',
3 | 'Theme' => 'Thème',
4 | 'Hide Title' => 'Cacher le titre',
5 | 'Title Size' => 'Taille du titre',
6 | 'Extra large title.' => 'Titre extra grand',
7 | 'Alignment' => 'Alignement',
8 | 'Center the title and content.' => 'Centrer le titre et contenu.',
9 | 'HTML Class' => 'Classe HTML',
10 | 'Sidebar' => 'Barre latérale',
11 | 'Show the sidebar before the content.' => 'Montrer la barre latérale avant le contenu.',
12 | 'Hero Image' => 'Image Hero',
13 | 'Full viewport height' => 'Visualisation complète en hauteur ',
14 | 'Invert colors' => 'Inverser les couleurs',
15 | 'Transparent navbar as overlay' => 'Barre de navigation transparente comme couche superposée',
16 | 'Enable parallax effect' => 'Activer l\'effet de parallaxe',
17 | 'Select a background image for the hero position.' => 'Sélectionnez une image d\'arrière-plan pour la position Hero',
18 | 'Top Style' => 'Style du haut',
19 | 'Default' => 'Défaut',
20 | 'Muted' => 'Couper le soni',
21 | 'Main Style' => 'Style principal',
22 | 'Bottom Style' => 'Style du bas',
23 | 'Save' => 'Sauvegarder',
24 | 'Logo Contrast' => 'Contraste du logo',
25 | 'Select an alternative logo which looks great on images.' => 'Sélectionnez un logo alternatif qui présente bien sur des images.',
26 | 'Logo Off-canvas' => 'Logo pour le Off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Sélectionnez un logo optionnel pour le menu off-canvas',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Style de panneau',
33 | 'None' => 'Aucun',
34 | 'Box' => 'Boîte',
35 | 'Box Primary' => 'Boîte primaire',
36 | 'Box Secondary' => 'Boîte secondaire',
37 | 'Header' => 'En-tête',
38 | 'Written by %name% on %date%' => 'Écrit par %name% le %date%',
39 | 'Read more' => 'En lire plus',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Pas de commentaires|{1} %num% Commentaire|]1,Inf[ %num% Commentaires',
41 | );
--------------------------------------------------------------------------------
/languages/fr_FR/messages.php:
--------------------------------------------------------------------------------
1 | 'Titre',
3 | 'Theme' => 'Thème',
4 | 'Hide Title' => 'Cacher le titre',
5 | 'Title Size' => 'Taille du titre',
6 | 'Extra large title.' => 'Titre extra-large.',
7 | 'Alignment' => 'Alignement',
8 | 'Center the title and content.' => 'Centrer le titre et le contenu.',
9 | 'HTML Class' => 'Classe HTML',
10 | 'Sidebar' => 'Barre latérale',
11 | 'Show the sidebar before the content.' => 'Afficher la barre latérale avant le contenu.',
12 | 'Hero Image' => 'Image Hero',
13 | 'Full viewport height' => 'Hauteur totale du viewport',
14 | 'Invert colors' => 'Inverser les couleurs',
15 | 'Transparent navbar as overlay' => 'Barre de navigation transparente en guise d\'overlay',
16 | 'Enable parallax effect' => 'Activer l\'effet parallaxe',
17 | 'Select a background image for the hero position.' => 'Sélectionner une image de fond pour la position hero.',
18 | 'Top Style' => 'Style du haut',
19 | 'Default' => 'Défaut',
20 | 'Muted' => 'Son coupé',
21 | 'Main Style' => 'Style principal',
22 | 'Bottom Style' => 'Style du bas',
23 | 'Save' => 'Enregistrer',
24 | 'Logo Contrast' => 'Contraste du logo',
25 | 'Select an alternative logo which looks great on images.' => 'Sélectionner un logo alternatif qui aura un bel effet sur des images.',
26 | 'Logo Off-canvas' => 'Logo hors-cadre',
27 | 'Select an optional logo for the off-canvas menu.' => 'Sélectionner un logo optionnel pour le menu hors-cadre.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Panneau de style',
33 | 'None' => 'Aucun',
34 | 'Box' => 'Boîte',
35 | 'Box Primary' => 'Boîte primaire',
36 | 'Box Secondary' => 'Boîte secondaire',
37 | 'Header' => 'En-tête',
38 | 'Written by %name% on %date%' => 'Écrit par %name% le %date%',
39 | 'Read more' => 'Lire la suite',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Aucun commentaire|{1} %num% Commentaire|]1,Inf[ %num% Commentaires',
41 | );
--------------------------------------------------------------------------------
/languages/gl_ES/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/he_IL/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/hr_HR/messages.php:
--------------------------------------------------------------------------------
1 | 'Naslov',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Sakrij Naslov',
5 | 'Title Size' => 'Veličina Naslova',
6 | 'Extra large title.' => 'Iznimno veliki naslov.',
7 | 'Alignment' => 'Poravnanje',
8 | 'Center the title and content.' => 'Centrirati naslov i sadržaj.',
9 | 'HTML Class' => 'HTML Class',
10 | 'Sidebar' => 'Sidebar',
11 | 'Show the sidebar before the content.' => 'Pokaži sidebar prije sadržaja.',
12 | 'Hero Image' => 'Hero Slika',
13 | 'Full viewport height' => 'Puna viewport visina',
14 | 'Invert colors' => 'Izokreni boje',
15 | 'Transparent navbar as overlay' => 'Prozirni navbar kao overlay',
16 | 'Enable parallax effect' => 'Omogućite paralaks učinak.',
17 | 'Select a background image for the hero position.' => 'Odaberite pozadinsku sliku za hero poziciju.',
18 | 'Top Style' => 'Top Stil',
19 | 'Default' => 'Zadano',
20 | 'Muted' => 'Prigušeno',
21 | 'Main Style' => 'Glavni Stil',
22 | 'Bottom Style' => 'Donji Stil',
23 | 'Save' => 'Spremi',
24 | 'Logo Contrast' => 'Logo Kontrast',
25 | 'Select an alternative logo which looks great on images.' => 'Izaberite alternativni logo koji izgleda izvrsno na slikama.',
26 | 'Logo Off-canvas' => 'Logo Izvan-platna',
27 | 'Select an optional logo for the off-canvas menu.' => 'Odaberite dodatan logotip za meni izvan-platna.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Stil Panela',
33 | 'None' => 'Nijedan',
34 | 'Box' => 'Kutija',
35 | 'Box Primary' => 'Primarna Kutija',
36 | 'Box Secondary' => 'Sekundarna Kutija',
37 | 'Header' => 'Zaglavlje',
38 | 'Written by %name% on %date%' => 'Napisao %name% na %date%',
39 | 'Read more' => 'Pročitajte više',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Nema komentara|{1} %num% Komentar|]1,Inf[ %num% Komentara',
41 | );
--------------------------------------------------------------------------------
/languages/hu_HU/messages.php:
--------------------------------------------------------------------------------
1 | 'Cím',
3 | 'Theme' => 'Téma',
4 | 'Hide Title' => 'Cím elrejtése',
5 | 'Title Size' => 'Cím mérete',
6 | 'Extra large title.' => 'Extra nagy cím',
7 | 'Alignment' => 'Igazítás',
8 | 'Center the title and content.' => 'Cím és tartalom középre rendezése',
9 | 'HTML Class' => 'HTML Class',
10 | 'Sidebar' => 'Oldalsáv',
11 | 'Show the sidebar before the content.' => 'Oldalsáv mutatása a tartalom előtt.',
12 | 'Hero Image' => 'Kiemelt kép',
13 | 'Full viewport height' => 'Teljes böngésző ablak magas',
14 | 'Invert colors' => 'Invert szín',
15 | 'Transparent navbar as overlay' => 'Áttetsző navigáció felugró ablakban',
16 | 'Enable parallax effect' => 'Parallax effekt engedélyezése',
17 | 'Select a background image for the hero position.' => 'Háttérkép kiválasztása a kiemelt pozícióba.',
18 | 'Top Style' => 'Felső Stílus',
19 | 'Default' => 'Alapértelmezett',
20 | 'Muted' => 'Némított',
21 | 'Main Style' => 'Fő Stílus',
22 | 'Bottom Style' => 'Alsó Stílus',
23 | 'Save' => 'Mentés',
24 | 'Logo Contrast' => 'Logó kontraszt',
25 | 'Select an alternative logo which looks great on images.' => 'Alternatív logó kiválasztása amely jól mutasson képeken is.',
26 | 'Logo Off-canvas' => 'Off-canvas logó.',
27 | 'Select an optional logo for the off-canvas menu.' => 'Válasszon ki egy külön logót az off-canvas menühöz.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Panel stílusa',
33 | 'None' => 'Semmi',
34 | 'Box' => 'Doboz',
35 | 'Box Primary' => 'Elsődleges doboz',
36 | 'Box Secondary' => 'Másodlagos doboz',
37 | 'Header' => 'Fejléc',
38 | 'Written by %name% on %date%' => 'Írta %name% - %date%',
39 | 'Read more' => 'Bővebben',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Nincs hozzászólás|{1} %num% hozzászólás|]1,Inf[ %num% hozzászólás',
41 | );
--------------------------------------------------------------------------------
/languages/id_ID/messages.php:
--------------------------------------------------------------------------------
1 | 'Judul',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Sembunyikan Judul',
5 | 'Title Size' => 'Ukuran Judul',
6 | 'Extra large title.' => 'Judul sangat besar',
7 | 'Alignment' => 'Sejajar',
8 | 'Center the title and content.' => 'Ketengahkan judul dan konten',
9 | 'HTML Class' => 'Kelas HTML',
10 | 'Sidebar' => 'Sidebar',
11 | 'Show the sidebar before the content.' => 'Tampilkan sidebar sebelum konten',
12 | 'Hero Image' => 'Gambar Utama',
13 | 'Full viewport height' => 'Tinggi keseluruhan',
14 | 'Invert colors' => 'Balikkan warna',
15 | 'Transparent navbar as overlay' => 'Navbar transparan sebagai lapisan',
16 | 'Enable parallax effect' => 'Nyalakan efek parallax',
17 | 'Select a background image for the hero position.' => 'Pilih gambar background untuk posisi hero',
18 | 'Top Style' => 'Ragam Atas',
19 | 'Default' => 'Nilai awal',
20 | 'Muted' => 'Matikan suara',
21 | 'Main Style' => 'Ragam Utama',
22 | 'Bottom Style' => 'Ragam Bawah',
23 | 'Save' => 'Simpan',
24 | 'Logo Contrast' => 'Kontras Logo',
25 | 'Select an alternative logo which looks great on images.' => 'Logo alternatif yang nampak bagus pada gambar',
26 | 'Logo Off-canvas' => 'Logo diluar kanvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Pilih logo opsional untuk menu diluar kanvas',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Ragam Panel',
33 | 'None' => 'Tidak ada',
34 | 'Box' => 'Kotak',
35 | 'Box Primary' => 'Kotak Utama',
36 | 'Box Secondary' => 'Kotak Sekunder',
37 | 'Header' => 'Header',
38 | 'Written by %name% on %date%' => 'Ditulis oleh %name% pada %date%',
39 | 'Read more' => 'Baca selengkapnya',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Tidak ada komentar|{1} %num% Komentar|]1,Inf[ %num% Komentar',
41 | );
--------------------------------------------------------------------------------
/languages/is_IS/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/it_IT/messages.php:
--------------------------------------------------------------------------------
1 | 'Titolo',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Nascondi Titolo',
5 | 'Title Size' => 'Dimensione Titolo',
6 | 'Extra large title.' => 'Titolo Extra Largo',
7 | 'Alignment' => 'Allineamento',
8 | 'Center the title and content.' => 'Centra il titolo e il contenuto',
9 | 'HTML Class' => 'Classe HTML',
10 | 'Sidebar' => 'Barra laterale',
11 | 'Show the sidebar before the content.' => 'Mostra la barra laterale prima del contenuto.',
12 | 'Hero Image' => 'Immagine Hero',
13 | 'Full viewport height' => 'Altezza finestra',
14 | 'Invert colors' => 'Inverti colori',
15 | 'Transparent navbar as overlay' => 'Barra di navigazione trasparente in sovrapposizione',
16 | 'Enable parallax effect' => 'Abilita effetto parallasse',
17 | 'Select a background image for the hero position.' => 'Selezionare un\'immagine di sfondo per la posizione Hero',
18 | 'Top Style' => 'Stile Sezione Alta (Top)',
19 | 'Default' => 'Predefinito',
20 | 'Muted' => 'Smorzato',
21 | 'Main Style' => 'Stile Sezione Principale (Main)',
22 | 'Bottom Style' => 'Stile Sezione Bassa (Bottom)',
23 | 'Save' => 'Salva',
24 | 'Logo Contrast' => 'Contrasto Logo',
25 | 'Select an alternative logo which looks great on images.' => 'Selezionare un logo alternativo che risulti bello sopra le immagini',
26 | 'Logo Off-canvas' => 'Logo Mobile',
27 | 'Select an optional logo for the off-canvas menu.' => 'Selezionare un logo opzionale per il menu mobile.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Stile Pannello',
33 | 'None' => 'Nessuno',
34 | 'Box' => 'Riquadro',
35 | 'Box Primary' => 'Riquadro Principale',
36 | 'Box Secondary' => 'Riquadro Secondario',
37 | 'Header' => 'Intestazione',
38 | 'Written by %name% on %date%' => 'Scritto da %name% il %date%',
39 | 'Read more' => 'Leggi tutto',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} 0 Commenti|{1} %num% Commenti|]1,Inf[ %num% Commenti',
41 | );
--------------------------------------------------------------------------------
/languages/ja/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/ja_JP/messages.php:
--------------------------------------------------------------------------------
1 | 'タイトル',
3 | 'Theme' => 'テーマ',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => 'HTMLクラス',
10 | 'Sidebar' => 'サイドバー',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => 'デフォルト',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '保存',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => 'ヘッダー',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '続きを読む',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} コメントはありません |{1} %num% コメント|]1,Inf[ %num% コメント',
41 | );
--------------------------------------------------------------------------------
/languages/ka_GE/messages.php:
--------------------------------------------------------------------------------
1 | 'დასახელება',
3 | 'Theme' => 'თემა',
4 | 'Hide Title' => 'სათაურის დამალვა',
5 | 'Title Size' => 'სათაურის ზომა',
6 | 'Extra large title.' => 'ექსტრა დიდი სათაური',
7 | 'Alignment' => 'განლაგება',
8 | 'Center the title and content.' => 'სათაურის და კონტენტის ცენტრირება',
9 | 'HTML Class' => 'HTML კლასი',
10 | 'Sidebar' => 'Sidebar',
11 | 'Show the sidebar before the content.' => 'აჩვენე sidebar-ი კონტენტის წინ.',
12 | 'Hero Image' => 'ცენტრალური გამოსახულება',
13 | 'Full viewport height' => 'სრული ხედვის არის სიმაღლე',
14 | 'Invert colors' => 'ფერების ინვერტირება',
15 | 'Transparent navbar as overlay' => 'გადაფარული მენიუს გამჭვირვალე ზოლი',
16 | 'Enable parallax effect' => 'პარალაქსის ეფექტის ჩართვა',
17 | 'Select a background image for the hero position.' => 'მონიშნე ფონის გამოსახულება ცენტრალური პოზიციისათვის',
18 | 'Top Style' => 'წვეროს სტილი',
19 | 'Default' => 'ნაგულისხმევი',
20 | 'Muted' => 'მუნჯი',
21 | 'Main Style' => 'ძირთადი სტილი',
22 | 'Bottom Style' => 'ფსკერის სტილი',
23 | 'Save' => 'შენახვა',
24 | 'Logo Contrast' => 'ლოგოს კონტრასტი',
25 | 'Select an alternative logo which looks great on images.' => 'მონიშნე ალტერნატიული ლოგო, რომელიც უფრო კარგად ჩანს სურათზე',
26 | 'Logo Off-canvas' => 'კადრს მიღმა ლოგო',
27 | 'Select an optional logo for the off-canvas menu.' => 'კადრს მიღმა მენიუს ოპციონალური ლოგოს მონიშვნა',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'პანელის სტილი',
33 | 'None' => 'არცერთი',
34 | 'Box' => 'ყუთი',
35 | 'Box Primary' => 'პირველი ყუთი',
36 | 'Box Secondary' => 'მეორე ყუთი',
37 | 'Header' => 'სათაური',
38 | 'Written by %name% on %date%' => 'პოსტის ავტორი: %name%, გამოქვეყნების თარიღი: %date% ',
39 | 'Read more' => 'კიდევ...',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '0} უკომენტაროდ |{1} %num% კომენტარი|]1,Inf[ %num% კომენტარი',
41 | );
--------------------------------------------------------------------------------
/languages/ko_KR/messages.php:
--------------------------------------------------------------------------------
1 | '제목',
3 | 'Theme' => '테마',
4 | 'Hide Title' => '제목 숨김',
5 | 'Title Size' => '제목 크기',
6 | 'Extra large title.' => '엄청 큰 제목',
7 | 'Alignment' => '정렬',
8 | 'Center the title and content.' => '제목을 가운데로 정렬합니다.',
9 | 'HTML Class' => 'HTML 클래스',
10 | 'Sidebar' => '사이드바',
11 | 'Show the sidebar before the content.' => '콘텐츠에 사이드바 노출합니다.',
12 | 'Hero Image' => '배너이미지',
13 | 'Full viewport height' => '높이를 풀 사이즈로 설정합니다',
14 | 'Invert colors' => '색상반전',
15 | 'Transparent navbar as overlay' => '상단메뉴 투명설정',
16 | 'Enable parallax effect' => '패럴렉스 효과 사용',
17 | 'Select a background image for the hero position.' => '배너위치에 배경이미지 설정',
18 | 'Top Style' => '상단 스타일',
19 | 'Default' => '기본',
20 | 'Muted' => '음소거',
21 | 'Main Style' => '메인 스타일',
22 | 'Bottom Style' => '하단 스타일',
23 | 'Save' => '저장',
24 | 'Logo Contrast' => '로고 색대조',
25 | 'Select an alternative logo which looks great on images.' => '다른스타일 적용시 사용할 로고를 업로드합니다.',
26 | 'Logo Off-canvas' => '숨김메뉴 로고',
27 | 'Select an optional logo for the off-canvas menu.' => '숨김메뉴에 표시될 로고를 업로드 합니다.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => '패널 스타일',
33 | 'None' => '없음',
34 | 'Box' => '박스',
35 | 'Box Primary' => '박스1',
36 | 'Box Secondary' => '박스2',
37 | 'Header' => '헤더',
38 | 'Written by %name% on %date%' => '%date%에 %name% 작성',
39 | 'Read more' => '더보기',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} 코멘트가 없습니다|{1} %num%개 코멘트|]1,Inf[ %num%개 코멘트',
41 | );
--------------------------------------------------------------------------------
/languages/ku/messages.php:
--------------------------------------------------------------------------------
1 | 'سەردێڕ',
3 | 'Theme' => '',
4 | 'Hide Title' => 'شارینەوەی سەردێڕ',
5 | 'Title Size' => 'ئەندازەی سەردێڕ',
6 | 'Extra large title.' => 'سەردێڕی زۆر گەورە',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => 'هەڵگرتن',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => 'زۆرتر بخوێنەرۆ',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/lt_LT/messages.php:
--------------------------------------------------------------------------------
1 | 'Pavadinimas',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Slėpti pavadinimą',
5 | 'Title Size' => 'Pavadinimo dydis',
6 | 'Extra large title.' => 'Super didelis pavadinimas',
7 | 'Alignment' => 'Pozicija',
8 | 'Center the title and content.' => 'Centruoti pavadinimą ir turinį',
9 | 'HTML Class' => 'HTML klasė',
10 | 'Sidebar' => 'Šoninė sekcija',
11 | 'Show the sidebar before the content.' => 'Rodyti šoninę sekciją prieš turinį',
12 | 'Hero Image' => 'Didelė nuotrauka',
13 | 'Full viewport height' => 'Pilnas ekrano aukštis',
14 | 'Invert colors' => 'Invertuoti spalvas',
15 | 'Transparent navbar as overlay' => 'Permatoma viršutinė sekcija',
16 | 'Enable parallax effect' => 'Naudoti parallax efektą',
17 | 'Select a background image for the hero position.' => 'Pasirinkti didžiają nuotrauką',
18 | 'Top Style' => 'Viršutinis stilius',
19 | 'Default' => 'Numatyta(-s)',
20 | 'Muted' => 'Nutildyta(-s)',
21 | 'Main Style' => 'Pagrindinis stilius',
22 | 'Bottom Style' => 'Apatinis stilius',
23 | 'Save' => 'Išsaugoti',
24 | 'Logo Contrast' => 'Logotipo kontrastas',
25 | 'Select an alternative logo which looks great on images.' => 'Pasirinkti alternatyvų logotipą kuris atrodo geriau už nuotraukų',
26 | 'Logo Off-canvas' => 'Logotipas už drobės',
27 | 'Select an optional logo for the off-canvas menu.' => 'Pasirinkti neprivalomą logotipą drobės meniu',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Sekcijos stilius',
33 | 'None' => 'Niekas',
34 | 'Box' => 'Dėžė',
35 | 'Box Primary' => 'Pagr. dėžė',
36 | 'Box Secondary' => 'Antr. dėžė',
37 | 'Header' => 'Viršutinė sekcija',
38 | 'Written by %name% on %date%' => 'Parašyta pagal %name%, %date%',
39 | 'Read more' => 'Skaityti toliau',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Komentarų nėra|{1} %num% komentaras|]1,Inf[ %num% komentarų',
41 | );
--------------------------------------------------------------------------------
/languages/mk_MK/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/ml/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/ms_MY/messages.php:
--------------------------------------------------------------------------------
1 | 'Tajuk',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Sembunyi Tajuk',
5 | 'Title Size' => 'Saiz Tajuk',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => 'Simpan',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => '',
33 | 'None' => 'Tiada',
34 | 'Box' => 'Kotak',
35 | 'Box Primary' => 'Kotak Utama',
36 | 'Box Secondary' => 'Kotak Kedua',
37 | 'Header' => 'Kepala',
38 | 'Written by %name% on %date%' => 'Ditulis oleh %name% pada %date%',
39 | 'Read more' => 'Baca selanjutnya',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Tiada komen|{1} %num% Komen|]1,Inf[ %num% Komen',
41 | );
--------------------------------------------------------------------------------
/languages/my_MM/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/nb_NO/messages.php:
--------------------------------------------------------------------------------
1 | 'Tittel',
3 | 'Theme' => 'Mal',
4 | 'Hide Title' => 'Skjul tittel',
5 | 'Title Size' => 'Tittel størrelse',
6 | 'Extra large title.' => 'Ekstra stor tittel.',
7 | 'Alignment' => 'Justering',
8 | 'Center the title and content.' => 'Sentrer tittelen og innholdet',
9 | 'HTML Class' => 'HTML klasse',
10 | 'Sidebar' => 'Sidekolonne',
11 | 'Show the sidebar before the content.' => 'Vis sidekolonnen før innholdet',
12 | 'Hero Image' => 'Heltebilde',
13 | 'Full viewport height' => 'Full visningsflate høyde',
14 | 'Invert colors' => 'Inverter farger',
15 | 'Transparent navbar as overlay' => 'Gjennomsiktig navigasjonslinje som overlegg',
16 | 'Enable parallax effect' => 'Aktiver parallax effekt',
17 | 'Select a background image for the hero position.' => 'Velg bakgrunnsbilde for helteposisjon',
18 | 'Top Style' => 'Toppstil',
19 | 'Default' => 'Standard',
20 | 'Muted' => 'Dempet',
21 | 'Main Style' => 'Hovedstil',
22 | 'Bottom Style' => 'Bunnstil',
23 | 'Save' => 'Lagre',
24 | 'Logo Contrast' => 'Logo kontrast',
25 | 'Select an alternative logo which looks great on images.' => 'Velg en alternativ logo som ser bra ut på bilde.',
26 | 'Logo Off-canvas' => 'Logo Off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Velg en valgfri logo til off-canvas menyen.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Panel stil',
33 | 'None' => 'Ingen',
34 | 'Box' => 'Boks',
35 | 'Box Primary' => 'Boks hoved',
36 | 'Box Secondary' => 'Boks sekundær',
37 | 'Header' => 'Overskrift',
38 | 'Written by %name% on %date%' => 'Skrevet av %name% den %date%',
39 | 'Read more' => 'Les mer',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Ingen kommentarer|{1} %num% kommentar|]1,Inf[ %num% kommentarer',
41 | );
--------------------------------------------------------------------------------
/languages/nl_BE/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/nl_NL/messages.php:
--------------------------------------------------------------------------------
1 | 'Titel',
3 | 'Theme' => 'Thema',
4 | 'Hide Title' => 'Verberg titel',
5 | 'Title Size' => 'Titel formaat',
6 | 'Extra large title.' => 'Extra grote titel.',
7 | 'Alignment' => 'Uitlijning',
8 | 'Center the title and content.' => 'Centreer de titel en de inhoud',
9 | 'HTML Class' => 'HTML class',
10 | 'Sidebar' => 'Zijbalk',
11 | 'Show the sidebar before the content.' => 'Toon de zijbalk voor de inhoud.',
12 | 'Hero Image' => 'Uitgelichte afbeelding',
13 | 'Full viewport height' => 'Volledige viewport hoogte',
14 | 'Invert colors' => 'Negatieve kleuren',
15 | 'Transparent navbar as overlay' => 'Doorzichtige navigatiebalk op voorgrond',
16 | 'Enable parallax effect' => 'Schakel parallaxeffect in',
17 | 'Select a background image for the hero position.' => 'Selecteer een achtergrondafbeelding als uitgelichte afbeelding.',
18 | 'Top Style' => 'Top stijl',
19 | 'Default' => 'Standaard',
20 | 'Muted' => 'Verborgen',
21 | 'Main Style' => 'Hoofd stijl',
22 | 'Bottom Style' => 'Onder stjil',
23 | 'Save' => 'Opslaan',
24 | 'Logo Contrast' => 'Logo contrast',
25 | 'Select an alternative logo which looks great on images.' => 'Selecteer een alternatief logo voor over afbeeldingen',
26 | 'Logo Off-canvas' => 'Off-canvas logo',
27 | 'Select an optional logo for the off-canvas menu.' => 'Selecteer een optioneel logo voor het off-canvas menu.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Paneel stijl',
33 | 'None' => 'Geen',
34 | 'Box' => 'Box',
35 | 'Box Primary' => 'Primaire box',
36 | 'Box Secondary' => 'Secundaire box',
37 | 'Header' => 'Header',
38 | 'Written by %name% on %date%' => 'Geschreven door %name% op %date%',
39 | 'Read more' => 'Lees meer',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Geen reacties|{1} %num% Reactie|]1,Inf[ %num% Reacties',
41 | );
--------------------------------------------------------------------------------
/languages/pl_PL/messages.php:
--------------------------------------------------------------------------------
1 | 'Tytuł',
3 | 'Theme' => 'Motyw',
4 | 'Hide Title' => 'Ukryj tytuł',
5 | 'Title Size' => 'Wielkość tytułu',
6 | 'Extra large title.' => 'Extra duży tytuł.',
7 | 'Alignment' => 'Dostosowanie',
8 | 'Center the title and content.' => 'Wyśrodkuj tytuł i treść.',
9 | 'HTML Class' => 'Klasa HTML',
10 | 'Sidebar' => 'Panel boczny',
11 | 'Show the sidebar before the content.' => 'Pokaż panel boczny po lewej stronie',
12 | 'Hero Image' => 'Wybierz obrazek',
13 | 'Full viewport height' => 'Pełna wysokość obszaru wyświetlania',
14 | 'Invert colors' => 'Zamień kolorystykę',
15 | 'Transparent navbar as overlay' => 'Przeźroczysty pasek nawigacji jako nakładka',
16 | 'Enable parallax effect' => 'Włącz efekt paralaksy',
17 | 'Select a background image for the hero position.' => 'Wybierz obraz na tło',
18 | 'Top Style' => 'Styl góry',
19 | 'Default' => 'Domyślnie',
20 | 'Muted' => 'Wyciszony',
21 | 'Main Style' => 'Styl obszaru głównego',
22 | 'Bottom Style' => 'Styl dołu',
23 | 'Save' => 'Zapisz',
24 | 'Logo Contrast' => 'Kontrast logotypu',
25 | 'Select an alternative logo which looks great on images.' => 'Wybierz logotyp z przezroczystym tłem.',
26 | 'Logo Off-canvas' => 'Logo mobilne',
27 | 'Select an optional logo for the off-canvas menu.' => 'Wybierz opcjonalne logo dla menu mobilnego.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Styl panelu',
33 | 'None' => 'Brak',
34 | 'Box' => 'Box',
35 | 'Box Primary' => 'Pierwszorzędny box',
36 | 'Box Secondary' => 'Drugoorzędny box',
37 | 'Header' => 'Nagłówek',
38 | 'Written by %name% on %date%' => 'Napisane przez %name% w dniu %date%',
39 | 'Read more' => 'Czytaj więcej',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Brak komentarzy|{1} %num% komentarz|[2,4] %num% komentarze|]1,Inf[ %num% komentarzy',
41 | );
--------------------------------------------------------------------------------
/languages/pt_BR/messages.php:
--------------------------------------------------------------------------------
1 | 'Título',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Ocultar Título',
5 | 'Title Size' => 'Tamanho Título',
6 | 'Extra large title.' => 'Título extra grande.',
7 | 'Alignment' => 'Alinhamento',
8 | 'Center the title and content.' => 'Centralize o título e conteúdo.',
9 | 'HTML Class' => 'Classe HTML',
10 | 'Sidebar' => 'Barra Lateral',
11 | 'Show the sidebar before the content.' => 'Mostrar a barra lateral antes do conteúdo.',
12 | 'Hero Image' => 'Imagem Hero',
13 | 'Full viewport height' => 'Altura da janela de exibição completa',
14 | 'Invert colors' => 'Inverter cores',
15 | 'Transparent navbar as overlay' => 'Navbar transparente como sobreposição',
16 | 'Enable parallax effect' => 'Ativar efeito de paralaxe',
17 | 'Select a background image for the hero position.' => 'Selecione uma imagem de fundo para a posição hero.',
18 | 'Top Style' => 'Estilo do topo',
19 | 'Default' => 'Padrão',
20 | 'Muted' => 'Mudo',
21 | 'Main Style' => 'Estilo principal',
22 | 'Bottom Style' => 'Estilo inferior',
23 | 'Save' => 'Salvar',
24 | 'Logo Contrast' => 'Contraste da Logo',
25 | 'Select an alternative logo which looks great on images.' => 'Select an alternative logo which looks great on images.',
26 | 'Logo Off-canvas' => 'Logotipo Off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Escolha um logotipo opcional para o menu off-canvas.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Estilo Painel',
33 | 'None' => 'Nada',
34 | 'Box' => 'Caixa',
35 | 'Box Primary' => 'Caixa Primária',
36 | 'Box Secondary' => 'Caixa Secundária',
37 | 'Header' => 'Cabeçalho',
38 | 'Written by %name% on %date%' => 'Escrito por %name% em %date%',
39 | 'Read more' => 'Leia mais',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Sem comentários|{1} %num% Comentário|]1,Inf[ %num% Comentários',
41 | );
--------------------------------------------------------------------------------
/languages/pt_PT/messages.php:
--------------------------------------------------------------------------------
1 | 'Título',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Ocultar título',
5 | 'Title Size' => 'Tamanho do título',
6 | 'Extra large title.' => 'Título extra largo',
7 | 'Alignment' => 'Alinhamento',
8 | 'Center the title and content.' => 'Centrar o título e o conteúdo',
9 | 'HTML Class' => 'Classe HTML',
10 | 'Sidebar' => 'Barra lateral',
11 | 'Show the sidebar before the content.' => 'Mostrar a barra lateral antes do conteúdo.',
12 | 'Hero Image' => 'Imagem da posição Hero',
13 | 'Full viewport height' => 'Altura da área total de visualização',
14 | 'Invert colors' => 'Inverter cores',
15 | 'Transparent navbar as overlay' => 'Barra de navegação transparente em sobreposição',
16 | 'Enable parallax effect' => 'Ativar o efeito parallax',
17 | 'Select a background image for the hero position.' => 'Seleccione uma imagem de fundo para a posição Hero',
18 | 'Top Style' => 'Estilo superior',
19 | 'Default' => 'Predefinição ',
20 | 'Muted' => 'Mudo',
21 | 'Main Style' => 'Estilo principal',
22 | 'Bottom Style' => 'Estilo inferior',
23 | 'Save' => 'Guardar',
24 | 'Logo Contrast' => 'Logótipo em contraste',
25 | 'Select an alternative logo which looks great on images.' => 'Selecione um logótipo alternativo que combine com imagens.',
26 | 'Logo Off-canvas' => 'Logótipo do menu off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Seleccione um logótipo opcional para o menu off-canvas.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Estilo do painel',
33 | 'None' => 'Nenhum',
34 | 'Box' => 'Caixa',
35 | 'Box Primary' => 'Caixa primária',
36 | 'Box Secondary' => 'Caixa secundária',
37 | 'Header' => 'Cabeçalho',
38 | 'Written by %name% on %date%' => 'Escrito por %name% em %date%',
39 | 'Read more' => 'Ler mais',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Sem comentários|{1} %num% comentário|]1,Inf[ %num% comentários',
41 | );
--------------------------------------------------------------------------------
/languages/ro_RO/messages.php:
--------------------------------------------------------------------------------
1 | 'Titlu',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Ascundere Titlu',
5 | 'Title Size' => 'Marime Titlu',
6 | 'Extra large title.' => 'Titlu Marit',
7 | 'Alignment' => 'Aliniere',
8 | 'Center the title and content.' => 'Centreaza titlul si continutul.',
9 | 'HTML Class' => 'Clasa HTML',
10 | 'Sidebar' => 'Bara Laterala',
11 | 'Show the sidebar before the content.' => 'Plaseaza Bara Laterala inaintea Continutului.',
12 | 'Hero Image' => 'Imagine Reprezentativa',
13 | 'Full viewport height' => 'Inaltime completa a ecranului',
14 | 'Invert colors' => 'Inverseaza culori',
15 | 'Transparent navbar as overlay' => 'Bara de navigare transparenta suprapusa',
16 | 'Enable parallax effect' => 'Activeaza efectul de paralaxa',
17 | 'Select a background image for the hero position.' => 'Selecteaza o imagine de fundal pentru pozitia reprezentativa',
18 | 'Top Style' => 'Stil antet',
19 | 'Default' => 'Implicit',
20 | 'Muted' => 'Silentios',
21 | 'Main Style' => 'Stil Principal',
22 | 'Bottom Style' => 'Stil subsol',
23 | 'Save' => 'Salveaza',
24 | 'Logo Contrast' => 'Contrast Sigla',
25 | 'Select an alternative logo which looks great on images.' => 'Selecteaza o sigla alternativa care e mai vizibila pe imagini',
26 | 'Logo Off-canvas' => 'Sigla in afara sablonului',
27 | 'Select an optional logo for the off-canvas menu.' => 'Selecteaza o sigla optionala potrivita in afara sablonului',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Stil Panou',
33 | 'None' => 'Niciunul',
34 | 'Box' => 'Caseta',
35 | 'Box Primary' => 'Caseta Principala',
36 | 'Box Secondary' => 'Caseta Secundara',
37 | 'Header' => 'Antet',
38 | 'Written by %name% on %date%' => 'Publicat de %name% la %date%',
39 | 'Read more' => 'Citeste in continuare',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Fara comentarii|{1} %num% Comentariu|]1,Inf[ %num% Comentarii',
41 | );
--------------------------------------------------------------------------------
/languages/ru@petr1708/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/ru_RU/messages.php:
--------------------------------------------------------------------------------
1 | 'Заголовок',
3 | 'Theme' => 'Тема',
4 | 'Hide Title' => 'Скрыть заголовок',
5 | 'Title Size' => 'Размер заголовка',
6 | 'Extra large title.' => 'Очень большой заголовок.',
7 | 'Alignment' => 'Выравнивание',
8 | 'Center the title and content.' => 'Заголовок и содержимое по центру.',
9 | 'HTML Class' => 'Класс HTML',
10 | 'Sidebar' => 'Боковая панель',
11 | 'Show the sidebar before the content.' => 'Показывать боковую панель перед содержимым.',
12 | 'Hero Image' => 'Изображение для позиции hero',
13 | 'Full viewport height' => 'Полная высота (viewport)',
14 | 'Invert colors' => 'Инвертировать цвета',
15 | 'Transparent navbar as overlay' => 'Прозрачная навигационная панель поверх',
16 | 'Enable parallax effect' => 'Включить параллакс-эффект',
17 | 'Select a background image for the hero position.' => 'Выберите фоновое изображение для позиции hero',
18 | 'Top Style' => 'Верхний стиль',
19 | 'Default' => 'По умолчанию',
20 | 'Muted' => 'Приглушённый',
21 | 'Main Style' => 'Основной стиль',
22 | 'Bottom Style' => 'Нижний стиль',
23 | 'Save' => 'Сохранить',
24 | 'Logo Contrast' => 'Контрастный логотип',
25 | 'Select an alternative logo which looks great on images.' => 'Выберите альтернативный логотип для наложения на картинки',
26 | 'Logo Off-canvas' => 'Логотип Off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Выберите необязательный логотип для off-canvas меню.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Стиль панели',
33 | 'None' => 'Нет',
34 | 'Box' => 'Box',
35 | 'Box Primary' => 'Box Primary',
36 | 'Box Secondary' => 'Box Secondary',
37 | 'Header' => 'Header',
38 | 'Written by %name% on %date%' => '%name%, %date%',
39 | 'Read more' => 'Читать далее',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Нет комментариев|{1} %num% комментарий|]1,Inf[ %num% комментариев',
41 | );
--------------------------------------------------------------------------------
/languages/ru_ee/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/sk_SK/messages.php:
--------------------------------------------------------------------------------
1 | 'Názov',
3 | 'Theme' => 'Šablóna',
4 | 'Hide Title' => 'Skryť nadpis',
5 | 'Title Size' => 'Veľkosť nadpisu',
6 | 'Extra large title.' => 'Extra veľký nadpis.',
7 | 'Alignment' => 'Zarovnanie',
8 | 'Center the title and content.' => 'Zarovnať nadpis a obsah na stred.',
9 | 'HTML Class' => 'Trieda HTML',
10 | 'Sidebar' => 'Bočný panel',
11 | 'Show the sidebar before the content.' => 'Zobraziť bočný panel pred obsahom.',
12 | 'Hero Image' => 'Obrázok v pozícii Hero',
13 | 'Full viewport height' => 'Na celú výšku obrazovky',
14 | 'Invert colors' => 'Invertovať farby',
15 | 'Transparent navbar as overlay' => 'Priehľadný navigačný panel (napr. preložený cez obrázok)',
16 | 'Enable parallax effect' => 'Zapnúť parallax efekt',
17 | 'Select a background image for the hero position.' => 'Vyberte obrázok pre pozíciu Hero.',
18 | 'Top Style' => 'Štýl sekcie Top',
19 | 'Default' => 'Predvolené',
20 | 'Muted' => 'Tlmené farby',
21 | 'Main Style' => 'Štýl sekcie Main',
22 | 'Bottom Style' => 'Štýl sekcie Bottom',
23 | 'Save' => 'Uložiť',
24 | 'Logo Contrast' => 'Kontrastné logo',
25 | 'Select an alternative logo which looks great on images.' => 'Vyberte alternatívne logo, ktoré bude dobre viditeľné v obrázkoch.',
26 | 'Logo Off-canvas' => 'Logo v off-canvas menu',
27 | 'Select an optional logo for the off-canvas menu.' => 'V prípade potreby vyberte logo pre off-canvas menu.',
28 | 'H1' => 'Nadpis H1',
29 | 'H2' => 'Nadpis H2',
30 | 'H3' => 'Nadpis H3',
31 | 'H4' => 'Nadpis H4',
32 | 'Panel Style' => 'Štýl modulu',
33 | 'None' => 'Žiadny',
34 | 'Box' => 'Box',
35 | 'Box Primary' => 'Box Primary',
36 | 'Box Secondary' => 'Box Secondary',
37 | 'Header' => 'Hlavička',
38 | 'Written by %name% on %date%' => 'Napísal/a %name% dňa %date%',
39 | 'Read more' => 'Čítať viac',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Žiadny komentár|{1} %num% komentár]1,Inf[ %num% komentárov',
41 | );
--------------------------------------------------------------------------------
/languages/sl_SI/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/so/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/sq/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/sr_RS/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/sr_RS@latin/messages.php:
--------------------------------------------------------------------------------
1 | 'Naslov',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Sakrij Naslov',
5 | 'Title Size' => 'Veličina Naslova',
6 | 'Extra large title.' => 'Iznimno veliki naslov.',
7 | 'Alignment' => 'Poravnanje',
8 | 'Center the title and content.' => 'Centrirati naslov i sadržaj.',
9 | 'HTML Class' => 'HTML Class',
10 | 'Sidebar' => 'Sidebar',
11 | 'Show the sidebar before the content.' => 'Pokaži sidebar prije sadržaja.',
12 | 'Hero Image' => 'Hero Slika',
13 | 'Full viewport height' => 'Puna viewport visina',
14 | 'Invert colors' => 'Izokreni boje',
15 | 'Transparent navbar as overlay' => 'Prozirni navbar kao overlay',
16 | 'Enable parallax effect' => 'Dozvoli Paraleks efekt',
17 | 'Select a background image for the hero position.' => 'Odaberite pozadinsku sliku za hero poziciju.',
18 | 'Top Style' => 'Top Stil',
19 | 'Default' => 'Zadano',
20 | 'Muted' => 'Mutirano',
21 | 'Main Style' => 'Glavni stil',
22 | 'Bottom Style' => 'Donji stil',
23 | 'Save' => 'Spremi',
24 | 'Logo Contrast' => 'Logo Kontrast',
25 | 'Select an alternative logo which looks great on images.' => 'Izaberite alternativni logo koji izgleda izvrsno na slikama.',
26 | 'Logo Off-canvas' => 'Logo van Canvas-a',
27 | 'Select an optional logo for the off-canvas menu.' => 'Odaberite opciju za logo za off-canvas meni',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Stil Panela',
33 | 'None' => 'Nema',
34 | 'Box' => 'Kutija',
35 | 'Box Primary' => 'Primarna Kutija',
36 | 'Box Secondary' => 'Sekundarna Kutija',
37 | 'Header' => 'Zaglavlje',
38 | 'Written by %name% on %date%' => 'Napisao %name% na %date%',
39 | 'Read more' => 'Pročitajte više',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Nema komentara|{1} %num% Komentar|]1,Inf[ %num% Komentara',
41 | );
--------------------------------------------------------------------------------
/languages/sv_SE/messages.php:
--------------------------------------------------------------------------------
1 | 'Rubrik',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Göm rubrik',
5 | 'Title Size' => 'Rubriks storlek',
6 | 'Extra large title.' => 'Extra stor rubrik.',
7 | 'Alignment' => 'Placering',
8 | 'Center the title and content.' => 'Centrera rubriken och innehållet.',
9 | 'HTML Class' => 'HTML Klass',
10 | 'Sidebar' => 'Sidofält',
11 | 'Show the sidebar before the content.' => 'Visa sidofältet före innehållet.',
12 | 'Hero Image' => 'Hero bild',
13 | 'Full viewport height' => 'Fullständig visningshöjd',
14 | 'Invert colors' => 'Invertera färger',
15 | 'Transparent navbar as overlay' => 'Transparent meny som överlägg',
16 | 'Enable parallax effect' => 'Aktivera parallax effekt',
17 | 'Select a background image for the hero position.' => 'Välj en bakgrundsbild till hero positionen.',
18 | 'Top Style' => 'Topp stil',
19 | 'Default' => 'Standard',
20 | 'Muted' => 'Tystad',
21 | 'Main Style' => 'Huvud stil',
22 | 'Bottom Style' => 'Botten stil',
23 | 'Save' => 'Spara',
24 | 'Logo Contrast' => 'Logo kontrast',
25 | 'Select an alternative logo which looks great on images.' => 'Välj en alternativ logo som ser bra ut på bilder.',
26 | 'Logo Off-canvas' => 'Logotyp utanför vyn',
27 | 'Select an optional logo for the off-canvas menu.' => 'Välj en alternativ logotyp för menyn som är utanför vyn.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Panel stil',
33 | 'None' => 'Ingen',
34 | 'Box' => 'Låda',
35 | 'Box Primary' => 'Primär låda',
36 | 'Box Secondary' => 'Sekundär låda',
37 | 'Header' => 'Header',
38 | 'Written by %name% on %date%' => 'Skriven av %name% den %date%',
39 | 'Read more' => 'Läs mer',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Inga kommentarer|{1} %num% Kommentar|]1,Inf[ %num% Kommentarer',
41 | );
--------------------------------------------------------------------------------
/languages/ta/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/te_IN/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/th/messages.php:
--------------------------------------------------------------------------------
1 | 'หัวเรื่อง',
3 | 'Theme' => 'ธีม',
4 | 'Hide Title' => 'ซ่อนหัวเรื่อง',
5 | 'Title Size' => 'ขนาดหัวเรื่อง',
6 | 'Extra large title.' => 'หัวเรื่องใหญ่พิเศษ',
7 | 'Alignment' => 'จัดแถว',
8 | 'Center the title and content.' => 'จัดหัวเรื่องและบทความตรงกลาง',
9 | 'HTML Class' => 'Class ของ HTML ',
10 | 'Sidebar' => 'ด้านข้าง',
11 | 'Show the sidebar before the content.' => 'แสดงด้านข้างก่อนบทความ',
12 | 'Hero Image' => 'ภาพส่วนหัว',
13 | 'Full viewport height' => 'สูงเต็มหน้าจอ',
14 | 'Invert colors' => 'สลับสี',
15 | 'Transparent navbar as overlay' => 'เมนูนำซ้อนทับแบบโปร่งใส',
16 | 'Enable parallax effect' => 'เปิดใช้ Parallax',
17 | 'Select a background image for the hero position.' => 'เลือกภาพพื้นหลังสำหรับภาพส่วนหัว',
18 | 'Top Style' => 'รูปแบบส่วนบน',
19 | 'Default' => 'ค่าเริ่มต้น',
20 | 'Muted' => 'เงียบ',
21 | 'Main Style' => 'รูปแบบหลัก',
22 | 'Bottom Style' => 'รูปแบบส่วนล่าง',
23 | 'Save' => 'บันทึก',
24 | 'Logo Contrast' => 'ความคมชัดของโลโก้',
25 | 'Select an alternative logo which looks great on images.' => 'เลือกโลโก้อื่นที่ดีกับภาพ',
26 | 'Logo Off-canvas' => 'โลโก้ Off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'เลือกรูปโลโก้ที่จะใช้ใน เมนู off-canvas',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'รูปแบบหน้าควบคุม',
33 | 'None' => 'ไม่',
34 | 'Box' => 'กล่อง',
35 | 'Box Primary' => 'กล่องหลัก',
36 | 'Box Secondary' => 'กล่องรอง',
37 | 'Header' => 'ส่วนหัว',
38 | 'Written by %name% on %date%' => 'เขียนโดย %name% เมื่อ %date%',
39 | 'Read more' => 'อ่านต่อ',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} ไม่มีความเห็น|{1} %num% ความเห็น|]1,Inf[ %num% ความเห็น',
41 | );
--------------------------------------------------------------------------------
/languages/tl_PH/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/tr_TR/messages.php:
--------------------------------------------------------------------------------
1 | 'Başlık',
3 | 'Theme' => 'Tema',
4 | 'Hide Title' => 'Başlığı Gizle',
5 | 'Title Size' => 'Başlık Boyutu',
6 | 'Extra large title.' => 'Ekstra büyük başlık.',
7 | 'Alignment' => 'Hizalama',
8 | 'Center the title and content.' => 'Başlık ve içeriği ortala.',
9 | 'HTML Class' => 'HTML Sınıfı',
10 | 'Sidebar' => 'Yan Çubuk',
11 | 'Show the sidebar before the content.' => 'Yan çubuk içerikten önce görüntülensin.',
12 | 'Hero Image' => 'Hero Görseli',
13 | 'Full viewport height' => 'Tam boy görünüm alanı',
14 | 'Invert colors' => 'Renkleri tersine çevir',
15 | 'Transparent navbar as overlay' => 'Şeffaf gezinme çubuğu kaplansın',
16 | 'Enable parallax effect' => 'Parallax etkisi kullanılsın',
17 | 'Select a background image for the hero position.' => 'Hero konumunun artalan görselini seçin.',
18 | 'Top Style' => 'Üst Stili',
19 | 'Default' => 'Varsayılan',
20 | 'Muted' => 'Kısılmış',
21 | 'Main Style' => 'Ana Stil',
22 | 'Bottom Style' => 'Alt Stil',
23 | 'Save' => 'Kaydet',
24 | 'Logo Contrast' => 'Logo Karşıtlığı',
25 | 'Select an alternative logo which looks great on images.' => 'Görsellerin üzerinde güzel görünecek alternatif bir logo seçin.',
26 | 'Logo Off-canvas' => 'Tuval dışı logosu',
27 | 'Select an optional logo for the off-canvas menu.' => 'Tuval dışı menüsü için isteğe bağlı bir logo seçin.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Pano Sitili',
33 | 'None' => 'Yok',
34 | 'Box' => 'Kutu',
35 | 'Box Primary' => 'Birincil Kutu',
36 | 'Box Secondary' => 'İkincil Kutu',
37 | 'Header' => 'Üstbilgi',
38 | 'Written by %name% on %date%' => '%name% tarafından, %date% tarihinde yazıldı',
39 | 'Read more' => 'Devamını oku',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Yorum yok|{1} %num% Yorum|]1,Inf[ %num% Yorum',
41 | );
--------------------------------------------------------------------------------
/languages/udm/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/ug/messages.php:
--------------------------------------------------------------------------------
1 | 'ماۋزو',
3 | 'Theme' => 'ئۇسلۇب',
4 | 'Hide Title' => 'ماۋزونى يۇشۇرۇش',
5 | 'Title Size' => 'ماۋزو رازمىرى',
6 | 'Extra large title.' => 'چوڭ ماۋزو',
7 | 'Alignment' => 'يۈلىنىش',
8 | 'Center the title and content.' => 'ماۋزو بىلەن مەزمۇننى ئوتتۇرىغا توغرىلاپ كۆرسىتىش.',
9 | 'HTML Class' => 'HTML ئۇسلۇبى',
10 | 'Sidebar' => 'يان تىزىملىك',
11 | 'Show the sidebar before the content.' => 'مەزمۇن بېتىدە يان تىزىملىكنى كۆرسىتىش.',
12 | 'Hero Image' => 'چوڭ تەگلىك رەسىم',
13 | 'Full viewport height' => 'پۈتۈن ئىكران ئىگىزلىكى',
14 | 'Invert colors' => 'تەتۈر رەڭ',
15 | 'Transparent navbar as overlay' => 'سۈزۈك تىزىملىك قوشۇش',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => 'سۈكۈتتىكى',
20 | 'Muted' => 'ئاۋازسىز',
21 | 'Main Style' => 'باشتىما پاسونى',
22 | 'Bottom Style' => 'كۇنۇپكا پاسونى',
23 | 'Save' => 'ساقلاش',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/uk_UA/messages.php:
--------------------------------------------------------------------------------
1 | 'Заголовок',
3 | 'Theme' => 'Тема',
4 | 'Hide Title' => 'Приховати Заголовок',
5 | 'Title Size' => 'Розмір Заголовку',
6 | 'Extra large title.' => 'Дуже великий Заголовок',
7 | 'Alignment' => 'Вирівнювання',
8 | 'Center the title and content.' => 'Вирівняти Заголовок та Контент по центру',
9 | 'HTML Class' => 'HTML Клас',
10 | 'Sidebar' => 'Бічна панель',
11 | 'Show the sidebar before the content.' => 'Показувати Бічну панель перед вмістом',
12 | 'Hero Image' => 'Зображення "hero"',
13 | 'Full viewport height' => 'Повна висота вікна перегляду',
14 | 'Invert colors' => 'Інвертувати кольори',
15 | 'Transparent navbar as overlay' => 'Прозора навігаційна панель як накладання',
16 | 'Enable parallax effect' => 'Увімкнути ефект паралаксу',
17 | 'Select a background image for the hero position.' => 'Обрати зображення для позиції "hero" ',
18 | 'Top Style' => '',
19 | 'Default' => 'За замовчуванням',
20 | 'Muted' => 'Приглушений',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => 'Зберегти',
24 | 'Logo Contrast' => 'Контрастний логотип',
25 | 'Select an alternative logo which looks great on images.' => 'Виберіть альтернативний логотип, який чудово виглядає на зображеннях.',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => 'Детальніше',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/uz/messages.php:
--------------------------------------------------------------------------------
1 | 'Sarlavha',
3 | 'Theme' => 'Theme',
4 | 'Hide Title' => 'Sarlavha yashirish',
5 | 'Title Size' => 'Sarlavha hajmi',
6 | 'Extra large title.' => 'Qo\'shimcha sarlavha.',
7 | 'Alignment' => 'Jo\'ylashuv',
8 | 'Center the title and content.' => 'Sarlavha va kontentni markazlash.',
9 | 'HTML Class' => 'HTML Class',
10 | 'Sidebar' => 'Yon panel',
11 | 'Show the sidebar before the content.' => 'Tarkibdan oldin yon panelni ko\'rsatish.',
12 | 'Hero Image' => '"Hero" pozitsiyasiga rasm',
13 | 'Full viewport height' => 'To\'liq tashqi ko\'rinish balandligi',
14 | 'Invert colors' => 'Ranglarni o\'zgartirish',
15 | 'Transparent navbar as overlay' => 'Yopishqoq ko\'rinishidagi shaffof navbar',
16 | 'Enable parallax effect' => 'Parallaks ta\'sirini yoqish',
17 | 'Select a background image for the hero position.' => '"Hero" pozitsiyasi uchun fon tasvirini tanlang.',
18 | 'Top Style' => 'Yuqori stil',
19 | 'Default' => 'Standart',
20 | 'Muted' => 'O\'chiq',
21 | 'Main Style' => 'Asosiy stil',
22 | 'Bottom Style' => 'Pastki stil',
23 | 'Save' => 'Saqlash',
24 | 'Logo Contrast' => 'Logo kontrast',
25 | 'Select an alternative logo which looks great on images.' => 'Rasmlarga ajoyib ko\'rinadigan muqobil logoni tanlang.',
26 | 'Logo Off-canvas' => 'Logo Off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Ochiq-tuval menyu uchun ixtiyoriy logo ni tanlang.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Panel stil',
33 | 'None' => 'Yo\'q',
34 | 'Box' => 'Quti',
35 | 'Box Primary' => 'Asosiy quti',
36 | 'Box Secondary' => 'Ikkinchi darajali quti',
37 | 'Header' => 'Shapka (Bosh)',
38 | 'Written by %name% on %date%' => '%name% tomonidan %date% da yozilgan',
39 | 'Read more' => 'Davomini o\'qish',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Izohsiz|{1} %num% Izoh|]1,Inf[ %num% Izohlar',
41 | );
--------------------------------------------------------------------------------
/languages/vi_VN/messages.php:
--------------------------------------------------------------------------------
1 | 'Tiêu đề',
3 | 'Theme' => 'Giao diện',
4 | 'Hide Title' => 'Ẩn tiêu đề',
5 | 'Title Size' => 'Kích thướt tiêu đề',
6 | 'Extra large title.' => 'Mở rộng tiêu đề',
7 | 'Alignment' => 'Canh lề',
8 | 'Center the title and content.' => 'Canh giữa tiêu đề và nội dung',
9 | 'HTML Class' => 'HTML Class',
10 | 'Sidebar' => 'Sidebar',
11 | 'Show the sidebar before the content.' => 'Hiển thị sidebar trước nội dung.',
12 | 'Hero Image' => 'Hero Image',
13 | 'Full viewport height' => 'Full viewport height',
14 | 'Invert colors' => 'Đảo màu',
15 | 'Transparent navbar as overlay' => 'Transparent navbar as overlay',
16 | 'Enable parallax effect' => 'Bật hiệu ứng parallax',
17 | 'Select a background image for the hero position.' => 'Chọn hình nền cho vị trí hero.',
18 | 'Top Style' => 'Top Style',
19 | 'Default' => 'Mặc định',
20 | 'Muted' => 'Tắt âm thanh',
21 | 'Main Style' => 'Main Style',
22 | 'Bottom Style' => 'Bottom Style',
23 | 'Save' => 'Lưu',
24 | 'Logo Contrast' => 'Logo Contrast',
25 | 'Select an alternative logo which looks great on images.' => 'Chọn một logo thay thế tốt nhất cho các hình ảnh.',
26 | 'Logo Off-canvas' => 'Logo Off-canvas',
27 | 'Select an optional logo for the off-canvas menu.' => 'Chọn một logo tuỳ chọn cho off-canvas menu.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => 'Panel Style',
33 | 'None' => 'Không',
34 | 'Box' => 'Box',
35 | 'Box Primary' => 'Box Primary',
36 | 'Box Secondary' => 'Box Secondary',
37 | 'Header' => 'Header',
38 | 'Written by %name% on %date%' => 'Được ghi bởi %name% vào ngày %date%',
39 | 'Read more' => 'Đọc thêm',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments',
41 | );
--------------------------------------------------------------------------------
/languages/zh-Hant/messages.php:
--------------------------------------------------------------------------------
1 | '',
3 | 'Theme' => '',
4 | 'Hide Title' => '',
5 | 'Title Size' => '',
6 | 'Extra large title.' => '',
7 | 'Alignment' => '',
8 | 'Center the title and content.' => '',
9 | 'HTML Class' => '',
10 | 'Sidebar' => '',
11 | 'Show the sidebar before the content.' => '',
12 | 'Hero Image' => '',
13 | 'Full viewport height' => '',
14 | 'Invert colors' => '',
15 | 'Transparent navbar as overlay' => '',
16 | 'Enable parallax effect' => '',
17 | 'Select a background image for the hero position.' => '',
18 | 'Top Style' => '',
19 | 'Default' => '',
20 | 'Muted' => '',
21 | 'Main Style' => '',
22 | 'Bottom Style' => '',
23 | 'Save' => '',
24 | 'Logo Contrast' => '',
25 | 'Select an alternative logo which looks great on images.' => '',
26 | 'Logo Off-canvas' => '',
27 | 'Select an optional logo for the off-canvas menu.' => '',
28 | 'H1' => '',
29 | 'H2' => '',
30 | 'H3' => '',
31 | 'H4' => '',
32 | 'Panel Style' => '',
33 | 'None' => '',
34 | 'Box' => '',
35 | 'Box Primary' => '',
36 | 'Box Secondary' => '',
37 | 'Header' => '',
38 | 'Written by %name% on %date%' => '',
39 | 'Read more' => '',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '',
41 | );
--------------------------------------------------------------------------------
/languages/zh_CN/messages.php:
--------------------------------------------------------------------------------
1 | '标题',
3 | 'Theme' => '主题',
4 | 'Hide Title' => '隐藏标题',
5 | 'Title Size' => '标题大小',
6 | 'Extra large title.' => '超大标题',
7 | 'Alignment' => '对齐',
8 | 'Center the title and content.' => '标题和内容都居中显示。',
9 | 'HTML Class' => 'HTML 样式',
10 | 'Sidebar' => '侧导航',
11 | 'Show the sidebar before the content.' => '在内容上显示侧导航。',
12 | 'Hero Image' => '大背景图',
13 | 'Full viewport height' => '全屏高度',
14 | 'Invert colors' => '反向颜色',
15 | 'Transparent navbar as overlay' => '叠加透明导航条',
16 | 'Enable parallax effect' => '启用视差效果',
17 | 'Select a background image for the hero position.' => '为展示区域选择一张背景图片',
18 | 'Top Style' => '顶部样式',
19 | 'Default' => '默认',
20 | 'Muted' => '静音',
21 | 'Main Style' => '主体样式',
22 | 'Bottom Style' => '底部样式',
23 | 'Save' => '保存',
24 | 'Logo Contrast' => '对比的Logo',
25 | 'Select an alternative logo which looks great on images.' => '选择一个可替代的在该图片上看起来不错的站标',
26 | 'Logo Off-canvas' => '侧边栏Logo标志',
27 | 'Select an optional logo for the off-canvas menu.' => '选择一个侧边栏菜单可用的Logo标志。',
28 | 'H1' => '一级标题',
29 | 'H2' => '二级标题',
30 | 'H3' => '三级标题',
31 | 'H4' => '四级标题',
32 | 'Panel Style' => '面板风格',
33 | 'None' => '无',
34 | 'Box' => '箱',
35 | 'Box Primary' => '主箱',
36 | 'Box Secondary' => '次箱',
37 | 'Header' => '头部',
38 | 'Written by %name% on %date%' => '由 %name% 于 %date% 撰写',
39 | 'Read more' => '查看更多',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} 无评论|{1} %num% 评论|]1,Inf[ %num% 评论',
41 | );
--------------------------------------------------------------------------------
/languages/zh_TW/messages.php:
--------------------------------------------------------------------------------
1 | '標題',
3 | 'Theme' => '主題',
4 | 'Hide Title' => '隱藏標題',
5 | 'Title Size' => '標題大小',
6 | 'Extra large title.' => '特大標題',
7 | 'Alignment' => '對齊',
8 | 'Center the title and content.' => '標題與內文置中',
9 | 'HTML Class' => 'HTML class',
10 | 'Sidebar' => '側邊欄',
11 | 'Show the sidebar before the content.' => '在內文前顯示側邊欄',
12 | 'Hero Image' => 'Hero 影像',
13 | 'Full viewport height' => '滿版 viewport 高度',
14 | 'Invert colors' => '顏色倒轉',
15 | 'Transparent navbar as overlay' => 'navbar 以透明方式覆蓋上去',
16 | 'Enable parallax effect' => '啟用平行放置效果',
17 | 'Select a background image for the hero position.' => '選擇背景圖片供 hero 位置使用',
18 | 'Top Style' => 'TOP 類型',
19 | 'Default' => '預設',
20 | 'Muted' => '已靜音',
21 | 'Main Style' => 'Main 類型',
22 | 'Bottom Style' => 'Bottom 類型',
23 | 'Save' => '儲存',
24 | 'Logo Contrast' => '標章對比',
25 | 'Select an alternative logo which looks great on images.' => '選用另一個放在圖片上看起來好看的標章.',
26 | 'Logo Off-canvas' => 'Off-canvas 標章',
27 | 'Select an optional logo for the off-canvas menu.' => '選擇標章供 Off-canvas 選單使用.',
28 | 'H1' => 'H1',
29 | 'H2' => 'H2',
30 | 'H3' => 'H3',
31 | 'H4' => 'H4',
32 | 'Panel Style' => '面板類型',
33 | 'None' => '無',
34 | 'Box' => '方框',
35 | 'Box Primary' => '主要方框',
36 | 'Box Secondary' => '次要方框',
37 | 'Header' => 'Header',
38 | 'Written by %name% on %date%' => '%name% 於 %date% 所撰寫',
39 | 'Read more' => '閱讀更多',
40 | '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} 無評論|{1} %num% 則評論|]1,Inf[ %num% 則評論',
41 | );
--------------------------------------------------------------------------------
/less/uikit/accordion.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Accordion
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @accordion-title-margin-bottom: 0;
11 | @accordion-title-padding-vertical: 15px;
12 | @accordion-title-padding-horizontal: 40px;
13 | @accordion-title-font-size: round((@global-font-size * 1.14)); // 16px / 18px
14 | @accordion-title-line-height: round((@accordion-title-font-size * 1.36)); // 22px / 24px
15 | @accordion-title-background: transparent;
16 |
17 | //
18 | // New
19 | //
20 |
21 | @accordion-border: @global-border;
22 |
23 |
24 | // Component
25 | // ========================================================================
26 |
27 | .hook-accordion() {}
28 |
29 |
30 | // Modifier: `uk-accordion-title`
31 | // ========================================================================
32 |
33 | .hook-accordion-title() {
34 | position: relative;
35 | padding-left: 0;
36 | }
37 |
38 |
39 | // Modifier: `uk-accordion-content`
40 | // ========================================================================
41 |
42 | .hook-accordion-content() { padding-left: 0; }
43 |
44 |
45 | // Miscellaneous
46 | // ========================================================================
47 |
48 | .hook-accordion-misc() {
49 |
50 | .uk-accordion-title:not(:first-child) { border-top: 1px solid @accordion-border; }
51 |
52 | // Toggle Icon
53 | .uk-accordion-title:before {
54 | content: "";
55 | position: absolute;
56 | top: 20px;
57 | right: @accordion-title-padding-vertical;
58 | height: 13px;
59 | width: 13px;
60 | background: url("@{global-image-path}/plus.svg") 0 0 no-repeat;
61 | }
62 |
63 | .uk-accordion-title:hover,
64 | .uk-accordion-title:hover:before { opacity: 0.7; }
65 |
66 | .uk-accordion-title.uk-active:before { background: url("@{global-image-path}/minus.svg") 0 0 no-repeat; }
67 |
68 | }
--------------------------------------------------------------------------------
/less/uikit/alert.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Alert
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @alert-margin-vertical: @global-margin;
11 |
12 | @alert-background: @global-default-background;
13 | @alert-color: @global-color;
14 |
15 | @alert-success-background: #ecf7e9;
16 | @alert-success-color: #80c96d;
17 |
18 | @alert-warning-background: #fff0e0;
19 | @alert-warning-color: #ff9a2e;
20 |
21 | @alert-danger-background: #fde7e7;
22 | @alert-danger-color: #F05D54;
23 |
24 |
25 | // Component
26 | // ========================================================================
27 |
28 | .hook-alert() {}
29 |
30 |
31 | // Modifier: `uk-alert-success`
32 | // ========================================================================
33 |
34 | .hook-alert-success() {}
35 |
36 |
37 | // Modifier: `uk-alert-warning`
38 | // ========================================================================
39 |
40 | .hook-alert-warning() {}
41 |
42 |
43 | // Modifier: `uk-alert-danger`
44 | // ========================================================================
45 |
46 | .hook-alert-danger() {}
47 |
48 |
49 | // Miscellaneous
50 | // ========================================================================
51 |
52 | .hook-alert-misc() {
53 |
54 | .uk-alert .uk-close { opacity: 0.2; }
55 | .uk-alert .uk-close:hover { opacity: 1; }
56 |
57 | }
--------------------------------------------------------------------------------
/less/uikit/article.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Article
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @article-margin-top: 80px;
11 |
12 | @article-title-font-size: round((@global-font-size * 2.6)); // 36px / 42px
13 | @article-title-line-height: round((@article-title-font-size * 1.154)); // 42px / 48px
14 | @article-title-font-weight: 300;
15 |
16 | @article-meta-font-size: round((@global-font-size * 0.85)); // 12px / 14px
17 | @article-meta-line-height: round((@article-meta-font-size * 1.46)); // 18px / 20px
18 | @article-meta-color: @global-muted-color;
19 |
20 | @article-lead-color: @global-color;
21 | @article-lead-font-size: round((@global-font-size * 1.4)); // 20px / 22px
22 | @article-lead-line-height: round((@article-lead-font-size * 1.28)); // 26px / 28px
23 | @article-lead-font-weight: 300;
24 |
25 | @article-divider-margin: @global-margin-large;
26 | @article-divider-border: @global-border;
27 |
28 |
29 | // Sub-object `uk-article-title`
30 | // ========================================================================
31 |
32 | .hook-article-title() {}
33 |
34 |
35 | // Sub-object `uk-article-meta`
36 | // ========================================================================
37 |
38 | .hook-article-meta() {
39 |
40 | a { color: @article-meta-color; }
41 |
42 | a:hover {
43 | color: @global-link-hover-color;
44 | text-decoration: none;
45 | }
46 |
47 | }
48 |
49 |
50 | // Sub-object `uk-article-lead`
51 | // ========================================================================
52 |
53 | .hook-article-lead() {}
54 |
55 |
56 | // Sub-object `uk-article-divider`
57 | // ========================================================================
58 |
59 | .hook-article-divider() {}
60 |
61 |
62 | // Miscellaneous
63 | // ========================================================================
64 |
65 | .hook-article-misc() {
66 |
67 | .uk-article + .uk-article {
68 | padding-top: @article-margin-top;
69 | border-top: 1px solid @global-border;
70 | }
71 |
72 | /* Tablet and bigger */
73 | @media (min-width: @breakpoint-medium) {
74 | .uk-article + .uk-article {
75 | margin-top: (@article-margin-top + 50px);
76 | padding-top: (@article-margin-top + 50px);
77 | }
78 | }
79 |
80 | .uk-article .uk-subnav a:hover,
81 | .uk-article .uk-subnav a:focus { text-decoration: underline; }
82 |
83 | }
--------------------------------------------------------------------------------
/less/uikit/autocomplete.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Autocomplete
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @nav-autocomplete-color: @global-color;
11 | @nav-autocomplete-active-background: @global-primary-background;
12 | @nav-autocomplete-active-color: @global-contrast-color;
13 | @nav-autocomplete-header-color: @global-muted-color;
14 | @nav-autocomplete-divider-border: @global-border;
15 |
16 |
17 | // Component
18 | // ========================================================================
19 |
20 | .hook-nav-autocomplete() {}
21 |
22 | .hook-nav-autocomplete-active() {}
23 |
24 | .hook-nav-autocomplete-header() {}
25 |
26 | .hook-nav-autocomplete-divider() {}
27 |
28 |
29 | // Miscellaneous
30 | // ========================================================================
31 |
32 | .hook-autocomplete-misc() {}
--------------------------------------------------------------------------------
/less/uikit/badge.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Badge
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @badge-background: @global-primary-background;
11 | @badge-padding-horizontal: 10px;
12 | @badge-font-size: round((@global-font-size * 0.74)); // 10px / 12px
13 | @badge-font-weight: normal;
14 | @badge-line-height: 22px;
15 | @badge-color: @global-contrast-color;
16 | @badge-text-transform: uppercase;
17 | @badge-hover-color: @global-contrast-color;
18 |
19 | @badge-notification-font-size: round((@global-font-size * 0.78)); // 11px / 12px
20 | @badge-notification-line-height: round((@badge-notification-font-size * 1.81)); // 20px / 22px
21 |
22 | @badge-success-background: @global-success-background;
23 | @badge-warning-background: @global-warning-background;
24 | @badge-danger-background: @global-danger-background;
25 |
26 |
27 | // Component
28 | // ========================================================================
29 |
30 | .hook-badge() {}
31 |
32 |
33 | // Color modifier
34 | // ========================================================================
35 |
36 | //
37 | // Modifier: `badge-success`
38 | //
39 |
40 | .hook-badge-success() {}
41 |
42 | //
43 | // Modifier: `badge-warning`
44 | //
45 |
46 | .hook-badge-warning() {}
47 |
48 | //
49 | // Modifier: `badge-danger`
50 | //
51 |
52 | .hook-badge-danger() {}
53 |
54 |
55 | // Miscellaneous
56 | // ========================================================================
57 |
58 | .hook-badge-misc() {
59 |
60 | .uk-badge-notification { padding: 0 7px; }
61 |
62 | }
--------------------------------------------------------------------------------
/less/uikit/block.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Block
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @block-padding-vertical: 50px;
11 | @block-padding-vertical-large: 100px;
12 |
13 | @block-large-padding-vertical-large: 150px;
14 |
15 | @block-default-background: @global-background;
16 |
17 | @block-secondary-background: #1f1915;
18 |
19 |
20 | // Component
21 | // ========================================================================
22 |
23 | .hook-block() {}
24 |
25 |
26 | // Color modifier
27 | // ========================================================================
28 |
29 | .hook-block-default() {}
30 |
31 | .hook-block-muted() {}
32 |
33 | .hook-block-secondary() {}
34 |
35 | .hook-block-primary() {}
36 |
37 |
38 | // Miscellaneous
39 | // ========================================================================
40 |
41 | .hook-block-misc() {
42 |
43 | /* Desktop and bigger */
44 | @media (min-width: 2000px) {
45 |
46 | .uk-block-large {
47 | padding-top: 200px;
48 | padding-bottom: 200px;
49 | }
50 |
51 | }
52 |
53 | /*
54 | * Adjust padding between equal colored blocks
55 | */
56 |
57 | .uk-block-default + .uk-block-default,
58 | .uk-block-muted + .uk-block-muted,
59 | .uk-block-primary + .uk-block-primary,
60 | .uk-block-secondary + .uk-block-secondary { padding-top: 0; }
61 |
62 | }
63 |
--------------------------------------------------------------------------------
/less/uikit/breadcrumb.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Breadcrumb
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @breadcrumb-font-size: round((@global-font-size * 0.85)); // 12px / 14px
11 |
12 | @breadcrumb-disabled-color: fade(@global-muted-color, 50%);
13 | @breadcrumb-divider-margin: 12px;
14 |
15 |
16 | // Component
17 | // ========================================================================
18 |
19 | .hook-breadcrumb() {
20 | color: @global-muted-color;
21 | text-transform: uppercase;
22 | }
23 |
24 |
25 | // Items
26 | // ========================================================================
27 |
28 | .hook-breadcrumb-divider() { color: @global-muted-color; }
29 |
30 |
31 | // Miscellaneous
32 | // ========================================================================
33 |
34 | .hook-breadcrumb-misc() {
35 |
36 | .uk-breadcrumb > li > a { color: @global-muted-color; }
37 | .uk-breadcrumb > li > a:hover {
38 | color: @global-color;
39 | text-decoration: none;
40 | }
41 |
42 | }
--------------------------------------------------------------------------------
/less/uikit/close.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Close
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @close-size: 18px;
11 |
12 | @close-alt-padding: 6px;
13 | @close-alt-background: @global-background;
14 |
15 |
16 | // Component
17 | // ========================================================================
18 |
19 | .hook-close() {
20 | opacity: 0.5;
21 | color: @global-contrast-color;
22 | }
23 |
24 |
25 | // Modifier: `uk-close-alt`
26 | // ========================================================================
27 |
28 | .hook-close-alt() {}
29 |
30 |
31 | // Miscellaneous
32 | // ========================================================================
33 |
34 | .hook-close-misc() {
35 |
36 | .uk-close:after {
37 | content: "";
38 | width: @close-size;
39 | height: @close-size;
40 | background: url("@{global-image-path}/close.svg") 50% 50% no-repeat;
41 | }
42 |
43 | .uk-close:hover,
44 | .uk-close:focus { opacity: 1; }
45 |
46 | }
47 |
--------------------------------------------------------------------------------
/less/uikit/column.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Column
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @column-gutter: @global-grid-gutter;
11 |
12 |
13 | // Component
14 | // ========================================================================
15 |
16 | .hook-column() {}
17 |
18 |
19 | // Miscellaneous
20 | // ========================================================================
21 |
22 | .hook-column-misc() {}
--------------------------------------------------------------------------------
/less/uikit/comment.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Comment
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @comment-header-margin-bottom: @global-margin;
11 |
12 | @comment-avatar-margin-right: @global-margin;
13 |
14 | @comment-title-margin-top: 0;
15 | @comment-title-font-size: @global-font-size;
16 | @comment-title-line-height: @global-line-height;
17 |
18 | @comment-meta-margin-top: 0;
19 | @comment-meta-color: @global-muted-color;
20 | @comment-meta-font-size: round((@global-font-size * 0.78)); // 12px
21 | @comment-meta-line-height: round((@comment-meta-font-size * 1.49)); // 18px
22 |
23 | @comment-list-margin-top: @global-margin + 10px;
24 |
25 | //
26 | // New
27 | //
28 |
29 | @comment-primary-padding: @global-margin;
30 | @comment-primary-background: @global-default-hover-background;
31 |
32 |
33 |
34 | // Component
35 | // ========================================================================
36 |
37 | .hook-comment() {}
38 |
39 |
40 | // Sub-object `uk-comment-header`
41 | // ========================================================================
42 |
43 | .hook-comment-header() {}
44 |
45 |
46 | // Sub-object `uk-comment-avatar`
47 | // ========================================================================
48 |
49 | .hook-comment-avatar() { border-radius: 500px; }
50 |
51 |
52 | // Sub-object `uk-comment-title`
53 | // ========================================================================
54 |
55 | .hook-comment-title() { font-weight: 400; }
56 |
57 |
58 | // Sub-object `uk-comment-meta`
59 | // ========================================================================
60 |
61 | .hook-comment-meta() {}
62 |
63 |
64 | // Sub-object `uk-comment-body`
65 | // ========================================================================
66 |
67 | .hook-comment-body() {}
68 |
69 |
70 | // Sub-object `uk-comment-primary`
71 | // ========================================================================
72 |
73 | .hook-comment-primary() {
74 | padding: @comment-primary-padding;
75 | background: @comment-primary-background;
76 | }
77 |
78 |
79 | // Miscellaneous
80 | // ========================================================================
81 |
82 | .hook-comment-misc() {}
--------------------------------------------------------------------------------
/less/uikit/datepicker.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Datepicker
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @datepicker-nav-margin-bottom: @global-margin;
11 | @datepicker-nav-color: @global-color;
12 | @datepicker-nav-hover-color: @global-color;
13 |
14 | @datepicker-table-color: @global-color;
15 |
16 | @datepicker-table-hover-background: @global-default-background;
17 | @datepicker-table-hover-color: @global-color;
18 | @datepicker-table-onclick-background: @global-default-hover-background;
19 | @datepicker-table-onclick-color: @global-color;
20 |
21 | @datepicker-table-active-background: @global-primary-background;
22 | @datepicker-table-active-color: @global-contrast-color;
23 |
24 | @datepicker-table-muted-color: @global-muted-color;
25 |
26 |
27 | // Component
28 | // ========================================================================
29 |
30 | .hook-datepicker-nav() {}
31 |
32 | .hook-datepicker-nav-item() {}
33 |
34 | .hook-datepicker-table-item() {}
35 |
36 | .hook-datepicker-table-item-hover() {}
37 |
38 | .hook-datepicker-table-item-onclick() {}
39 |
40 | .hook-datepicker-table-item-active() {}
41 |
42 |
43 | // Miscellaneous
44 | // ========================================================================
45 |
46 | .hook-datepicker-misc() {}
--------------------------------------------------------------------------------
/less/uikit/description-list.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Description list
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @description-list-line-border: @global-border;
11 | @description-list-line-color: @global-muted-color;
12 |
13 |
14 | // Miscellaneous
15 | // ========================================================================
16 |
17 | .hook-description-list-misc() {}
--------------------------------------------------------------------------------
/less/uikit/dotnav.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Dotnav
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 |
11 | // Component
12 | // ========================================================================
13 |
14 | .hook-dotnav-item() {
15 | -webkit-transition: all 0.2s ease-in-out;
16 | transition: all 0.2s ease-in-out;
17 | }
18 |
19 | .hook-dotnav-item-hover() {}
20 |
21 | .hook-dotnav-item-onclick() {}
22 |
23 | .hook-dotnav-item-active() {
24 | -webkit-transform: scale(1.3);
25 | transform: scale(1.3);
26 | }
27 |
28 | .hook-dotnav-contrast-item() {}
29 |
30 | .hook-dotnav-contrast-item-hover() {}
31 |
32 | .hook-dotnav-contrast-item-onclick() {}
33 |
34 | .hook-dotnav-contrast-item-active() {}
35 |
36 |
37 | // Miscellaneous
38 | // ========================================================================
39 |
40 | .hook-dotnav-misc() {}
--------------------------------------------------------------------------------
/less/uikit/dropdown.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Dropdown
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @dropdown-z-index: @global-z-index + 20;
11 | @dropdown-margin-top: 10px;
12 | @dropdown-padding: 25px;
13 | @dropdown-background: #fff;
14 | @dropdown-color: @global-color;
15 | @dropdown-font-size: 14px;
16 |
17 | @dropdown-divider-border: @global-border;
18 |
19 | @dropdown-small-padding: @dropdown-padding;
20 |
21 | @dropdown-navbar-margin: 20px;
22 | @dropdown-navbar-background: #fff;
23 | @dropdown-navbar-color: @global-color;
24 | @dropdown-navbar-animation: uk-fade;
25 |
26 |
27 | // Component
28 | // ========================================================================
29 |
30 | .hook-dropdown() {
31 | box-shadow: 0 1px 3px rgba(0,0,0,0.1);
32 | line-height: 20px;
33 | }
34 |
35 |
36 | // Modifier: `uk-dropdown-navbar`
37 | // ========================================================================
38 |
39 | .hook-dropdown-navbar() {}
40 |
41 |
42 | // Sub-object: `uk-dropdown-overlay`
43 | // ========================================================================
44 |
45 | .hook-dropdown-overlay() {}
46 |
47 |
48 | // Miscellaneous
49 | // ========================================================================
50 |
51 | .hook-dropdown-misc() {
52 |
53 | .uk-dropdown > .uk-nav { margin: (15px - @dropdown-padding) (-@dropdown-padding); }
54 |
55 | .uk-dropdown-small > .uk-nav { margin: (15px - @dropdown-small-padding) (-@dropdown-small-padding); }
56 |
57 | }
--------------------------------------------------------------------------------
/less/uikit/form-advanced.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Form advanced
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @form-advanced-size: 16px;
11 | @form-advanced-border: #D5D5D5;
12 | @form-advanced-color: #fff;
13 |
14 | @form-advanced-checked-color: #fff;
15 |
16 | @form-advanced-radio-size: 4px;
17 |
18 | @form-advanced-checkbox-icon: "";
19 | @form-advanced-checkbox-indeterminate-icon: "";
20 |
21 |
22 | // Component
23 | // ========================================================================
24 |
25 | .hook-form-advanced() {}
26 |
27 | .hook-form-advanced-checked() {}
28 |
29 | .hook-form-advanced-radio() {}
30 |
31 | .hook-form-advanced-checkbox() {
32 | height: @form-advanced-size;
33 | background: url("@{global-image-path}/checkbox-check.svg") 0 0 no-repeat;
34 | }
35 |
36 | .hook-form-advanced-disabled() {}
37 |
38 |
39 | // Miscellaneous
40 | // ========================================================================
41 |
42 | .hook-form-advanced-misc() {
43 |
44 | .uk-form input[type="checkbox"] { border-radius: 2px; }
45 |
46 | .uk-form input[type="radio"]:checked,
47 | .uk-form input[type="checkbox"]:checked,
48 | .uk-form input[type=checkbox]:indeterminate {
49 | border-color: transparent;
50 | background: @global-success-background;
51 | }
52 |
53 | .uk-form input[type=checkbox]:indeterminate:before {
54 | height: @form-advanced-size;
55 | background: url("@{global-image-path}/checkbox-indeterminate.svg") 0 0 no-repeat;
56 | }
57 |
58 | .uk-form input[type=radio]:disabled:checked,
59 | .uk-form input[type=checkbox]:disabled:checked,
60 | .uk-form input[type=checkbox]:disabled:indeterminate {
61 | border-color: @form-advanced-disabled-border;
62 | background-color: transparent;
63 | }
64 |
65 | .uk-form input[type=checkbox]:disabled:checked:before { background: url("@{global-image-path}/checkbox-check-disabled.svg") 0 0 no-repeat;}
66 |
67 | }
68 |
69 |
--------------------------------------------------------------------------------
/less/uikit/form-password.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Form password
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @form-password-font-size: @global-font-size - 1px;
11 | @form-password-line-height: @form-password-font-size;
12 | @form-password-color: @global-muted-color;
13 | @form-password-hover-color: @global-muted-color;
14 |
15 |
16 | // Miscellaneous
17 | // ========================================================================
18 |
19 | .hook-form-password-misc() {}
--------------------------------------------------------------------------------
/less/uikit/grid.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Grid
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @grid-gutter-horizontal: @global-grid-gutter;
11 | @grid-gutter-vertical: @global-grid-gutter;
12 |
13 | @grid-gutter-large-horizontal: @global-grid-gutter-large;
14 | @grid-gutter-large-vertical: @global-grid-gutter-large;
15 |
16 | @grid-divider-border: @global-border;
17 |
18 |
19 | // Miscellaneous
20 | // ========================================================================
21 |
22 | .hook-grid-misc() {}
--------------------------------------------------------------------------------
/less/uikit/htmleditor.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: HTML editor
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @htmleditor-navbar-background: @global-default-background;
11 |
12 | @htmleditor-navbar-nav-height: 46px;
13 | @htmleditor-navbar-nav-padding-horizontal: 19px;
14 | @htmleditor-navbar-nav-line-height: @htmleditor-navbar-nav-height;
15 | @htmleditor-navbar-nav-color: fade(@global-color, 80%);
16 |
17 | @htmleditor-navbar-nav-hover-background: rgba(255,255,255,0.5);
18 | @htmleditor-navbar-nav-hover-color: darken(@global-color, 20%);
19 | @htmleditor-navbar-nav-onclick-background: rgba(255,255,255,0.5);
20 | @htmleditor-navbar-nav-onclick-color: darken(@global-color, 20%);
21 | @htmleditor-navbar-nav-active-background: rgba(255,255,255,0.5);
22 | @htmleditor-navbar-nav-active-color: darken(@global-color, 20%);
23 |
24 | @htmleditor-content-border: @global-border;
25 | @htmleditor-content-background: @global-background;
26 |
27 | @htmleditor-fullscreen-z-index: @global-z-index - 10;
28 |
29 |
30 | // Component
31 | // ========================================================================
32 |
33 |
34 | .hook-htmleditor() {}
35 |
36 | .hook-htmleditor-navbar() {}
37 |
38 | .hook-htmleditor-navbar-nav() {
39 | -webkit-transition: all 0.1s linear;
40 | transition: all 0.1s linear;
41 | }
42 |
43 | .hook-htmleditor-navbar-nav-hover() {}
44 |
45 | .hook-htmleditor-navbar-nav-onclick() {}
46 |
47 | .hook-htmleditor-navbar-nav-active() {}
48 |
49 | .hook-htmleditor-content() {}
50 |
51 |
52 | // Miscellaneous
53 | // ========================================================================
54 |
55 | .hook-htmleditor-misc() {}
--------------------------------------------------------------------------------
/less/uikit/icon.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Icon
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @icon-hover-color: @global-muted-color;
11 | @icon-hover-hover-color: @global-color;
12 |
13 | @icon-button-height: @icon-button-width;
14 | @icon-button-background: @global-primary-background;
15 | @icon-button-font-size: round((@icon-button-width * 0.5));
16 | @icon-button-color: @global-contrast-color;
17 |
18 | @icon-button-hover-background: @global-primary-hover-background;
19 | @icon-button-hover-color: @global-contrast-color;
20 |
21 | @icon-button-active-background: @global-primary-active-background;
22 | @icon-button-active-color: @global-contrast-color;
23 |
24 |
25 | // Modifier: `uk-icon-hover`
26 | // ========================================================================
27 |
28 | .hook-icon-hover() {
29 | -webkit-transition: color 0.05s linear;
30 | transition: color 0.05s linear;
31 | }
32 |
33 | .hook-icon-hover-hover() {}
34 |
35 |
36 | // Modifier: `uk-icon-button`
37 | // ========================================================================
38 |
39 | .hook-icon-button() {}
40 |
41 | // Hover
42 | .hook-icon-button-hover() {}
43 |
44 | // Active
45 | .hook-icon-button-active() {}
46 |
47 |
48 | // Miscellaneous
49 | // ========================================================================
50 |
51 | .hook-icon-misc() {}
--------------------------------------------------------------------------------
/less/uikit/images/checkbox-check-disabled.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/less/uikit/images/checkbox-check.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/less/uikit/images/checkbox-indeterminate.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/less/uikit/images/close-contrast.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
--------------------------------------------------------------------------------
/less/uikit/images/close.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
--------------------------------------------------------------------------------
/less/uikit/images/minus.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/less/uikit/images/navbar-toggle-contrast.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
--------------------------------------------------------------------------------
/less/uikit/images/navbar-toggle.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
--------------------------------------------------------------------------------
/less/uikit/images/overlay-plus.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
--------------------------------------------------------------------------------
/less/uikit/images/plus.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
--------------------------------------------------------------------------------
/less/uikit/images/search.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
10 |
--------------------------------------------------------------------------------
/less/uikit/list.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: List
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @list-line-margin-top: 15px;
11 | @list-line-border: @global-border;
12 |
13 | @list-striped-background: #fafafa;
14 |
15 | //
16 | // New
17 | //
18 |
19 | @list-striped-border: @global-border;
20 |
21 |
22 | // Modifier: `list-line`
23 | // ========================================================================
24 |
25 | .hook-list-line() {}
26 |
27 |
28 | // Modifier: `list-striped`
29 | // ========================================================================
30 |
31 | .hook-list-striped() { border-bottom: 1px solid @list-striped-border; }
32 |
33 |
34 | // Miscellaneous
35 | // ========================================================================
36 |
37 | .hook-list-misc() {
38 |
39 | .uk-list-striped > li:first-child { border-top: 1px solid @list-striped-border; }
40 |
41 | }
--------------------------------------------------------------------------------
/less/uikit/nestable.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Nestable
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @nestable-dragged-z-index: @global-z-index + 50;
11 |
12 | @nestable-placeholder-border: @global-border;
13 |
14 | @nestable-panel-background: @global-default-background;
15 |
16 | //
17 | // New
18 | //
19 |
20 | @nestable-border: rgba(0,0,0,0.06);
21 |
22 |
23 | // Component
24 | // ========================================================================
25 |
26 | .hook-nestable() {}
27 |
28 | .hook-nestable-item() {}
29 |
30 | .hook-nestable-dragged() {}
31 |
32 | .hook-nestable-placeholder() {}
33 |
34 | .hook-nestable-empty() {}
35 |
36 | .hook-nestable-handle() {}
37 |
38 | .hook-nestable-toggle() {}
39 |
40 | .hook-nestable-panel() { border: 1px solid @nestable-border; }
41 |
42 |
43 | // Miscellaneous
44 | // ========================================================================
45 |
46 | .hook-nestable-misc() {}
--------------------------------------------------------------------------------
/less/uikit/notify.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Notify
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @notify-z-index: @global-z-index + 40;
11 |
12 | @notify-message-margin-bottom: 15px;
13 | @notify-message-background: @global-default-background;
14 | @notify-message-color: @global-color;
15 | @notify-message-font-size: 16px;
16 | @notify-message-line-height: round((@notify-message-font-size * 1.37)); // 22px
17 |
18 | @notify-message-primary-background: @notify-message-background;
19 | @notify-message-primary-color: @global-link-color;
20 |
21 | @notify-message-success-background: @notify-message-background;
22 | @notify-message-success-color: @global-success-background;
23 |
24 | @notify-message-warning-background: @notify-message-background;
25 | @notify-message-warning-color: #ff9a2e;
26 |
27 | @notify-message-danger-background: @notify-message-background;
28 | @notify-message-danger-color: @global-danger-background;
29 |
30 |
31 | // Component
32 | // ========================================================================
33 |
34 | .hook-notify() {}
35 |
36 | .hook-notify-message() {
37 | border-radius: 4px;
38 | font-weight: 300;
39 | }
40 |
41 | .hook-notify-message-primary() {}
42 |
43 | .hook-notify-message-success() {}
44 |
45 | .hook-notify-message-warning() {}
46 |
47 | .hook-notify-message-danger() {}
48 |
49 |
50 | // Miscellaneous
51 | // ========================================================================
52 |
53 | .hook-notify-misc() {}
--------------------------------------------------------------------------------
/less/uikit/offcanvas.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Off-canvas
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @offcanvas-z-index: @global-z-index;
11 |
12 |
13 | // Component
14 | // ========================================================================
15 |
16 | .hook-offcanvas() {}
17 |
18 |
19 | // Sub-object `uk-offcanvas-bar`
20 | // ========================================================================
21 |
22 | .hook-offcanvas-bar() {}
23 |
24 |
25 | // Panel in offcanvas
26 | // ========================================================================
27 |
28 | .hook-offcanvas-panel() {}
29 |
30 |
31 | // Miscellaneous
32 | // ========================================================================
33 |
34 | .hook-offcanvas-misc() {}
--------------------------------------------------------------------------------
/less/uikit/overlay.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Overlay
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @overlay-panel-color: @global-contrast-color;
11 |
12 | @overlay-icon: "";
13 | @overlay-icon-size: 34px;
14 | @overlay-icon-color: @global-contrast-color;
15 |
16 |
17 | // Sub-object `uk-overlay-panel`
18 | // ========================================================================
19 |
20 | .hook-overlay-panel() {}
21 |
22 |
23 | // Sub-object `uk-overlay-background`
24 | // ========================================================================
25 |
26 | .hook-overlay-background() {}
27 |
28 |
29 | // Sub-object `uk-overlay-image`
30 | // ========================================================================
31 |
32 | .hook-overlay-image() {}
33 |
34 |
35 | // Sub-object `uk-overlay-icon`
36 | // ========================================================================
37 |
38 | .hook-overlay-icon() {
39 | height: 34px;
40 | width: 34px;
41 | background: url("@{global-image-path}/overlay-plus.svg") 0 0 no-repeat;
42 | }
43 |
44 |
45 | // Miscellaneous
46 | // ========================================================================
47 |
48 | .hook-overlay-misc() {}
--------------------------------------------------------------------------------
/less/uikit/pagination.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Pagination
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @pagination-padding-vertical: 5px;
11 | @pagination-padding-horizontal: 5px;
12 | @pagination-line-height: @global-line-height;
13 | @pagination-background: transparent;
14 | @pagination-color: @global-muted-color;
15 | @pagination-hover-background: transparent;
16 | @pagination-hover-color: @global-dark-color;
17 | @pagination-onclick-background: transparent;
18 | @pagination-onclick-color: @global-dark-color;
19 |
20 | @pagination-active-background: transparent;
21 | @pagination-active-color: @global-dark-color;
22 |
23 | @pagination-disabled-background: transparent;
24 | @pagination-disabled-color: @global-muted-color;
25 |
26 |
27 | // Component
28 | // ========================================================================
29 |
30 | //
31 | // Items
32 | //
33 |
34 | .hook-pagination-item() {}
35 |
36 | // Link
37 | .hook-pagination-link() {}
38 |
39 | .hook-pagination-link-hover() {}
40 |
41 | .hook-pagination-link-active() {}
42 |
43 | // Active
44 | .hook-pagination-active() {}
45 |
46 | // Disabled
47 | .hook-pagination-disabled() {}
48 |
49 |
50 | // Miscellaneous
51 | // ========================================================================
52 |
53 | .hook-pagination-misc() {
54 |
55 | .uk-pagination-previous > *,
56 | .uk-pagination-next > * { padding: @pagination-padding-vertical 0 !important; }
57 |
58 | }
59 |
--------------------------------------------------------------------------------
/less/uikit/placeholder.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Placeholder
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @placeholder-margin-vertical: @global-margin;
11 | @placeholder-padding: @global-margin;
12 | @placeholder-border: @global-border;
13 | @placeholder-color: @global-color;
14 |
15 |
16 | // Component
17 | // ========================================================================
18 |
19 | .hook-placeholder() {}
20 |
21 | .hook-placeholder-large() {}
22 |
23 |
24 | // Miscellaneous
25 | // ========================================================================
26 |
27 | .hook-placeholder-misc() {}
--------------------------------------------------------------------------------
/less/uikit/progress.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Progress
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @progress-margin-vertical: @global-margin;
11 | @progress-background: @global-default-background;
12 |
13 | @progress-bar-background: @global-primary-background;
14 | @progress-bar-font-size: round((@global-font-size * 0.85)); // 12px / 14px
15 | @progress-bar-color: @global-contrast-color;
16 |
17 | @progress-bar-success-background: @global-success-background;
18 | @progress-bar-warning-background: @global-warning-background;
19 | @progress-bar-danger-background: @global-danger-background;
20 |
21 |
22 | // Component
23 | // ========================================================================
24 |
25 | .hook-progress() { border-radius: 500px; }
26 |
27 |
28 | // Sub-object: `progress-bar`
29 | // ========================================================================
30 |
31 | .hook-progress-bar() {}
32 |
33 |
34 | // Color modifiers
35 | // ========================================================================
36 |
37 | .hook-progress-bar-success() {}
38 |
39 | .hook-progress-bar-warning() {}
40 |
41 | .hook-progress-bar-danger() {}
42 |
43 |
44 | // Miscellaneous
45 | // ========================================================================
46 |
47 | .hook-progress-misc() {}
--------------------------------------------------------------------------------
/less/uikit/search.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Search
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @search-height: @global-height;
11 | @search-padding: 35px;
12 | @search-border-width: 0;
13 | @search-color: @global-color;
14 | @search-placeholder-color: @global-muted-color;
15 |
16 | @search-icon: "";
17 |
18 | @dropdown-search-background: #fff;
19 | @dropdown-search-color: @global-color;
20 | @dropdown-search-navbar-margin-top: 5px;
21 | @dropdown-search-navbar-margin-right: -15px;
22 |
23 | @nav-search-color: @global-color;
24 | @nav-search-active-background: @global-primary-background;
25 | @nav-search-active-color: @global-contrast-color;
26 | @nav-search-header-color: @global-muted-color;
27 | @nav-search-divider-border: @global-border;
28 | @nav-search-nested-color: @global-link-color;
29 | @nav-search-nested-hover-color: @global-link-hover-color;
30 |
31 |
32 | // Component
33 | // ========================================================================
34 |
35 | .hook-search() { z-index: 1; }
36 |
37 | .hook-search-icon() {
38 | height: @global-height;
39 | background: url("@{global-image-path}/search.svg") 50% 50% no-repeat;
40 | z-index: -1;
41 | }
42 |
43 |
44 | // Sub-object `uk-search-field`
45 | // ========================================================================
46 |
47 | .hook-search-field() {
48 | padding-left: (@search-padding + 10px);
49 | font-size: 18px;
50 | font-weight: 300;
51 | }
52 |
53 | .hook-search-field-focus() {}
54 |
55 |
56 | // Dropdown modifier: `uk-dropdown-search`
57 | // ========================================================================
58 |
59 | .hook-dropdown-search() {}
60 |
61 |
62 | // Nav modifier `uk-nav-search`
63 | // ========================================================================
64 |
65 | //
66 | // Items
67 | //
68 |
69 | .hook-nav-search() {}
70 |
71 | // Active
72 | .hook-nav-search-active() {}
73 |
74 | //
75 | // Sub-object: `uk-nav-header`
76 | //
77 |
78 | .hook-nav-search-header() {}
79 |
80 | //
81 | // Sub-object: `uk-nav-divider`
82 | //
83 |
84 | .hook-nav-search-divider() {}
85 |
86 |
87 | // Search in offcanvas
88 | // ========================================================================
89 |
90 | .hook-offcanvas-search-field() {}
91 |
92 |
93 | // Miscellaneous
94 | // ========================================================================
95 |
96 | .hook-search-misc() {}
--------------------------------------------------------------------------------
/less/uikit/slidenav.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Slidenav
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 |
11 | // Component
12 | // ========================================================================
13 |
14 | .hook-slidenav() {}
15 |
16 | .hook-slidenav-hover() {}
17 |
18 | .hook-slidenav-active() {}
19 |
20 | .hook-slidenav-contrast() {}
21 |
22 | .hook-slidenav-contrast-hover() {}
23 |
24 | .hook-slidenav-contrast-active() {}
25 |
26 |
27 | // Miscellaneous
28 | // ========================================================================
29 |
30 | .hook-slidenav-misc() {}
--------------------------------------------------------------------------------
/less/uikit/sortable.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Sortable
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @sortable-dragged-z-index: @global-z-index + 50;
11 |
12 |
13 | // Component
14 | // ========================================================================
15 |
16 | .hook-sortable() {}
17 |
18 | .hook-sortable-dragged() {}
19 |
20 | .hook-sortable-placeholder() {}
21 |
22 | .hook-sortable-over() {}
23 |
24 |
25 | // Miscellaneous
26 | // ========================================================================
27 |
28 | .hook-sortable-misc() {}
--------------------------------------------------------------------------------
/less/uikit/sticky.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Sticky
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @sticky-z-index: @global-z-index - 20;
11 |
12 |
13 | // Miscellaneous
14 | // ========================================================================
15 |
16 | .hook-sticky-misc() {}
--------------------------------------------------------------------------------
/less/uikit/subnav.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Subnav
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @subnav-margin-horizontal: 20px;
11 | @subnav-color: @global-color;
12 | @subnav-hover-color: @global-dark-color;
13 | @subnav-active-color: @global-dark-color;
14 |
15 | @subnav-line-border: @global-border;
16 |
17 | @subnav-pill-hover-background: @global-default-hover-background;
18 | @subnav-pill-hover-color: @global-color;
19 | @subnav-pill-active-background: @global-primary-background;
20 | @subnav-pill-active-color: @global-contrast-color;
21 |
22 | @subnav-disabled-color: @global-muted-color;
23 |
24 |
25 | // Component
26 | // ========================================================================
27 |
28 | .hook-subnav() {}
29 |
30 | .hook-subnav-hover() {}
31 |
32 | .hook-subnav-active() {}
33 |
34 |
35 | // Modifier: `uk-subnav-line`
36 | // ========================================================================
37 |
38 | .hook-subnav-line-divider() {}
39 |
40 |
41 | // Modifier: `uk-subnav-pill`
42 | // ========================================================================
43 |
44 | .hook-subnav-pill() {}
45 |
46 | .hook-subnav-pill-hover() {}
47 |
48 | .hook-subnav-pill-active() {}
49 |
50 |
51 | // Disabled state
52 | // ========================================================================
53 |
54 | .hook-subnav-disabled() {}
55 |
56 |
57 | // Miscellaneous
58 | // ========================================================================
59 |
60 | .hook-subnav-misc() {}
--------------------------------------------------------------------------------
/less/uikit/table.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Table
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @table-margin-vertical: @global-margin;
11 | @table-padding-vertical: 16px;
12 | @table-padding-horizontal: 12px;
13 |
14 | @table-caption-color: @global-muted-color;
15 | @table-caption-font-size: round((@global-font-size * 0.85)); // 12px / 14px
16 |
17 | @table-striped-background: #fafafa;
18 |
19 | @table-condensed-padding-vertical: 10px;
20 | @table-condensed-padding-horizontal: 12px;
21 |
22 | @table-hover-background: #ffffdd;
23 |
24 | //
25 | // New
26 | //
27 |
28 | @table-border: @global-border;
29 |
30 |
31 | // Component
32 | // ========================================================================
33 |
34 | .hook-table() {}
35 |
36 | .hook-table-active() {}
37 |
38 | .hook-table-striped() {}
39 |
40 | .hook-table-condensed() {}
41 |
42 | .hook-table-hover() {}
43 |
44 |
45 | // Miscellaneous
46 | // ========================================================================
47 |
48 | .hook-table-misc() {
49 |
50 | .uk-table th {
51 | border-bottom: 1px solid @table-border;
52 | font-size: round((@global-font-size * 0.85)); // 12px / 14px
53 | text-transform: uppercase;
54 | font-weight: normal;
55 | color: @global-muted-color;
56 | }
57 |
58 | .uk-table :not(:first-child) > th { padding-top: @table-padding-vertical + @global-margin; }
59 |
60 | .uk-table :not(:last-child) > td { border-bottom: 1px solid @table-border; }
61 |
62 | .uk-table tfoot { border-top: 1px solid @table-border; }
63 |
64 | .uk-table-middle img + a { vertical-align: middle; }
65 |
66 | .uk-table-condensed th { padding: @table-condensed-padding-vertical @table-condensed-padding-horizontal; }
67 |
68 | .uk-table tbody tr {
69 | -webkit-transition: background-color 0.05s linear;
70 | transition: background-color 0.05s linear;
71 | }
72 |
73 | }
--------------------------------------------------------------------------------
/less/uikit/text.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Text
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @text-small-font-size: round((@global-font-size * 0.78)); // 12px
11 | @text-small-line-height: round((@text-small-font-size * 1.49)); // 18px
12 | @text-large-font-size: round((@global-font-size * 1.375)); // 22px
13 | @text-large-line-height: round((@text-large-font-size * 1.545)); // 34px
14 |
15 | @text-muted-color: @global-muted-color;
16 | @text-primary-color: @global-link-color;
17 | @text-success-color: @global-success-background;
18 | @text-warning-color: #ff9a2e;
19 | @text-danger-color: @global-danger-background;
20 | @text-contrast-color: @global-contrast-color;
21 |
22 |
23 | // Miscellaneous
24 | // ========================================================================
25 |
26 | .hook-text-misc() {}
--------------------------------------------------------------------------------
/less/uikit/thumbnail.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Thumbnail
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @thumbnail-border: @global-border;
11 | @thumbnail-background: @global-background;
12 | @thumbnail-hover-border: darken(@global-border, 10%);
13 | @thumbnail-hover-background: @global-background;
14 |
15 | @thumbnail-caption-color: @global-color;
16 |
17 |
18 | // Component
19 | // ========================================================================
20 |
21 | .hook-thumbnail() {}
22 |
23 | .hook-thumbnail-hover() {}
24 |
25 |
26 | // Caption
27 | // ========================================================================
28 |
29 | .hook-thumbnail-caption() {}
30 |
31 |
32 | // Miscellaneous
33 | // ========================================================================
34 |
35 | .hook-thumbnail-misc() {}
--------------------------------------------------------------------------------
/less/uikit/thumbnav.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Thumbnav
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Component
8 | // ========================================================================
9 |
10 | .hook-thumbnav() {}
11 |
12 |
13 | // Miscellaneous
14 | // ========================================================================
15 |
16 | .hook-thumbnav-misc() {}
--------------------------------------------------------------------------------
/less/uikit/tooltip.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Tooltip
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @tooltip-z-index: @global-z-index + 30;
11 | @tooltip-background: #666;
12 |
13 | @tooltip-color: @global-contrast-color;
14 | @tooltip-font-size: round((@global-font-size * 0.85)); // 12px / 14px
15 | @tooltip-line-height: round((@tooltip-font-size * 1.46)); // 18px / 20px
16 |
17 |
18 | // Component
19 | // ========================================================================
20 |
21 | .hook-tooltip() {
22 | border-radius: 3px;
23 | opacity: 0;
24 | -webkit-transition: opacity 0.15s linear;
25 | transition: opacity 0.15s linear;
26 | }
27 |
28 |
29 | // Miscellaneous
30 | // ========================================================================
31 |
32 | .hook-tooltip-misc() {
33 |
34 | .uk-tooltip.uk-active { opacity: 1; }
35 |
36 | }
--------------------------------------------------------------------------------
/less/uikit/uikit.less:
--------------------------------------------------------------------------------
1 | // UIkit
2 | // ========================================================================
3 |
4 | @import "../../app/assets/uikit/less/uikit.less";
5 |
6 | // Components: Navs
7 | @import "../../app/assets/uikit/less/components/dotnav.less";
8 | @import "../../app/assets/uikit/less/components/slidenav.less";
9 |
10 | // Components: Common
11 | @import "../../app/assets/uikit/less/components/form-password.less";
12 | @import "../../app/assets/uikit/less/components/progress.less";
13 |
14 | // Components: JavaScript
15 | @import "../../app/assets/uikit/less/components/accordion.less";
16 | @import "../../app/assets/uikit/less/components/slider.less";
17 | @import "../../app/assets/uikit/less/components/slideshow.less";
18 | @import "../../app/assets/uikit/less/components/search.less";
19 | @import "../../app/assets/uikit/less/components/sticky.less";
20 | @import "../../app/assets/uikit/less/components/tooltip.less";
21 |
22 |
23 | // Theme
24 | // ========================================================================
25 |
26 | // LESS related
27 | @import "variables.less";
28 |
29 | // Defaults
30 | @import "base.less";
31 |
32 | // Layout
33 | @import "grid.less";
34 | @import "panel.less";
35 | @import "block.less";
36 | @import "article.less";
37 | @import "comment.less";
38 |
39 | // Navs
40 | @import "nav.less";
41 | @import "navbar.less";
42 | @import "subnav.less";
43 | @import "breadcrumb.less";
44 | @import "pagination.less";
45 | @import "tab.less";
46 | @import "thumbnav.less";
47 |
48 | // Elements
49 | @import "list.less";
50 | @import "description-list.less";
51 | @import "table.less";
52 | @import "form.less";
53 |
54 | // Common
55 | @import "button.less";
56 | @import "icon.less";
57 | @import "close.less";
58 | @import "badge.less";
59 | @import "alert.less";
60 | @import "thumbnail.less";
61 | @import "overlay.less";
62 | @import "column.less";
63 |
64 | // JavaScript
65 | @import "dropdown.less";
66 | @import "modal.less";
67 | @import "offcanvas.less";
68 |
69 | // Components: Navs
70 | @import "dotnav.less";
71 | @import "slidenav.less";
72 |
73 | // Components: Common
74 | @import "form-password.less";
75 | @import "progress.less";
76 |
77 | // Components: JavaScript
78 | @import "accordion.less";
79 | @import "search.less";
80 | @import "sticky.less";
81 | @import "tooltip.less";
82 |
83 | // Need to be loaded last
84 | @import "text.less";
85 | @import "utility.less";
86 | @import "contrast.less";
--------------------------------------------------------------------------------
/less/uikit/utility.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Utility
3 | //
4 | // ========================================================================
5 |
6 |
7 | // Variables
8 | // ========================================================================
9 |
10 | @utility-container-padding-horizontal: @global-grid-gutter;
11 | @utility-container-large-padding-horizontal: @global-grid-gutter-large;
12 |
13 | @utility-align-horizontal: @global-margin;
14 | @utility-align-vertical: @global-margin;
15 |
16 | @utility-margin: @global-margin;
17 |
18 | @utility-border-rounded: 3px;
19 |
20 | @utility-heading-large-small-font-size: round((@global-font-size * 2.6)); // 42px
21 | @utility-heading-large-small-line-height: round((@utility-heading-large-small-font-size * 1.154)); // 48px
22 | @utility-heading-large-font-size: round((@global-font-size * 3.375)); // 54px
23 | @utility-heading-large-line-height: round((@utility-heading-large-font-size * 1.185)); // 64px
24 |
25 | @utility-link-muted-color: @global-color;
26 | @utility-link-muted-hover-color: @global-color;
27 |
28 | @utility-scrollable-box-border: @global-border;
29 |
30 |
31 | // Container
32 | // ========================================================================
33 |
34 | .hook-container() {}
35 |
36 |
37 | // Scrollable
38 | // ========================================================================
39 |
40 | .hook-scrollable-box() { border-radius: 3px; }
41 |
42 |
43 | // Miscellaneous
44 | // ========================================================================
45 |
46 | .hook-utility-misc() {
47 |
48 | /* Phones and smaller */
49 | @media (max-width: @breakpoint-small-max) {
50 |
51 | .uk-container { padding: 0 15px; }
52 |
53 | }
54 |
55 | }
--------------------------------------------------------------------------------
/less/uikit/variables.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component: Variables
3 | //
4 | // ========================================================================
5 |
6 | @import 'https://fonts.googleapis.com/css?family=Open+Sans:600,400,300';
7 | @import 'https://fonts.googleapis.com/css?family=Roboto+Mono:400';
8 |
9 |
10 | // Global variables
11 | // ========================================================================
12 |
13 | //
14 | // Text
15 | //
16 |
17 | @global-color: #888888;
18 | @global-muted-color: #adadad;
19 |
20 | @global-link-color: #525252;
21 | @global-link-hover-color: #525252;
22 |
23 | @global-dark-color: #525255;
24 | @global-contrast-color: #fff;
25 |
26 | @global-font-size: 16px;
27 | @global-line-height: 26px;
28 |
29 | //
30 | // Backgrounds & Borders
31 | //
32 |
33 | @global-background: #fff;
34 | @global-border: #e5e5e5;
35 |
36 | @global-default-background: #f5f5f5;
37 | @global-default-hover-background: #fafafa;
38 | @global-default-active-background: #eee;
39 |
40 | @global-primary-background: #489be0;
41 | @global-primary-hover-background: #3a94e0;
42 | @global-primary-active-background: #3589cf;
43 |
44 | @global-success-background: #3DC372;
45 | @global-success-hover-background: #23b25c;
46 | @global-success-active-background: #0fa74c;
47 |
48 | @global-danger-background: #e44e56;
49 | @global-danger-hover-background: #db353f;
50 | @global-danger-active-background: #d2232d;
51 |
52 | @global-warning-background: #FFB24E;
53 |
54 | //
55 | // Spacings
56 | //
57 |
58 | @global-margin: 25px;
59 | @global-margin-large: 35px;
60 | @global-grid-gutter: 30px;
61 | @global-grid-gutter-large: 40px;
62 |
63 | //
64 | // Controls
65 | //
66 |
67 | @global-height: 42px;
68 | @global-height-mini: 25px;
69 | @global-height-small: 30px;
70 | @global-height-large: 55px;
71 |
72 | //
73 | // Z-index
74 | //
75 |
76 | @global-z-index: 1000;
77 |
78 |
79 | // Internal
80 | // ==========================================================================
81 |
82 | @global-image-path: 'images';
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "pagekit-theme",
3 | "scripts": {
4 | "install": "bower install && gulp",
5 | "archive": "gulp && webpack -p && composer archive --format=zip"
6 | },
7 | "devDependencies": {
8 | "babel-core": "^6.1.2",
9 | "babel-loader": "^6.1.0",
10 | "babel-plugin-transform-runtime": "^6.1.2",
11 | "babel-preset-es2015": "^6.1.2",
12 | "babel-runtime": "^5.8.0",
13 | "bower": "^1.7.6",
14 | "json-loader": "^0.5.2",
15 | "gulp": "^3.8.10",
16 | "gulp-header": "^1.2.2",
17 | "gulp-less": "^3.0.0",
18 | "gulp-rename": "^1.2.0",
19 | "gulp-util": "^3.0.4",
20 | "merge-stream": "^0.1.7",
21 | "vue-html-loader": "^1.0.0",
22 | "vue-loader": "^8.2.0",
23 | "webpack": "^1.12.9"
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/views/blog/post.php:
--------------------------------------------------------------------------------
1 | script('post', 'blog:app/bundle/post.js', 'vue') ?>
2 |
3 |
4 |
5 | get('image.src')): ?>
6 |
7 |
8 |
9 | = $post->title ?>
10 |
11 |
12 | = __('Written by %name% on %date%', ['%name%' => $post->user->name, '%date%' => '' ]) ?>
13 |
14 |
15 | = $post->content ?>
16 |
17 | = $view->render('blog/comments.php') ?>
18 |
19 |
20 |
--------------------------------------------------------------------------------
/views/blog/posts.php:
--------------------------------------------------------------------------------
1 | script('posts', 'blog:app/bundle/posts.js', 'vue') ?>
2 |
3 |
4 |
5 |
6 |
7 |
8 | get('image.src')): ?>
9 |
10 |
11 |
12 |
13 |
14 |
15 | = __('Written by %name% on %date%', ['%name%' => $post->user->name, '%date%' => '' ]) ?>
16 |
17 |
18 | = $post->excerpt ?: $post->content ?>
19 |
20 |
33 |
34 |
35 |
36 |
37 |
45 |
46 | 1) : ?>
47 |
80 |
81 |
82 |
83 |
--------------------------------------------------------------------------------
/views/menu-navbar.php:
--------------------------------------------------------------------------------
1 | getDepth() === 0) : ?>
2 |
3 |
4 |
5 | getChildren() as $node) : ?>
6 | - getDepth() === 0 && $node->hasChildren()) ? 'data-uk-dropdown':'' ?>>
7 | = $node->title ?>
8 |
9 | hasChildren()) : ?>
10 |
11 | getDepth() === 0) : ?>
12 |
13 |
14 |
15 | getDepth() === 0) : ?>
16 |
17 | getDepth() === 1) : ?>
18 |
19 |
20 |
21 |
22 | = $view->render('menu-navbar.php', ['root' => $node]) ?>
23 |
24 |
25 | getDepth() === 0) : ?>
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 | getDepth() === 0) : ?>
35 |
36 |
37 |
--------------------------------------------------------------------------------
/views/position-blank.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | = $widget->get('result') ?>
4 |
5 |
6 |
--------------------------------------------------------------------------------
/views/position-grid.php:
--------------------------------------------------------------------------------
1 |
2 |
15 |
16 |
--------------------------------------------------------------------------------
/views/position-panel.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | theme['title_hide']) : ?>
5 |
6 |
7 |
8 | = $widget->get('result') ?>
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/views/system/site/page.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | theme['title_hide']) : ?>
4 | = $page->title ?>
5 |
6 |
7 | = $page->content ?>
8 |
9 |
10 |
--------------------------------------------------------------------------------
/webpack.config.js:
--------------------------------------------------------------------------------
1 | module.exports = [
2 |
3 | {
4 | entry: {
5 | "node-theme": "./app/components/node-theme.vue",
6 | "site-theme": "./app/components/site-theme.vue",
7 | "widget-theme": "./app/components/widget-theme.vue"
8 | },
9 | output: {
10 | filename: "./app/bundle/[name].js"
11 | },
12 | module: {
13 | loaders: [
14 | { test: /\.vue$/, loader: "vue" }
15 | ]
16 | }
17 | }
18 |
19 | ];
20 |
--------------------------------------------------------------------------------