Revision: 2265
http://mrbs.svn.sourceforge.net/mrbs/?rev=2265&view=rev
Author: cimorrison
Date: 2012-01-27 21:37:22 +0000 (Fri, 27 Jan 2012)
Log Message:
-----------
Added some title notes to the import form
Modified Paths:
--------------
mrbs/trunk/web/import.php
mrbs/trunk/web/lang.en
Modified: mrbs/trunk/web/import.php
===================================================================
--- mrbs/trunk/web/import.php 2012-01-27 19:32:52 UTC (rev 2264)
+++ mrbs/trunk/web/import.php 2012-01-27 21:37:22 UTC (rev 2265)
@@ -461,7 +461,8 @@
echo "<legend>" . get_vocab("area_room_settings") . "</legend>\n";
echo "<div>\n";
-echo "<label>" . get_vocab("area_room_order") . ":</label>\n";
+echo "<label title=\"" . get_vocab("area_room_order_note") . "\">" .
+ get_vocab("area_room_order") . ":</label>\n";
echo "<div class=\"group\">\n";
echo "<label><input type=\"radio\" name=\"area_room_order\"
value=\"area_room\"" .
(($area_room_order == "area_room") ? " checked=\"checked\"" : "") . ">" .
@@ -473,7 +474,9 @@
echo "</div>\n";
echo "<div>\n";
-echo "<label for=\"area_room_delimiter\">" . get_vocab("area_room_delimiter")
. ":</label>\n";
+echo "<label for=\"area_room_delimiter\"" .
+ " title=\"" . get_vocab("area_room_delimiter_note") . "\">" .
+ get_vocab("area_room_delimiter") . ":</label>\n";
echo "<input type=\"text\" name=\"area_room_delimiter\"
id=\"area_room_delimiter\"" .
" value=\"" . htmlspecialchars($area_room_delimiter) . "\">\n";
echo "</div>\n";
Modified: mrbs/trunk/web/lang.en
===================================================================
--- mrbs/trunk/web/lang.en 2012-01-27 19:32:52 UTC (rev 2264)
+++ mrbs/trunk/web/lang.en 2012-01-27 21:37:22 UTC (rev 2265)
@@ -417,43 +417,45 @@
$vocab["for_any_questions"] = "for any questions that aren't answered here.";
// Used in import.php
-$vocab["import_icalendar"] = "Import an iCalendar file";
-$vocab["area_room_settings"] = "Areas and rooms";
-$vocab["other_settings"] = "Other settings";
-$vocab["import_intro"] = "This form allows you to import an RFC 5545
compliant " .
- "iCalendar file into MRBS. Only those
repeating events " .
- "that have a recurrence rule with an
equivalent repeat type in " .
- "MRBS will be imported.";
-$vocab["file_name"] = "File";
-$vocab["import"] = "Import";
-$vocab["upload_failed"] = "Upload failed";
-$vocab["max_allowed_file_size"] = "The maximum allowed file size is";
-$vocab["no_file"] = "No file was uploaded";
-$vocab["badly_formed_ics"] = "Badly formed VCALENDAR file";
-$vocab["area_room_order"] = "Order";
-$vocab["area_room"] = "Area-Room";
-$vocab["room_area"] = "Room-Area";
-$vocab["area_room_delimiter"] = "Delimiter";
-$vocab["area_room_create"] = "Create rooms if necessary";
-$vocab["default_type"] = "Default type";
-$vocab["area_does_not_exist"] = "Non-existent area:";
-$vocab["room_does_not_exist"] = "Non-existent room:";
-$vocab["creating_new_area"] = "Creating new area:";
-$vocab["creating_new_room"] = "Creating new room:";
-$vocab["could_not_create_area"] = "Could not create area";
-$vocab["could_not_create_room"] = "Could not create room";
-$vocab["could_not_find_room"] = "Could not find room";
-$vocab["could_not_import"] = "Could not import";
-$vocab["invalid_RRULE"] = "Invalid RRULE: missing FREQ part";
-$vocab["more_than_one_BYDAY"] = "MRBS does not support more than one BYDAY
value when FREQ=";
-$vocab["negative_BYDAY"] = "MRBS does not support negative BYDAY
values";
-$vocab["BYDAY_equals_5"] = "MRBS does not support a BYDAY value of 5";
-$vocab["unsupported_FREQ"] = "MRBS does not support FREQ=";
-$vocab["unsupported_INTERVAL"] = "MRBS does not support INTERVAL>1 with
FREQ=";
-$vocab["unsupported_COUNT"] = "COUNT not yet supported by MRBS";
-$vocab["no_indefinite_repeats"] = "Indefinite repeats not yet supported by
MRBS";
-$vocab["events_imported"] = "events imported";
-$vocab["events_not_imported"] = "events not imported";
+$vocab["import_icalendar"] = "Import an iCalendar file";
+$vocab["area_room_settings"] = "Areas and rooms";
+$vocab["other_settings"] = "Other settings";
+$vocab["import_intro"] = "This form allows you to import an RFC
5545 compliant " .
+ "iCalendar file into MRBS. Only those
repeating events " .
+ "that have a recurrence rule with an
equivalent repeat type in " .
+ "MRBS will be imported.";
+$vocab["file_name"] = "File";
+$vocab["import"] = "Import";
+$vocab["upload_failed"] = "Upload failed";
+$vocab["max_allowed_file_size"] = "The maximum allowed file size is";
+$vocab["no_file"] = "No file was uploaded";
+$vocab["badly_formed_ics"] = "Badly formed VCALENDAR file";
+$vocab["area_room_order"] = "Order";
+$vocab["area_room_order_note"] = "The order of the area and room names in
the LOCATION property";
+$vocab["area_room"] = "Area-Room";
+$vocab["room_area"] = "Room-Area";
+$vocab["area_room_delimiter"] = "Delimiter";
+$vocab["area_room_delimiter_note"] = "The string separating the area and room
names in the LOCATION property";
+$vocab["area_room_create"] = "Create rooms if necessary";
+$vocab["default_type"] = "Default type";
+$vocab["area_does_not_exist"] = "Non-existent area:";
+$vocab["room_does_not_exist"] = "Non-existent room:";
+$vocab["creating_new_area"] = "Creating new area:";
+$vocab["creating_new_room"] = "Creating new room:";
+$vocab["could_not_create_area"] = "Could not create area";
+$vocab["could_not_create_room"] = "Could not create room";
+$vocab["could_not_find_room"] = "Could not find room";
+$vocab["could_not_import"] = "Could not import";
+$vocab["invalid_RRULE"] = "Invalid RRULE: missing FREQ part";
+$vocab["more_than_one_BYDAY"] = "MRBS does not support more than one
BYDAY value when FREQ=";
+$vocab["negative_BYDAY"] = "MRBS does not support negative BYDAY
values";
+$vocab["BYDAY_equals_5"] = "MRBS does not support a BYDAY value of
5";
+$vocab["unsupported_FREQ"] = "MRBS does not support FREQ=";
+$vocab["unsupported_INTERVAL"] = "MRBS does not support INTERVAL>1 with
FREQ=";
+$vocab["unsupported_COUNT"] = "COUNT not yet supported by MRBS";
+$vocab["no_indefinite_repeats"] = "Indefinite repeats not yet supported by
MRBS";
+$vocab["events_imported"] = "events imported";
+$vocab["events_not_imported"] = "events not imported";
// Used in mysql.inc AND pgsql.inc
$vocab["failed_connect_db"] = "Fatal error: failed to connect to database";
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits