-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
3,815 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Node | ||
node_modules | ||
|
||
# SVN | ||
/svn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
'use strict'; | ||
|
||
const gulp = require('gulp'); | ||
const shell = require('shelljs'); | ||
const del = require('del'); | ||
|
||
const config = { | ||
svn: { | ||
url: 'http://plugins.svn.wordpress.org/wp-post-of-the-day/', | ||
src: [ | ||
'./**', | ||
'!**/svn', | ||
'!**/svn/**', | ||
'!**/readme.md', | ||
'!**/package.json', | ||
'!**/node_modules', | ||
'!**/node_modules/**', | ||
'!**/bower.json', | ||
'!**/bower_components', | ||
'!**/bower_components/**', | ||
'!**/gulpfile.js', | ||
'!**/gulp', | ||
'!**/gulp/**', | ||
'!**/*.json', | ||
'!**/*.lock' | ||
], | ||
dest: './svn/trunk', | ||
clean: './svn/trunk/**/*' | ||
} | ||
}; | ||
|
||
gulp.task('checkout', (done) => { | ||
shell.exec('svn co ' + config.svn.url + ' svn'); | ||
done(); | ||
}); | ||
|
||
gulp.task('clean', () => { | ||
return del(config.svn.clean); | ||
}); | ||
|
||
gulp.task('copy', () => { | ||
return gulp.src(config.svn.src).pipe(gulp.dest(config.svn.dest)); | ||
}); | ||
|
||
gulp.task('stage', gulp.series('clean', 'copy')); | ||
|
||
gulp.task('default', gulp.series('stage')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
#, fuzzy | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: WP Post of the Day\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2019-05-14 14:55+0000\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: \n" | ||
"Language: \n" | ||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"X-Generator: Loco https://localise.biz/\n" | ||
"X-Loco-Version: 2.2.2; wp-5.2" | ||
|
||
#. Description of the plugin | ||
msgid "Displays a new post every day." | ||
msgstr "" | ||
|
||
#. URI of the plugin | ||
msgid "https://wordpress.org/plugins/wp-post-of-the-day/" | ||
msgstr "" | ||
|
||
#. Author URI of the plugin | ||
msgid "https://wpscholar.com" | ||
msgstr "" | ||
|
||
#. Author of the plugin | ||
msgid "Micah Wood" | ||
msgstr "" | ||
|
||
#: wp-post-of-the-day.php:281 | ||
msgid "" | ||
"Sorry, no matching posts were found. Your query may be too restrictive. " | ||
"Please check your shortcode implementation." | ||
msgstr "" | ||
|
||
#: wp-post-of-the-day.php:223 | ||
#, php-format | ||
msgid "" | ||
"Sorry, post type \"%s\" is invalid. Valid options are: %s. Please check your " | ||
"shortcode implementation." | ||
msgstr "" | ||
|
||
#: wp-post-of-the-day.php:187 | ||
#, php-format | ||
msgid "" | ||
"Sorry, taxonomy \"%s\" is invalid. Valid options are: %s. Please check your " | ||
"shortcode implementation." | ||
msgstr "" | ||
|
||
#: wp-post-of-the-day.php:296 | ||
msgid "Sorry, the selected post does not have a featured image." | ||
msgstr "" | ||
|
||
#: wp-post-of-the-day.php:209 | ||
msgid "" | ||
"Sorry, you cannot use the taxonomy attribute without the terms attribute. " | ||
"Please check your shortcode implementation." | ||
msgstr "" | ||
|
||
#: wp-post-of-the-day.php:200 | ||
msgid "" | ||
"Sorry, you cannot use the terms attribute without the taxonomy attribute. " | ||
"Please check your shortcode implementation." | ||
msgstr "" | ||
|
||
#: wp-post-of-the-day.php:177 | ||
msgid "" | ||
"Sorry, your theme does not support featured images. Update the \"show\" " | ||
"attribute to exclude the \"image\" option." | ||
msgstr "" | ||
|
||
#. Name of the plugin | ||
msgid "WP Post of the Day" | ||
msgstr "" |
Oops, something went wrong.