Skip to content

Commit

Permalink
Initial release to WordPress.org
Browse files Browse the repository at this point in the history
  • Loading branch information
wpscholar committed May 14, 2019
1 parent bb4b9b0 commit ffc5ab8
Show file tree
Hide file tree
Showing 8 changed files with 3,815 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Node
node_modules

# SVN
/svn
47 changes: 47 additions & 0 deletions gulpfile.js
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'));
78 changes: 78 additions & 0 deletions languages/wp-post-of-the-day.pot
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 ""
Loading

0 comments on commit ffc5ab8

Please # to comment.