* Added another gettext package: bongo-web. This is for Dragonfly+Hawkeye translations. The old bongo package remains. This is for the core of Bongo, for example the CLI apps.

* Made the po/ system more flexible. Simply drop a .po file in either po/bongo/ or po/bongo-web/ and everything's done for you.
* Fixed a dirty hack about dist_noinst_DATA. $POFILES was being used ~2000 lines before being set. Thiss is now set much earlier on, from configure.ac.
* POTFILES.in split into .bongo and .bongo-web for the respective gettext package.
This commit is contained in:
jonnylamb
2007-07-12 13:15:48 +00:00
parent 41ed4dedc7
commit 8ea2a88dcc
8 changed files with 823 additions and 1436 deletions
+7 -1
View File
@@ -433,11 +433,17 @@ AC_MSG_CHECKING([for Apache module directory])
AC_MSG_RESULT([$APACHE_MOD_DIR])
htl10n_jsfiles=
for lang in en `cd po && ls *.po | sed s/.po$//`; do
for lang in en `cd po && cd bongo-web && ls *.po | sed s/.po$//`; do
htl10n_jsfiles="$htl10n_jsfiles src/www/l10n/$lang.js"
done
AC_SUBST(htl10n_jsfiles)
POFILES=
for file in `find po -name *.po`; do
POFILES="$POFILES $file"
done
AC_SUBST(POFILES)
PTHREAD_CFLAGS=
PTHREAD_LIBS=
# Check taken from glib
+23 -10
View File
@@ -1,30 +1,42 @@
# -*- Makefile -*-
POFILES = po/fr.po
GMOFILES=$(POFILES:.po=.gmo)
dist_noinst_DATA += po/fr.po \
po/bongo.pot \
po/POTFILES.in
dist_noinst_DATA += $(POFILES) \
po/bongo.pot \
po/bongo-web.pot \
po/POTFILES.bongo \
po/POTFILES.bongo-web
po/all: update-gmo
po/clean: clean
rm -f po/*.gmo
for file in ${GMOFILES}; do \
rm -f $$file; \
done
po/install: po/all
for file in $(GMOFILES); do \
lang=`echo $$file | sed -e 's,.*/,,' | sed -e 's/.gmo//'`; \
$(MKINSTALLDIRS) $(DESTDIR)/$(localedir)/$$lang/LC_MESSAGES/; \
$(INSTALL) -m 0644 $$file $(DESTDIR)/$(localedir)/$$lang/LC_MESSAGES/bongo.gmo; \
installfilename=`echo $$file | sed -e 's,po/\([^/]*\)/.*,\1,'`; \
$(INSTALL) -m 0644 $$file $(DESTDIR)/$(localedir)/$$lang/LC_MESSAGES/$$installfilename.gmo; \
done
bongo.pot:
update-pot:
$(XGETTEXT) --directory=$(srcdir) \
--add-comments=translators \
--keyword=_ --keyword=N_ --keyword=M_ \
--files-from=$(srcdir)/po/POTFILES.in \
--files-from=$(srcdir)/po/POTFILES.bongo \
--msgid-bugs-address="bongo-devel@gna.org" \
-o po/bongo.pot
# This is a bit of a hack. Nevertheless, it works, I hope.
# NOTE: add "-L python" when the props stuff is gone
$(XGETTEXT) --directory=$(srcdir) \
--add-comments=translators \
--keyword=_ --keyword=N_ --keyword=M_ \
--files-from=$(srcdir)/po/POTFILES.bongo-web \
--msgid-bugs-address="bongo-devel@gna.org" \
-o po/bongo-web.pot
update-gmo: ${GMOFILES}
@@ -33,5 +45,6 @@ update-po: ${POFILES}-update update-gmo
%.gmo:
rm -f $@ && $(GMSGFMT) -o $@ $*.po
%.po-update: bongo.pot
$(MSGMERGE) $*.po po/bongo.pot -o $*.po
%.po-update: update-pot
whichpotfile=`echo $*.po | sed -e 's,po/\([^/]*\)/.*,\1,'`; \
$(MSGMERGE) $*.po po/$$whichpotfile.pot -o $*.po;
-1
View File
@@ -1,5 +1,4 @@
# List of source files which contain translatable strings.
src/www/l10n/dragonfly.properties
src/apps/config/config.c
src/apps/backup/backup.c
src/apps/manager/manager.c
+1
View File
@@ -0,0 +1 @@
src/www/l10n/dragonfly.properties
+640
View File
@@ -0,0 +1,640 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: bongo-devel@gna.org\n"
"POT-Creation-Date: 2007-07-12 13:17+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "genericError"
msgstr "An error has occured:"
msgid "genericErrorOK"
msgstr "Bummer"
msgid "loginNameLabel"
msgstr "Name:"
msgid "loginPasswordLabel"
msgstr "Password:"
msgid "loginLanguageLabel"
msgstr "Language:"
msgid "loginRememberMeLabel"
msgstr "Remember Me"
msgid "loginLoginLabel"
msgstr "Log In"
msgid "loggedOutMessage"
msgstr "You have successfully logged out."
msgid "loggingInMessage"
msgstr "Logging you in..."
msgid "wrongCredentials"
msgstr "Bad username or password."
msgid "genericLoginError"
msgstr "Error logging in (check Logs)."
msgid "loadingData"
msgstr "Logged in: loading contacts and calendars..."
msgid "loadingItemPre"
msgstr "Logged in: loading"
msgid "loadingItemPost"
msgstr "..."
msgid "administrationLabel"
msgstr "Administration"
msgid "logoutLabel"
msgstr "Log out"
msgid "preferencesLabel"
msgstr "Preferences"
msgid "searchButtonLabel"
msgstr "Search"
msgid "summaryTabLabel"
msgstr "Summary"
msgid "summaryTabHint"
msgstr "Look at an overview of your mail and events."
msgid "mailTabLabel"
msgstr "Mail"
msgid "mailTabHint"
msgstr "Read your mail."
msgid "calendarTabLabel"
msgstr "Calendar"
msgid "calendarTabHint"
msgstr "View your calendar."
msgid "composeMailLabel"
msgstr "Compose New Mail"
msgid "composeEventLabel"
msgstr "Create New Event"
msgid "summaryNoMail"
msgstr "You have no new mail."
msgid "upcomingEvents"
msgstr "Upcoming events"
msgid "showToday"
msgstr "Show Today"
msgid "viewInCal"
msgstr "View in calendar"
msgid "starredMailLabel"
msgstr "Starred Mail"
msgid "summaryMailToMeLabel"
msgstr "Mail to Me"
msgid "contactMailLabel"
msgstr "Mail from My Contacts"
msgid "listMailLabel"
msgstr "Mail from Mailing Lists"
msgid "invitationsLabel"
msgstr "Invitations"
msgid "summaryInviteFrom"
msgstr "from"
msgid "shareCalendar"
msgstr "Share this calendar"
msgid "contactAddLabel"
msgstr "Add Contact"
msgid "contactShowConversations"
msgstr "Show Conversations"
msgid "contactEditLabel"
msgstr "Edit"
msgid "contactSelf"
msgstr "This is Me"
msgid "contactConfirmRemovePre"
msgstr "Are you sure you want to delete the contact"
msgid "contactEmail"
msgstr "Email"
msgid "contactPhone"
msgstr "Phone"
msgid "contactFax"
msgstr "Fax"
msgid "contactMobile"
msgstr "Cell"
msgid "contactIM"
msgstr "IM"
msgid "contactWebsite"
msgstr "Website"
msgid "contactCompany"
msgstr "Company"
msgid "contactAddress"
msgstr "Address"
msgid "genericCancel"
msgstr "Cancel"
msgid "genericSave"
msgstr "Save"
msgid "genericDelete"
msgstr "Delete"
msgid "genericEdit"
msgstr "Edit"
msgid "genericAdd"
msgstr "Add"
msgid "genericSavingChanges"
msgstr "Saving changes..."
msgid "genericChangesSaved"
msgstr "Changes saved."
msgid "genericPrevious"
msgstr "Previous"
msgid "genericPreviousShort"
msgstr "Prev"
msgid "genericNext"
msgstr "Next"
msgid "genericRemovePost"
msgstr "? This cannot be undone."
msgid "unsavedChanges"
msgstr "You have unsaved changes."
msgid "monday"
msgstr "Monday"
msgid "monday-s"
msgstr "M"
msgid "tuesday"
msgstr "Tuesday"
msgid "tuesday-s"
msgstr "T"
msgid "wednesday"
msgstr "Wednesday"
msgid "wednesday-s"
msgstr "W"
msgid "thursday"
msgstr "Thursday"
msgid "thursday-s"
msgstr "T"
msgid "friday"
msgstr "Friday"
msgid "friday-s"
msgstr "F"
msgid "saturday"
msgstr "Saturday"
msgid "saturday-s"
msgstr "S"
msgid "sunday"
msgstr "Sunday"
msgid "sunday-s"
msgstr "S"
msgid "day"
msgstr "Day "
msgid "upcoming"
msgstr "Upcoming"
msgid "week"
msgstr "Week"
msgid "month"
msgstr "Month"
msgid "calendarView"
msgstr "View:"
msgid "freeFormInstructions"
msgstr "Enter free-form text for example:"
msgid "freeFormExample"
msgstr "lunch with Joe tomorrow at noon"
msgid "freeFormOption"
msgstr "or,"
msgid "freeFormOptionBody"
msgstr "enter details instead"
msgid "freeFormAddLabel"
msgstr "Add Event"
msgid "deleteEventConfirm"
msgstr "Are you sure you want to delete the event"
msgid "eventSeriesIntro"
msgstr "This event is part of a series. Would you like"
msgid "eventSeriesChanges"
msgstr "changes to apply to"
msgid "eventSeriesDelete"
msgstr "to delete"
msgid "eventScopeSingle"
msgstr "only this event"
msgid "eventScopeFollowing"
msgstr "this and following events"
msgid "eventScopeAll"
msgstr "all events in series"
msgid "includeEventLabel"
msgstr "Include this event in:"
msgid "publishEventSelf"
msgstr "Publish this event on its own"
msgid "allDayLabel"
msgstr "all day"
msgid "eventInfoTabLabel"
msgstr "Event"
msgid "eventSharingTabLabel"
msgstr "Sharing"
msgid "eventRepeatTabLabel"
msgstr "Repeat"
msgid "eventSummaryHint"
msgstr "Summary"
msgid "eventLocationHint"
msgstr "Location"
msgid "eventNoteHint"
msgstr "Notes"
msgid "eventDefaultTitle"
msgstr "New event"
msgid "eventSubscribe"
msgstr "Subscribe"
msgid "defaultCalendarName"
msgstr "New calendar"
msgid "calendarNameLabel"
msgstr "Name:"
msgid "calendarUrlLabel"
msgstr "URL:"
msgid "calendarPasswordLabel"
msgstr "Password:"
msgid "calendarColorLabel"
msgstr "Color:"
msgid "calendarImportICSLabel"
msgstr "Import ICS file:"
msgid "calendarSearchableLabel"
msgstr "Allow other users to search for this calendar"
msgid "calendarPasswordProtectLabel"
msgstr "Password protect this calendar"
msgid "calendarSendInvitation"
msgstr "Send invitation..."
msgid "createNewCalendarLabel"
msgstr "Create calendar"
msgid "subscribeCalendarLabel"
msgstr "Unsubscribe"
msgid "calendarSubscribing"
msgstr "Subscribing to"
msgid "calendarErrorSubscribing"
msgstr "Could not subscribe to"
msgid "inviteDefaultText"
msgstr "has invited you to:"
msgid "inviteCalendarPre"
msgstr "Calendar:"
msgid "inviteTrustTextPre"
msgstr "has invited you to a calendar called"
msgid "inviteTrustTextPost"
msgstr "You should only subscribe if you trust this person and the server"
msgid "calendarShareLine1"
msgstr "Someone wants to share their calendar with you."
msgid "calendarShareLine2"
msgstr "You can view it in a few different ways:"
msgid "caldav"
msgstr "CalDAV"
msgid "ics"
msgstr "ICS"
msgid "webBrowser"
msgstr "Web Browser"
msgid "calendarShareFinalLine"
msgstr "If a password is needed, please ask me for it."
msgid "calendarShareSubjectPre"
msgstr "Invitation to"
msgid "calendarShareSubjectPost"
msgstr "'s calendar"
msgid "calendarShareBasicTab"
msgstr "Basic"
msgid "calendarShareDetailedTab"
msgstr "Detailed"
msgid "calendarShareEmailLabel"
msgstr "Email:"
msgid "calendarShareSelect"
msgstr "Select:"
msgid "calendarShareSelectAll"
msgstr "All"
msgid "calendarShareSelectNone"
msgstr "None"
msgid "calendarShareCurrentPasswordLabel"
msgstr "Current password:"
msgid "calendarShareNewPassword"
msgstr "Password:"
msgid "calendarShareNewPasswordConfirm"
msgstr "Password (confirm):"
msgid "buttonArchiveLabel"
msgstr "Archive"
msgid "buttonJunkLabel"
msgstr "Junk"
msgid "buttonIgnoreLabel"
msgstr "Ignore"
msgid "buttonStarLabel"
msgstr "Star"
msgid "buttonUnarchiveLabel"
msgstr "Unarchive"
msgid "buttonNotJunkLabel"
msgstr "Not Junk"
msgid "buttonUndeleteLabel"
msgstr "Undelete"
msgid "buttonUnstarLabel"
msgstr "Unstar"
msgid "buttonAddLabel"
msgstr "Add"
msgid "buttonRemoveLabel"
msgstr "Remove"
msgid "repeatLabel"
msgstr "Repeat:"
msgid "repeatEveryLabel"
msgstr "Every:"
msgid "repeatOnLabel"
msgstr "On:"
msgid "repeatEndingLabel"
msgstr "Ending:"
msgid "repeatEndNeverLabel"
msgstr "Never"
msgid "repeatEndOnDateLabel"
msgstr "On date "
msgid "repeatEndAfterRepeatLabel"
msgstr "After repeating"
msgid "repeatCautionHeadingLabel"
msgstr "Caution"
msgid "repeatCautionBodyText"
msgstr ""
"This event has a schedule that cannot be edited with Bongo; choosing to edit "
"will replace the existing schedule."
msgid "repeatEditAnywayLabel"
msgstr "Edit Anyway"
msgid "calendarYesterdayLabel"
msgstr "Yesterday"
msgid "calendarTodayLabel"
msgstr "Today"
msgid "calendarTomorrowLabel"
msgstr "Tomorrow"
msgid "mailAllLabel"
msgstr "All"
msgid "mailToMeSelectionLabel"
msgstr "To Me"
msgid "mailFromContactsLabel"
msgstr "From My Contacts"
msgid "mailSubscriptionsLabel"
msgstr "Mailing Lists"
msgid "mailNoMessages"
msgstr "No messages found."
msgid "mailMoreSuffix"
msgstr "more..."
msgid "mailTo"
msgstr "To:"
msgid "mailFrom"
msgstr "From:"
msgid "mailCc"
msgstr "CC:"
msgid "mailBcc"
msgstr "BCC:"
msgid "mailSubject"
msgstr "Subject:"
msgid "mailAttachments"
msgstr "Attachments:"
msgid "mailAttachLabel"
msgstr "Attach file..."
msgid "mailRemoveAttachment"
msgstr "Remove"
msgid "mailConversation"
msgstr "Conversation"
msgid "mailList"
msgstr "List"
msgid "mailItem"
msgstr "Item"
msgid "mailView"
msgstr "View"
msgid "mailDiscard"
msgstr "Discard"
msgid "mailDraft"
msgstr "Save draft"
msgid "mailSend"
msgstr "Send"
msgid "toolbarSelectAll"
msgstr "Select All"
msgid "toolbarDeselectAll"
msgstr "Deselect All"
msgid "dateStartOn"
msgstr "Start on:"
msgid "dateEndOn"
msgstr "End on:"
msgid "dateAtLabel"
msgstr "at"
msgid "mailSetAllLabel"
msgstr "All"
msgid "mailSetInboxLabel"
msgstr "Inbox"
msgid "mailSetStarredLabel"
msgstr "Starred"
msgid "mailSetSentLabel"
msgstr "Sent"
msgid "mailSetJunkLabel"
msgstr "Junk"
msgid "mailSetDraftsLabel"
msgstr "Drafts"
msgid "mailSetTrashLabel"
msgstr "Trash"
msgid "mailConversationsLabel"
msgstr "Conversations"
msgid "mailContactsLabel"
msgstr "Contacts"
msgid "mailToMeLabel"
msgstr "To Me"
msgid "mailMailingListsLabel"
msgstr "Mailing Lists"
msgid "mailForward"
msgstr "Forward"
msgid "mailReplyToAll"
msgstr "Reply to All"
msgid "mailReplyToSender"
msgstr "Reply to Sender"
msgid "mailReplyToList"
msgstr "Reply to List"
msgid "mail"
msgstr "Mail"
msgid "inbox"
msgstr "Inbox"
msgid "sent"
msgstr "Sent"
msgid "trash"
msgstr "Trash"
msgid "junk"
msgstr "Junk"
+150 -781
View File
File diff suppressed because it is too large Load Diff
-641
View File
@@ -16,647 +16,6 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "genericError"
msgstr "Une erreur s'est produite:"
msgid "genericErrorOK"
msgstr "Bummér"
msgid "loginNameLabel"
msgstr "Nom:"
msgid "loginPasswordLabel"
msgstr "Mot de passe:"
msgid "loginLanguageLabel"
msgstr "Langue:"
msgid "loginRememberMeLabel"
msgstr "Se rappeler me"
msgid "loginLoginLabel"
msgstr "Connexion"
msgid "loggedOutMessage"
msgstr "Vous vous êtes avec succès déconnectés."
msgid "loggingInMessage"
msgstr "Vous authentifiant..."
msgid "wrongCredentials"
msgstr "Mauvais nom ou mot de passe."
msgid "genericLoginError"
msgstr "Connexion erreur (notations de contrôle)."
msgid "loadingData"
msgstr "Entré: contacts et calendriers de chargement..."
msgid "loadingItemPre"
msgstr "Entré:"
msgid "loadingItemPost"
msgstr " de chargement..."
msgid "administrationLabel"
msgstr "Administration"
msgid "logoutLabel"
msgstr "Se déconnecter"
msgid "preferencesLabel"
msgstr "Préférences"
msgid "searchButtonLabel"
msgstr "Recherche"
msgid "summaryTabLabel"
msgstr "Résumé"
msgid "summaryTabHint"
msgstr "Regarder une vue d'ensemble de votre courrier et événements."
msgid "mailTabLabel"
msgstr "Courrier"
msgid "mailTabHint"
msgstr "Lire votre courrier."
msgid "calendarTabLabel"
msgstr "Calendrier"
msgid "calendarTabHint"
msgstr "Regarder votre calendrier."
msgid "composeMailLabel"
msgstr "Composer le nouveau courrier"
msgid "composeEventLabel"
msgstr "Créer le nouvel événement"
msgid "summaryNoMail"
msgstr "Vous n'avez aucun nouveau courrier."
msgid "upcomingEvents"
msgstr "Upcoming events"
msgid "showToday"
msgstr "Montrer aujourd'hui"
msgid "viewInCal"
msgstr "Vue dans le calendrier"
msgid "starredMailLabel"
msgstr "Starred Mail"
msgid "summaryMailToMeLabel"
msgstr "Mail to Me"
msgid "contactMailLabel"
msgstr "Mail from My Contacts"
msgid "listMailLabel"
msgstr "Mail from Mailing Lists"
msgid "invitationsLabel"
msgstr "Invitations"
msgid "summaryInviteFrom"
msgstr "from"
msgid "shareCalendar"
msgstr "Share this calendar"
msgid "contactAddLabel"
msgstr "Ajouter le contact"
msgid "contactShowConversations"
msgstr "Montrer les conversations"
msgid "contactEditLabel"
msgstr "Éditer"
msgid "contactSelf"
msgstr "This is Me"
msgid "contactConfirmRemovePre"
msgstr "Are you sure you want to delete the contact"
msgid "contactEmail"
msgstr "Email"
msgid "contactPhone"
msgstr "Phone"
msgid "contactFax"
msgstr "Fax"
msgid "contactMobile"
msgstr "Cell"
msgid "contactIM"
msgstr "IM"
msgid "contactWebsite"
msgstr "Website"
msgid "contactCompany"
msgstr "Company"
msgid "contactAddress"
msgstr "Address"
msgid "genericCancel"
msgstr "Annulation"
msgid "genericSave"
msgstr "Économiser"
msgid "genericDelete"
msgstr "Effacement"
msgid "genericEdit"
msgstr "Éditer"
msgid "genericAdd"
msgstr "Ajouter"
msgid "genericSavingChanges"
msgstr "Saving changes..."
msgid "genericChangesSaved"
msgstr "Changes saved."
msgid "genericPrevious"
msgstr "Previous"
msgid "genericPreviousShort"
msgstr "Prev"
msgid "genericNext"
msgstr "Next"
msgid "genericRemovePost"
msgstr "? This cannot be undone."
msgid "unsavedChanges"
msgstr "You have unsaved changes."
msgid "monday"
msgstr "Monday"
msgid "monday-s"
msgstr "M"
msgid "tuesday"
msgstr "Tuesday"
msgid "tuesday-s"
msgstr "T"
msgid "wednesday"
msgstr "Wednesday"
msgid "wednesday-s"
msgstr "W"
msgid "thursday"
msgstr "Thursday"
msgid "thursday-s"
msgstr "T"
msgid "friday"
msgstr "Friday"
msgid "friday-s"
msgstr "F"
msgid "saturday"
msgstr "Saturday"
msgid "saturday-s"
msgstr "S"
msgid "sunday"
msgstr "Sunday"
msgid "sunday-s"
msgstr "S"
msgid "day"
msgstr "Day "
msgid "upcoming"
msgstr "Upcoming"
msgid "week"
msgstr "Week"
msgid "month"
msgstr "Month"
msgid "calendarView"
msgstr "View:"
msgid "freeFormInstructions"
msgstr "Enter free-form text for example:"
msgid "freeFormExample"
msgstr "lunch with Joe tomorrow at noon"
msgid "freeFormOption"
msgstr "or"
msgid "freeFormOptionBody"
msgstr "enter details instead"
msgid "freeFormAddLabel"
msgstr "Add Event"
msgid "deleteEventConfirm"
msgstr "Are you sure you want to delete the event"
msgid "eventSeriesIntro"
msgstr "This event is part of a series. Would you like"
msgid "eventSeriesChanges"
msgstr "changes to apply to"
msgid "eventSeriesDelete"
msgstr "to delete"
msgid "eventScopeSingle"
msgstr "only this event"
msgid "eventScopeFollowing"
msgstr "this and following events"
msgid "eventScopeAll"
msgstr "all events in series"
msgid "includeEventLabel"
msgstr "Include this event in:"
msgid "publishEventSelf"
msgstr "Publish this event on its own"
msgid "allDayLabel"
msgstr "all day"
msgid "eventInfoTabLabel"
msgstr "Event"
msgid "eventSharingTabLabel"
msgstr "Sharing"
msgid "eventRepeatTabLabel"
msgstr "Repeat"
msgid "eventSummaryHint"
msgstr "Summary"
msgid "eventLocationHint"
msgstr "Location"
msgid "eventNoteHint"
msgstr "Notes"
msgid "eventDefaultTitle"
msgstr "New event"
msgid "eventSubscribe"
msgstr "Subscribe"
msgid "defaultCalendarName"
msgstr "New calendar"
msgid "calendarNameLabel"
msgstr "Name:"
#, fuzzy
msgid "calendarUrlLabel"
msgstr "Color:"
#, fuzzy
msgid "calendarPasswordLabel"
msgstr "Password protect this calendar"
msgid "calendarColorLabel"
msgstr "Color:"
msgid "calendarImportICSLabel"
msgstr "Import ICS file:"
msgid "calendarSearchableLabel"
msgstr "Allow other users to search for this calendar"
msgid "calendarPasswordProtectLabel"
msgstr "Password protect this calendar"
msgid "calendarSendInvitation"
msgstr "Send invitation..."
msgid "createNewCalendarLabel"
msgstr "Create calendar"
msgid "subscribeCalendarLabel"
msgstr "Unsubscribe"
#, fuzzy
msgid "calendarSubscribing"
msgstr "Regarder votre calendrier."
msgid "calendarErrorSubscribing"
msgstr "Could not subscribe to"
msgid "inviteDefaultText"
msgstr "has invited you to:"
msgid "inviteCalendarPre"
msgstr "Calendar:"
#, fuzzy
msgid "inviteTrustTextPre"
msgstr "has invited you to:"
#, fuzzy
msgid "inviteTrustTextPost"
msgstr "has invited you to:"
#, fuzzy
msgid "calendarShareLine1"
msgstr "Name:"
#, fuzzy
msgid "calendarShareLine2"
msgstr "Name:"
msgid "caldav"
msgstr "CalDAV"
msgid "ics"
msgstr "ICS"
msgid "webBrowser"
msgstr "Web Browser"
#, fuzzy
msgid "calendarShareFinalLine"
msgstr "Allow other users to search for this calendar"
#, fuzzy
msgid "calendarShareSubjectPre"
msgstr "Allow other users to search for this calendar"
msgid "calendarShareSubjectPost"
msgstr "'s calendar"
#, fuzzy
msgid "calendarShareBasicTab"
msgstr "Allow other users to search for this calendar"
#, fuzzy
msgid "calendarShareDetailedTab"
msgstr "Allow other users to search for this calendar"
#, fuzzy
msgid "calendarShareEmailLabel"
msgstr "Allow other users to search for this calendar"
#, fuzzy
msgid "calendarShareSelect"
msgstr "Name:"
#, fuzzy
msgid "calendarShareSelectAll"
msgstr "Select All"
#, fuzzy
msgid "calendarShareSelectNone"
msgstr "Allow other users to search for this calendar"
#, fuzzy
msgid "calendarShareCurrentPasswordLabel"
msgstr "Password protect this calendar"
#, fuzzy
msgid "calendarShareNewPassword"
msgstr "Password protect this calendar"
msgid "calendarShareNewPasswordConfirm"
msgstr "Password (confirm):"
msgid "buttonArchiveLabel"
msgstr "Archive"
msgid "buttonJunkLabel"
msgstr "Junk"
msgid "buttonIgnoreLabel"
msgstr "Ignore"
msgid "buttonStarLabel"
msgstr "Star"
msgid "buttonUnarchiveLabel"
msgstr "Unarchive"
msgid "buttonNotJunkLabel"
msgstr "Not Junk"
msgid "buttonUndeleteLabel"
msgstr "Undelete"
msgid "buttonUnstarLabel"
msgstr "Unstar"
msgid "buttonAddLabel"
msgstr "Add"
msgid "buttonRemoveLabel"
msgstr "Remove"
msgid "repeatLabel"
msgstr "Repeat:"
msgid "repeatEveryLabel"
msgstr "Every:"
msgid "repeatOnLabel"
msgstr "On:"
msgid "repeatEndingLabel"
msgstr "Ending:"
msgid "repeatEndNeverLabel"
msgstr "Never"
msgid "repeatEndOnDateLabel"
msgstr "On date "
msgid "repeatEndAfterRepeatLabel"
msgstr "After repeating"
msgid "repeatCautionHeadingLabel"
msgstr "Caution"
msgid "repeatCautionBodyText"
msgstr ""
"This event has a schedule that cannot be edited with Bongo; choosing to edit "
"will replace the existing schedule."
msgid "repeatEditAnywayLabel"
msgstr "Edit Anyway"
msgid "calendarYesterdayLabel"
msgstr "Yesterday"
msgid "calendarTodayLabel"
msgstr "Today"
msgid "calendarTomorrowLabel"
msgstr "Tomorrow"
msgid "mailAllLabel"
msgstr "All"
#, fuzzy
msgid "mailToMeSelectionLabel"
msgstr "To Me"
msgid "mailFromContactsLabel"
msgstr "From My Contacts"
msgid "mailSubscriptionsLabel"
msgstr "Mailing Lists"
msgid "mailNoMessages"
msgstr "No messages found."
msgid "mailMoreSuffix"
msgstr "more..."
msgid "mailTo"
msgstr "To:"
msgid "mailFrom"
msgstr "From:"
msgid "mailCc"
msgstr "CC:"
msgid "mailBcc"
msgstr "BCC:"
msgid "mailSubject"
msgstr "Subject:"
msgid "mailAttachments"
msgstr "Attachments:"
msgid "mailAttachLabel"
msgstr "Attach file..."
msgid "mailRemoveAttachment"
msgstr "Remove"
msgid "mailConversation"
msgstr "Conversation"
msgid "mailList"
msgstr "List"
msgid "mailItem"
msgstr "Item"
msgid "mailView"
msgstr "View"
msgid "mailDiscard"
msgstr "Discard"
msgid "mailDraft"
msgstr "Save draft"
msgid "mailSend"
msgstr "Send"
msgid "toolbarSelectAll"
msgstr "Select All"
msgid "toolbarDeselectAll"
msgstr "Deselect All"
msgid "dateStartOn"
msgstr "Start on:"
msgid "dateEndOn"
msgstr "End on:"
msgid "dateAtLabel"
msgstr "at"
msgid "mailSetAllLabel"
msgstr "All"
msgid "mailSetInboxLabel"
msgstr "Inbox"
msgid "mailSetStarredLabel"
msgstr "Starred"
msgid "mailSetSentLabel"
msgstr "Sent"
msgid "mailSetJunkLabel"
msgstr "Junk"
msgid "mailSetDraftsLabel"
msgstr "Drafts"
msgid "mailSetTrashLabel"
msgstr "Trash"
msgid "mailConversationsLabel"
msgstr "Conversations"
msgid "mailContactsLabel"
msgstr "Contacts"
msgid "mailToMeLabel"
msgstr "To Me"
msgid "mailMailingListsLabel"
msgstr "Mailing Lists"
msgid "mailForward"
msgstr "Forward"
msgid "mailReplyToAll"
msgstr "Reply to All"
msgid "mailReplyToSender"
msgstr "Reply to Sender"
msgid "mailReplyToList"
msgstr "Reply to List"
msgid "mail"
msgstr "Courrier"
msgid "inbox"
msgstr "Inbox"
msgid "sent"
msgstr "Sent"
msgid "trash"
msgstr "Trash"
msgid "junk"
msgstr "Junk"
#: src/apps/config/config.c:47
#, c-format
msgid "bongo-config: Could not drop to unpriviliged user '%s'\n"
+2 -2
View File
@@ -415,8 +415,8 @@ props2json := $(top_srcdir)/src/www/l10n/props2json
dfly_props := $(top_srcdir)/src/www/l10n/dragonfly.properties
if USE_NLS
src/www/l10n/%.js: po/%.gmo $(dfly_props) config.status
$(props2json) -i $(dfly_props) -p $(dir $<) -o $@ -l $(patsubst po/%.gmo,%,$<)
src/www/l10n/%.js: po/bongo-web/%.gmo $(dfly_props) config.status
$(props2json) -i $(dfly_props) -p $(dir $<) -o $@ -l $(patsubst po/bongo-web/%.gmo,%,$<)
src/www/l10n/en.js: $(dfly_props) config.status
$(props2json) -i $(dfly_props) -o $@ -l en