Merge branch 'master' into Bootstrap4
# Conflicts: # sass/theme.scss
This commit is contained in:
commit
6640066118
49
README.md
49
README.md
|
@ -3,13 +3,24 @@ Start talking: [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://git
|
|||
UnderStrap WordPress Theme Framework
|
||||
===
|
||||
|
||||
Website: http://understrap.com
|
||||
Website: [http://understrap.com](http://understrap.com)
|
||||
|
||||
Child Theme Project: https://github.com/holger1411/understrap-child
|
||||
Child Theme Project: [https://github.com/holger1411/understrap-child](https://github.com/holger1411/understrap-child)
|
||||
|
||||
Changelog
|
||||
=
|
||||
- **0.3.8 Mar. 9th 2016 Pre-Release**
|
||||
- **0.4.0 Apr. 15th 2016 Pre-Release**
|
||||
- Adding BrowserSync to gulpfile (again thx to @dvlopes)
|
||||
- Preparing the navbar markup so that the current version will work with Bootstrap 3 AND 4
|
||||
- Adding "gulp scripts" command - This uglifies and minifies all JS files (except jQuery...) into one single JS file called theme.min.js
|
||||
- Updating Gulpfile - now "gulp copy-assets" command copies all files from dependency folders into mid-layer folder called "/src"
|
||||
- Load jQuery again as extra script instead of concat it into on single file. After some problems with WooCommerce and other plugins
|
||||
- Checking WordPress 4.5 compatibility
|
||||
- Adding Bootstrap 4 Alpha as optional asset
|
||||
- Updating language template
|
||||
- Adding Brazilian Portuguese (pt-BR) translation (thx to @dvlopes).
|
||||
|
||||
- **0.3.8 Mar. 9th 2016 **
|
||||
- Adding footer widget area
|
||||
- Adjust Bootstrap markup for searchform and search widget
|
||||
|
||||
|
@ -75,8 +86,8 @@ Basic Features
|
|||
- Combines the _s WordPress Starter Theme PHP/JS files and Bootstrap´s HTML/CSS/JS
|
||||
- Comes with Bootstrap (3.3.6) SASS source files and additional scss files. Nicely sorted and ready to add your own variables/customize the Bootstrap variables.
|
||||
- Uses a single and minified CSS file for all the basic stuff
|
||||
- Font Awesome Icon Font integrated (V 4.5.0): http://fortawesome.github.io/Font-Awesome/
|
||||
- Comes with extra slider script - By owl.carousel (V 2.0.0-beta.2.4): http://www.owlcarousel.owlgraphic.com/
|
||||
- Font Awesome Icon Font integrated (V 4.5.0): [http://fortawesome.github.io/Font-Awesome/](http://fortawesome.github.io/Font-Awesome/)
|
||||
- Comes with extra slider script - By owl.carousel (V 2.0.0-beta.2.4): [http://www.owlcarousel.owlgraphic.com/](http://www.owlcarousel.owlgraphic.com/)
|
||||
- Simple RTL file
|
||||
- Jetpack ready
|
||||
- WooCommerce support
|
||||
|
@ -113,20 +124,28 @@ Installation
|
|||
- Go to Appearance -> Themes
|
||||
- Activate the UnderStrap theme
|
||||
|
||||
Developing with NPM, Bower, Gulp and SASS
|
||||
Developing with NPM, Bower, Gulp and SASS and [Browser Sync][1]
|
||||
=
|
||||
- Make sure you have installed Node.js and Bower on your computer globally
|
||||
### Installing dependencies
|
||||
- Make sure you have installed Node.js, Bower and Browser-Sync on your computer globally
|
||||
- Then open your terminal and browse to the location of your UnderStrap copy
|
||||
- Run:
|
||||
$ npm install
|
||||
than:
|
||||
$ bower install
|
||||
and finally:
|
||||
$ gulp copy-assets
|
||||
- Run: `$ npm install` then: `$ bower install` and finally: `$ gulp copy-assets`
|
||||
|
||||
### Running
|
||||
To work and compile your SASS files on the fly start:
|
||||
$ gulp watch
|
||||
|
||||
- `$ gulp watch`
|
||||
|
||||
Or, to run with Browser-Sync:
|
||||
|
||||
- First change the browser-sync options to reflect your environment in the file `gulpfile.js` in the beginning of the file:
|
||||
```javascript
|
||||
var browserSyncOptions = {
|
||||
proxy: "localhost/theme_test/", // <----- CHANGE HERE
|
||||
notify: false
|
||||
};
|
||||
```
|
||||
- then run: `$ gulp watch-bs`
|
||||
|
||||
How to use the build-in Widget Slider?
|
||||
=
|
||||
|
@ -134,3 +153,5 @@ The frontpage slider is widget driven. Simply add more than one widget to widget
|
|||
- Click on Appearance -> Widgets
|
||||
- Add two or more widgets of any kind to widget area "Hero"
|
||||
- Thats it
|
||||
|
||||
[1] Visit [http://browsersync.io](http://browsersync.io) for more information on Browser Sync
|
|
@ -1,33 +1,4 @@
|
|||
@charset "UTF-8";
|
||||
/*****************************************************************
|
||||
Import all needed 3rd party sass files plus your own style and variables
|
||||
|
||||
0. ../bower_components/_s/sass/style // Adding underscores default styles. Don´t needed if you use Bootstrap for styling
|
||||
--------------------------------------
|
||||
1. theme/theme_variables.scss // Overwriting Bootstrap variables and for own variables <-- ADD YOUR VARIABLES HERE
|
||||
--------------------------------------
|
||||
2.../bower_components/bootstrap-sass/assets/stylesheets/bootstrap // adding bootstrap from bower components folder. Make sure you run bower install before! <- Dont edit this files!
|
||||
--------------------------------------
|
||||
3. understrap/understrap.scss // Some basic understrap styles. Helps to combine Bootsrap and _s theme and provides some basic styleing for additonal functions <- Dont edit this files!
|
||||
--------------------------------------
|
||||
4. ../bower_components/fontawesome/scss/font-awesome <- Dont edit this files! If you don´t need/want Font Awesome support comment out this line
|
||||
--------------------------------------
|
||||
|
||||
|
||||
|
||||
*
|
||||
*
|
||||
*
|
||||
*******
|
||||
*****
|
||||
***
|
||||
*
|
||||
|
||||
|
||||
|
||||
// Any additional imported files //
|
||||
6. theme/theme.scss"; // <-- ADD YOUR STYLES HERE
|
||||
***************************************************************** */
|
||||
/*!
|
||||
* Bootstrap v3.3.6 (http://getbootstrap.com)
|
||||
* Copyright 2011-2015 Twitter, Inc.
|
||||
|
|
32
gulpfile.js
32
gulpfile.js
|
@ -4,6 +4,20 @@ var basePaths = {
|
|||
dev: './src/'
|
||||
};
|
||||
|
||||
// browser-sync watched files
|
||||
// automatically reloads the page when files changed
|
||||
var browserSyncWatchFiles = [
|
||||
'./css/*.min.css',
|
||||
'./js/*.min.js',
|
||||
'./*.php'
|
||||
];
|
||||
// browser-sync options
|
||||
// see: https://www.browsersync.io/docs/options/
|
||||
var browserSyncOptions = {
|
||||
proxy: "localhost/theme_test/",
|
||||
notify: false
|
||||
};
|
||||
|
||||
// Defining requirements
|
||||
var gulp = require('gulp');
|
||||
var plumber = require('gulp-plumber');
|
||||
|
@ -16,6 +30,7 @@ var uglify = require('gulp-uglify');
|
|||
var merge2 = require('merge2');
|
||||
var ignore = require('gulp-ignore');
|
||||
var rimraf = require('gulp-rimraf');
|
||||
var browserSync = require('browser-sync').create();
|
||||
|
||||
// Run:
|
||||
// gulp sass
|
||||
|
@ -43,7 +58,8 @@ gulp.task('cssnano', ['cleancss'], function(){
|
|||
.pipe(plumber())
|
||||
.pipe(rename({suffix: '.min'}))
|
||||
.pipe(cssnano({discardComments: {removeAll: true}}))
|
||||
.pipe(gulp.dest('./css/'));
|
||||
.pipe(gulp.dest('./css/'))
|
||||
.pipe(browserSync.stream());
|
||||
});
|
||||
|
||||
gulp.task('cleancss', function() {
|
||||
|
@ -52,6 +68,18 @@ gulp.task('cleancss', function() {
|
|||
.pipe(rimraf());
|
||||
});
|
||||
|
||||
// Run:
|
||||
// gulp browser-sync
|
||||
// Starts browser-sync task for starting the server.
|
||||
gulp.task('browser-sync', function() {
|
||||
browserSync.init(browserSyncWatchFiles, browserSyncOptions);
|
||||
});
|
||||
|
||||
// Run:
|
||||
// gulp watch-bs
|
||||
// Starts watcher with browser-sync. Browser-sync reloads page automatically on your browser
|
||||
gulp.task('watch-bs', ['browser-sync', 'watch', 'cssnano'], function () { });
|
||||
|
||||
// Run:
|
||||
// gulp scripts.
|
||||
// Uglifies and concat all JS files into one
|
||||
|
@ -63,7 +91,7 @@ gulp.task('scripts', function() {
|
|||
])
|
||||
.pipe(concat('theme.min.js'))
|
||||
.pipe(uglify())
|
||||
.pipe(gulp.dest('./js/'))
|
||||
.pipe(gulp.dest('./js/'));
|
||||
});
|
||||
|
||||
// Run:
|
||||
|
|
Binary file not shown.
|
@ -1,22 +1,25 @@
|
|||
# Copyright (C) 2014 Automattic
|
||||
# This file is distributed under the GNU General Public License v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: understrap\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/support/theme/_s\n"
|
||||
"POT-Creation-Date: 2015-10-14 12:23+0200\n"
|
||||
"PO-Revision-Date: 2015-10-14 12:26+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"POT-Creation-Date: 2015-09-01 21:23+0200\n"
|
||||
"PO-Revision-Date: 2016-04-15 17:28+0200\n"
|
||||
"Last-Translator: holger <office@holgerkoenemann.de>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.5\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_x;_nx;_e\n"
|
||||
"X-Generator: Poedit 1.8.7\n"
|
||||
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
|
||||
"_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
|
||||
"_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
|
||||
"esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
|
||||
"comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Loco-Target-Locale: de_DE\n"
|
||||
"X-Poedit-SearchPath-0: footer.php\n"
|
||||
"X-Poedit-SearchPath-1: header.php\n"
|
||||
"X-Poedit-SearchPath-2: index.php\n"
|
||||
|
@ -40,93 +43,170 @@ msgstr ""
|
|||
"X-Poedit-SearchPath-20: page-templates\n"
|
||||
"X-Poedit-SearchPath-21: inc\n"
|
||||
|
||||
#: 404.php:18
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Ooooops! Die Seite wurde nicht gefunden."
|
||||
#. Name of the template
|
||||
msgid "Full Width Page"
|
||||
msgstr "Volle Breite"
|
||||
|
||||
#: 404.php:22
|
||||
msgid ""
|
||||
"It looks like nothing was found at this location. Maybe try one of the links "
|
||||
"below or a search?"
|
||||
msgstr ""
|
||||
"Es scheint das hier nichts gefunden wurde. Versuch doch einen der Links "
|
||||
"unten oder die Suchfunktion."
|
||||
|
||||
#: 404.php:30
|
||||
msgid "Most Used Categories"
|
||||
msgstr "Am häufigsten genutzte Kategorie"
|
||||
|
||||
#: 404.php:47
|
||||
#, php-format
|
||||
msgid "Try looking in the monthly archives. %1$s"
|
||||
msgstr "Versuch im monatlichen Archiv zu schauen. %1$s"
|
||||
|
||||
#: comment-form.php:5
|
||||
msgid "Write Comment."
|
||||
msgstr "Kommentar schreiben"
|
||||
|
||||
#: comment-form.php:5
|
||||
msgid "*Mandatory"
|
||||
msgstr "*Pflichtfeld"
|
||||
|
||||
#: comment-form.php:13 inc/custom-comments.php:12
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: comment-form.php:19
|
||||
msgid "E-Mail"
|
||||
msgstr "E-Mail"
|
||||
|
||||
#: comment-form.php:19
|
||||
msgid "Not public."
|
||||
msgstr "Nicht öffentlich"
|
||||
|
||||
#: comment-form.php:24 inc/custom-comments.php:16
|
||||
msgid "Website"
|
||||
msgstr "Webseite"
|
||||
|
||||
#: comment-form.php:29
|
||||
msgid "Your Comment"
|
||||
msgstr "Dein Kommentar"
|
||||
|
||||
#: comment-form.php:36
|
||||
msgid "Send comment."
|
||||
msgstr "Kommentar senden"
|
||||
|
||||
#: comments.php:28
|
||||
#: ../comments.php:28 ../releases/1458664806/comments.php:28
|
||||
#, php-format
|
||||
msgctxt "comments title"
|
||||
msgid "One thought on “%2$s”"
|
||||
msgstr "Ein Kommentar für “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Ein Kommentar zu “%2$s”"
|
||||
msgstr[1] "%1$s Kommentare zu “%2$s”"
|
||||
|
||||
#: comments.php:35 comments.php:52
|
||||
msgid "Comment navigation"
|
||||
msgstr "Kommentar Navigation"
|
||||
#: ../searchform.php:9 ../searchform.php:13
|
||||
msgid "Search"
|
||||
msgstr "Suche"
|
||||
|
||||
#: comments.php:36 comments.php:53
|
||||
msgid "← Older Comments"
|
||||
msgstr "← Ältere Kommentare"
|
||||
#: ../searchform.php:11
|
||||
msgid "Search …"
|
||||
msgstr "Suche …"
|
||||
|
||||
#: comments.php:37 comments.php:54
|
||||
msgid "Newer Comments →"
|
||||
msgstr "Neuere Kommentare →"
|
||||
#: ../inc/widgets.php:20
|
||||
msgid "Hero Slider"
|
||||
msgstr "Hero (Slider)"
|
||||
|
||||
#: comments.php:64
|
||||
msgid "Comments are closed."
|
||||
msgstr "Kommentare sind geschlossen"
|
||||
#: ../inc/widgets.php:30
|
||||
msgid "Hero Static"
|
||||
msgstr "Hero (statisch)"
|
||||
|
||||
#: content-none.php:13
|
||||
#: ../inc/widgets.php:40
|
||||
msgid "Footer Full"
|
||||
msgstr "Footer (volle Breite)"
|
||||
|
||||
#: ../inc/template-tags.php:55
|
||||
msgctxt "Previous post link"
|
||||
msgid "<span class=\"meta-nav\">←</span> %title"
|
||||
msgstr "<span class=\"meta-nav\">←</span> %title"
|
||||
|
||||
#: ../inc/template-tags.php:56
|
||||
msgctxt "Next post link"
|
||||
msgid "%title <span class=\"meta-nav\">→</span>"
|
||||
msgstr "%title <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: ../inc/template-tags.php:82
|
||||
#, php-format
|
||||
msgctxt "post date"
|
||||
msgid "Posted on %s"
|
||||
msgstr "Veröffentlicht am %s"
|
||||
|
||||
#: ../inc/template-tags.php:87
|
||||
#, php-format
|
||||
msgctxt "post author"
|
||||
msgid "by %s"
|
||||
msgstr "von %s"
|
||||
|
||||
#: ../inc/template-tags.php:145
|
||||
msgctxt "yearly archives date format"
|
||||
msgid "Y"
|
||||
msgstr "Y"
|
||||
|
||||
#: ../inc/template-tags.php:147
|
||||
msgctxt "monthly archives date format"
|
||||
msgid "F Y"
|
||||
msgstr "F Y"
|
||||
|
||||
#: ../inc/template-tags.php:149
|
||||
msgctxt "daily archives date format"
|
||||
msgid "F j, Y"
|
||||
msgstr "F j, Y"
|
||||
|
||||
#: ../inc/template-tags.php:151
|
||||
msgctxt "post format archive title"
|
||||
msgid "Asides"
|
||||
msgstr "Nebensächlich"
|
||||
|
||||
#: ../inc/template-tags.php:153
|
||||
msgctxt "post format archive title"
|
||||
msgid "Galleries"
|
||||
msgstr "Gallerien"
|
||||
|
||||
#: ../inc/template-tags.php:155
|
||||
msgctxt "post format archive title"
|
||||
msgid "Images"
|
||||
msgstr "Bilder"
|
||||
|
||||
#: ../inc/template-tags.php:157
|
||||
msgctxt "post format archive title"
|
||||
msgid "Videos"
|
||||
msgstr "Videos"
|
||||
|
||||
#: ../inc/template-tags.php:159
|
||||
msgctxt "post format archive title"
|
||||
msgid "Quotes"
|
||||
msgstr "Zitate"
|
||||
|
||||
#: ../inc/template-tags.php:161
|
||||
msgctxt "post format archive title"
|
||||
msgid "Links"
|
||||
msgstr "Link"
|
||||
|
||||
#: ../inc/template-tags.php:163
|
||||
msgctxt "post format archive title"
|
||||
msgid "Statuses"
|
||||
msgstr "Status"
|
||||
|
||||
#: ../inc/template-tags.php:165
|
||||
msgctxt "post format archive title"
|
||||
msgid "Audio"
|
||||
msgstr "Audio"
|
||||
|
||||
#: ../inc/template-tags.php:167
|
||||
msgctxt "post format archive title"
|
||||
msgid "Chats"
|
||||
msgstr "Chats"
|
||||
|
||||
#: ../inc/custom-comments.php:25
|
||||
msgctxt "noun"
|
||||
msgid "Comment"
|
||||
msgstr "Kommentar"
|
||||
|
||||
#. Name of the theme
|
||||
msgid "UnderStrap"
|
||||
msgstr "UnderStrap"
|
||||
|
||||
#. Theme URI of the theme
|
||||
msgid "http://understrap.com"
|
||||
msgstr "http://understrap.com"
|
||||
|
||||
#. Description of the theme
|
||||
msgid ""
|
||||
"Combination of Automattic´s _s theme and Bootstrap SASS. Made as a solid "
|
||||
"starting point for your next theme project and WordPress website. Including "
|
||||
"Font Awesome support, build-in widget slider and much more you need for basic "
|
||||
"websites."
|
||||
msgstr ""
|
||||
"Kombination aus Automatics _s WordPress Starter Theme und dem CSS Grid "
|
||||
"Framework Bootstrap. Entwickelt als solider Ausgangspunkt für eigene WordPress "
|
||||
"Themes. Beinhaltet Font Awesome- , WooCommerce- & Jetpack Support. "
|
||||
|
||||
#. Author of the theme
|
||||
msgid "Holger Koenemann"
|
||||
msgstr "Holger Koenemann"
|
||||
|
||||
#. Author URI of the theme
|
||||
msgid "http://www.holgerkoenemann.de"
|
||||
msgstr "http://www.holgerkoenemann.de"
|
||||
|
||||
#: ../content-single.php:29 ../content.php:33 ../content-page.php:25 ../loop-
|
||||
#: templates/content-single.php:29 ../loop-templates/content.php:33
|
||||
#: templates/content-page.php:25
|
||||
msgid "Pages:"
|
||||
msgstr "Seiten:"
|
||||
|
||||
#: ../content-none.php:15 ../loop-templates/content-none.php:16
|
||||
msgid "Nothing Found"
|
||||
msgstr "Nichts gefunden"
|
||||
|
||||
#: content-none.php:19
|
||||
#: ../content-none.php:23 ../loop-templates/content-none.php:24
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr ""
|
||||
"Bereit deinen ersten Beitrag zu veröffentlichen? <a href=\"%1$s\">Fang hier "
|
||||
"an</a>."
|
||||
"Bereit deinen ersten Beitrag zu veröffentlichen? <a href=\"%1$s\">Fang hier an</"
|
||||
"a>."
|
||||
|
||||
#: content-none.php:23
|
||||
#: ../content-none.php:27 ../loop-templates/content-none.php:28
|
||||
msgid ""
|
||||
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||
"different keywords."
|
||||
|
@ -134,340 +214,242 @@ msgstr ""
|
|||
"Entschuldigung, leider wurde nichts zu deinem Suchbegriff gefunden. Versuch "
|
||||
"etwas anderes aus!"
|
||||
|
||||
#: content-none.php:28
|
||||
#: ../content-none.php:32 ../loop-templates/content-none.php:33
|
||||
msgid ""
|
||||
"It seems we can’t find what you’re looking for. Perhaps "
|
||||
"searching can help."
|
||||
"It seems we can’t find what you’re looking for. Perhaps searching "
|
||||
"can help."
|
||||
msgstr ""
|
||||
"Es scheint das wir nicht herausfinden konnten wonach du gesucht hast. Suchen "
|
||||
"könnte helfen!"
|
||||
|
||||
#: content-page.php:20 content-single.php:22 content.php:31
|
||||
msgid "Pages:"
|
||||
msgstr "Seiten:"
|
||||
#: ../comments.php:35 ../comments.php:56 ../releases/1458664806/comments.php:35 ..
|
||||
#: releases/1458664806/comments.php:56
|
||||
msgid "Comment navigation"
|
||||
msgstr "Kommentar Navigation"
|
||||
|
||||
#: content-page.php:27 inc/template-tags.php:122
|
||||
msgid "Edit"
|
||||
msgstr "Editieren"
|
||||
#: ../comments.php:37 ../comments.php:58 ../releases/1458664806/comments.php:37 ..
|
||||
#: releases/1458664806/comments.php:58
|
||||
msgid "← Older Comments"
|
||||
msgstr "← Ältere Kommentare"
|
||||
|
||||
#: footer.php:22
|
||||
#: ../comments.php:40 ../comments.php:61 ../releases/1458664806/comments.php:40 ..
|
||||
#: releases/1458664806/comments.php:61
|
||||
msgid "Newer Comments →"
|
||||
msgstr "Neuere Kommentare →"
|
||||
|
||||
#: ../comments.php:72 ../releases/1458664806/comments.php:72
|
||||
msgid "Comments are closed."
|
||||
msgstr "Kommentare sind geschlossen"
|
||||
|
||||
#: ../footer.php:24
|
||||
msgid "http://wordpress.org/"
|
||||
msgstr "http://wordpress.org/"
|
||||
|
||||
#: footer.php:22
|
||||
#: ../footer.php:24
|
||||
#, php-format
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Proudly powered by %s"
|
||||
msgstr "Stolz präsentiert von %s"
|
||||
|
||||
#: footer.php:24
|
||||
#: ../footer.php:26
|
||||
#, php-format
|
||||
msgid "Theme: %1$s by %2$s."
|
||||
msgstr "Theme: %1$s von %2$s."
|
||||
|
||||
#: header.php:27
|
||||
#: ../header.php:31
|
||||
msgid "Skip to content"
|
||||
msgstr "Zum Inhalt springen"
|
||||
|
||||
#: inc/custom-comments.php:14
|
||||
msgid "Email"
|
||||
msgstr "E-Mail"
|
||||
|
||||
#: inc/custom-comments.php:25
|
||||
msgid "Comment"
|
||||
msgstr "Kommentar"
|
||||
|
||||
#: inc/customizer.php:24
|
||||
msgid "Slider Settings"
|
||||
msgstr "Silber Einstellungen"
|
||||
|
||||
#: inc/customizer.php:33
|
||||
msgid "Number of slides displaying at once"
|
||||
msgstr "Anzahl der Slides die auf einmal angezeigt werden"
|
||||
|
||||
#: inc/customizer.php:45
|
||||
msgid "Slider Time (in ms)"
|
||||
msgstr "Slider Zeit (in ms)"
|
||||
|
||||
#: inc/customizer.php:57
|
||||
msgid "Loop Slider Content"
|
||||
msgstr "Slider Inhalt wiederholen?"
|
||||
|
||||
#: inc/customizer.php:68
|
||||
msgid "Add scripts"
|
||||
msgstr "Script Code hinzufügen"
|
||||
|
||||
#: inc/customizer.php:77
|
||||
msgid "Add custom JS code here"
|
||||
msgstr "Hier eigenen JavaScript Code einfügen"
|
||||
|
||||
#: inc/extras.php:60
|
||||
#, php-format
|
||||
msgid "Page %s"
|
||||
msgstr "Seite %s"
|
||||
|
||||
#: inc/setup.php:48
|
||||
msgid "Primary Menu"
|
||||
msgstr "Hauptmenü"
|
||||
|
||||
#: inc/setup.php:104
|
||||
msgid "Read More..."
|
||||
msgstr "Weiterlesen..."
|
||||
|
||||
#: inc/template-tags.php:21
|
||||
msgid "Posts navigation"
|
||||
msgstr "Beitrag´s Navigation"
|
||||
|
||||
#: inc/template-tags.php:25
|
||||
msgid "<span class=\"meta-nav\">←</span> Older posts"
|
||||
msgstr "<span class=\"meta-nav\">←</span> Ältere Beiträge"
|
||||
|
||||
#: inc/template-tags.php:29
|
||||
msgid "Newer posts <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Neuere Beiträge <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: inc/template-tags.php:52
|
||||
msgid "Post navigation"
|
||||
msgstr "Beitrag´s Navigation"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgid "<span class=\"meta-nav\">←</span> %title"
|
||||
msgstr "<span class=\"meta-nav\">←</span> %title"
|
||||
|
||||
#: inc/template-tags.php:56
|
||||
msgid "%title <span class=\"meta-nav\">→</span>"
|
||||
msgstr "%title <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: inc/template-tags.php:82
|
||||
#, php-format
|
||||
msgid "Posted on %s"
|
||||
msgstr "Geposted am %1$s"
|
||||
|
||||
#: inc/template-tags.php:87
|
||||
#, php-format
|
||||
msgid "by %s"
|
||||
msgstr "von %s"
|
||||
|
||||
#: inc/template-tags.php:104 inc/template-tags.php:110
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:106
|
||||
#, php-format
|
||||
msgid "Posted in %1$s"
|
||||
msgstr "Geposted in %1$s"
|
||||
|
||||
#: inc/template-tags.php:112
|
||||
#, php-format
|
||||
msgid "Tagged %1$s"
|
||||
msgstr "Getagt mit: %1$s"
|
||||
|
||||
#: inc/template-tags.php:118
|
||||
msgid "Leave a comment"
|
||||
msgstr "Hinterlasse ein Kommentar"
|
||||
|
||||
#: inc/template-tags.php:118
|
||||
msgid "1 Comment"
|
||||
msgstr "1 Kommentar"
|
||||
|
||||
#: inc/template-tags.php:118
|
||||
msgid "% Comments"
|
||||
msgstr "% Kommentare"
|
||||
|
||||
#: inc/template-tags.php:139
|
||||
#, php-format
|
||||
msgid "Category: %s"
|
||||
msgstr "Kategorie: %s"
|
||||
|
||||
#: inc/template-tags.php:141
|
||||
#, php-format
|
||||
msgid "Tag: %s"
|
||||
msgstr "Tag: %s"
|
||||
|
||||
#: inc/template-tags.php:143
|
||||
#, php-format
|
||||
msgid "Author: %s"
|
||||
msgstr "Autor: %s"
|
||||
|
||||
#: inc/template-tags.php:145
|
||||
#, php-format
|
||||
msgid "Year: %s"
|
||||
msgstr "Jahr: %s"
|
||||
|
||||
#: inc/template-tags.php:145
|
||||
msgid "Y"
|
||||
msgstr "Y"
|
||||
|
||||
#: inc/template-tags.php:147
|
||||
#, php-format
|
||||
msgid "Month: %s"
|
||||
msgstr "Monat: %s"
|
||||
|
||||
#: inc/template-tags.php:147
|
||||
msgid "F Y"
|
||||
msgstr "F Y"
|
||||
|
||||
#: inc/template-tags.php:149
|
||||
#, php-format
|
||||
msgid "Day: %s"
|
||||
msgstr "Tag: %s"
|
||||
|
||||
#: inc/template-tags.php:149
|
||||
msgid "F j, Y"
|
||||
msgstr "F j, Y"
|
||||
|
||||
#: inc/template-tags.php:151
|
||||
msgid "Asides"
|
||||
msgstr "Asides"
|
||||
|
||||
#: inc/template-tags.php:153
|
||||
msgid "Galleries"
|
||||
msgstr "Galerien"
|
||||
|
||||
#: inc/template-tags.php:155
|
||||
msgid "Images"
|
||||
msgstr "Bilder"
|
||||
|
||||
#: inc/template-tags.php:157
|
||||
msgid "Videos"
|
||||
msgstr "Videos"
|
||||
|
||||
#: inc/template-tags.php:159
|
||||
msgid "Quotes"
|
||||
msgstr "Zitate"
|
||||
|
||||
#: inc/template-tags.php:161
|
||||
msgid "Links"
|
||||
msgstr "Links"
|
||||
|
||||
#: inc/template-tags.php:163
|
||||
msgid "Statuses"
|
||||
msgstr "Statuse"
|
||||
|
||||
#: inc/template-tags.php:165
|
||||
msgid "Audio"
|
||||
msgstr "Audio"
|
||||
|
||||
#: inc/template-tags.php:167
|
||||
msgid "Chats"
|
||||
msgstr "Chats"
|
||||
|
||||
#: inc/template-tags.php:169
|
||||
#, php-format
|
||||
msgid "Archives: %s"
|
||||
msgstr "Archive: %s"
|
||||
|
||||
#: inc/template-tags.php:173
|
||||
#, php-format
|
||||
msgid "%1$s: %2$s"
|
||||
msgstr "%1$s: %2$s"
|
||||
|
||||
#: inc/template-tags.php:175
|
||||
msgid "Archives"
|
||||
msgstr "Archive"
|
||||
|
||||
#: inc/widgets.php:10
|
||||
msgid "Sidebar"
|
||||
msgstr "Sidebar"
|
||||
|
||||
#: inc/widgets.php:20
|
||||
msgid "Hero"
|
||||
msgstr "Hero"
|
||||
|
||||
#: inc/widgets.php:30
|
||||
msgid "Static Hero"
|
||||
msgstr "Static Hero"
|
||||
|
||||
#: search.php:20
|
||||
#: ../search.php:23
|
||||
#, php-format
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Suchergebnis für: %s"
|
||||
|
||||
#~ msgctxt "comments title"
|
||||
#~ msgid "One thought on “%2$s”"
|
||||
#~ msgid_plural "%1$s thoughts on “%2$s”"
|
||||
#~ msgstr[0] "Ein Kommentar für “%2$s”"
|
||||
#~ msgstr[1] "%1$s Kommentare für “%2$s”"
|
||||
#: ../content-page.php:34 ../inc/template-tags.php:122 ../loop-templates/content-
|
||||
#: page.php:34
|
||||
msgid "Edit"
|
||||
msgstr "Bearbeiten"
|
||||
|
||||
#~ msgid "Continue reading %s <span class=\"meta-nav\">→</span>"
|
||||
#~ msgstr "Weiterlesen %s <span class=\"meta-nav\">→</span>"
|
||||
#: ../comment-form.php:5
|
||||
msgid "Write Comment."
|
||||
msgstr "Kommentar schreiben"
|
||||
|
||||
#~ msgctxt "Previous post link"
|
||||
#~ msgid "<span class=\"meta-nav\">←</span> %title"
|
||||
#~ msgstr "<span class=\"meta-nav\">←</span> %title"
|
||||
#: ../comment-form.php:5
|
||||
msgid "*Mandatory"
|
||||
msgstr "*Pflichtfeld"
|
||||
|
||||
#~ msgctxt "Next post link"
|
||||
#~ msgid "%title <span class=\"meta-nav\">→</span>"
|
||||
#~ msgstr "%title <span class=\"meta-nav\">→</span>"
|
||||
#: ../comment-form.php:13 ../inc/custom-comments.php:12
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#~ msgctxt "post date"
|
||||
#~ msgid "Posted on %s"
|
||||
#~ msgstr "Gepustet am %s"
|
||||
#: ../comment-form.php:19
|
||||
msgid "E-Mail"
|
||||
msgstr "E-Mail"
|
||||
|
||||
#~ msgctxt "post author"
|
||||
#~ msgid "by %s"
|
||||
#~ msgstr "von %s"
|
||||
#: ../comment-form.php:19
|
||||
msgid "Not public."
|
||||
msgstr "Nicht öffentlich"
|
||||
|
||||
#~ msgctxt "yearly archives date format"
|
||||
#~ msgid "Y"
|
||||
#~ msgstr "Y"
|
||||
#: ../comment-form.php:24 ../inc/custom-comments.php:16
|
||||
msgid "Website"
|
||||
msgstr "Webseite"
|
||||
|
||||
#~ msgctxt "monthly archives date format"
|
||||
#~ msgid "F Y"
|
||||
#~ msgstr "F Y"
|
||||
#: ../comment-form.php:29
|
||||
msgid "Your Comment"
|
||||
msgstr "Dein Kommentar"
|
||||
|
||||
#~ msgctxt "daily archives date format"
|
||||
#~ msgid "F j, Y"
|
||||
#~ msgstr "F j, Y"
|
||||
#: ../comment-form.php:36
|
||||
msgid "Send comment."
|
||||
msgstr "Kommentar senden"
|
||||
|
||||
#~ msgctxt "post format archive title"
|
||||
#~ msgid "Asides"
|
||||
#~ msgstr "Asides"
|
||||
#: ../404.php:22
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Ooooops! Die Seite wurde nicht gefunden."
|
||||
|
||||
#~ msgctxt "post format archive title"
|
||||
#~ msgid "Galleries"
|
||||
#~ msgstr "Gallerien"
|
||||
#: ../404.php:27
|
||||
msgid ""
|
||||
"It looks like nothing was found at this location. Maybe try one of the links "
|
||||
"below or a search?"
|
||||
msgstr ""
|
||||
"Es scheint, dass hier nichts gefunden wurde. Versuch doch einen der Links unten "
|
||||
"oder die Suchfunktion."
|
||||
|
||||
#~ msgctxt "post format archive title"
|
||||
#~ msgid "Images"
|
||||
#~ msgstr "Bilder"
|
||||
#: ../404.php:37
|
||||
msgid "Most Used Categories"
|
||||
msgstr "Am häufigsten genutzte Kategorie"
|
||||
|
||||
#~ msgctxt "post format archive title"
|
||||
#~ msgid "Videos"
|
||||
#~ msgstr "Videos"
|
||||
#: ../404.php:57
|
||||
#, php-format
|
||||
msgid "Try looking in the monthly archives. %1$s"
|
||||
msgstr "Versuch im monatlichen Archiv zu schauen. %1$s"
|
||||
|
||||
#~ msgctxt "post format archive title"
|
||||
#~ msgid "Quotes"
|
||||
#~ msgstr "Zitate"
|
||||
#: ../inc/widgets.php:10
|
||||
msgid "Sidebar"
|
||||
msgstr "Sidebar"
|
||||
|
||||
#~ msgctxt "post format archive title"
|
||||
#~ msgid "Links"
|
||||
#~ msgstr "Links"
|
||||
#: ../inc/customizer.php:24
|
||||
msgid "Slider Settings"
|
||||
msgstr "Slider Einstellungen"
|
||||
|
||||
#~ msgctxt "post format archive title"
|
||||
#~ msgid "Statuses"
|
||||
#~ msgstr "Status"
|
||||
#: ../inc/customizer.php:33
|
||||
msgid "Number of slides displaying at once"
|
||||
msgstr "Anzahl der Slides die auf einmal angezeigt werden"
|
||||
|
||||
#~ msgctxt "post format archive title"
|
||||
#~ msgid "Audio"
|
||||
#~ msgstr "Audio"
|
||||
#: ../inc/customizer.php:45
|
||||
msgid "Slider Time (in ms)"
|
||||
msgstr "Slider Zeit (in ms)"
|
||||
|
||||
#~ msgctxt "post format archive title"
|
||||
#~ msgid "Chats"
|
||||
#~ msgstr "Chats"
|
||||
#: ../inc/customizer.php:57
|
||||
msgid "Loop Slider Content"
|
||||
msgstr "Slider Inhalt wiederholen?"
|
||||
|
||||
#~ msgid "_s"
|
||||
#~ msgstr "_s"
|
||||
#: ../inc/customizer.php:68
|
||||
msgid "Add scripts"
|
||||
msgstr "Script Code hinzufügen"
|
||||
|
||||
#~ msgid "http://underscores.me/"
|
||||
#~ msgstr "http://underscores.me/"
|
||||
#: ../inc/customizer.php:77
|
||||
msgid "Add custom JS code here"
|
||||
msgstr "Hier eigenen JavaScript Code einfügen"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, "
|
||||
#~ "if you like. I'm a theme meant for hacking so don't use me as a "
|
||||
#~ "<em>Parent Theme</em>. Instead try turning me into the next, most "
|
||||
#~ "awesome, WordPress theme out there. That's what I'm here for."
|
||||
#~ msgstr ""
|
||||
#~ "Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, "
|
||||
#~ "if you like. I'm a theme meant for hacking so don't use me as a "
|
||||
#~ "<em>Parent Theme</em>. Instead try turning me into the next, most "
|
||||
#~ "awesome, WordPress theme out there. That's what I'm here for."
|
||||
#: ../inc/extras.php:60
|
||||
#, php-format
|
||||
msgid "Page %s"
|
||||
msgstr "Seite %s"
|
||||
|
||||
#: ../inc/template-tags.php:21
|
||||
msgid "Posts navigation"
|
||||
msgstr "Beitrag´s Navigation"
|
||||
|
||||
#: ../inc/template-tags.php:25
|
||||
msgid "<span class=\"meta-nav\">←</span> Older posts"
|
||||
msgstr "<span class=\"meta-nav\">←</span> Ältere Beiträge"
|
||||
|
||||
#: ../inc/template-tags.php:29
|
||||
msgid "Newer posts <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Neuere Beiträge <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: ../inc/template-tags.php:52
|
||||
msgid "Post navigation"
|
||||
msgstr "Beitrag´s Navigation"
|
||||
|
||||
#: ../inc/template-tags.php:104 ../inc/template-tags.php:110
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: ../inc/template-tags.php:106
|
||||
#, php-format
|
||||
msgid "Posted in %1$s"
|
||||
msgstr "Veröffentlicht in %1$s"
|
||||
|
||||
#: ../inc/template-tags.php:112
|
||||
#, php-format
|
||||
msgid "Tagged %1$s"
|
||||
msgstr "Getagt mit: %1$s"
|
||||
|
||||
#: ../inc/template-tags.php:118
|
||||
msgid "Leave a comment"
|
||||
msgstr "Hinterlasse ein Kommentar"
|
||||
|
||||
#: ../inc/template-tags.php:118
|
||||
msgid "1 Comment"
|
||||
msgstr "1 Kommentar"
|
||||
|
||||
#: ../inc/template-tags.php:118
|
||||
#, php-format
|
||||
msgid "% Comments"
|
||||
msgstr "% Kommentare"
|
||||
|
||||
#: ../inc/template-tags.php:139
|
||||
#, php-format
|
||||
msgid "Category: %s"
|
||||
msgstr "Kategorie: %s"
|
||||
|
||||
#: ../inc/template-tags.php:141
|
||||
#, php-format
|
||||
msgid "Tag: %s"
|
||||
msgstr "Tag: %s"
|
||||
|
||||
#: ../inc/template-tags.php:143
|
||||
#, php-format
|
||||
msgid "Author: %s"
|
||||
msgstr "Autor: %s"
|
||||
|
||||
#: ../inc/template-tags.php:145
|
||||
#, php-format
|
||||
msgid "Year: %s"
|
||||
msgstr "Jahr: %s"
|
||||
|
||||
#: ../inc/template-tags.php:147
|
||||
#, php-format
|
||||
msgid "Month: %s"
|
||||
msgstr "Monat: %s"
|
||||
|
||||
#: ../inc/template-tags.php:149
|
||||
#, php-format
|
||||
msgid "Day: %s"
|
||||
msgstr "Tag: %s"
|
||||
|
||||
#: ../inc/template-tags.php:169
|
||||
#, php-format
|
||||
msgid "Archives: %s"
|
||||
msgstr "Archive: %s"
|
||||
|
||||
#: ../inc/template-tags.php:173
|
||||
#, php-format
|
||||
msgid "%1$s: %2$s"
|
||||
msgstr "%1$s: %2$s"
|
||||
|
||||
#: ../inc/template-tags.php:175
|
||||
msgid "Archives"
|
||||
msgstr "Archive"
|
||||
|
||||
#: ../inc/setup.php:48
|
||||
msgid "Primary Menu"
|
||||
msgstr "Hauptmenü"
|
||||
|
||||
#: ../inc/setup.php:98
|
||||
msgid "Read More..."
|
||||
msgstr "Weiterlesen..."
|
||||
|
||||
#: ../inc/custom-comments.php:14
|
||||
msgid "Email"
|
||||
msgstr "E-Mail"
|
||||
|
|
|
@ -5,8 +5,7 @@ msgstr ""
|
|||
"Project-Id-Version: understrap\n"
|
||||
"Report-Msgid-Bugs-To: http://wordpress.org/support/theme/_s\n"
|
||||
"POT-Creation-Date: 2015-09-01 21:23+0200\n"
|
||||
"POT-Revision-Date: Thu Apr 14 2016 20:59:27 GMT-0300 (E. South America "
|
||||
"Standard Time)\n"
|
||||
"POT-Revision-Date: Fri Apr 15 2016 08:16:08 GMT+0200 (CEST)\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: \n"
|
||||
|
@ -46,9 +45,62 @@ msgstr ""
|
|||
"X-Poedit-SearchPath-20: page-templates\n"
|
||||
"X-Poedit-SearchPath-21: inc"
|
||||
|
||||
#: ../search.php:23
|
||||
#: ../content-single.php:29 ../content.php:33 ../content-page.php:25 ../loop-
|
||||
#: templates/content-single.php:29 ../loop-templates/content.php:33 ../loop-
|
||||
#: templates/content-page.php:25
|
||||
msgid "Pages:"
|
||||
msgstr ""
|
||||
|
||||
#. Name of the template
|
||||
msgid "Full Width Page"
|
||||
msgstr ""
|
||||
|
||||
#: ../content-none.php:15 ../loop-templates/content-none.php:16
|
||||
msgid "Nothing Found"
|
||||
msgstr ""
|
||||
|
||||
#: ../content-none.php:23 ../loop-templates/content-none.php:24
|
||||
#, php-format
|
||||
msgid "Search Results for: %s"
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr ""
|
||||
|
||||
#: ../content-none.php:27 ../loop-templates/content-none.php:28
|
||||
msgid ""
|
||||
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||
"different keywords."
|
||||
msgstr ""
|
||||
|
||||
#: ../content-none.php:32 ../loop-templates/content-none.php:33
|
||||
msgid ""
|
||||
"It seems we can’t find what you’re looking for. Perhaps "
|
||||
"searching can help."
|
||||
msgstr ""
|
||||
|
||||
#: ../comments.php:28 ../releases/1458664806/comments.php:28
|
||||
#, php-format
|
||||
msgctxt "comments title"
|
||||
msgid "One thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../comments.php:35 ../comments.php:56 ../releases/1458664806/comments.php:35 ..
|
||||
#: /releases/1458664806/comments.php:56
|
||||
msgid "Comment navigation"
|
||||
msgstr ""
|
||||
|
||||
#: ../comments.php:37 ../comments.php:58 ../releases/1458664806/comments.php:37 ..
|
||||
#: /releases/1458664806/comments.php:58
|
||||
msgid "← Older Comments"
|
||||
msgstr ""
|
||||
|
||||
#: ../comments.php:40 ../comments.php:61 ../releases/1458664806/comments.php:40 ..
|
||||
#: /releases/1458664806/comments.php:61
|
||||
msgid "Newer Comments →"
|
||||
msgstr ""
|
||||
|
||||
#: ../comments.php:72 ../releases/1458664806/comments.php:72
|
||||
msgid "Comments are closed."
|
||||
msgstr ""
|
||||
|
||||
#: ../footer.php:24
|
||||
|
@ -65,56 +117,18 @@ msgstr ""
|
|||
msgid "Theme: %1$s by %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../404.php:22
|
||||
msgid "Oops! That page can’t be found."
|
||||
#: ../header.php:31
|
||||
msgid "Skip to content"
|
||||
msgstr ""
|
||||
|
||||
#: ../404.php:27
|
||||
msgid ""
|
||||
"It looks like nothing was found at this location. Maybe try one of the links "
|
||||
"below or a search?"
|
||||
msgstr ""
|
||||
|
||||
#: ../404.php:37
|
||||
msgid "Most Used Categories"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: smiley
|
||||
#: ../404.php:57
|
||||
#: ../search.php:23
|
||||
#, php-format
|
||||
msgid "Try looking in the monthly archives. %1$s"
|
||||
msgid "Search Results for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../searchform.php:9 ../searchform.php:13
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: ../searchform.php:11
|
||||
msgid "Search …"
|
||||
msgstr ""
|
||||
|
||||
#: ../comments.php:28
|
||||
#, php-format
|
||||
msgctxt "comments title"
|
||||
msgid "One thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../comments.php:35 ../comments.php:56
|
||||
msgid "Comment navigation"
|
||||
msgstr ""
|
||||
|
||||
#: ../comments.php:37 ../comments.php:58
|
||||
msgid "← Older Comments"
|
||||
msgstr ""
|
||||
|
||||
#: ../comments.php:40 ../comments.php:61
|
||||
msgid "Newer Comments →"
|
||||
msgstr ""
|
||||
|
||||
#: ../comments.php:72
|
||||
msgid "Comments are closed."
|
||||
#: ../content-page.php:34 ../inc/template-tags.php:122 ../loop-templates/content-
|
||||
#: page.php:34
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: ../comment-form.php:5
|
||||
|
@ -149,12 +163,77 @@ msgstr ""
|
|||
msgid "Send comment."
|
||||
msgstr ""
|
||||
|
||||
#: ../header.php:31
|
||||
msgid "Skip to content"
|
||||
#: ../404.php:22
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr ""
|
||||
|
||||
#. Name of the template
|
||||
msgid "Full Width Page"
|
||||
#: ../404.php:27
|
||||
msgid ""
|
||||
"It looks like nothing was found at this location. Maybe try one of the links "
|
||||
"below or a search?"
|
||||
msgstr ""
|
||||
|
||||
#: ../404.php:37
|
||||
msgid "Most Used Categories"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %1$s: smiley
|
||||
#: ../404.php:57
|
||||
#, php-format
|
||||
msgid "Try looking in the monthly archives. %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../searchform.php:9 ../searchform.php:13
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: ../searchform.php:11
|
||||
msgid "Search …"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/widgets.php:10
|
||||
msgid "Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/widgets.php:20
|
||||
msgid "Hero Slider"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/widgets.php:30
|
||||
msgid "Hero Static"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/widgets.php:40
|
||||
msgid "Footer Full"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/customizer.php:24
|
||||
msgid "Slider Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/customizer.php:33
|
||||
msgid "Number of slides displaying at once"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/customizer.php:45
|
||||
msgid "Slider Time (in ms)"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/customizer.php:57
|
||||
msgid "Loop Slider Content"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/customizer.php:68
|
||||
msgid "Add scripts"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/customizer.php:77
|
||||
msgid "Add custom JS code here"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/extras.php:60
|
||||
#, php-format
|
||||
msgid "Page %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/template-tags.php:21
|
||||
|
@ -223,10 +302,6 @@ msgstr ""
|
|||
msgid "% Comments"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/template-tags.php:122 ../loop-templates/content-page.php:34
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/template-tags.php:139
|
||||
#, php-format
|
||||
msgid "Category: %s"
|
||||
|
@ -332,35 +407,6 @@ msgstr ""
|
|||
msgid "Archives"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/customizer.php:24
|
||||
msgid "Slider Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/customizer.php:33
|
||||
msgid "Number of slides displaying at once"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/customizer.php:45
|
||||
msgid "Slider Time (in ms)"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/customizer.php:57
|
||||
msgid "Loop Slider Content"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/customizer.php:68
|
||||
msgid "Add scripts"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/customizer.php:77
|
||||
msgid "Add custom JS code here"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/extras.php:60
|
||||
#, php-format
|
||||
msgid "Page %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/setup.php:48
|
||||
msgid "Primary Menu"
|
||||
msgstr ""
|
||||
|
@ -369,22 +415,6 @@ msgstr ""
|
|||
msgid "Read More..."
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/widgets.php:10
|
||||
msgid "Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/widgets.php:20
|
||||
msgid "Hero Slider"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/widgets.php:30
|
||||
msgid "Hero Static"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/widgets.php:40
|
||||
msgid "Footer Full"
|
||||
msgstr ""
|
||||
|
||||
#: ../inc/custom-comments.php:14
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
@ -394,32 +424,6 @@ msgctxt "noun"
|
|||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: ../loop-templates/content.php:33 ../loop-templates/content-single.php:29 ..
|
||||
#: loop-templates/content-page.php:25
|
||||
msgid "Pages:"
|
||||
msgstr ""
|
||||
|
||||
#: ../loop-templates/content-none.php:16
|
||||
msgid "Nothing Found"
|
||||
msgstr ""
|
||||
|
||||
#: ../loop-templates/content-none.php:24
|
||||
#, php-format
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr ""
|
||||
|
||||
#: ../loop-templates/content-none.php:28
|
||||
msgid ""
|
||||
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||
"different keywords."
|
||||
msgstr ""
|
||||
|
||||
#: ../loop-templates/content-none.php:33
|
||||
msgid ""
|
||||
"It seems we can’t find what you’re looking for. Perhaps "
|
||||
"searching can help."
|
||||
msgstr ""
|
||||
|
||||
#. Name of the theme
|
||||
msgid "UnderStrap"
|
||||
msgstr ""
|
||||
|
|
|
@ -32,10 +32,10 @@
|
|||
"gulp-rename": "^1.2.2",
|
||||
"gulp-rimraf": "^0.2.0",
|
||||
"gulp-sass": "^2.2.0",
|
||||
"gulp-uglify": "^1.5.2",
|
||||
"gulp-uglify": "^1.5.3",
|
||||
"gulp-watch": "^4.3.5",
|
||||
"gulp-cssnano": "^2.1.1",
|
||||
"merge2": "^1.0.1",
|
||||
"gulp-uglify": "^1.5.3"
|
||||
"browser-sync": "^2.12.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,56 @@
|
|||
/*!
|
||||
* Bootstrap v3.3.6 (http://getbootstrap.com)
|
||||
* Copyright 2011-2015 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
*/
|
||||
|
||||
// Core variables and mixins
|
||||
@import "../../src/sass/bootstrap3/bootstrap/variables";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/mixins";
|
||||
|
||||
// Reset and dependencies
|
||||
@import "../../src/sass/bootstrap3/bootstrap/normalize";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/print";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/glyphicons";
|
||||
|
||||
// Core CSS
|
||||
@import "../../src/sass/bootstrap3/bootstrap/scaffolding";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/type";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/code";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/grid";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/tables";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/forms";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/buttons";
|
||||
|
||||
// Components
|
||||
@import "../../src/sass/bootstrap3/bootstrap/component-animations";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/dropdowns";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/button-groups";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/input-groups";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/navs";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/navbar";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/breadcrumbs";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/pagination";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/pager";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/labels";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/badges";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/jumbotron";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/thumbnails";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/alerts";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/progress-bars";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/media";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/list-group";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/panels";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/responsive-embed";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/wells";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/close";
|
||||
|
||||
// Components w/ JavaScript
|
||||
@import "../../src/sass/bootstrap3/bootstrap/modals";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/tooltip";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/popovers";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/carousel";
|
||||
|
||||
// Utility classes
|
||||
@import "../../src/sass/bootstrap3/bootstrap/utilities";
|
||||
@import "../../src/sass/bootstrap3/bootstrap/responsive-utilities";
|
|
@ -0,0 +1,56 @@
|
|||
/*!
|
||||
* Bootstrap v4.0.0-alpha.2 (http://getbootstrap.com)
|
||||
* Copyright 2011-2015 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
*/
|
||||
|
||||
// Core variables and mixins
|
||||
@import "../../src/sass/bootstrap4/variables";
|
||||
@import "../../src/sass/bootstrap4/mixins";
|
||||
|
||||
// Reset and dependencies
|
||||
@import "../../src/sass/bootstrap4/normalize";
|
||||
@import "../../src/sass/bootstrap4/print";
|
||||
|
||||
// Core CSS
|
||||
@import "../../src/sass/bootstrap4/reboot";
|
||||
@import "../../src/sass/bootstrap4/type";
|
||||
@import "../../src/sass/bootstrap4/images";
|
||||
@import "../../src/sass/bootstrap4/code";
|
||||
@import "../../src/sass/bootstrap4/grid";
|
||||
@import "../../src/sass/bootstrap4/tables";
|
||||
@import "../../src/sass/bootstrap4/forms";
|
||||
@import "../../src/sass/bootstrap4/buttons";
|
||||
|
||||
// Components
|
||||
@import "../../src/sass/bootstrap4/animation";
|
||||
@import "../../src/sass/bootstrap4/dropdown";
|
||||
@import "../../src/sass/bootstrap4/button-group";
|
||||
@import "../../src/sass/bootstrap4/input-group";
|
||||
@import "../../src/sass/bootstrap4/custom-forms";
|
||||
@import "../../src/sass/bootstrap4/nav";
|
||||
@import "../../src/sass/bootstrap4/navbar";
|
||||
@import "../../src/sass/bootstrap4/card";
|
||||
@import "../../src/sass/bootstrap4/breadcrumb";
|
||||
@import "../../src/sass/bootstrap4/pagination";
|
||||
@import "../../src/sass/bootstrap4/pager";
|
||||
@import "../../src/sass/bootstrap4/labels";
|
||||
@import "../../src/sass/bootstrap4/jumbotron";
|
||||
@import "../../src/sass/bootstrap4/alert";
|
||||
@import "../../src/sass/bootstrap4/progress";
|
||||
@import "../../src/sass/bootstrap4/media";
|
||||
@import "../../src/sass/bootstrap4/list-group";
|
||||
@import "../../src/sass/bootstrap4/responsive-embed";
|
||||
@import "../../src/sass/bootstrap4/close";
|
||||
|
||||
// Components w/ JavaScript
|
||||
@import "../../src/sass/bootstrap4/modal";
|
||||
@import "../../src/sass/bootstrap4/tooltip";
|
||||
@import "../../src/sass/bootstrap4/popover";
|
||||
@import "../../src/sass/bootstrap4/carousel";
|
||||
|
||||
// Utility classes
|
||||
@import "../../src/sass/bootstrap4/utilities";
|
||||
@import "../../src/sass/bootstrap4/utilities-background";
|
||||
@import "../../src/sass/bootstrap4/utilities-spacing";
|
||||
@import "../../src/sass/bootstrap4/utilities-responsive";
|
|
@ -0,0 +1,17 @@
|
|||
/*!
|
||||
* Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
|
||||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||||
*/
|
||||
|
||||
@import "../../src/sass/fontawesome/variables";
|
||||
@import "../../src/sass/fontawesome/mixins";
|
||||
@import "../../src/sass/fontawesome/path";
|
||||
@import "../../src/sass/fontawesome/core";
|
||||
@import "../../src/sass/fontawesome/larger";
|
||||
@import "../../src/sass/fontawesome/fixed-width";
|
||||
@import "../../src/sass/fontawesome/list";
|
||||
@import "../../src/sass/fontawesome/bordered-pulled";
|
||||
@import "../../src/sass/fontawesome/animated";
|
||||
@import "../../src/sass/fontawesome/rotated-flipped";
|
||||
@import "../../src/sass/fontawesome/stacked";
|
||||
@import "../../src/sass/fontawesome/icons";
|
|
@ -0,0 +1,6 @@
|
|||
@import "../../src/sass/owl-carousel2/owl.carousel";
|
||||
@import "../../src/sass/owl-carousel2/owl.animate";
|
||||
@import "../../src/sass/owl-carousel2/owl.autoheight";
|
||||
@import "../../src/sass/owl-carousel2/owl.lazyload";
|
||||
@import "../../src/sass/owl-carousel2/owl.video";
|
||||
@import "../../src/sass/owl-carousel2/owl.theme.default";
|
|
@ -1,45 +1,11 @@
|
|||
/*****************************************************************
|
||||
Import all needed 3rd party sass files plus your own style and variables
|
||||
|
||||
0. ../bower_components/_s/sass/style // Adding underscores default styles. Don´t needed if you use Bootstrap for styling
|
||||
--------------------------------------
|
||||
1. theme/theme_variables.scss // Overwriting Bootstrap variables and for own variables <-- ADD YOUR VARIABLES HERE
|
||||
--------------------------------------
|
||||
2.../bower_components/bootstrap-sass/assets/stylesheets/bootstrap // adding bootstrap from bower components folder. Make sure you run bower install before! <- Dont edit this files!
|
||||
--------------------------------------
|
||||
3. understrap/understrap.scss // Some basic understrap styles. Helps to combine Bootsrap and _s theme and provides some basic styleing for additonal functions <- Dont edit this files!
|
||||
--------------------------------------
|
||||
4. ../bower_components/fontawesome/scss/font-awesome <- Dont edit this files! If you don´t need/want Font Awesome support comment out this line
|
||||
--------------------------------------
|
||||
|
||||
|
||||
|
||||
*
|
||||
*
|
||||
*
|
||||
*******
|
||||
*****
|
||||
***
|
||||
*
|
||||
|
||||
|
||||
|
||||
// Any additional imported files //
|
||||
6. theme/theme.scss"; // <-- ADD YOUR STYLES HERE
|
||||
***************************************************************** */
|
||||
|
||||
// @import "../bower_components/_s/sass/style";
|
||||
@import "theme/theme_variables"; // <--------- Add your variables into this file. Also add variables to overwrite Bootstrap or UnderStrap variables here
|
||||
@import "../src/sass/bootstrap4/bootstrap";// <--------- Change from /bootstrap3 to /bootstrap4 Watch out! just for testing in the moment!
|
||||
@import "understrap/understrap";
|
||||
@import "../src/sass/fontawesome/font-awesome";
|
||||
@import "../src/sass/owl-carousel2/owl.carousel";
|
||||
@import "../src/sass/owl-carousel2/owl.animate";
|
||||
@import "../src/sass/owl-carousel2/owl.autoheight";
|
||||
@import "../src/sass/owl-carousel2/owl.lazyload";
|
||||
@import "../src/sass/owl-carousel2/owl.video";
|
||||
@import "../src/sass/owl-carousel2/owl.theme.default";
|
||||
@import "assets/bootstrap4";// <--------- Loads Bootstrap3 or Bootstrap4. Change from /bootstrap3 to /bootstrap4 Watch out! just for testing in the moment!
|
||||
@import "understrap/understrap";// <-------- Loads the UnderStrap defaults. Just a few classes to incorporate BS in WP
|
||||
|
||||
//Optional files - If you don´t use the corresponding scripts/fonts comment em out
|
||||
@import "assets/font-awesome"; // <------- Font Awesome Icon font
|
||||
@import "assets/owl-carousel2"; // <------- Owl Carousel2 slider styles
|
||||
|
||||
|
||||
// Any additional imported files //
|
||||
@import "theme/theme"; // <--------- Add your styles into this file
|
||||
@import "theme/theme"; // <--------- Thats where you can add your own design. Thats your part!
|
BIN
screenshot.png
BIN
screenshot.png
Binary file not shown.
Before Width: | Height: | Size: 256 KiB After Width: | Height: | Size: 368 KiB |
Reference in New Issue