Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_entryproperties
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26085
Modified Files:
Tag: branch-smarty
serendipity_event_entryproperties.php
Log Message:
- Text
Index: serendipity_event_entryproperties.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_entryproperties/Attic/serendipity_event_entryproperties.php,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- serendipity_event_entryproperties.php 21 Sep 2004 20:39:32 -0000 1.1.2.1
+++ serendipity_event_entryproperties.php 21 Sep 2004 21:08:56 -0000 1.1.2.2
@@ -14,13 +14,13 @@
case 'en':
case 'es':
default:
- @define('PLUGIN_EVENT_ENTRYPROPERTIES_TITLE', 'Extended properties of entries');
+ @define('PLUGIN_EVENT_ENTRYPROPERTIES_TITLE', 'Extended properties for entries');
@define('PLUGIN_EVENT_ENTRYPROPERTIES_DESC', '(non-public articles, sticky posts)');
- @define('PLUGIN_EVENT_ENTRYPROPERTIES_STICKYPOSTS', 'Sticky Posts');
+ @define('PLUGIN_EVENT_ENTRYPROPERTIES_STICKYPOSTS', 'Mark this entry as a Sticky Post');
@define('PLUGIN_EVENT_ENTRYPROPERTIES_ACCESS', 'Entries can be read by');
- @define('PLUGIN_EVENT_ENTRYPROPERTIES_ACCESS_PRIVATE', 'myself');
- @define('PLUGIN_EVENT_ENTRYPROPERTIES_ACCESS_MEMBER', 'co-authors');
- @define('PLUGIN_EVENT_ENTRYPROPERTIES_ACCESS_PUBLIC', 'everyone');
+ @define('PLUGIN_EVENT_ENTRYPROPERTIES_ACCESS_PRIVATE', 'Myself');
+ @define('PLUGIN_EVENT_ENTRYPROPERTIES_ACCESS_MEMBER', 'Co-authors');
+ @define('PLUGIN_EVENT_ENTRYPROPERTIES_ACCESS_PUBLIC', 'Everyone');
break;
}
@@ -46,7 +46,7 @@
}
function generate_content(&$title) {
- $title = PLUGIN_EVENT_ENTRYPROPERTIES_TITLE . ' ' . PLUGIN_EVENT_ENTRYPROPERTIES_DESC;
+ $title = PLUGIN_EVENT_ENTRYPROPERTIES_TITLE;
}
function event_hook($event, &$bag, &$eventData, $addData = null) {
|