Changeset 492
- Timestamp:
- 01/25/08 16:03:58 (9 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
admin/plog-manage.php (modified) (1 diff)
-
plog-globals.php (modified) (1 diff)
-
plog-remote.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/plog-manage.php
r424 r492 236 236 $output .= "<div style='float:right'><img src='$thumbpath'/></div>"; 237 237 238 $output .= '<label accesskey="c" for="caption"> <em>C</em>aption:</label><input size="80" name="caption" id="caption" value="'.SmartStripSlashes($photo['caption']).'"><br />239 <label> Description:</label><br />238 $output .= '<label accesskey="c" for="caption">' . plog_tr('<em>C</em>aption') . ':</label><input size="80" name="caption" id="caption" value="'.SmartStripSlashes($photo['caption']).'"><br /> 239 <label>' . plog_tr('Description') . ':</label><br /> 240 240 <textarea name="description" id="description" cols="60" rows="5">'.SmartStripSlashes($photo['description']).'</textarea><br /> 241 241 242 <label for="allow_comments" accesskey="w"> Allo<em>w</em> Comments?<label><br /><input type="checkbox" id="allow_comments" name="allow_comments" value="1"'." $state>";242 <label for="allow_comments" accesskey="w">' . plog_tr('Allo<em>w</em> Comments') . '?<label><br /><input type="checkbox" id="allow_comments" name="allow_comments" value="1"'." $state>"; 243 243 244 244 $output .= '<input type="hidden" name="pid" value="'.$photo['id'].'"><input type="hidden" 245 name="action" value="update-picture"><button class="submit" type="submit"> Update</button>';245 name="action" value="update-picture"><button class="submit" type="submit">' . plog_tr('Update') . '</button>'; 246 246 247 247 $output .= '</form>'; -
trunk/plog-globals.php
r491 r492 20 20 21 21 22 23 require_once("lib/gettext/streams.php"); 24 require_once("lib/gettext/gettext.php"); 22 if (!class_exists(streamreader)) { 23 require_once("lib/gettext/streams.php"); 24 require_once("lib/gettext/gettext.php"); 25 } 25 26 26 27 $locale = "en_US"; -
trunk/plog-remote.php
r422 r492 11 11 require("plog-functions.php"); 12 12 require("plog-globals.php"); 13 require_once("plog-load_config.php"); 13 14 include("admin/plog-admin-functions.php"); 14 15
