Skip to content

Instantly share code, notes, and snippets.

@r-a-y
Forked from johnpbloch/README.md
Last active December 16, 2017 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save r-a-y/5360493 to your computer and use it in GitHub Desktop.
Save r-a-y/5360493 to your computer and use it in GitHub Desktop.

Installation

To install, you need to have the WordPress i18n library on your computer. Check it out using SVN:

sudo svn co http://i18n.svn.wordpress.org/tools/trunk/ /usr/lib/wpi18n

You don't have to put the library in /usr/lib/wpi18n, but if you don't put it there, make sure to set the $WP_I18N_LIB environment variable in your .bashrc file (with no trailing slash):

export WP_I18N_LIB="/path/to/i18n/lib"

Put makepot.sh anywhere in your path (I put mine in /usr/local/bin) and rename it to makepot. Make it executable by running

chmod +x makepot

Use

To use the script, simply go to the plugin's directory and run

makepot

You may specify the plugin directory as an extra argument:

makepot path/to/plugin

The script will use the name of the plugin directory as the .pot file's name and will look first for a directory called languages, then for lang and put the file in whichever it finds. If neither of those directories exists, it will put the .pot file in the base plugin directory.

License

GPLv2 or Later

Copyright (C) 2012 Avendi Media, Inc.

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

#!/bin/bash
if [ ! -z "${WP_I18N_LIB+xxx}" ] || [ ! -d "$WP_I18N_LIB" ]; then
WP_I18N_LIB="/usr/lib/wpi18n";
fi
if [ $# -lt 1 ]; then
pluginDir=`pwd`
else
pluginDir="$1"
fi
if [ -z "$2" ]; then
textdomain=""
else
textdomain=$2
fi
if [ -d "$pluginDir/languages" ]; then
pluginBasename=$(basename "$pluginDir")
if [[ ! $textdomain ]]; then
textdomain="$pluginBasename"
fi
php "$WP_I18N_LIB/makepot.php" wp-plugin $pluginDir "$pluginDir/languages/$textdomain.pot"
elif [ -d "$pluginDir/lang" ]; then
pluginBasename=$(basename "$pluginDir")
if [[ ! $textdomain ]]; then
textdomain="$pluginBasename"
fi
php "$WP_I18N_LIB/makepot.php" wp-plugin $pluginDir "$pluginDir/lang/$textdomain.pot"
else
php "$WP_I18N_LIB/makepot.php" wp-plugin $pluginDir
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment