Changeset 359
- Timestamp:
- 01/15/2010 02:59:05 AM (2 years ago)
- Location:
- trunk/WordPress/plugin/transposh
- Files:
-
- 4 edited
-
build.sh (modified) (2 diffs)
-
core/constants.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
transposh.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WordPress/plugin/transposh/build.sh
r350 r359 57 57 echo "Adding .php files (without logging)" 58 58 for file in `find . -maxdepth 4 -iname '*.php'`; do 59 sed "s/logger.*;//;s/require_once.*(\"core.logging.*//;s/require_once.*(\'logging.*//;s/require_once.*(\"logging.*//;s/ <%VERSION%>/$VERSION/;" $file > $TRANSPOSH_DIR/$file59 sed "s/logger.*;//;s/require_once.*(\"core.logging.*//;s/require_once.*(\'logging.*//;s/require_once.*(\"logging.*//;s/%VERSION%/$VERSION/;" $file > $TRANSPOSH_DIR/$file 60 60 echo "added $file" 61 61 done; … … 72 72 #fixing version in readme.txt 73 73 # 74 sed "s/ <%VERSION%>/$VERSION/;" readme.txt > $TRANSPOSH_DIR/readme.txt74 sed "s/%VERSION%/$VERSION/;" readme.txt > $TRANSPOSH_DIR/readme.txt 75 75 echo "fixing version in readme.txt to $VERSION" 76 76 -
trunk/WordPress/plugin/transposh/core/constants.php
r346 r359 97 97 define("TRANSLATOR", 'translator'); 98 98 99 define("TRANSPOSH_PLUGIN_VER",' <%VERSION%>');99 define("TRANSPOSH_PLUGIN_VER",'%VERSION%'); 100 100 101 101 //Define segment id prefix, will be included in span tag. also used as class identifier -
trunk/WordPress/plugin/transposh/readme.txt
r356 r359 5 5 Requires at least: 2.7 6 6 Tested up to: 2.9.1 7 Stable tag: <%VERSION%>7 Stable tag: %VERSION% 8 8 9 9 Transposh filter allows in context quick translation of websites, it allows you to crowd-source the translation to your users -
trunk/WordPress/plugin/transposh/transposh.php
r355 r359 5 5 Description: Translation filter for WordPress, After enabling please set languages at the <a href="options-general.php?page=transposh">the options page</a> Want to help? visit our development site at <a href="http://trac.transposh.org/">trac.transposh.org</a>. 6 6 Author: Team Transposh 7 Version: <%VERSION%>7 Version: %VERSION% 8 8 Author URI: http://transposh.org/ 9 9 License: GPL (http://www.gnu.org/licenses/gpl.txt) … … 128 128 */ 129 129 function is_special_page($url) { 130 return ( stripos($url,'/wp-login.php') !== FALSE ||130 return ( stripos($url,'/wp-login.php') !== FALSE || 131 131 stripos($url,'/wp-admin/') !== FALSE || 132 132 stripos($url,'/xmlrpc.php') !== FALSE);
Note: See TracChangeset
for help on using the changeset viewer.
