From stephan at xfce.org Sun Jun 1 00:14:04 2008 From: stephan at xfce.org (Stephan Arts) Date: Sat, 31 May 2008 22:14:04 +0000 (UTC) Subject: [Goodies-commits] r4869 - ristretto/trunk/src Message-ID: <20080531221404.924D5F29DD@mocha.foo-projects.org> Author: stephan Date: 2008-05-31 22:14:04 +0000 (Sat, 31 May 2008) New Revision: 4869 Modified: ristretto/trunk/src/main_window.c ristretto/trunk/src/navigator.c ristretto/trunk/src/navigator.h Log: Add dialog to notify a user of changes and that he might want to save them Modified: ristretto/trunk/src/main_window.c =================================================================== --- ristretto/trunk/src/main_window.c 2008-05-31 21:11:15 UTC (rev 4868) +++ ristretto/trunk/src/main_window.c 2008-05-31 22:14:04 UTC (rev 4869) @@ -915,8 +915,24 @@ rstto_main_window_dispose(GObject *object) { RsttoMainWindow *window = RSTTO_MAIN_WINDOW(object); - if (window->priv->navigator) + RsttoNavigator *navigator = window->priv->navigator; + + if (navigator) { + GList *iter, *modified_files = NULL; + + for (iter = navigator->file_list; iter != NULL; iter = iter->next) + { + if (rstto_navigator_entry_get_modified((RsttoNavigatorEntry *)iter->data)) + modified_files = g_list_append (modified_files, iter->data); + } + + if (modified_files) + { + GtkWidget *dialog = gtk_message_dialog_new (NULL, 0, GTK_MESSAGE_QUESTION, GTK_BUTTONS_CLOSE, "This dialog should notify that changes where made to one or more images and that you might want to save them. It won't let you do this yet though."); + gtk_dialog_run (GTK_DIALOG(dialog)); + } + g_object_unref(window->priv->navigator); window->priv->navigator = NULL; } Modified: ristretto/trunk/src/navigator.c =================================================================== --- ristretto/trunk/src/navigator.c 2008-05-31 21:11:15 UTC (rev 4868) +++ ristretto/trunk/src/navigator.c 2008-05-31 22:14:04 UTC (rev 4869) @@ -109,6 +109,8 @@ gboolean v_flipped; gint x_offset; gint y_offset; + + gboolean modified; }; @@ -910,7 +912,6 @@ { GtkIconTheme *theme = gtk_icon_theme_get_default(); entry->thumb = gtk_icon_theme_load_icon (theme, thunar_vfs_mime_info_lookup_icon_name (info->mime_info, theme), size, 0, NULL); - } } else @@ -972,6 +973,7 @@ entry->src_pixbuf = gdk_pixbuf_rotate_simple(pixbuf, (360+(rotation-entry->rotation))%360); } entry->rotation = rotation; + entry->modified = TRUE; g_signal_emit(G_OBJECT(entry->navigator), rstto_navigator_signals[RSTTO_NAVIGATOR_SIGNAL_ENTRY_MODIFIED], 0, entry, NULL); } @@ -1030,6 +1032,12 @@ } gboolean +rstto_navigator_entry_get_modified (RsttoNavigatorEntry *entry) +{ + return entry->modified; +} + +gboolean rstto_navigator_entry_load_image (RsttoNavigatorEntry *entry, gboolean empty_cache) { g_return_val_if_fail(entry != NULL, FALSE); Modified: ristretto/trunk/src/navigator.h =================================================================== --- ristretto/trunk/src/navigator.h 2008-05-31 21:11:15 UTC (rev 4868) +++ ristretto/trunk/src/navigator.h 2008-05-31 22:14:04 UTC (rev 4869) @@ -168,6 +168,9 @@ gboolean rstto_navigator_open_folder(RsttoNavigator *navigator, const gchar *path, gboolean clear, GError **error); +gboolean +rstto_navigator_entry_get_modified (RsttoNavigatorEntry *entry); + G_END_DECLS #endif /* __RISTRETTO_NAVIGATOR_H__ */ From squisher at xfce.org Sun Jun 1 06:19:26 2008 From: squisher at xfce.org (David Mohr) Date: Sun, 1 Jun 2008 04:19:26 +0000 (UTC) Subject: [Goodies-commits] r4870 - xfburn/trunk Message-ID: <20080601041927.12D80F29DD@mocha.foo-projects.org> Author: squisher Date: 2008-06-01 04:19:26 +0000 (Sun, 01 Jun 2008) New Revision: 4870 Modified: xfburn/trunk/ChangeLog xfburn/trunk/NEWS xfburn/trunk/README xfburn/trunk/TODO Log: Updating README and NEWS Modified: xfburn/trunk/ChangeLog =================================================================== --- xfburn/trunk/ChangeLog 2008-05-31 22:14:04 UTC (rev 4869) +++ xfburn/trunk/ChangeLog 2008-06-01 04:19:26 UTC (rev 4870) @@ -1,6 +1,345 @@ +2008-05-28 David Mohr + + * xfburn/xfburn-blank-dialog.c, xfburn/xfburn-progress-dialog.c: + Fixing selection of blank mode by putting mode no into the combo + box + * xfburn/xfburn-burn-data-composition-base-dialog.c, + xfburn/xfburn-device-box.c, xfburn/xfburn-device-box.h: + Cleaning up setting of status label, make label grayed out when + insensitive + * xfburn/xfburn-blank-dialog.c: + Removed gotos from blanking code + * xfburn/xfburn-blank-dialog.c: + Adding format & deformat options to the blanking dialog + +2008-05-12 David Mohr + + * xfburn/xfburn-progress-dialog.c: + Adding a simple animation option to the progress dialog + +2008-05-10 David Mohr + + * xfburn/xfburn-device-box.c, xfburn/xfburn-device-list.c, + xfburn/xfburn-device-list.h: + Showing inserted disc type in the device box + * xfburn/xfburn-blank-dialog.c, xfburn/xfburn-device-box.c, + xfburn/xfburn-device-list.c, xfburn/xfburn-device-list.h: + Retrieving profile no, and checking it for blanking + * xfburn/xfburn-device-list.c, xfburn/xfburn-device-list.h: + Adding debugging output about disc format + +2008-05-06 David Mohr + + * xfburn/xfburn-perform-burn.c: + Bugfix: first check message queue for fatal errors before + retrieving other messages + +2008-05-05 David Mohr + + * xfburn/xfburn-device-box.c: + Bugfix: correctly check for the presence of a device + +2008-05-04 David Mohr + + * xfburn/xfburn-device-box.c, xfburn/xfburn-device-list.c, + xfburn/xfburn-device-list.h: + Bugfixes: * Allow refresh of disc when blanking * Don't allow + refresh when there is no detected drive Keep track of disc + profile. + * xfburn/xfburn-device-box.c: + Bugfix: don't complain about invalid disc if there is no + available drive + +2008-05-03 David Mohr + + * xfburn/xfburn-blank-dialog.c, xfburn/xfburn-perform-burn.c: + Adding error catching code to blanking + * xfburn/xfburn-perform-burn.c, xfburn/xfburn-progress-dialog.c: + Implement error reporting + * xfburn/xfburn-hal-manager.c: + Bugfix: corrected previous bugfix for hal, hal now correctly + registered globally instead of not at all + * xfburn/xfburn-hal-manager.c: + Bugfix: hal-manager allocation now done per object creation + +2008-05-02 David Mohr + + * xfburn-toolbars.ui, xfburn.ui, + xfburn/xfburn-compositions-notebook.c, + xfburn/xfburn-compositions-notebook.h, + xfburn/xfburn-main-window.c, xfburn/xfburn-welcome-tab.c: + Have welcome screen buttons sensitivity set by the main action + group -- better solution would be to overwrite GtkAction + +2008-05-01 David Mohr + + * xfburn/xfburn-hal-manager.c: + Bugfix: proper shutwdown of HAL + * xfburn/Makefile.am, xfburn/xfburn-blank-dialog.c, + xfburn/xfburn-blank-dialog.h, xfburn/xfburn-main-window.c, + xfburn/xfburn-welcome-tab.c: + Reflecting the blank-dialog rename in the code + * xfburn/xfburn-blank-cd-dialog.c, xfburn/xfburn-blank-cd-dialog.h, + xfburn/xfburn-blank-dialog.c, xfburn/xfburn-blank-dialog.h: + Renaming blank dialog + * TODO, xfburn/Makefile.am: + Bugfix: corrected Makefile.am for HAL + +2008-04-29 David Mohr + + * xfburn/xfburn-device-box.c: + Bugfix: deallocate HalManager, don't refresh speed list when the + DeviceBox is empty + * xfburn/xfburn-burn-data-composition-base-dialog.c: + Bugfix: Enable burn button when target is an iso file, not a + burner + * xfburn/xfburn-burn-data-composition-base-dialog.c, + xfburn/xfburn-data-composition.c, xfburn/xfburn-global.h: + Ask for compilation name again in the burn dialog if it was left + as the default + * xfburn/xfburn-welcome-tab.c: + Adding icons and secondary text to the welcome screen + +2008-04-26 David Mohr + + * xfburn/xfburn-compositions-notebook.c, + xfburn/xfburn-compositions-notebook.h, + xfburn/xfburn-main-window.c, xfburn/xfburn-welcome-tab.c: + Adding basic content to the welcome tab + +2008-04-25 David Mohr + + * xfburn/xfburn-device-list.c: + Overlooked a g_error, now last commit works + * xfburn/xfburn-device-box.c, xfburn/xfburn-device-list.c, + xfburn/xfburn-device-list.h: + Adding error message when unable to grab drive (program aborted + before) + * xfburn/xfburn-device-box.c: + Adding default entry if no speed list is available + * TODO, xfburn/Makefile.am, xfburn/xfburn-compositions-notebook.c, + xfburn/xfburn-compositions-notebook.h, + xfburn/xfburn-hal-manager.c, xfburn/xfburn-hal-manager.h, + xfburn/xfburn-main-window.c, xfburn/xfburn-welcome-tab.c, + xfburn/xfburn-welcome-tab.h: + Adding basic welcome tab support + +2008-04-24 David Mohr + + * xfburn/xfburn-device-box.c: + Adding formating to the empty device list dialog text + * xfburn/xfburn-device-list.c: + Forgot to delete debugging statement + * xfburn/xfburn-device-box.c, xfburn/xfburn-device-list.c, + xfburn/xfburn-preferences-dialog.c: + Adding setting and functionality to hide empty speed list dialog + +2008-04-23 David Mohr + + * NEWS, TODO, configure.in.in, xfburn/Makefile.am, + xfburn/xfburn-device-box.c, xfburn/xfburn-device-list.c, + xfburn/xfburn-hal-manager.c, xfburn/xfburn-hal-manager.h: + Finished XfburnHalManager, device box now gets updated by hal + when the drive status changes + * xfburn/xfburn-hal-manager.c, xfburn/xfburn-hal-manager.h: + Start of XfburnHalManager to handle volume changes + * xfburn/xfburn-device-box.c, xfburn/xfburn-device-list.c: + Querying thunar for volume changes in device box + +2008-04-21 David Mohr + + * configure.in.in: + Adding HAL detection to configure.in.in + +2008-04-20 David Mohr + + * xfburn/xfburn-burn-image-dialog.c, xfburn/xfburn-device-list.c: + Improving feedback when no speed list can be retrieved + +2008-04-19 David Mohr + + * xfburn/xfburn-device-box.c, xfburn/xfburn-device-list.c: + Bugfix for blank mode, 2nd try + * xfburn/xfburn-device-box.c: + Bugfix: actually parse BLANK_MODE flag in the device box + * xfburn/xfburn-blank-cd-dialog.c, xfburn/xfburn-device-box.c, + xfburn/xfburn-device-box.h: + Improving device box: - Adding blank mode for proper disc status + messages - Refreshing speed list also on device change, to get + always fresh info when the object is created + +2008-04-18 David Mohr + + * xfburn/xfburn-device-list.c: + Trying to grab the drive a bit more often now + * TODO: + Updating TODO + * xfburn-toolbars.ui, xfburn.ui: + Disabling copy cd toolbar /menu items + * TODO: + Updating TODO + * xfburn/xfburn-burn-data-composition-base-dialog.c, + xfburn/xfburn-burn-image-dialog.c, xfburn/xfburn-device-box.c, + xfburn/xfburn-device-list.c, xfburn/xfburn-device-list.h, + xfburn/xfburn-utils.c: + Cleaning up debugging statements. Make disc status messages more + precise. Disable burn button in burn compilation dialog if the + disc is not valid. Try one more time to grab drive in the device + list. + +2008-04-17 Mario ?ani? + + * xfburn/xfburn-burn-image-dialog.c: + Now user knows he needs to choose image + * xfburn/xfburn-device-list.c: + No p0llux anymore + * xfburn/xfburn-device-list.c: + Will this debug p0llux? + * xfburn/xfburn-device-list.c: + Done minor formatting changes + +2008-04-17 David Mohr + + * xfburn/xfburn-device-box.c: + Only access combo box if it has entries + +2008-04-17 Mario ?ani? + + * INSTALL, xfburn/xfburn-device-list.c: + Implemented some checks for burning devices + * TODO: + Disable isnt done at proper moment yet + * TODO: + So again it is todo + +2008-04-17 David Mohr + + * TODO: + Updating TODO + +2008-04-17 Mario ?ani? + + * TODO: + Updated TODO for erasing magic + * TODO: + Updated TODO again + * TODO: + Migration to gvfs added to TODO + * TODO: + Sorting available burn speeds works now + * TODO: + Added more todo items + +2008-04-17 David Mohr + + * xfburn/xfburn-data-disc-usage.c: + Adding automatic switching between data disc types / sizes + +2008-04-16 David Mohr + + * xfburn/xfburn-burn-data-cd-composition-dialog.h, + xfburn/xfburn-burn-data-dvd-composition-dialog.c, + xfburn/xfburn-burn-data-dvd-composition-dialog.h, + xfburn/xfburn-data-composition.c: + Creating burn data dvd subclass + +2008-04-16 Jean-Fran?ois Wauthy + + * configure.in.in: + bump required GTK+ version to 2.10 (fix bug #4024) + +2008-04-16 David Mohr + + * xfburn/Makefile.am, + xfburn/xfburn-burn-data-cd-composition-dialog.c, + xfburn/xfburn-burn-data-composition-base-dialog.c, + xfburn/xfburn-burn-data-composition-base-dialog.h, + xfburn/xfburn-burn-image-dialog.c, xfburn/xfburn-perform-burn.c, + xfburn/xfburn-perform-burn.h: + Unifying the burn code: - Created base class + XfburnBurnDataCompositionBaseDialog, which both the CD and DVD + burning dialog can use - Factored actual burning and progress + dialog update code out into xfburn_perform_burn_write() + +2008-04-14 David Mohr + + * xfburn/xfburn-compositions-notebook.c: + Making compositions reorderable in the notebook (patch by + jeromeg) + * xfburn/xfburn-burn-image-dialog.c, xfburn/xfburn-device-box.c, + xfburn/xfburn-device-box.h: + Adding new signal for a refresh to the device box class to be + able to en/disable the burn botton + +2008-04-14 Mario ?ani? + + * NEWS: + Updated news with recent changes + * xfburn/xfburn-data-disc-usage.c: + Disable burn composition button when there is nothing in + composition + * xfburn/xfburn-device-box.c: + Made message when there is no disk in drive more specific + +2008-04-13 David Mohr + + * xfburn/xfburn-device-box.c, xfburn/xfburn-device-list.c: + Adding label to notify user that no disc is inserted in the drive + 2008-04-13 Mario ?ani? + * xfburn/xfburn-directory-browser.c: + Hopefully fixed abort now ;)) + * xfburn/xfburn-directory-browser.c: + Done some resize columns magic + * xfburn/xfburn-directory-browser.c: + Temporarily undone last patch + * xfburn/xfburn-directory-browser.c: + Done more work on resizable columns magic! Thanks Jerome + * NEWS: + Updated news to reflect that we fixed 4012 + +2008-04-13 David Mohr + + * xfburn/xfburn-device-list.c: + Sort speed list, added fallback value if no list is available + (fixes bug #4012) + +2008-04-13 Mario ?ani? + * TODO: + Updated TODO again + +2008-04-13 Jean-Fran?ois Wauthy + + * CONTRIBUTORS: + be more explicit about the contributions in order to keep track + +2008-04-13 Mario ?ani? + + * CONTRIBUTORS: + Added Jerome to contributors + * NEWS, xfburn/xfburn-directory-browser.c: + Made list columns resizable + * TODO: + Once again updated TODO + * TODO: + Added popup in todo for proper speed detection + * NEWS: + Correct url of libburnia project in news + * AUTHORS, xfburn/xfburn-main-window.c: + Updated about dialog + +2008-04-13 David Mohr + + * ChangeLog, TODO, committers.xml, update-changelog.sh: + Updating ChangeLog and its support scripts, and TODO file + +2008-04-13 Mario ?ani? + + * AUTHORS: + Added David and myself to authors + * TODO: Updated TODO file with various new tasks 2008-04-12 Jean-Fran?ois Wauthy Modified: xfburn/trunk/NEWS =================================================================== --- xfburn/trunk/NEWS 2008-05-31 22:14:04 UTC (rev 4869) +++ xfburn/trunk/NEWS 2008-06-01 04:19:26 UTC (rev 4870) @@ -1,6 +1,13 @@ -xfburn 0.x +xfburn 0.3.0 ========== +- Use new libisofs API +- DVD burning +- Formating and deformating of DVD-RW discs +- Removed buttons for not yet working functionality +- Use HAL to update disc status when a disc is inserted / removed +- Disable "Burn composition" button where there is no files in composition + - Use libburn (libburnia-project.org) instead of cdrecord tools - Avoid adding non regular files (bug #2179) - Directory are sort before files in data composition @@ -14,8 +21,6 @@ - Use correct cdrom size (bug #2753) - Add new icons based on icons from the Tango icontheme - List columns are resizable now (bug #2930) -- Disable "Burn composition" button where there is no files in composition -- Use HAL to update disc status when a disc is inserted / removed xfburn 0.2.0beta ================ Modified: xfburn/trunk/README =================================================================== --- xfburn/trunk/README 2008-05-31 22:14:04 UTC (rev 4869) +++ xfburn/trunk/README 2008-06-01 04:19:26 UTC (rev 4870) @@ -0,0 +1,61 @@ +============================================================================== +xfburn +------ + +Version 0.3.0, 2008-xx-xx + +http://www.xfce.org/projects/xfburn/ + +An easy to use burning software for the xfce desktop environment (but of +course will work with others). It uses libburn and libisofs as a backend, in +difference to most other GUI programs at the moment. Visit +http://www.libburnia-project.org/ for more information about these libraries. + +============================================================================== +Functionality +------------- + +xfburn is still a new program, and does not yet do all common burning related +tasks. + +Currently implemented is: + * Create data compositions + - Burn to CD or DVD + - Create ISO images + * Burn ISO images + * Blank discs + * Format and deformat DVD-RW discs + +============================================================================== +Future Plans +------------ + +Missing functionality that we plan to add: + * Save and load compositions + * Verification + * Burn audio CDs + * Copy discs (needs backend support) + * Automatic checksum creation + * Blu-ray support + * Plugin support + +There is no, and never will be, a timeline for these. Let us know if you think +something is missing on this list. If you really need something implemented, +feel free to help us out :-). + +============================================================================== +Bugs & Feedback +--------------- + +Any comments are welcome! We aim to make xfburn a very easily usable program. +So if you think something could be implemented differently, feel free to speak +up and it will be considered. Please send all feedbacks to xfburn at xfce.org, or +use the xfce mailing lists. Bugs are best placed in the xfce bugtracker at +http://bugzilla.xfce.org/ + +============================================================================== +License +------- + +This program is released under the GNU GPL version 2 or newer. See COPYING for +the full text of the license. Modified: xfburn/trunk/TODO =================================================================== --- xfburn/trunk/TODO 2008-05-31 22:14:04 UTC (rev 4869) +++ xfburn/trunk/TODO 2008-06-01 04:19:26 UTC (rev 4870) @@ -7,6 +7,7 @@ - use more thunar-vfs - add verification of written disc - add data dvd support [DONE] +- add blu-ray support various fixes and changes ========================= From squisher at xfce.org Sun Jun 1 06:54:51 2008 From: squisher at xfce.org (David Mohr) Date: Sun, 1 Jun 2008 04:54:51 +0000 (UTC) Subject: [Goodies-commits] r4871 - xfburn/trunk/po Message-ID: <20080601045451.CD829F29DD@mocha.foo-projects.org> Author: squisher Date: 2008-06-01 04:54:51 +0000 (Sun, 01 Jun 2008) New Revision: 4871 Modified: xfburn/trunk/po/POTFILES.in xfburn/trunk/po/de.po Log: Updating i18n files Modified: xfburn/trunk/po/POTFILES.in =================================================================== --- xfburn/trunk/po/POTFILES.in 2008-06-01 04:19:26 UTC (rev 4870) +++ xfburn/trunk/po/POTFILES.in 2008-06-01 04:54:51 UTC (rev 4871) @@ -1,7 +1,8 @@ # List of source files containing translatable strings. xfburn/xfburn-adding-progress.c -xfburn/xfburn-blank-cd-dialog.c +xfburn/xfburn-blank-dialog.c xfburn/xfburn-burn-data-cd-composition-dialog.c +xfburn/xfburn-burn-data-composition-base-dialog.c xfburn/xfburn-burn-data-dvd-composition-dialog.c xfburn/xfburn-burn-image-dialog.c xfburn/xfburn-composition.c @@ -18,9 +19,11 @@ xfburn/xfburn-file-browser.c xfburn/xfburn-format-dvd-dialog.c xfburn/xfburn-fs-browser.c +xfburn/xfburn-hal-manager.c xfburn/xfburn-main.c xfburn/xfburn-main-window.c xfburn/xfburn-notebook-tab.c +xfburn/xfburn-perform-burn.c xfburn/xfburn-preferences-dialog.c xfburn/xfburn-progress-dialog.c xfburn/xfburn-settings.c Modified: xfburn/trunk/po/de.po =================================================================== --- xfburn/trunk/po/de.po 2008-06-01 04:19:26 UTC (rev 4870) +++ xfburn/trunk/po/de.po 2008-06-01 04:54:51 UTC (rev 4871) @@ -17,7 +17,7 @@ "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit" +"Content-Transfer-Encoding: 8bit\n" #: ../xfburn/xfburn-adding-progress.c:89 msgid "Adding files to the composition" @@ -125,7 +125,9 @@ msgid "" "Please " "select an image to burn!" -msgstr "Bitte w?hlen Sie ein CD-Abbild aus!!" +msgstr "" +"Bitte " +"w?hlen Sie ein CD-Abbild aus!!" #: ../xfburn/xfburn-burn-image-dialog.c:186 #: ../xfburn/xfburn-copy-cd-dialog.c:148 @@ -197,7 +199,9 @@ msgid "" "Make sure you selected a valid file and you have the proper permissions to " "access it." -msgstr "Stellen Sie sicher, da? eine zul?ssige Datei ausgew?hlt und die erforderlichen Zugriffsrechte haben." +msgstr "" +"Stellen Sie sicher, da? eine zul?ssige Datei ausgew?hlt und die " +"erforderlichen Zugriffsrechte haben." #: ../xfburn/xfburn-burn-image-dialog.c:533 msgid "The write mode is not currently supported" @@ -359,7 +363,10 @@ "to take a very long time, and also to be too big to fit on one disc.\n" "\n" "Are you sure you want to proceed?" -msgstr "Sie sind dabei ihr Heimatsverzeichniss zu der Zusammenstellung hinzu zu f?gen. Dieser Vorgang wird wahrscheinlich lange dauern, und das Verzeichniss ist oftmals zu gro? f?r ein Medium.\n" +msgstr "" +"Sie sind dabei ihr Heimatsverzeichniss zu der Zusammenstellung hinzu zu " +"f?gen. Dieser Vorgang wird wahrscheinlich lange dauern, und das Verzeichniss " +"ist oftmals zu gro? f?r ein Medium.\n" "\n" "Sind Sie sich sicher, da? sie fortf?hren wollen?" @@ -414,7 +421,9 @@ #: ../xfburn/xfburn-device-box.c:194 msgid "Is the combination of hardware and disc valid to burn the composition?" -msgstr "ist die Kombination von Hardware und Medium geeignet f?r die Zusammenstellung?" +msgstr "" +"ist die Kombination von Hardware und Medium geeignet f?r die " +"Zusammenstellung?" #: ../xfburn/xfburn-device-box.c:197 msgid "Blank mode" @@ -451,9 +460,13 @@ msgstr "" "Abruf der Geschiwindigkeitsliste ist fehlgeschlagen.\n" "\n" -"Dies ist ein bekannter Fehler, welcher bei manchen Laufwerken auftritt. Wir bitten um einen Fehlerbericht an xfburn at xfce.org?mit der Konsolenausgabe, so da? sich die Chancen verbessern das dieser Fehler behoben wird.\n" +"Dies ist ein bekannter Fehler, welcher bei manchen Laufwerken auftritt. Wir " +"bitten um einen Fehlerbericht an xfburn at xfce.org?mit der " +"Konsolenausgabe, so da? sich die Chancen verbessern das dieser Fehler " +"behoben wird.\n" "\n" -"Das Brennen sollte trotzdem funktionieren, aber sollten Probleme auftretten, dann lassen Sie es uns bitte wissen.\n" +"Das Brennen sollte trotzdem funktionieren, aber sollten Probleme auftretten, " +"dann lassen Sie es uns bitte wissen.\n" "\n" "Vielen Dank!" From squisher at xfce.org Sun Jun 1 07:00:03 2008 From: squisher at xfce.org (David Mohr) Date: Sun, 1 Jun 2008 05:00:03 +0000 (UTC) Subject: [Goodies-commits] r4872 - xfburn/trunk/po Message-ID: <20080601050003.2A62EF29DD@mocha.foo-projects.org> Author: squisher Date: 2008-06-01 05:00:03 +0000 (Sun, 01 Jun 2008) New Revision: 4872 Modified: xfburn/trunk/po/POTFILES.in Log: added another missing source file to POTFILES Modified: xfburn/trunk/po/POTFILES.in =================================================================== --- xfburn/trunk/po/POTFILES.in 2008-06-01 04:54:51 UTC (rev 4871) +++ xfburn/trunk/po/POTFILES.in 2008-06-01 05:00:03 UTC (rev 4872) @@ -29,6 +29,7 @@ xfburn/xfburn-settings.c xfburn/xfburn-stock.c xfburn/xfburn-utils.c +xfburn/xfburn-welcome-tab.c # files added by intltool-prepare. xfburn.desktop.in From pollux at xfce.org Sun Jun 1 11:05:48 2008 From: pollux at xfce.org (Jean-Francois Wauthy) Date: Sun, 1 Jun 2008 09:05:48 +0000 (UTC) Subject: [Goodies-commits] r4873 - xfburn/trunk/po Message-ID: <20080601090548.6C19AF29DD@mocha.foo-projects.org> Author: pollux Date: 2008-06-01 09:05:48 +0000 (Sun, 01 Jun 2008) New Revision: 4873 Modified: xfburn/trunk/po/pt_BR.po Log: run make update-po Modified: xfburn/trunk/po/pt_BR.po =================================================================== --- xfburn/trunk/po/pt_BR.po 2008-06-01 05:00:03 UTC (rev 4872) +++ xfburn/trunk/po/pt_BR.po 2008-06-01 09:05:48 UTC (rev 4873) @@ -4,6 +4,7 @@ # F?bio Nogueira , 2007. # Og Maciel , 2008. # +#: ../xfburn/xfburn-device-box.c:617 msgid "" msgstr "" "Project-Id-Version: xfburn 0.0.3svn\n" @@ -21,8 +22,7 @@ msgid "Adding files to the composition" msgstr "Adicionando arquivos ? composi??o" -#: ../xfburn/xfburn-blank-cd-dialog.c:95 -#: ../xfburn/xfburn-main-window.c:127 +#: ../xfburn/xfburn-blank-cd-dialog.c:95 ../xfburn/xfburn-main-window.c:127 msgid "Blank CD-RW" msgstr "CD-RW Vazio" @@ -121,8 +121,12 @@ #: ../xfburn/xfburn-burn-image-dialog.c:162 #: ../xfburn/xfburn-burn-image-dialog.c:407 -msgid "Please select an image to burn!" -msgstr "Por favor selecionar uma imagem para gravar!" +msgid "" +"Please " +"select an image to burn!" +msgstr "" +"Por " +"favor selecionar uma imagem para gravar!" #: ../xfburn/xfburn-burn-image-dialog.c:186 #: ../xfburn/xfburn-copy-cd-dialog.c:148 @@ -163,12 +167,17 @@ msgstr "Gravando imagem..." #: ../xfburn/xfburn-burn-image-dialog.c:445 -msgid "Cannot append data to multisession disc in this write mode (use TAO instead)" -msgstr "N?o ? poss?vel adicionar dados ao disco de multi-sess?o neste modo de grava??o (Utilize o TAO)" +msgid "" +"Cannot append data to multisession disc in this write mode (use TAO instead)" +msgstr "" +"N?o ? poss?vel adicionar dados ao disco de multi-sess?o neste modo de " +"grava??o (Utilize o TAO)" #: ../xfburn/xfburn-burn-image-dialog.c:449 msgid "Closed media with data detected. Need blank or appendable media" -msgstr "Detectado m?dia com dados. Necess?ria uma m?dia vazia ou com espa?o para grava??o" +msgstr "" +"Detectado m?dia com dados. Necess?ria uma m?dia vazia ou com espa?o para " +"grava??o" #: ../xfburn/xfburn-burn-image-dialog.c:451 msgid "No media detected in drive" @@ -187,8 +196,12 @@ msgstr "N?o foi poss?vel determinar o tamanho da imagem!" #: ../xfburn/xfburn-burn-image-dialog.c:497 -msgid "Make sure you selected a valid file and you have the proper permissions to access it." -msgstr "Certifique-se que voc? selecionou um arquivo v?lido e que voc? possui as permiss?es apropriadas de acesso." +msgid "" +"Make sure you selected a valid file and you have the proper permissions to " +"access it." +msgstr "" +"Certifique-se que voc? selecionou um arquivo v?lido e que voc? possui as " +"permiss?es apropriadas de acesso." #: ../xfburn/xfburn-burn-image-dialog.c:533 msgid "The write mode is not currently supported" @@ -344,18 +357,25 @@ #: ../xfburn/xfburn-data-composition.c:865 msgid "" -"You are about to add your home directory to the composition. This is likely to take a very long time, and also to be too big to fit on one disc.\n" +"You are about to add your home directory to the composition. This is likely " +"to take a very long time, and also to be too big to fit on one disc.\n" "\n" "Are you sure you want to proceed?" msgstr "" -"Voc? est? prestes a adicionar a sua pasta pessoal ? composi??o. ? bem prov?vel que isso demore muito, e que seja muito grande para caber em um disco tamb?m.\n" +"Voc? est? prestes a adicionar a sua pasta pessoal ? composi??o. ? bem " +"prov?vel que isso demore muito, e que seja muito grande para caber em um " +"disco tamb?m.\n" "\n" "Voc? tem certeza que deseja continuar?" #: ../xfburn/xfburn-data-composition.c:1232 #, c-format -msgid "A file named \"%s\" already exists in this directory, the file hasn't been added" -msgstr "Um arquivo chamado \"%s\" j? existe neste diret?rio, o mesmo n?o foi adicionado" +msgid "" +"A file named \"%s\" already exists in this directory, the file hasn't been " +"added" +msgstr "" +"Um arquivo chamado \"%s\" j? existe neste diret?rio, o mesmo n?o foi " +"adicionado" #: ../xfburn/xfburn-data-disc-usage.c:138 msgid "Burn composition" @@ -365,8 +385,7 @@ msgid "You are trying to burn more data than the disk can contain !" msgstr "Voc? est? tentando gravar mais dados do que o disco pode suportar !" -#: ../xfburn/xfburn-device-box.c:178 -#: ../xfburn/xfburn-device-box.c:179 +#: ../xfburn/xfburn-device-box.c:178 ../xfburn/xfburn-device-box.c:179 msgid "Show writers only" msgstr "Mostrar apenas gravadores" @@ -408,7 +427,8 @@ #: ../xfburn/xfburn-device-box.c:198 msgid "The blank mode shows different disc status messages than regular mode" -msgstr "O modo de limpeza mostra status diferentes de disco do que o modo normal" +msgstr "" +"O modo de limpeza mostra status diferentes de disco do que o modo normal" #: ../xfburn/xfburn-device-box.c:271 msgid "_Speed:" @@ -426,17 +446,23 @@ msgid "" "Unable to retrieve the speed list for the drive.\n" "\n" -"This is a known bug, which occurs with some drives. Please report it to xfburn at xfce.org together with the console output to increase the chances that it will get fixed.\n" +"This is a known bug, which occurs with some drives. Please report it to " +"xfburn at xfce.org together with the console output to increase the " +"chances that it will get fixed.\n" "\n" -"Burning should still work, but if there are problems anyways, please let us know.\n" +"Burning should still work, but if there are problems anyways, please let us " +"know.\n" "\n" "Thank you!" msgstr "" "N?o foi poss?vel obter a lista de velocidades da unidade de disco.\n" "\n" -"Isto ? um erro j? conhecido que ocorre com algumas unidades de disco. Por favor reporte este erro para xfburn at xfce.org junto com a sa?da do console para aumentar as chances do problema ser resolvido.\n" +"Isto ? um erro j? conhecido que ocorre com algumas unidades de disco. Por " +"favor reporte este erro para xfburn at xfce.org junto com a sa?da do " +"console para aumentar as chances do problema ser resolvido.\n" "\n" -"O modo de grava??o deve ainda assim funcionar, mas se houverem problemas nos avise.\n" +"O modo de grava??o deve ainda assim funcionar, mas se houverem problemas nos " +"avise.\n" "\n" "Obrigado!" @@ -448,8 +474,7 @@ msgid "default" msgstr "padr?o" -#: ../xfburn/xfburn-device-box.c:547 -#: ../xfburn/xfburn-device-box.c:591 +#: ../xfburn/xfburn-device-box.c:547 ../xfburn/xfburn-device-box.c:591 msgid "Drive is empty!" msgstr "A unidade disco est? vazia!" @@ -457,18 +482,15 @@ msgid "Inserted disc is full!" msgstr "O disco inserido est? cheio!" -#: ../xfburn/xfburn-device-box.c:555 -#: ../xfburn/xfburn-device-box.c:599 +#: ../xfburn/xfburn-device-box.c:555 ../xfburn/xfburn-device-box.c:599 msgid "Inserted disc is unsuitable!" msgstr "O disco inserido n?o ? apropriado!" -#: ../xfburn/xfburn-device-box.c:559 -#: ../xfburn/xfburn-device-box.c:603 +#: ../xfburn/xfburn-device-box.c:559 ../xfburn/xfburn-device-box.c:603 msgid "No access to drive (mounted?)" msgstr "Sem acesso ? unidade de disco (montada?)" -#: ../xfburn/xfburn-device-box.c:565 -#: ../xfburn/xfburn-device-box.c:607 +#: ../xfburn/xfburn-device-box.c:565 ../xfburn/xfburn-device-box.c:607 msgid "Error determining disc!" msgstr "Erro determinando o disco!" @@ -498,8 +520,7 @@ msgid "Type" msgstr "Tipo" -#: ../xfburn/xfburn-format-dvd-dialog.c:91 -#: ../xfburn/xfburn-main-window.c:134 +#: ../xfburn/xfburn-format-dvd-dialog.c:91 ../xfburn/xfburn-main-window.c:134 msgid "Format DVD+RW" msgstr "Formato DVD+RW" @@ -508,8 +529,7 @@ msgid "_Format" msgstr "_Formato" -#: ../xfburn/xfburn-fs-browser.c:94 -#: ../xfburn/xfburn-fs-browser.c:271 +#: ../xfburn/xfburn-fs-browser.c:94 ../xfburn/xfburn-fs-browser.c:271 msgid "Filesystem" msgstr "Sistema de arquivo" @@ -519,8 +539,7 @@ msgid "%s's home" msgstr "Pasta Pessoal de %s" -#: ../xfburn/xfburn-main.c:57 -#: ../xfburn.desktop.in.h:2 +#: ../xfburn/xfburn-main.c:57 ../xfburn.desktop.in.h:2 msgid "Xfburn" msgstr "Xfburn" @@ -657,8 +676,7 @@ msgid "Another cd burning GUI" msgstr "Outra Interface Gr?fica de grava??o de CD" -#: ../xfburn/xfburn-main-window.c:535 -#: ../xfburn/xfburn-main-window.c:536 +#: ../xfburn/xfburn-main-window.c:535 ../xfburn/xfburn-main-window.c:536 #: ../xfburn/xfburn-main-window.c:537 msgid "Author/Maintainer" msgstr "Autor/Mantenedor" @@ -802,28 +820,39 @@ #~ msgid "Burn Composition" #~ msgstr "Composi??o de Grava??o" + #~ msgid "_Burn Composition" #~ msgstr "_Gravar Composi??o" + #~ msgid "Could not create destination ISO file: %s" #~ msgstr "N?o foi poss?vel criar o arquivo ISO final: %s" + #~ msgid "Writing ISO..." #~ msgstr "Gravando ISO..." + #~ msgid "An error occured while writing ISO: %s" #~ msgstr "Um erro ocorreu enquanto gravava a ISO: %s" + #~ msgid "Burning composition..." #~ msgstr "Gravando composi??o..." + #~ msgid "Writing Lead-In..." #~ msgstr "Gravando Lead-In..." + #~ msgid "Writing Lead-Out..." #~ msgstr "Gravando Lead-Out..." + #~ msgid "Writing pregap..." #~ msgstr "Gravando pregap..." + #~ msgid "Closing track..." #~ msgstr "Fechando trilha..." + #~ msgid "Closing session..." #~ msgstr "Fechando sess?o..." + #~ msgid "Could not create ISO source structure" #~ msgstr "N?o foi poss?vel criar uma estrutura ISO" + #~ msgid "Burn CD image" #~ msgstr "Gravar imagem de CD" - From mmassonnet at xfce.org Sun Jun 1 11:21:09 2008 From: mmassonnet at xfce.org (Mike Massonnet) Date: Sun, 1 Jun 2008 09:21:09 +0000 (UTC) Subject: [Goodies-commits] r4874 - modules/trunk-po Message-ID: <20080601092109.2F1D4F29DD@mocha.foo-projects.org> Author: mmassonnet Date: 2008-06-01 09:21:09 +0000 (Sun, 01 Jun 2008) New Revision: 4874 Modified: modules/trunk-po/ Log: update modules/trunk-po Property changes on: modules/trunk-po ___________________________________________________________________ Name: svn:externals - gsynaptics-mcs-plugin/po http://svn.xfce.org/svn/goodies/gsynaptics-mcs-plugin/trunk/po notification-daemon-xfce/po http://svn.xfce.org/svn/goodies/notification-daemon-xfce/trunk/po ristretto/po http://svn.xfce.org/svn/goodies/ristretto/trunk/po thunar-archive-plugin/po http://svn.xfce.org/svn/goodies/thunar-archive-plugin/trunk/po thunar-media-tags-plugin/po http://svn.xfce.org/svn/goodies/thunar-media-tags-plugin/trunk/po thunar-svn-plugin/po http://svn.xfce.org/svn/goodies/thunar-svn-plugin/trunk/po thunar-volman/po http://svn.xfce.org/svn/goodies/thunar-volman/trunk/po verve-plugin/po http://svn.xfce.org/svn/goodies/verve-plugin/trunk/po xfbib/po http://svn.xfce.org/svn/goodies/xfbib/trunk/po xfce4-battery-plugin/po http://svn.xfce.org/svn/goodies/xfce4-battery-plugin/trunk/po xfce4-cddrive-plugin/po http://svn.xfce.org/svn/goodies/xfce4-cddrive-plugin/trunk/po xfce4-cellmodem-plugin/po http://svn.xfce.org/svn/goodies/xfce4-cellmodem-plugin/trunk/po xfce4-clipman-plugin/po http://svn.xfce.org/svn/goodies/xfce4-clipman-plugin/trunk/po xfce4-cpufreq-plugin/po http://svn.xfce.org/svn/goodies/xfce4-cpufreq-plugin/trunk/po xfce4-cpugraph-plugin/po http://svn.xfce.org/svn/goodies/xfce4-cpugraph-plugin/trunk/po xfce4-datetime-plugin/po http://svn.xfce.org/svn/goodies/xfce4-datetime-plugin/trunk/po xfce4-dict/po http://svn.xfce.org/svn/goodies/xfce4-dict/trunk/po xfce4-diskperf-plugin/po http://svn.xfce.org/svn/goodies/xfce4-diskperf-plugin/trunk/po xfce4-eyes-plugin/po http://svn.xfce.org/svn/goodies/xfce4-eyes-plugin/trunk/po xfce4-fsguard-plugin/po http://svn.xfce.org/svn/goodies/xfce4-fsguard-plugin/trunk/po xfce4-genmon-plugin/po http://svn.xfce.org/svn/goodies/xfce4-genmon-plugin/trunk/po xfce4-mailwatch-plugin/po http://svn.xfce.org/svn/goodies/xfce4-mailwatch-plugin/trunk/po xfce4-mount-plugin/po http://svn.xfce.org/svn/goodies/xfce4-mount-plugin/trunk/po xfce4-mpc-plugin/po http://svn.xfce.org/svn/goodies/xfce4-mpc-plugin/trunk/po xfce4-netload-plugin/po http://svn.xfce.org/svn/goodies/xfce4-netload-plugin/trunk/po xfce4-notes-plugin/po http://svn.xfce.org/svn/goodies/xfce4-notes-plugin/trunk/po xfce4-places-plugin/po http://svn.xfce.org/svn/goodies/xfce4-places-plugin/trunk/po xfce4-quicklauncher-plugin/po http://svn.xfce.org/svn/goodies/xfce4-quicklauncher-plugin/trunk/po xfce4-radio-plugin/po http://svn.xfce.org/svn/goodies/xfce4-radio-plugin/trunk/po xfce4-rss-plugin/po http://svn.xfce.org/svn/goodies/xfce4-rss-plugin/trunk/po xfce4-screenshooter-plugin/po http://svn.xfce.org/svn/goodies/xfce4-screenshooter-plugin/trunk/po xfce4-sensors-plugin/po http://svn.xfce.org/svn/goodies/xfce4-sensors-plugin/trunk/po xfce4-smartbookmark-plugin/po http://svn.xfce.org/svn/goodies/xfce4-smartbookmark-plugin/trunk/po xfce4-smartpm-plugin/po http://svn.xfce.org/svn/goodies/xfce4-smartpm-plugin/trunk/po xfce4-systemload-plugin/po http://svn.xfce.org/svn/goodies/xfce4-systemload-plugin/trunk/po xfce4-taskmanager/po http://svn.xfce.org/svn/goodies/xfce4-taskmanager/trunk/po xfce4-teatime-plugin/po http://svn.xfce.org/svn/goodies/xfce4-teatime-plugin/trunk/po xfce4-time-out-plugin/po http://svn.xfce.org/svn/goodies/xfce4-time-out-plugin/trunk/po xfce4-timer-plugin/po http://svn.xfce.org/svn/goodies/xfce4-timer-plugin/trunk/po xfce4-volstatus-icon/po http://svn.xfce.org/svn/goodies/xfce4-volstatus-icon/trunk/po xfce4-wavelan-plugin/po http://svn.xfce.org/svn/goodies/xfce4-wavelan-plugin/trunk/po xfce4-weather-plugin/po http://svn.xfce.org/svn/goodies/xfce4-weather-plugin/trunk/po xfce4-websearch-plugin/po http://svn.xfce.org/svn/goodies/xfce4-websearch-plugin/trunk/po xfce4-xfapplet-plugin/po http://svn.xfce.org/svn/goodies/xfce4-xfapplet-plugin/trunk/po xfce4-xkb-plugin/po http://svn.xfce.org/svn/goodies/xfce4-xkb-plugin/trunk/po xfce4-xmms-plugin/po http://svn.xfce.org/svn/goodies/xfce4-xmms-plugin/trunk/po xfmedia-remote-plugin/po http://svn.xfce.org/svn/goodies/xfmedia-remote-plugin/trunk/po xfmpc/po http://svn.xfce.org/svn/goodies/xfmpc/trunk/po xfvnc/po http://svn.xfce.org/svn/goodies/xfvnc/trunk/po + gsynaptics-mcs-plugin/po http://svn.xfce.org/svn/goodies/gsynaptics-mcs-plugin/trunk/po notification-daemon-xfce/po http://svn.xfce.org/svn/goodies/notification-daemon-xfce/trunk/po ristretto/po http://svn.xfce.org/svn/goodies/ristretto/trunk/po thunar-archive-plugin/po http://svn.xfce.org/svn/goodies/thunar-archive-plugin/trunk/po thunar-media-tags-plugin/po http://svn.xfce.org/svn/goodies/thunar-media-tags-plugin/trunk/po thunar-svn-plugin/po http://svn.xfce.org/svn/goodies/thunar-svn-plugin/trunk/po thunar-volman/po http://svn.xfce.org/svn/goodies/thunar-volman/trunk/po verve-plugin/po http://svn.xfce.org/svn/goodies/verve-plugin/trunk/po xfbib/po http://svn.xfce.org/svn/goodies/xfbib/trunk/po xfburn/po http://svn.xfce.org/svn/goodies/xfburn/trunk/po xfce4-battery-plugin/po http://svn.xfce.org/svn/goodies/xfce4-battery-plugin/trunk/po xfce4-cddrive-plugin/po http://svn.xfce.org/svn/goodies/xfce4-cddrive-plugin/trunk/po xfce4-cellmodem-plugin/po http://svn.xfce.org/svn/goodies/xfce4-cellmodem-plugin/trunk/po xfce4-clipman-plugin/po http://svn.xfce.org/svn/goodies/xfce4-clipman-plugin/trunk/po xfce4-cpufreq-plugin/po http://svn.xfce.org/svn/goodies/xfce4-cpufreq-plugin/trunk/po xfce4-cpugraph-plugin/po http://svn.xfce.org/svn/goodies/xfce4-cpugraph-plugin/trunk/po xfce4-datetime-plugin/po http://svn.xfce.org/svn/goodies/xfce4-datetime-plugin/trunk/po xfce4-dict/po http://svn.xfce.org/svn/goodies/xfce4-dict/trunk/po xfce4-diskperf-plugin/po http://svn.xfce.org/svn/goodies/xfce4-diskperf-plugin/trunk/po xfce4-eyes-plugin/po http://svn.xfce.org/svn/goodies/xfce4-eyes-plugin/trunk/po xfce4-fsguard-plugin/po http://svn.xfce.org/svn/goodies/xfce4-fsguard-plugin/trunk/po xfce4-genmon-plugin/po http://svn.xfce.org/svn/goodies/xfce4-genmon-plugin/trunk/po xfce4-mailwatch-plugin/po http://svn.xfce.org/svn/goodies/xfce4-mailwatch-plugin/trunk/po xfce4-mount-plugin/po http://svn.xfce.org/svn/goodies/xfce4-mount-plugin/trunk/po xfce4-mpc-plugin/po http://svn.xfce.org/svn/goodies/xfce4-mpc-plugin/trunk/po xfce4-netload-plugin/po http://svn.xfce.org/svn/goodies/xfce4-netload-plugin/trunk/po xfce4-notes-plugin/po http://svn.xfce.org/svn/goodies/xfce4-notes-plugin/trunk/po xfce4-places-plugin/po http://svn.xfce.org/svn/goodies/xfce4-places-plugin/trunk/po xfce4-quicklauncher-plugin/po http://svn.xfce.org/svn/goodies/xfce4-quicklauncher-plugin/trunk/po xfce4-radio-plugin/po http://svn.xfce.org/svn/goodies/xfce4-radio-plugin/trunk/po xfce4-rss-plugin/po http://svn.xfce.org/svn/goodies/xfce4-rss-plugin/trunk/po xfce4-screenshooter-plugin/po http://svn.xfce.org/svn/goodies/xfce4-screenshooter-plugin/trunk/po xfce4-sensors-plugin/po http://svn.xfce.org/svn/goodies/xfce4-sensors-plugin/trunk/po xfce4-smartbookmark-plugin/po http://svn.xfce.org/svn/goodies/xfce4-smartbookmark-plugin/trunk/po xfce4-smartpm-plugin/po http://svn.xfce.org/svn/goodies/xfce4-smartpm-plugin/trunk/po xfce4-systemload-plugin/po http://svn.xfce.org/svn/goodies/xfce4-systemload-plugin/trunk/po xfce4-taskmanager/po http://svn.xfce.org/svn/goodies/xfce4-taskmanager/trunk/po xfce4-teatime-plugin/po http://svn.xfce.org/svn/goodies/xfce4-teatime-plugin/trunk/po xfce4-time-out-plugin/po http://svn.xfce.org/svn/goodies/xfce4-time-out-plugin/trunk/po xfce4-timer-plugin/po http://svn.xfce.org/svn/goodies/xfce4-timer-plugin/trunk/po xfce4-volstatus-icon/po http://svn.xfce.org/svn/goodies/xfce4-volstatus-icon/trunk/po xfce4-wavelan-plugin/po http://svn.xfce.org/svn/goodies/xfce4-wavelan-plugin/trunk/po xfce4-weather-plugin/po http://svn.xfce.org/svn/goodies/xfce4-weather-plugin/trunk/po xfce4-websearch-plugin/po http://svn.xfce.org/svn/goodies/xfce4-websearch-plugin/trunk/po xfce4-xfapplet-plugin/po http://svn.xfce.org/svn/goodies/xfce4-xfapplet-plugin/trunk/po xfce4-xkb-plugin/po http://svn.xfce.org/svn/goodies/xfce4-xkb-plugin/trunk/po xfce4-xmms-plugin/po http://svn.xfce.org/svn/goodies/xfce4-xmms-plugin/trunk/po xfmedia-remote-plugin/po http://svn.xfce.org/svn/goodies/xfmedia-remote-plugin/trunk/po xfmpc/po http://svn.xfce.org/svn/goodies/xfmpc/trunk/po xfvnc/po http://svn.xfce.org/svn/goodies/xfvnc/trunk/po From mmassonnet at xfce.org Sun Jun 1 21:17:04 2008 From: mmassonnet at xfce.org (Mike Massonnet) Date: Sun, 1 Jun 2008 19:17:04 +0000 (UTC) Subject: [Goodies-commits] r4875 - xfmpc/trunk/src Message-ID: <20080601191704.B9BECF29DD@mocha.foo-projects.org> Author: mmassonnet Date: 2008-06-01 19:17:04 +0000 (Sun, 01 Jun 2008) New Revision: 4875 Modified: xfmpc/trunk/src/dbbrowser.c xfmpc/trunk/src/playlist.c Log: Add search entry * src/dbbrowser.c(xfmpc_dbbrowser_init): - Add a gtk entry and connect it to new callbacks for signals "activate", "key-release-event", and "changed" * src/dbbrowser.c(xfmpc_dbbrowser_reload): - Check if the client is connected before going further in the reload process Modified: xfmpc/trunk/src/dbbrowser.c =================================================================== --- xfmpc/trunk/src/dbbrowser.c 2008-06-01 09:21:09 UTC (rev 4874) +++ xfmpc/trunk/src/dbbrowser.c 2008-06-01 19:17:04 UTC (rev 4875) @@ -45,9 +45,14 @@ GtkTreeViewColumn *column); static gboolean cb_key_pressed (XfmpcDbbrowser *dbbrowser, GdkEventKey *event); +static void cb_search_entry_activated (XfmpcDbbrowser *dbbrowser); +static gboolean cb_search_entry_key_released (XfmpcDbbrowser *dbbrowser, + GdkEventKey *event); +static void cb_search_entry_changed (XfmpcDbbrowser *dbbrowser); + /* List store identifiers */ enum { @@ -186,9 +191,13 @@ GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); + /* === Search entry === */ + priv->search_entry = gtk_entry_new (); + /* === Containers === */ gtk_container_add (GTK_CONTAINER (scrolled), priv->treeview); - gtk_container_add (GTK_CONTAINER (dbbrowser), scrolled); + gtk_box_pack_start (GTK_BOX (dbbrowser), scrolled, TRUE, TRUE, 0); + gtk_box_pack_start (GTK_BOX (dbbrowser), priv->search_entry, FALSE, FALSE, 0); /* === Signals === */ g_signal_connect_swapped (dbbrowser->mpdclient, "connected", @@ -200,6 +209,13 @@ G_CALLBACK (cb_row_activated), dbbrowser); g_signal_connect_swapped (priv->treeview, "key-press-event", G_CALLBACK (cb_key_pressed), dbbrowser); + /* Search entry */ + g_signal_connect_swapped (priv->search_entry, "activate", + G_CALLBACK (cb_search_entry_activated), dbbrowser); + g_signal_connect_swapped (priv->search_entry, "key-release-event", + G_CALLBACK (cb_search_entry_key_released), dbbrowser); + g_signal_connect_swapped (priv->search_entry, "changed", + G_CALLBACK (cb_search_entry_changed), dbbrowser); } static void @@ -296,12 +312,16 @@ void xfmpc_dbbrowser_reload (XfmpcDbbrowser *dbbrowser) { + /* TODO block while doing a search */ XfmpcDbbrowserPrivate *priv = XFMPC_DBBROWSER_GET_PRIVATE (dbbrowser); gchar *filename; gchar *basename; gboolean is_dir; gint i = 0; + if (G_UNLIKELY (!xfmpc_mpdclient_is_connected (dbbrowser->mpdclient))) + return; + xfmpc_dbbrowser_clear (dbbrowser); if (!xfmpc_dbbrowser_wdir_is_root (dbbrowser)) @@ -441,3 +461,46 @@ return TRUE; } + + +static void +cb_search_entry_activated (XfmpcDbbrowser *dbbrowser) +{ + g_debug (__func__); + /* TODO execute the search */ +#if 0 + XfmpcDbbrowserPrivate *priv = XFMPC_DBBROWSER_GET_PRIVATE (dbbrowser); + GtkTreeModel *model = GTK_TREE_MODEL (priv->filter); +#endif +} + +static gboolean +cb_search_entry_key_released (XfmpcDbbrowser *dbbrowser, + GdkEventKey *event) +{ + XfmpcDbbrowserPrivate *priv = XFMPC_DBBROWSER_GET_PRIVATE (dbbrowser); + + if (event->type != GDK_KEY_RELEASE) + return FALSE; + + if (event->keyval == GDK_Escape) + { + g_debug (__func__); + gtk_entry_set_text (GTK_ENTRY (priv->search_entry), ""); + xfmpc_dbbrowser_reload (dbbrowser); + } + + return TRUE; +} + +static void +cb_search_entry_changed (XfmpcDbbrowser *dbbrowser) +{ + /* TODO do nothing? execute a timeout do postpone the search? */ +#if 0 + XfmpcPlaylistPrivate *priv = XFMPC_PLAYLIST_GET_PRIVATE (playlist); + + gtk_tree_model_filter_refilter (priv->filter); +#endif +} + Modified: xfmpc/trunk/src/playlist.c =================================================================== --- xfmpc/trunk/src/playlist.c 2008-06-01 09:21:09 UTC (rev 4874) +++ xfmpc/trunk/src/playlist.c 2008-06-01 19:17:04 UTC (rev 4875) @@ -165,7 +165,6 @@ G_TYPE_INT); /* === Filter === */ - priv->filter_entry = gtk_entry_new (); priv->filter = GTK_TREE_MODEL_FILTER (gtk_tree_model_filter_new (GTK_TREE_MODEL (priv->store), NULL)); g_object_unref (priv->store); gtk_tree_model_filter_set_visible_func (priv->filter, @@ -214,6 +213,9 @@ GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); + /* === Filter entry === */ + priv->filter_entry = gtk_entry_new (); + /* === Containers === */ gtk_container_add (GTK_CONTAINER (scrolled), priv->treeview); gtk_box_pack_start (GTK_BOX (playlist), scrolled, TRUE, TRUE, 0); @@ -229,7 +231,7 @@ G_CALLBACK (cb_row_activated), playlist); g_signal_connect_swapped (priv->treeview, "key-release-event", G_CALLBACK (cb_key_released), playlist); - /* Filter */ + /* Filter entry */ g_signal_connect_swapped (priv->filter_entry, "activate", G_CALLBACK (cb_filter_entry_activated), playlist); g_signal_connect_swapped (priv->filter_entry, "key-release-event", From mmassonnet at xfce.org Sun Jun 1 21:17:10 2008 From: mmassonnet at xfce.org (Mike Massonnet) Date: Sun, 1 Jun 2008 19:17:10 +0000 (UTC) Subject: [Goodies-commits] r4876 - xfmpc/trunk/src Message-ID: <20080601191710.056E6F29DD@mocha.foo-projects.org> Author: mmassonnet Date: 2008-06-01 19:17:09 +0000 (Sun, 01 Jun 2008) New Revision: 4876 Modified: xfmpc/trunk/src/dbbrowser.c xfmpc/trunk/src/dbbrowser.h xfmpc/trunk/src/mpdclient.c xfmpc/trunk/src/mpdclient.h Log: Add search functions inside XfmpcMpdclient and extend XfmpcDbbrowser * src/mpdclient.c: - Return the name of the song with new private function _get_formatted_name (remove duplicates of code) - New function xfmpc_mpdclient_database_search * src/dbbrowser.c: - New private boolean is_searching to lock the tree view from updating - New function xfmpc_dbbrowser_search, makes use of xfmpc_mdclient_search and populates the tree view Modified: xfmpc/trunk/src/dbbrowser.c =================================================================== --- xfmpc/trunk/src/dbbrowser.c 2008-06-01 19:17:04 UTC (rev 4875) +++ xfmpc/trunk/src/dbbrowser.c 2008-06-01 19:17:09 UTC (rev 4876) @@ -85,6 +85,8 @@ GtkListStore *store; GtkWidget *search_entry; + gboolean is_searching; + gchar *wdir; gchar *last_wdir; }; @@ -312,7 +314,6 @@ void xfmpc_dbbrowser_reload (XfmpcDbbrowser *dbbrowser) { - /* TODO block while doing a search */ XfmpcDbbrowserPrivate *priv = XFMPC_DBBROWSER_GET_PRIVATE (dbbrowser); gchar *filename; gchar *basename; @@ -321,6 +322,8 @@ if (G_UNLIKELY (!xfmpc_mpdclient_is_connected (dbbrowser->mpdclient))) return; + else if (priv->is_searching) + return; xfmpc_dbbrowser_clear (dbbrowser); @@ -356,8 +359,38 @@ } } +void +xfmpc_dbbrowser_search (XfmpcDbbrowser *dbbrowser, + const gchar *query) +{ + XfmpcDbbrowserPrivate *priv = XFMPC_DBBROWSER_GET_PRIVATE (dbbrowser); + gchar *filename; + gchar *basename; + gint i = 0; + if (G_UNLIKELY (!xfmpc_mpdclient_is_connected (dbbrowser->mpdclient))) + return; + priv->is_searching = TRUE; + xfmpc_dbbrowser_clear (dbbrowser); + + while (xfmpc_mpdclient_database_search (dbbrowser->mpdclient, query, &filename, &basename)) + { + xfmpc_dbbrowser_append (dbbrowser, filename, basename, FALSE); + g_free (filename); + g_free (basename); + i++; + } + + if (i == 0) + { + /* TODO display a message that the query returned "no result" */ + g_message ("change query bad query"); + } +} + + + void xfmpc_dbbrowser_set_wdir (XfmpcDbbrowser *dbbrowser, const gchar *dir) @@ -466,12 +499,17 @@ static void cb_search_entry_activated (XfmpcDbbrowser *dbbrowser) { - g_debug (__func__); - /* TODO execute the search */ -#if 0 - XfmpcDbbrowserPrivate *priv = XFMPC_DBBROWSER_GET_PRIVATE (dbbrowser); - GtkTreeModel *model = GTK_TREE_MODEL (priv->filter); -#endif + XfmpcDbbrowserPrivate *priv = XFMPC_DBBROWSER_GET_PRIVATE (dbbrowser); + const gchar *entry_text = gtk_entry_get_text (GTK_ENTRY (priv->search_entry)); + + if (entry_text[0] == '\0') + { + priv->is_searching = FALSE; + xfmpc_dbbrowser_reload (dbbrowser); + return; + } + + xfmpc_dbbrowser_search (dbbrowser, entry_text); } static gboolean @@ -485,7 +523,7 @@ if (event->keyval == GDK_Escape) { - g_debug (__func__); + priv->is_searching = FALSE; gtk_entry_set_text (GTK_ENTRY (priv->search_entry), ""); xfmpc_dbbrowser_reload (dbbrowser); } @@ -496,11 +534,6 @@ static void cb_search_entry_changed (XfmpcDbbrowser *dbbrowser) { - /* TODO do nothing? execute a timeout do postpone the search? */ -#if 0 - XfmpcPlaylistPrivate *priv = XFMPC_PLAYLIST_GET_PRIVATE (playlist); - - gtk_tree_model_filter_refilter (priv->filter); -#endif + /* TODO do nothing? execute a timeout to postpone the search? */ } Modified: xfmpc/trunk/src/dbbrowser.h =================================================================== --- xfmpc/trunk/src/dbbrowser.h 2008-06-01 19:17:04 UTC (rev 4875) +++ xfmpc/trunk/src/dbbrowser.h 2008-06-01 19:17:09 UTC (rev 4876) @@ -49,6 +49,8 @@ void xfmpc_dbbrowser_reload (XfmpcDbbrowser *dbbrowser); +void xfmpc_dbbrowser_search (XfmpcDbbrowser *dbbrowser, + const gchar *query); void xfmpc_dbbrowser_set_wdir (XfmpcDbbrowser *dbbrowser, const gchar *dir); gboolean xfmpc_dbbrowser_wdir_is_root (XfmpcDbbrowser *dbbrowser); Modified: xfmpc/trunk/src/mpdclient.c =================================================================== --- xfmpc/trunk/src/mpdclient.c 2008-06-01 19:17:04 UTC (rev 4875) +++ xfmpc/trunk/src/mpdclient.c 2008-06-01 19:17:09 UTC (rev 4876) @@ -61,9 +61,9 @@ static void cb_xfmpc_mpdclient_status_changed (MpdObj *mi, ChangedStatusType what, gpointer user_data); +static gchar * _get_formatted_name (mpd_Song *song); - struct _XfmpcMpdclientClass { GObjectClass parent_class; @@ -696,16 +696,7 @@ if (NULL != data) { - if (NULL != data->song->title) - { - if (data->song->artist) - *song = g_strdup_printf ("%s - %s", data->song->artist, data->song->title); - else - *song = g_strdup (data->song->title); - } - else - *song = g_path_get_basename (data->song->file); - + *song = _get_formatted_name (data->song); *length = g_strdup_printf ("%d:%02d", data->song->time / 60, data->song->time % 60); *id = data->song->id; } @@ -725,14 +716,25 @@ } gboolean +xfmpc_mpdclient_database_refresh (XfmpcMpdclient *mpdclient) +{ + XfmpcMpdclientPrivate *priv = XFMPC_MPDCLIENT_GET_PRIVATE (mpdclient); + + if (mpd_database_update_dir (priv->mi, "/") != MPD_OK) + return FALSE; + + return TRUE; +} + +gboolean xfmpc_mpdclient_database_read (XfmpcMpdclient *mpdclient, const gchar *dir, gchar **filename, gchar **basename, gboolean *is_dir) { - static MpdData *data = NULL; XfmpcMpdclientPrivate *priv = XFMPC_MPDCLIENT_GET_PRIVATE (mpdclient); + static MpdData *data = NULL; if (NULL == data) data = mpd_database_get_directory (priv->mi, (gchar *)dir); @@ -752,17 +754,7 @@ case MPD_DATA_TYPE_SONG: *is_dir = FALSE; *filename = g_strdup (data->song->file); - - if (NULL != data->song->title) - { - if (data->song->artist) - *basename = g_strdup_printf ("%s - %s", data->song->artist, data->song->title); - else - *basename = g_strdup (data->song->title); - } - else - *basename = g_path_get_basename (data->song->file); - + *basename = _get_formatted_name (data->song); break; case MPD_DATA_TYPE_PLAYLIST: @@ -783,13 +775,56 @@ } gboolean -xfmpc_mpdclient_database_refresh (XfmpcMpdclient *mpdclient) +xfmpc_mpdclient_database_search (XfmpcMpdclient *mpdclient, + const gchar *query, + gchar **filename, + gchar **basename) { XfmpcMpdclientPrivate *priv = XFMPC_MPDCLIENT_GET_PRIVATE (mpdclient); + static MpdData *data = NULL; + gchar **queries; + gint i; - if (mpd_database_update_dir (priv->mi, "/") != MPD_OK) - return FALSE; + if (NULL == data) + { + queries = g_strsplit (query, " ", -1); - return TRUE; + mpd_database_search_start (priv->mi, FALSE); + for (i = 0; queries[i] != NULL; i++) + mpd_database_search_add_constraint (priv->mi, MPD_TAG_ITEM_ANY, queries[i]); + data = mpd_database_search_commit (priv->mi); + + g_strfreev (queries); + } + else + data = mpd_data_get_next (data); + + if (NULL != data) + { + *filename = g_strdup (data->song->file); + *basename = _get_formatted_name (data->song); + } + + return NULL != data; } + + +static gchar * +_get_formatted_name (mpd_Song *song) +{ + gchar *formatted_name; + + if (NULL != song->title) + { + if (song->artist) + formatted_name = g_strdup_printf ("%s - %s", song->artist, song->title); + else + formatted_name = g_strdup (song->title); + } + else + formatted_name = g_path_get_basename (song->file); + + return formatted_name; +} + Modified: xfmpc/trunk/src/mpdclient.h =================================================================== --- xfmpc/trunk/src/mpdclient.h 2008-06-01 19:17:04 UTC (rev 4875) +++ xfmpc/trunk/src/mpdclient.h 2008-06-01 19:17:09 UTC (rev 4876) @@ -107,14 +107,18 @@ gchar **length); gboolean xfmpc_mpdclient_playlist_clear (XfmpcMpdclient *mpdclient); +gboolean xfmpc_mpdclient_database_refresh (XfmpcMpdclient *mpdclient); + gboolean xfmpc_mpdclient_database_read (XfmpcMpdclient *mpdclient, const gchar *dir, gchar **filename, gchar **basename, gboolean *is_dir); -gboolean xfmpc_mpdclient_database_refresh (XfmpcMpdclient *mpdclient); +gboolean xfmpc_mpdclient_database_search (XfmpcMpdclient *mpdclient, + const gchar *query, + gchar **filename, + gchar **basename); - G_END_DECLS #endif From mmassonnet at xfce.org Sun Jun 1 21:17:13 2008 From: mmassonnet at xfce.org (Mike Massonnet) Date: Sun, 1 Jun 2008 19:17:13 +0000 (UTC) Subject: [Goodies-commits] r4877 - xfmpc/trunk/src Message-ID: <20080601191713.8CA32F29DD@mocha.foo-projects.org> Author: mmassonnet Date: 2008-06-01 19:17:13 +0000 (Sun, 01 Jun 2008) New Revision: 4877 Modified: xfmpc/trunk/src/dbbrowser.c Log: Make search feature work with timeout * src/dbbrowser.c(cb_search_entry_changed): - Initiate a timeout on entry changes to automatically process a search Modified: xfmpc/trunk/src/dbbrowser.c =================================================================== --- xfmpc/trunk/src/dbbrowser.c 2008-06-01 19:17:09 UTC (rev 4876) +++ xfmpc/trunk/src/dbbrowser.c 2008-06-01 19:17:13 UTC (rev 4877) @@ -51,8 +51,12 @@ GdkEventKey *event); static void cb_search_entry_changed (XfmpcDbbrowser *dbbrowser); +static gboolean timeout_search (XfmpcDbbrowser *dbbrowser); +static void timeout_search_destroy (XfmpcDbbrowser *dbbrowser); + + /* List store identifiers */ enum { @@ -85,6 +89,7 @@ GtkListStore *store; GtkWidget *search_entry; + guint search_timeout; gboolean is_searching; gchar *wdir; @@ -384,7 +389,8 @@ if (i == 0) { - /* TODO display a message that the query returned "no result" */ + /* TODO display a message that the query returned "no result"? + * set the entry background in red? */ g_message ("change query bad query"); } } @@ -523,9 +529,7 @@ if (event->keyval == GDK_Escape) { - priv->is_searching = FALSE; gtk_entry_set_text (GTK_ENTRY (priv->search_entry), ""); - xfmpc_dbbrowser_reload (dbbrowser); } return TRUE; @@ -534,6 +538,27 @@ static void cb_search_entry_changed (XfmpcDbbrowser *dbbrowser) { - /* TODO do nothing? execute a timeout to postpone the search? */ + XfmpcDbbrowserPrivate *priv = XFMPC_DBBROWSER_GET_PRIVATE (dbbrowser); + + if (priv->search_timeout > 0) + g_source_remove (priv->search_timeout); + + priv->search_timeout = g_timeout_add_full (G_PRIORITY_DEFAULT, 642, + (GSourceFunc)timeout_search, dbbrowser, + (GDestroyNotify)timeout_search_destroy); } +static gboolean +timeout_search (XfmpcDbbrowser *dbbrowser) +{ + cb_search_entry_activated (dbbrowser); + return FALSE; +} + +static void +timeout_search_destroy (XfmpcDbbrowser *dbbrowser) +{ + XfmpcDbbrowserPrivate *priv = XFMPC_DBBROWSER_GET_PRIVATE (dbbrowser); + priv->search_timeout = 0; +} + From mmassonnet at xfce.org Sun Jun 1 21:17:17 2008 From: mmassonnet at xfce.org (Mike Massonnet) Date: Sun, 1 Jun 2008 19:17:17 +0000 (UTC) Subject: [Goodies-commits] r4878 - in xfmpc/trunk: . src Message-ID: <20080601191717.C284BF29DD@mocha.foo-projects.org> Author: mmassonnet Date: 2008-06-01 19:17:17 +0000 (Sun, 01 Jun 2008) New Revision: 4878 Modified: xfmpc/trunk/autogen.sh xfmpc/trunk/src/extended-interface.c Log: Misc fixes * autogen.sh: - s,remotes/trunk,git-svn, to fetch the svn revision with git-svn * src/extended-interface.c: - Forgot to include xfce-arrow-button.h * src/extended-interface.c(position_context_menu): - Remove ythickness from *y (need to find the good way) - Check if the menu pops out over the top of screen Modified: xfmpc/trunk/autogen.sh =================================================================== --- xfmpc/trunk/autogen.sh 2008-06-01 19:17:13 UTC (rev 4877) +++ xfmpc/trunk/autogen.sh 2008-06-01 19:17:17 UTC (rev 4878) @@ -30,7 +30,7 @@ # substitute revision and linguas linguas=`sed -e '/^#/d' po/LINGUAS` if test -d .git/svn; then - revision=`LC_ALL=C git-svn find-rev remotes/trunk` + revision=`LC_ALL=C git-svn find-rev git-svn` elif test -f .svn; then revision=`LC_ALL=C svn info $0 | awk '/^Revision: / {printf "%05d\n", $2}'` else Modified: xfmpc/trunk/src/extended-interface.c =================================================================== --- xfmpc/trunk/src/extended-interface.c 2008-06-01 19:17:13 UTC (rev 4877) +++ xfmpc/trunk/src/extended-interface.c 2008-06-01 19:17:17 UTC (rev 4878) @@ -27,6 +27,7 @@ #include "mpdclient.h" #include "playlist.h" #include "dbbrowser.h" +#include "xfce-arrow-button.h" #define BORDER 4 @@ -377,9 +378,14 @@ gdk_window_get_origin (widget->window, &root_x, &root_y); *x = root_x + widget->allocation.x; - *y = root_y + widget->allocation.y + widget->style->ythickness; + /* TODO find the good way to add spacing to *y */ + *y = root_y + widget->allocation.y; if (*y > gdk_screen_height () - menu_req.height) *y = gdk_screen_height () - menu_req.height; + else if (*y < 0) + *y = 0; + + *push_in = FALSE; } From stephan at xfce.org Mon Jun 2 00:32:04 2008 From: stephan at xfce.org (Stephan Arts) Date: Sun, 1 Jun 2008 22:32:04 +0000 (UTC) Subject: [Goodies-commits] r4879 - in ristretto/trunk: po src Message-ID: <20080601223204.8F32EF29DD@mocha.foo-projects.org> Author: stephan Date: 2008-06-01 22:32:04 +0000 (Sun, 01 Jun 2008) New Revision: 4879 Added: ristretto/trunk/src/save_dialog.c ristretto/trunk/src/save_dialog.h Modified: ristretto/trunk/po/bg.po ristretto/trunk/po/cs.po ristretto/trunk/po/de.po ristretto/trunk/po/el.po ristretto/trunk/po/en_GB.po ristretto/trunk/po/fi.po ristretto/trunk/po/fr.po ristretto/trunk/po/hu.po ristretto/trunk/po/it.po ristretto/trunk/po/lv.po ristretto/trunk/po/nb_NO.po ristretto/trunk/po/nl.po ristretto/trunk/po/pt_BR.po ristretto/trunk/po/pt_PT.po ristretto/trunk/po/ristretto.pot ristretto/trunk/po/ru.po ristretto/trunk/po/sk.po ristretto/trunk/po/tr.po ristretto/trunk/po/ur.po ristretto/trunk/po/zh_CN.po ristretto/trunk/src/Makefile.am ristretto/trunk/src/main_window.c Log: Update .po files Add initial draft of the file-save dialog. Modified: ristretto/trunk/po/bg.po =================================================================== --- ristretto/trunk/po/bg.po 2008-06-01 19:17:17 UTC (rev 4878) +++ ristretto/trunk/po/bg.po 2008-06-01 22:32:04 UTC (rev 4879) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ristretto 0.0.15\n" "Report-Msgid-Bugs-To: xfce-i18n at xfce.org\n" -"POT-Creation-Date: 2008-05-24 15:06+0200\n" +"POT-Creation-Date: 2008-06-02 00:31+0200\n" "PO-Revision-Date: 2008-01-02 23:03+0200\n" "Last-Translator: Plamen Stoev \n" "Language-Team: \n" @@ -41,156 +41,160 @@ "Опитайте %s --help за да видите пълен списък с наличните опции на командния " "ред.\n" -#: ../src/main.c:448 ../src/main_window.c:1614 ../src/main_window.c:1654 -#: ../src/main_window.c:1691 +#: ../src/main.c:448 ../src/main_window.c:1636 ../src/main_window.c:1676 +#: ../src/main_window.c:1713 #, fuzzy msgid "Opening file(s)..." msgstr "Отваряне с..." #. Create 'File' menu -#: ../src/main_window.c:339 +#: ../src/main_window.c:340 msgid "_File" msgstr "_Файл" -#: ../src/main_window.c:346 +#: ../src/main_window.c:347 msgid "O_pen Folder" msgstr "Отваряне на папка" -#: ../src/main_window.c:347 +#: ../src/main_window.c:348 msgid "_Recently used" msgstr "Отваряни наскоро" -#: ../src/main_window.c:352 +#: ../src/main_window.c:353 msgid "Close _all" msgstr "" #. Create 'Edit' menu -#: ../src/main_window.c:382 +#: ../src/main_window.c:383 msgid "_Edit" msgstr "_Редактиране" -#: ../src/main_window.c:387 ../src/main_window.c:685 +#: ../src/main_window.c:388 ../src/main_window.c:686 msgid "Open with..." msgstr "Отваряне с..." -#: ../src/main_window.c:395 ../src/main_window.c:696 +#: ../src/main_window.c:396 ../src/main_window.c:697 msgid "No applications available" msgstr "Няма налични приложения" #. Create 'View' menu -#: ../src/main_window.c:404 +#: ../src/main_window.c:405 msgid "_View" msgstr "Преглед" -#: ../src/main_window.c:411 +#: ../src/main_window.c:412 msgid "Show _Toolbar" msgstr "Показване на лентата с инструменти" -#: ../src/main_window.c:412 +#: ../src/main_window.c:413 msgid "Thumbnail _Viewer" msgstr "Визуализатор на умалени изображения" -#: ../src/main_window.c:416 +#: ../src/main_window.c:417 msgid "_Zooming" msgstr "Мащабиране" -#: ../src/main_window.c:417 +#: ../src/main_window.c:418 msgid "_Rotate" msgstr "Завъртане" -#: ../src/main_window.c:424 +#: ../src/main_window.c:425 msgid "_Set as wallpaper" msgstr "" -#: ../src/main_window.c:502 +#: ../src/main_window.c:503 msgid "Show _Horizontally" msgstr "Покажи хоризонтално" -#: ../src/main_window.c:506 +#: ../src/main_window.c:507 msgid "Show _Vertically" msgstr "Покажи вертикално" -#: ../src/main_window.c:510 +#: ../src/main_window.c:511 msgid "H_ide" msgstr "Скриване" -#: ../src/main_window.c:547 +#: ../src/main_window.c:548 msgid "Rotate _Right" msgstr "Завъртане надясно" -#: ../src/main_window.c:548 +#: ../src/main_window.c:549 msgid "Rotate _Left" msgstr "Завъртане наляво" #. Create 'Go' menu -#: ../src/main_window.c:569 +#: ../src/main_window.c:570 msgid "_Go" msgstr "Отиване" #. Create 'Help' menu -#: ../src/main_window.c:600 +#: ../src/main_window.c:601 msgid "_Help" msgstr "Помощ" -#: ../src/main_window.c:1398 +#: ../src/main_window.c:933 +msgid "One or more images have been modified, do you want to save the changes?" +msgstr "" + +#: ../src/main_window.c:1420 msgid "Image viewer Preferences" msgstr "Предпочитания" -#: ../src/main_window.c:1416 +#: ../src/main_window.c:1438 msgid "Behaviour" msgstr "" -#: ../src/main_window.c:1420 +#: ../src/main_window.c:1442 msgid "Slideshow" msgstr "Прожекция" -#: ../src/main_window.c:1424 +#: ../src/main_window.c:1446 msgid "Display" msgstr "Дисплей" -#: ../src/main_window.c:1429 +#: ../src/main_window.c:1451 msgid "Scaling" msgstr "" -#: ../src/main_window.c:1431 +#: ../src/main_window.c:1453 msgid "Don't scale over 100% when maximizing the window." msgstr "" -#: ../src/main_window.c:1441 +#: ../src/main_window.c:1463 msgid "Background Color" msgstr "Цвят на фона" -#: ../src/main_window.c:1443 +#: ../src/main_window.c:1465 msgid "_Override Background Color:" msgstr "Замяна на фоновия цвят" -#: ../src/main_window.c:1466 +#: ../src/main_window.c:1488 #, fuzzy msgid "Image Cache" msgstr "Програма за преглед на изображения" -#: ../src/main_window.c:1469 +#: ../src/main_window.c:1491 msgid "Cache size:" msgstr "" -#: ../src/main_window.c:1470 +#: ../src/main_window.c:1492 msgid "MB" msgstr "" -#: ../src/main_window.c:1486 +#: ../src/main_window.c:1508 msgid "Timeout" msgstr "Пауза" -#: ../src/main_window.c:1489 +#: ../src/main_window.c:1511 msgid "Preload" msgstr "Предварително зареждане" -#: ../src/main_window.c:1492 +#: ../src/main_window.c:1514 #, fuzzy msgid "Thumbnails" msgstr "Визуализатор на умалени изображения" -#: ../src/main_window.c:1498 +#: ../src/main_window.c:1520 msgid "" "The time period an individual image is displayed during a slideshow\n" "(in seconds)" @@ -198,7 +202,7 @@ "Времето за което се показва едно изображение при прожекция\n" "(в секунди)" -#: ../src/main_window.c:1502 +#: ../src/main_window.c:1524 msgid "" "Preload images during slideshow\n" "(uses more memory)" @@ -206,23 +210,23 @@ "Предварително зареждане на изображенията при прожекция\n" "(използва се повече памет)" -#: ../src/main_window.c:1503 +#: ../src/main_window.c:1525 msgid "_Preload images" msgstr "Предварително зареждане на изображения" -#: ../src/main_window.c:1505 +#: ../src/main_window.c:1527 msgid "Hide the thumbnails bar during slideshow" msgstr "" -#: ../src/main_window.c:1506 +#: ../src/main_window.c:1528 msgid "_Hide thumbnails" msgstr "" -#: ../src/main_window.c:1572 +#: ../src/main_window.c:1594 msgid "Developer:" msgstr "Разработчик:" -#: ../src/main_window.c:1582 +#: ../src/main_window.c:1604 msgid "" "Ristretto is a fast and lightweight picture-viewer for the Xfce desktop " "environment." @@ -230,23 +234,23 @@ "Ristretto е бърза и лека програма за преглед на изображения за работната " "среда XFCE" -#: ../src/main_window.c:1590 +#: ../src/main_window.c:1612 msgid "translator-credits" msgstr "Пламен Стоев " -#: ../src/main_window.c:1616 +#: ../src/main_window.c:1638 msgid "Open image" msgstr "Отваряне на изображение" -#: ../src/main_window.c:1634 +#: ../src/main_window.c:1656 msgid "Could not open file" msgstr "Файлът не може да бъде отворен" -#: ../src/main_window.c:1656 +#: ../src/main_window.c:1678 msgid "Open folder" msgstr "Отваряне на папка" -#: ../src/main_window.c:1731 +#: ../src/main_window.c:1753 msgid "" "Are you sure you want to clear ristretto's list of recently opened documents?" msgstr "" Modified: ristretto/trunk/po/cs.po =================================================================== --- ristretto/trunk/po/cs.po 2008-06-01 19:17:17 UTC (rev 4878) +++ ristretto/trunk/po/cs.po 2008-06-01 22:32:04 UTC (rev 4879) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ristretto\n" "Report-Msgid-Bugs-To: xfce-i18n at xfce.org\n" -"POT-Creation-Date: 2008-05-24 15:06+0200\n" +"POT-Creation-Date: 2008-06-02 00:31+0200\n" "PO-Revision-Date: 2008-01-12 20:12+0100\n" "Last-Translator: Miro Hrončok \n" "Language-Team: Czech\n" @@ -38,156 +38,160 @@ "%s: %s\n" "Napište %s --help pro seznam všech možných parametrů.\n" -#: ../src/main.c:448 ../src/main_window.c:1614 ../src/main_window.c:1654 -#: ../src/main_window.c:1691 +#: ../src/main.c:448 ../src/main_window.c:1636 ../src/main_window.c:1676 +#: ../src/main_window.c:1713 #, fuzzy msgid "Opening file(s)..." msgstr "Otevřít pomocí..." #. Create 'File' menu -#: ../src/main_window.c:339 +#: ../src/main_window.c:340 msgid "_File" msgstr "_Soubor" -#: ../src/main_window.c:346 +#: ../src/main_window.c:347 msgid "O_pen Folder" msgstr "O_tevřít složku" -#: ../src/main_window.c:347 +#: ../src/main_window.c:348 msgid "_Recently used" msgstr "_Naposledy otevřené" -#: ../src/main_window.c:352 +#: ../src/main_window.c:353 msgid "Close _all" msgstr "" #. Create 'Edit' menu -#: ../src/main_window.c:382 +#: ../src/main_window.c:383 msgid "_Edit" msgstr "_Upravit" -#: ../src/main_window.c:387 ../src/main_window.c:685 +#: ../src/main_window.c:388 ../src/main_window.c:686 msgid "Open with..." msgstr "Otevřít pomocí..." -#: ../src/main_window.c:395 ../src/main_window.c:696 +#: ../src/main_window.c:396 ../src/main_window.c:697 msgid "No applications available" msgstr "Nejsou k dispozici žádné programy" #. Create 'View' menu -#: ../src/main_window.c:404 +#: ../src/main_window.c:405 msgid "_View" msgstr "_Zobrazit" -#: ../src/main_window.c:411 +#: ../src/main_window.c:412 msgid "Show _Toolbar" msgstr "Zo_brazit nástrojovou lištu" -#: ../src/main_window.c:412 +#: ../src/main_window.c:413 msgid "Thumbnail _Viewer" msgstr "_Náhledy" -#: ../src/main_window.c:416 +#: ../src/main_window.c:417 msgid "_Zooming" msgstr "_Zoom" -#: ../src/main_window.c:417 +#: ../src/main_window.c:418 msgid "_Rotate" msgstr "_Rotace" -#: ../src/main_window.c:424 +#: ../src/main_window.c:425 msgid "_Set as wallpaper" msgstr "" -#: ../src/main_window.c:502 +#: ../src/main_window.c:503 msgid "Show _Horizontally" msgstr "_Horizontálně" -#: ../src/main_window.c:506 +#: ../src/main_window.c:507 msgid "Show _Vertically" msgstr "_Vertikálně" -#: ../src/main_window.c:510 +#: ../src/main_window.c:511 msgid "H_ide" msgstr "_Nezobrazovat" -#: ../src/main_window.c:547 +#: ../src/main_window.c:548 msgid "Rotate _Right" msgstr "Otočit do_prava" -#: ../src/main_window.c:548 +#: ../src/main_window.c:549 msgid "Rotate _Left" msgstr "Otočit do_leva" #. Create 'Go' menu -#: ../src/main_window.c:569 +#: ../src/main_window.c:570 msgid "_Go" msgstr "_Přejít" #. Create 'Help' menu -#: ../src/main_window.c:600 +#: ../src/main_window.c:601 msgid "_Help" msgstr "_Nápověda" -#: ../src/main_window.c:1398 +#: ../src/main_window.c:933 +msgid "One or more images have been modified, do you want to save the changes?" +msgstr "" + +#: ../src/main_window.c:1420 msgid "Image viewer Preferences" msgstr "Volby prohlížeče obrázků" -#: ../src/main_window.c:1416 +#: ../src/main_window.c:1438 msgid "Behaviour" msgstr "Chování" -#: ../src/main_window.c:1420 +#: ../src/main_window.c:1442 msgid "Slideshow" msgstr "Promítání snímků" -#: ../src/main_window.c:1424 +#: ../src/main_window.c:1446 msgid "Display" msgstr "Zobrazení" -#: ../src/main_window.c:1429 +#: ../src/main_window.c:1451 #, fuzzy msgid "Scaling" msgstr "Mezery" -#: ../src/main_window.c:1431 +#: ../src/main_window.c:1453 msgid "Don't scale over 100% when maximizing the window." msgstr "" -#: ../src/main_window.c:1441 +#: ../src/main_window.c:1463 msgid "Background Color" msgstr "Barva pozadí" -#: ../src/main_window.c:1443 +#: ../src/main_window.c:1465 msgid "_Override Background Color:" msgstr "Určit _barvu pozadí:" -#: ../src/main_window.c:1466 +#: ../src/main_window.c:1488 msgid "Image Cache" msgstr "Vyrovnávací paměť" -#: ../src/main_window.c:1469 +#: ../src/main_window.c:1491 msgid "Cache size:" msgstr "Velikost vyrovnávací paměti:" -#: ../src/main_window.c:1470 +#: ../src/main_window.c:1492 msgid "MB" msgstr "MB" -#: ../src/main_window.c:1486 +#: ../src/main_window.c:1508 msgid "Timeout" msgstr "Prodleva" -#: ../src/main_window.c:1489 +#: ../src/main_window.c:1511 msgid "Preload" msgstr "Načítat dopředu" -#: ../src/main_window.c:1492 +#: ../src/main_window.c:1514 #, fuzzy msgid "Thumbnails" msgstr "_Náhledy" -#: ../src/main_window.c:1498 +#: ../src/main_window.c:1520 msgid "" "The time period an individual image is displayed during a slideshow\n" "(in seconds)" @@ -195,7 +199,7 @@ "Časový interval po který je zobrazen jeden snímek při promítání\n" "(ve vteřinách)" -#: ../src/main_window.c:1502 +#: ../src/main_window.c:1524 msgid "" "Preload images during slideshow\n" "(uses more memory)" @@ -203,23 +207,23 @@ "Načítat snímky do paměti ještě předtím, než mají být zobrazeny\n" "(použije se více paměti)" -#: ../src/main_window.c:1503 +#: ../src/main_window.c:1525 msgid "_Preload images" msgstr "Načítat _předem" -#: ../src/main_window.c:1505 +#: ../src/main_window.c:1527 msgid "Hide the thumbnails bar during slideshow" msgstr "" -#: ../src/main_window.c:1506 +#: ../src/main_window.c:1528 msgid "_Hide thumbnails" msgstr "" -#: ../src/main_window.c:1572 +#: ../src/main_window.c:1594 msgid "Developer:" msgstr "Vývojář:" -#: ../src/main_window.c:1582 +#: ../src/main_window.c:1604 msgid "" "Ristretto is a fast and lightweight picture-viewer for the Xfce desktop " "environment." @@ -227,23 +231,23 @@ "Ristretto je rychlý a odlehčený prohlížeč obrázků pro desktopové prostředí " "Xfce." -#: ../src/main_window.c:1590 +#: ../src/main_window.c:1612 msgid "translator-credits" msgstr "Miro Hrončok " -#: ../src/main_window.c:1616 +#: ../src/main_window.c:1638 msgid "Open image" msgstr "Načíst obrázek" -#: ../src/main_window.c:1634 +#: ../src/main_window.c:1656 msgid "Could not open file" msgstr "Nemohu otevřít soubor" -#: ../src/main_window.c:1656 +#: ../src/main_window.c:1678 msgid "Open folder" msgstr "Otevřít složku" -#: ../src/main_window.c:1731 +#: ../src/main_window.c:1753 msgid "" "Are you sure you want to clear ristretto's list of recently opened documents?" msgstr "Opravdu chcete vyprázdnit seznam naposledy otevřených dokumentů?" Modified: ristretto/trunk/po/de.po =================================================================== --- ristretto/trunk/po/de.po 2008-06-01 19:17:17 UTC (rev 4878) +++ ristretto/trunk/po/de.po 2008-06-01 22:32:04 UTC (rev 4879) @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: ristretto\n" "Report-Msgid-Bugs-To: xfce-i18n at xfce.org\n" -"POT-Creation-Date: 2008-05-24 15:06+0200\n" +"POT-Creation-Date: 2008-06-02 00:31+0200\n" "PO-Revision-Date: 2007-12-01 17:41:21+0000\n" "Last-Translator: Fabian Nowak \n" "Language-Team: German\n" @@ -40,154 +40,158 @@ "Versuchen Sie »%s --help«, um eine komplette Liste verfügbarer " "Kommandozeilenoptionen anzusehen.\n" -#: ../src/main.c:448 ../src/main_window.c:1614 ../src/main_window.c:1654 -#: ../src/main_window.c:1691 +#: ../src/main.c:448 ../src/main_window.c:1636 ../src/main_window.c:1676 +#: ../src/main_window.c:1713 msgid "Opening file(s)..." msgstr "Datei(en) öffnen..." #. Create 'File' menu -#: ../src/main_window.c:339 +#: ../src/main_window.c:340 msgid "_File" msgstr "_Datei" -#: ../src/main_window.c:346 +#: ../src/main_window.c:347 msgid "O_pen Folder" msgstr "_Ordner öffnen" -#: ../src/main_window.c:347 +#: ../src/main_window.c:348 msgid "_Recently used" msgstr "_Zuletzt geöffnet" -#: ../src/main_window.c:352 +#: ../src/main_window.c:353 msgid "Close _all" msgstr "" #. Create 'Edit' menu -#: ../src/main_window.c:382 +#: ../src/main_window.c:383 msgid "_Edit" msgstr "_Bearbeiten" -#: ../src/main_window.c:387 ../src/main_window.c:685 +#: ../src/main_window.c:388 ../src/main_window.c:686 msgid "Open with..." msgstr "Öffnen mit..." -#: ../src/main_window.c:395 ../src/main_window.c:696 +#: ../src/main_window.c:396 ../src/main_window.c:697 msgid "No applications available" msgstr "Keine Programme verfügbar" #. Create 'View' menu -#: ../src/main_window.c:404 +#: ../src/main_window.c:405 msgid "_View" msgstr "_Ansicht" -#: ../src/main_window.c:411 +#: ../src/main_window.c:412 msgid "Show _Toolbar" msgstr "_Werkzeugleiste anzeigen" -#: ../src/main_window.c:412 +#: ../src/main_window.c:413 msgid "Thumbnail _Viewer" msgstr "Miniaturbilder" -#: ../src/main_window.c:416 +#: ../src/main_window.c:417 msgid "_Zooming" msgstr "_Vergrößerung" -#: ../src/main_window.c:417 +#: ../src/main_window.c:418 msgid "_Rotate" msgstr "_Drehen" -#: ../src/main_window.c:424 +#: ../src/main_window.c:425 msgid "_Set as wallpaper" msgstr "" -#: ../src/main_window.c:502 +#: ../src/main_window.c:503 msgid "Show _Horizontally" msgstr "_Horizontal anzeigen" -#: ../src/main_window.c:506 +#: ../src/main_window.c:507 msgid "Show _Vertically" msgstr "_Vertikal anzeigen" -#: ../src/main_window.c:510 +#: ../src/main_window.c:511 msgid "H_ide" msgstr "Ver_bergen" -#: ../src/main_window.c:547 +#: ../src/main_window.c:548 msgid "Rotate _Right" msgstr "Nach _rechts drehen" -#: ../src/main_window.c:548 +#: ../src/main_window.c:549 msgid "Rotate _Left" msgstr "Nach _links drehen" #. Create 'Go' menu -#: ../src/main_window.c:569 +#: ../src/main_window.c:570 msgid "_Go" msgstr "_Gehe zu" #. Create 'Help' menu -#: ../src/main_window.c:600 +#: ../src/main_window.c:601 msgid "_Help" msgstr "_Hilfe" -#: ../src/main_window.c:1398 +#: ../src/main_window.c:933 +msgid "One or more images have been modified, do you want to save the changes?" +msgstr "" + +#: ../src/main_window.c:1420 msgid "Image viewer Preferences" msgstr "Einstellungen für den Bildbetrachter" -#: ../src/main_window.c:1416 +#: ../src/main_window.c:1438 msgid "Behaviour" msgstr "Verhalten" -#: ../src/main_window.c:1420 +#: ../src/main_window.c:1442 msgid "Slideshow" msgstr "Diavorführung" -#: ../src/main_window.c:1424 +#: ../src/main_window.c:1446 msgid "Display" msgstr "Anzeige" -#: ../src/main_window.c:1429 +#: ../src/main_window.c:1451 msgid "Scaling" msgstr "Skalierung" -#: ../src/main_window.c:1431 +#: ../src/main_window.c:1453 msgid "Don't scale over 100% when maximizing the window." msgstr "Beim Maximieren des Fensters nicht über 100% vergrößern." -#: ../src/main_window.c:1441 +#: ../src/main_window.c:1463 msgid "Background Color" msgstr "Hintergrundfarbe" -#: ../src/main_window.c:1443 +#: ../src/main_window.c:1465 msgid "_Override Background Color:" msgstr "Hintergrundfarbe ü_berschreiben" -#: ../src/main_window.c:1466 +#: ../src/main_window.c:1488 msgid "Image Cache" msgstr "Bildzwischenspeicher" -#: ../src/main_window.c:1469 +#: ../src/main_window.c:1491 msgid "Cache size:" msgstr "Zwischenspeichergröße:" -#: ../src/main_window.c:1470 +#: ../src/main_window.c:1492 msgid "MB" msgstr "MB" -#: ../src/main_window.c:1486 +#: ../src/main_window.c:1508 msgid "Timeout" msgstr "Zeitspanne" -#: ../src/main_window.c:1489 +#: ../src/main_window.c:1511 msgid "Preload" msgstr "Vorladen" -#: ../src/main_window.c:1492 +#: ../src/main_window.c:1514 #, fuzzy msgid "Thumbnails" msgstr "Miniaturbilder" -#: ../src/main_window.c:1498 +#: ../src/main_window.c:1520 msgid "" "The time period an individual image is displayed during a slideshow\n" "(in seconds)" @@ -195,7 +199,7 @@ "Die Zeitspanne, während der ein Bild angezeigt wird\n" "(in Sekunden)" -#: ../src/main_window.c:1502 +#: ../src/main_window.c:1524 msgid "" "Preload images during slideshow\n" "(uses more memory)" @@ -203,23 +207,23 @@ "Bilder während einer Diavorführung vorladen\n" "(benötigt mehr Speicher)" -#: ../src/main_window.c:1503 +#: ../src/main_window.c:1525 msgid "_Preload images" msgstr "Bilder _vorladen" -#: ../src/main_window.c:1505 +#: ../src/main_window.c:1527 msgid "Hide the thumbnails bar during slideshow" msgstr "" -#: ../src/main_window.c:1506 +#: ../src/main_window.c:1528 msgid "_Hide thumbnails" msgstr "" -#: ../src/main_window.c:1572 +#: ../src/main_window.c:1594 msgid "Developer:" msgstr "Entwickler:" -#: ../src/main_window.c:1582 +#: ../src/main_window.c:1604 msgid "" "Ristretto is a fast and lightweight picture-viewer for the Xfce desktop " "environment." @@ -227,25 +231,25 @@ "Ristretto ist ein schneller und schlanker Bildbetrachter für die " "Arbeitsumgebung Xfce." -#: ../src/main_window.c:1590 +#: ../src/main_window.c:1612 msgid "translator-credits" msgstr "" "Christian Dywan \n" "Fabian Nowak " -#: ../src/main_window.c:1616 +#: ../src/main_window.c:1638 msgid "Open image" msgstr "Bild öffnen" -#: ../src/main_window.c:1634 +#: ../src/main_window.c:1656 msgid "Could not open file" msgstr "Datei konnte nicht geöffnet werden" -#: ../src/main_window.c:1656 +#: ../src/main_window.c:1678 msgid "Open folder" msgstr "_Ordner öffnen" -#: ../src/main_window.c:1731 +#: ../src/main_window.c:1753 msgid "" "Are you sure you want to clear ristretto's list of recently opened documents?" msgstr "" Modified: ristretto/trunk/po/el.po =================================================================== --- ristretto/trunk/po/el.po 2008-06-01 19:17:17 UTC (rev 4878) +++ ristretto/trunk/po/el.po 2008-06-01 22:32:04 UTC (rev 4879) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: ristretto\n" "Report-Msgid-Bugs-To: xfce-i18n at xfce.org\n" -"POT-Creation-Date: 2008-05-24 15:06+0200\n" +"POT-Creation-Date: 2008-06-02 00:31+0200\n" "PO-Revision-Date: 2008-03-25 12:43+0200\n" "Last-Translator: Evaggelos Balaskas \n" "Language-Team: Greek \n" @@ -39,154 +39,158 @@ "Δοκίμασε %s --help για να δεις μία πλήρη λίστα με διαθέσιμες παραμέτρους για " "την γραμμή εντολώνto.\n" -#: ../src/main.c:448 ../src/main_window.c:1614 ../src/main_window.c:1654 -#: ../src/main_window.c:1691 +#: ../src/main.c:448 ../src/main_window.c:1636 ../src/main_window.c:1676 +#: ../src/main_window.c:1713 msgid "Opening file(s)..." msgstr "Άνοιγμα αρχείου(ων)..." #. Create 'File' menu -#: ../src/main_window.c:339 +#: ../src/main_window.c:340 msgid "_File" msgstr "_Αρχείο" -#: ../src/main_window.c:346 +#: ../src/main_window.c:347 msgid "O_pen Folder" msgstr "Άν_οιγμα καταλόγου" -#: ../src/main_window.c:347 +#: ../src/main_window.c:348 msgid "_Recently used" msgstr "_Πρόσφατα αρχεία" -#: ../src/main_window.c:352 +#: ../src/main_window.c:353 msgid "Close _all" msgstr "" #. Create 'Edit' menu -#: ../src/main_window.c:382 +#: ../src/main_window.c:383 msgid "_Edit" msgstr "_Επεξεργασία" -#: ../src/main_window.c:387 ../src/main_window.c:685 +#: ../src/main_window.c:388 ../src/main_window.c:686 msgid "Open with..." msgstr "Άνοιγμα με ..." -#: ../src/main_window.c:395 ../src/main_window.c:696 +#: ../src/main_window.c:396 ../src/main_window.c:697 msgid "No applications available" msgstr "Μη διαθέσιμες εφαρμογές" #. Create 'View' menu -#: ../src/main_window.c:404 +#: ../src/main_window.c:405 msgid "_View" msgstr "_Εμφάνιση" -#: ../src/main_window.c:411 +#: ../src/main_window.c:412 msgid "Show _Toolbar" msgstr "Εμφάνιση _εργαλειοθήκης" -#: ../src/main_window.c:412 +#: ../src/main_window.c:413 msgid "Thumbnail _Viewer" msgstr "Εμφάνιση Ει_κονιδίων" -#: ../src/main_window.c:416 +#: ../src/main_window.c:417 msgid "_Zooming" msgstr "_Mεγέθυνση" -#: ../src/main_window.c:417 +#: ../src/main_window.c:418 msgid "_Rotate" msgstr "_Περιστροφή" -#: ../src/main_window.c:424 +#: ../src/main_window.c:425 msgid "_Set as wallpaper" msgstr "" -#: ../src/main_window.c:502 +#: ../src/main_window.c:503 msgid "Show _Horizontally" msgstr "Εμφάνιση _οριζόντια" -#: ../src/main_window.c:506 +#: ../src/main_window.c:507 msgid "Show _Vertically" msgstr "Εμφάνιση _κάθετα" -#: ../src/main_window.c:510 +#: ../src/main_window.c:511 msgid "H_ide" msgstr "Απόκρ_υψη" -#: ../src/main_window.c:547 +#: ../src/main_window.c:548 msgid "Rotate _Right" msgstr "Περιστροφή _δεξιά" -#: ../src/main_window.c:548 +#: ../src/main_window.c:549 msgid "Rotate _Left" msgstr "Περιστροφή _αριστερά" #. Create 'Go' menu -#: ../src/main_window.c:569 +#: ../src/main_window.c:570 msgid "_Go" msgstr "_Μετάβαση" #. Create 'Help' menu -#: ../src/main_window.c:600 +#: ../src/main_window.c:601 msgid "_Help" msgstr "_Βοήθεια" -#: ../src/main_window.c:1398 +#: ../src/main_window.c:933 +msgid "One or more images have been modified, do you want to save the changes?" +msgstr "" + +#: ../src/main_window.c:1420 msgid "Image viewer Preferences" msgstr "Ρυθμίσεις εφαρμογής προβολής εικόνων" -#: ../src/main_window.c:1416 +#: ../src/main_window.c:1438 msgid "Behaviour" msgstr "Συμπεριφορά" -#: ../src/main_window.c:1420 +#: ../src/main_window.c:1442 msgid "Slideshow" msgstr "Διαφάνειες" -#: ../src/main_window.c:1424 +#: ../src/main_window.c:1446 msgid "Display" msgstr "Προβολή" -#: ../src/main_window.c:1429 +#: ../src/main_window.c:1451 msgid "Scaling" msgstr "Αλλαγή κλίμακας" -#: ../src/main_window.c:1431 +#: ../src/main_window.c:1453 msgid "Don't scale over 100% when maximizing the window." msgstr "Μην μεγενθύνεις πάνω από 100% όταν μεγιστοποιείς το παράθυρο." -#: ../src/main_window.c:1441 +#: ../src/main_window.c:1463 msgid "Background Color" msgstr "Χρώμα παρασκηνίου" -#: ../src/main_window.c:1443 +#: ../src/main_window.c:1465 msgid "_Override Background Color:" msgstr "_Αγνόησε το χρώμα παρασκηνίου:" -#: ../src/main_window.c:1466 +#: ../src/main_window.c:1488 msgid "Image Cache" msgstr "Προσωρινή μνήμη εικόνας" -#: ../src/main_window.c:1469 +#: ../src/main_window.c:1491 msgid "Cache size:" msgstr "Μέγεθος προσωρινής μνήμης:" -#: ../src/main_window.c:1470 +#: ../src/main_window.c:1492 msgid "MB" msgstr "ΜΒ" -#: ../src/main_window.c:1486 +#: ../src/main_window.c:1508 msgid "Timeout" msgstr "Χρονικό όριο" -#: ../src/main_window.c:1489 +#: ../src/main_window.c:1511 msgid "Preload" msgstr "Προφόρτωση" -#: ../src/main_window.c:1492 +#: ../src/main_window.c:1514 #, fuzzy msgid "Thumbnails" msgstr "Εμφάνιση Ει_κονιδίων" -#: ../src/main_window.c:1498 +#: ../src/main_window.c:1520 msgid "" "The time period an individual image is displayed during a slideshow\n" "(in seconds)" @@ -195,7 +199,7 @@ "διαφάνειες\n" "(σε δευτερόλεπτα)" -#: ../src/main_window.c:1502 +#: ../src/main_window.c:1524 msgid "" "Preload images during slideshow\n" "(uses more memory)" @@ -203,23 +207,23 @@ "Προφόρτωση εικόνων κατά την διάρκεια διαφανειών\n" "(χρησιμοποιεί περισσότερη μνήμη)" -#: ../src/main_window.c:1503 +#: ../src/main_window.c:1525 msgid "_Preload images" msgstr "_Προφόρτωση εικόνων" -#: ../src/main_window.c:1505 +#: ../src/main_window.c:1527 msgid "Hide the thumbnails bar during slideshow" msgstr "" -#: ../src/main_window.c:1506 +#: ../src/main_window.c:1528 msgid "_Hide thumbnails" msgstr "" -#: ../src/main_window.c:1572 +#: ../src/main_window.c:1594 msgid "Developer:" msgstr "Προγραμματιστής:" -#: ../src/main_window.c:1582 +#: ../src/main_window.c:1604 msgid "" "Ristretto is a fast and lightweight picture-viewer for the Xfce desktop " "environment." @@ -227,23 +231,23 @@ "Το ristretto είναι ένα γρήγορο και ελαφρύ πρόγραμμα εμφάνισης εικόνων\n" " για το γραφικό περιβάλλον xfce." -#: ../src/main_window.c:1590 +#: ../src/main_window.c:1612 msgid "translator-credits" msgstr "Evaggelos Balaskas , 2008" -#: ../src/main_window.c:1616 +#: ../src/main_window.c:1638 msgid "Open image" msgstr "Άνοιγμα εικόνας" -#: ../src/main_window.c:1634 +#: ../src/main_window.c:1656 msgid "Could not open file" msgstr "Αποτυχία ανοίγματος εικόνας" -#: ../src/main_window.c:1656 +#: ../src/main_window.c:1678 msgid "Open folder" msgstr "Άνοιγμα καταλόγου" -#: ../src/main_window.c:1731 +#: ../src/main_window.c:1753 msgid "" "Are you sure you want to clear ristretto's list of recently opened documents?" msgstr "" Modified: ristretto/trunk/po/en_GB.po =================================================================== --- ristretto/trunk/po/en_GB.po 2008-06-01 19:17:17 UTC (rev 4878) +++ ristretto/trunk/po/en_GB.po 2008-06-01 22:32:04 UTC (rev 4879) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ristretto\n" "Report-Msgid-Bugs-To: xfce-i18n at xfce.org\n" -"POT-Creation-Date: 2008-05-24 15:06+0200\n" +"POT-Creation-Date: 2008-06-02 00:31+0200\n" "PO-Revision-Date: 2008-05-10 13:15+1000\n" "Last-Translator: Jeff Bailes \n" "Language-Team: English/GB\n" @@ -40,154 +40,158 @@ "%s: %s\n" "Try %s --help to see a full list of available command line options.\n" -#: ../src/main.c:448 ../src/main_window.c:1614 ../src/main_window.c:1654 -#: ../src/main_window.c:1691 +#: ../src/main.c:448 ../src/main_window.c:1636 ../src/main_window.c:1676 +#: ../src/main_window.c:1713 msgid "Opening file(s)..." msgstr "Opening file(s)..." #. Create 'File' menu -#: ../src/main_window.c:339 +#: ../src/main_window.c:340 msgid "_File" msgstr "_File" -#: ../src/main_window.c:346 +#: ../src/main_window.c:347 msgid "O_pen Folder" msgstr "O_pen Folder" -#: ../src/main_window.c:347 +#: ../src/main_window.c:348 msgid "_Recently used" msgstr "_Recently used" -#: ../src/main_window.c:352 +#: ../src/main_window.c:353 msgid "Close _all" msgstr "" #. Create 'Edit' menu -#: ../src/main_window.c:382 +#: ../src/main_window.c:383 msgid "_Edit" msgstr "_Edit" -#: ../src/main_window.c:387 ../src/main_window.c:685 +#: ../src/main_window.c:388 ../src/main_window.c:686 msgid "Open with..." msgstr "Open with..." -#: ../src/main_window.c:395 ../src/main_window.c:696 +#: ../src/main_window.c:396 ../src/main_window.c:697 msgid "No applications available" msgstr "No applications available" #. Create 'View' menu -#: ../src/main_window.c:404 +#: ../src/main_window.c:405 msgid "_View" msgstr "_View" -#: ../src/main_window.c:411 +#: ../src/main_window.c:412 msgid "Show _Toolbar" msgstr "Show _Toolbar" -#: ../src/main_window.c:412 +#: ../src/main_window.c:413 msgid "Thumbnail _Viewer" msgstr "Thumbnail _Viewer" -#: ../src/main_window.c:416 +#: ../src/main_window.c:417 msgid "_Zooming" msgstr "_Zooming" -#: ../src/main_window.c:417 +#: ../src/main_window.c:418 msgid "_Rotate" msgstr "_Rotate" -#: ../src/main_window.c:424 +#: ../src/main_window.c:425 msgid "_Set as wallpaper" msgstr "_Set as wallpaper" -#: ../src/main_window.c:502 +#: ../src/main_window.c:503 msgid "Show _Horizontally" msgstr "Show _Horizontally" -#: ../src/main_window.c:506 +#: ../src/main_window.c:507 msgid "Show _Vertically" msgstr "Show _Vertically" -#: ../src/main_window.c:510 +#: ../src/main_window.c:511 msgid "H_ide" msgstr "H_ide" -#: ../src/main_window.c:547 +#: ../src/main_window.c:548 msgid "Rotate _Right" msgstr "Rotate _Right" -#: ../src/main_window.c:548 +#: ../src/main_window.c:549 msgid "Rotate _Left" msgstr "Rotate _Left" #. Create 'Go' menu -#: ../src/main_window.c:569 +#: ../src/main_window.c:570 msgid "_Go" msgstr "_Go" #. Create 'Help' menu -#: ../src/main_window.c:600 +#: ../src/main_window.c:601 msgid "_Help" msgstr "_Help" -#: ../src/main_window.c:1398 +#: ../src/main_window.c:933 +msgid "One or more images have been modified, do you want to save the changes?" +msgstr "" + +#: ../src/main_window.c:1420 msgid "Image viewer Preferences" msgstr "Image viewer Preferences" -#: ../src/main_window.c:1416 +#: ../src/main_window.c:1438 msgid "Behaviour" msgstr "Behaviour" -#: ../src/main_window.c:1420 +#: ../src/main_window.c:1442 msgid "Slideshow" msgstr "Slideshow" -#: ../src/main_window.c:1424 +#: ../src/main_window.c:1446 msgid "Display" msgstr "Display" -#: ../src/main_window.c:1429 +#: ../src/main_window.c:1451 msgid "Scaling" msgstr "Scaling" -#: ../src/main_window.c:1431 +#: ../src/main_window.c:1453 msgid "Don't scale over 100% when maximizing the window." msgstr "Don't scale over 100% when maximising the window." -#: ../src/main_window.c:1441 +#: ../src/main_window.c:1463 msgid "Background Color" msgstr "Background Colour" -#: ../src/main_window.c:1443 +#: ../src/main_window.c:1465 msgid "_Override Background Color:" msgstr "_Override Background Colour:" -#: ../src/main_window.c:1466 +#: ../src/main_window.c:1488 msgid "Image Cache" msgstr "Image Cache" -#: ../src/main_window.c:1469 +#: ../src/main_window.c:1491 msgid "Cache size:" msgstr "Cache size:" -#: ../src/main_window.c:1470 +#: ../src/main_window.c:1492 msgid "MB" msgstr "MB" -#: ../src/main_window.c:1486 +#: ../src/main_window.c:1508 msgid "Timeout" msgstr "Timeout" -#: ../src/main_window.c:1489 +#: ../src/main_window.c:1511 msgid "Preload" msgstr "Preload" -#: ../src/main_window.c:1492 +#: ../src/main_window.c:1514 #, fuzzy msgid "Thumbnails" msgstr "Thumbnail _Viewer" -#: ../src/main_window.c:1498 +#: ../src/main_window.c:1520 msgid "" "The time period an individual image is displayed during a slideshow\n" "(in seconds)" @@ -195,7 +199,7 @@ "The time period an individual image is displayed during a slideshow\n" "(in seconds)" -#: ../src/main_window.c:1502 +#: ../src/main_window.c:1524 msgid "" "Preload images during slideshow\n" "(uses more memory)" @@ -203,23 +207,23 @@ "Preload images during slideshow\n" "(uses more memory)" -#: ../src/main_window.c:1503 +#: ../src/main_window.c:1525 msgid "_Preload images" msgstr "_Preload images" -#: ../src/main_window.c:1505 +#: ../src/main_window.c:1527 msgid "Hide the thumbnails bar during slideshow" msgstr "" -#: ../src/main_window.c:1506 +#: ../src/main_window.c:1528 msgid "_Hide thumbnails" msgstr "" -#: ../src/main_window.c:1572 +#: ../src/main_window.c:1594 msgid "Developer:" msgstr "Developer:" -#: ../src/main_window.c:1582 +#: ../src/main_window.c:1604 msgid "" "Ristretto is a fast and lightweight picture-viewer for the Xfce desktop " "environment." @@ -227,23 +231,23 @@ "Ristretto is a fast and lightweight picture-viewer for the Xfce desktop " "environment." -#: ../src/main_window.c:1590 +#: ../src/main_window.c:1612 msgid "translator-credits" msgstr "Jeff Bailes , 2008" -#: ../src/main_window.c:1616 +#: ../src/main_window.c:1638 msgid "Open image" msgstr "Open image" -#: ../src/main_window.c:1634 +#: ../src/main_window.c:1656 msgid "Could not open file" msgstr "Could not open file" -#: ../src/main_window.c:1656 +#: ../src/main_window.c:1678 msgid "Open folder" msgstr "Open folder" -#: ../src/main_window.c:1731 +#: ../src/main_window.c:1753 msgid "" "Are you sure you want to clear ristretto's list of recently opened documents?" msgstr "" Modified: ristretto/trunk/po/fi.po =================================================================== --- ristretto/trunk/po/fi.po 2008-06-01 19:17:17 UTC (rev 4878) +++ ristretto/trunk/po/fi.po 2008-06-01 22:32:04 UTC (rev 4879) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ristretto 0.0.5\n" "Report-Msgid-Bugs-To: xfce-i18n at xfce.org\n" -"POT-Creation-Date: 2008-05-25 10:07+0300\n" +"POT-Creation-Date: 2008-06-02 00:31+0200\n" "PO-Revision-Date: 2008-05-25 10:21+0300\n" "Last-Translator: Jari Rahkonen \n" "Language-Team: Finnish \n" @@ -37,203 +37,207 @@ "%s: %s\n" "Näet listan komentorivivalitsimista kirjoittamalla %s --help.\n" -#: ../src/main.c:448 ../src/main_window.c:1614 ../src/main_window.c:1654 -#: ../src/main_window.c:1691 +#: ../src/main.c:448 ../src/main_window.c:1636 ../src/main_window.c:1676 +#: ../src/main_window.c:1713 msgid "Opening file(s)..." msgstr "Avataan tiedosto(j)a..." #. Create 'File' menu -#: ../src/main_window.c:339 +#: ../src/main_window.c:340 msgid "_File" msgstr "_Tiedosto" -#: ../src/main_window.c:346 +#: ../src/main_window.c:347 msgid "O_pen Folder" msgstr "Avaa _hakemisto" -#: ../src/main_window.c:347 +#: ../src/main_window.c:348 msgid "_Recently used" msgstr "_Viimeaikaiset" -#: ../src/main_window.c:352 +#: ../src/main_window.c:353 msgid "Close _all" msgstr "Sulje _kaikki" #. Create 'Edit' menu -#: ../src/main_window.c:382 +#: ../src/main_window.c:383 msgid "_Edit" msgstr "_Muokkaa" -#: ../src/main_window.c:387 ../src/main_window.c:685 +#: ../src/main_window.c:388 ../src/main_window.c:686 msgid "Open with..." msgstr "Avaa _sovelluksessa..." -#: ../src/main_window.c:395 ../src/main_window.c:696 +#: ../src/main_window.c:396 ../src/main_window.c:697 msgid "No applications available" msgstr "Sovelluksia ei saatavilla" #. Create 'View' menu -#: ../src/main_window.c:404 +#: ../src/main_window.c:405 msgid "_View" msgstr "_Näytä" -#: ../src/main_window.c:411 +#: ../src/main_window.c:412 msgid "Show _Toolbar" msgstr "Näytä _työkalupalkki" -#: ../src/main_window.c:412 +#: ../src/main_window.c:413 msgid "Thumbnail _Viewer" msgstr "Pienoiskuvat" -#: ../src/main_window.c:416 +#: ../src/main_window.c:417 msgid "_Zooming" msgstr "_Suurennus" -#: ../src/main_window.c:417 +#: ../src/main_window.c:418 msgid "_Rotate" msgstr "Kää_nnä" -#: ../src/main_window.c:424 +#: ../src/main_window.c:425 msgid "_Set as wallpaper" msgstr "Aseta _taustakuvaksi" -#: ../src/main_window.c:502 +#: ../src/main_window.c:503 msgid "Show _Horizontally" msgstr "Näytä _vaakasuunnassa" -#: ../src/main_window.c:506 +#: ../src/main_window.c:507 msgid "Show _Vertically" msgstr "Näytä _pystysuunnassa" -#: ../src/main_window.c:510 +#: ../src/main_window.c:511 msgid "H_ide" msgstr "P_iilota" -#: ../src/main_window.c:547 +#: ../src/main_window.c:548 msgid "Rotate _Right" msgstr "Käännä _oikeaan" -#: ../src/main_window.c:548 +#: ../src/main_window.c:549 msgid "Rotate _Left" msgstr "Käännä _vasempaan" #. Create 'Go' menu -#: ../src/main_window.c:569 +#: ../src/main_window.c:570 msgid "_Go" msgstr "_Siirry" #. Create 'Help' menu -#: ../src/main_window.c:600 +#: ../src/main_window.c:601 msgid "_Help" msgstr "_Ohje" -#: ../src/main_window.c:1398 +#: ../src/main_window.c:933 +msgid "One or more images have been modified, do you want to save the changes?" +msgstr "" + +#: ../src/main_window.c:1420 msgid "Image viewer Preferences" msgstr "Kuvakatselimen asetukset" -#: ../src/main_window.c:1416 +#: ../src/main_window.c:1438 msgid "Behaviour" msgstr "Käytös" -#: ../src/main_window.c:1420 +#: ../src/main_window.c:1442 msgid "Slideshow" msgstr "Diaesitys" -#: ../src/main_window.c:1424 +#: ../src/main_window.c:1446 msgid "Display" msgstr "Näyttö" -#: ../src/main_window.c:1429 +#: ../src/main_window.c:1451 msgid "Scaling" msgstr "Kuvan koko" -#: ../src/main_window.c:1431 +#: ../src/main_window.c:1453 msgid "Don't scale over 100% when maximizing the window." msgstr "Älä suurenna kuvaa yli alkuperäiskokonsa, kun ikkuna suurennetaan." -#: ../src/main_window.c:1441 +#: ../src/main_window.c:1463 msgid "Background Color" msgstr "Taustaväri" -#: ../src/main_window.c:1443 +#: ../src/main_window.c:1465 msgid "_Override Background Color:" msgstr "_Korvaa taustaväri:" -#: ../src/main_window.c:1466 +#: ../src/main_window.c:1488 msgid "Image Cache" msgstr "Kuvavälimuisti" -#: ../src/main_window.c:1469 +#: ../src/main_window.c:1491 msgid "Cache size:" msgstr "Välimuistin koko:" -#: ../src/main_window.c:1470 +#: ../src/main_window.c:1492 msgid "MB" msgstr "Mt" -#: ../src/main_window.c:1486 +#: ../src/main_window.c:1508 msgid "Timeout" msgstr "Esitysaika" -#: ../src/main_window.c:1489 +#: ../src/main_window.c:1511 msgid "Preload" msgstr "Esilataus" -#: ../src/main_window.c:1492 +#: ../src/main_window.c:1514 msgid "Thumbnails" msgstr "Pienoiskuvat" -#: ../src/main_window.c:1498 +#: ../src/main_window.c:1520 msgid "" "The time period an individual image is displayed during a slideshow\n" "(in seconds)" msgstr "Montako sekuntia yksittäistä kuvaa esitetään diaesityksessä" -#: ../src/main_window.c:1502 +#: ../src/main_window.c:1524 msgid "" "Preload images during slideshow\n" "(uses more memory)" msgstr "Esilataa kuvat diaesitystilassa (käyttää enemmän keskusmuistia)" -#: ../src/main_window.c:1503 +#: ../src/main_window.c:1525 msgid "_Preload images" msgstr "_Esilataa kuvat" -#: ../src/main_window.c:1505 +#: ../src/main_window.c:1527 msgid "Hide the thumbnails bar during slideshow" msgstr "Piilota pienoiskuvat diaesityksen ajaksi" -#: ../src/main_window.c:1506 +#: ../src/main_window.c:1528 msgid "_Hide thumbnails" msgstr "_Piilota pienoiskuvat" -#: ../src/main_window.c:1572 +#: ../src/main_window.c:1594 msgid "Developer:" msgstr "Kehittäjä:" -#: ../src/main_window.c:1582 +#: ../src/main_window.c:1604 msgid "" "Ristretto is a fast and lightweight picture-viewer for the Xfce desktop " "environment." msgstr "Ristretto on nopea ja kevyt kuvakatselin Xfce-työpöydälle." -#: ../src/main_window.c:1590 +#: ../src/main_window.c:1612 msgid "translator-credits" msgstr "Jari Rahkonen " -#: ../src/main_window.c:1616 +#: ../src/main_window.c:1638 msgid "Open image" msgstr "Avaa kuva" -#: ../src/main_window.c:1634 +#: ../src/main_window.c:1656 msgid "Could not open file" msgstr "Tiedoston avaus ei onnistunut" -#: ../src/main_window.c:1656 +#: ../src/main_window.c:1678 msgid "Open folder" msgstr "Avaa hakemisto" -#: ../src/main_window.c:1731 +#: ../src/main_window.c:1753 msgid "" "Are you sure you want to clear ristretto's list of recently opened documents?" msgstr "" Modified: ristretto/trunk/po/fr.po =================================================================== --- ristretto/trunk/po/fr.po 2008-06-01 19:17:17 UTC (rev 4878) +++ ristretto/trunk/po/fr.po 2008-06-01 22:32:04 UTC (rev 4879) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ristretto\n" "Report-Msgid-Bugs-To: xfce-i18n at xfce.org\n" -"POT-Creation-Date: 2008-05-24 15:06+0200\n" +"POT-Creation-Date: 2008-06-02 00:31+0200\n" "PO-Revision-Date: 2008-05-24 13:59+0200\n" "Last-Translator: Mike Massonnet \n" "Language-Team: French\n" @@ -39,155 +39,159 @@ "Essayez %s --help pour voir une liste complète des options en ligne de " "commande.\n" -#: ../src/main.c:448 ../src/main_window.c:1614 ../src/main_window.c:1654 -#: ../src/main_window.c:1691 +#: ../src/main.c:448 ../src/main_window.c:1636 ../src/main_window.c:1676 +#: ../src/main_window.c:1713 msgid "Opening file(s)..." msgstr "Ouvrir des fichiers..." #. Create 'File' menu -#: ../src/main_window.c:339 +#: ../src/main_window.c:340 msgid "_File" msgstr "_Fichier" -#: ../src/main_window.c:346 +#: ../src/main_window.c:347 msgid "O_pen Folder" msgstr "O_uvrir un répertoire" -#: ../src/main_window.c:347 +#: ../src/main_window.c:348 msgid "_Recently used" msgstr "_Récemment ouvert" -#: ../src/main_window.c:352 +#: ../src/main_window.c:353 msgid "Close _all" msgstr "Fermer _tout" #. Create 'Edit' menu -#: ../src/main_window.c:382 +#: ../src/main_window.c:383 msgid "_Edit" msgstr "_Editer" -#: ../src/main_window.c:387 ../src/main_window.c:685 +#: ../src/main_window.c:388 ../src/main_window.c:686 msgid "Open with..." msgstr "_Ouvrir avec..." -#: ../src/main_window.c:395 ../src/main_window.c:696 +#: ../src/main_window.c:396 ../src/main_window.c:697 msgid "No applications available" msgstr "Aucune application disponible" #. Create 'View' menu -#: ../src/main_window.c:404 +#: ../src/main_window.c:405 msgid "_View" msgstr "_Afficher" -#: ../src/main_window.c:411 +#: ../src/main_window.c:412 msgid "Show _Toolbar" msgstr "Barre d’_outils" -#: ../src/main_window.c:412 +#: ../src/main_window.c:413 msgid "Thumbnail _Viewer" msgstr "Vue des _miniatures" -#: ../src/main_window.c:416 +#: ../src/main_window.c:417 msgid "_Zooming" msgstr "_Zoom" -#: ../src/main_window.c:417 +#: ../src/main_window.c:418 msgid "_Rotate" msgstr "_Rotation" -#: ../src/main_window.c:424 +#: ../src/main_window.c:425 msgid "_Set as wallpaper" msgstr "_Utiliser en tant que fond d'écran" -#: ../src/main_window.c:502 +#: ../src/main_window.c:503 msgid "Show _Horizontally" msgstr "Afficher _horizontalement" -#: ../src/main_window.c:506 +#: ../src/main_window.c:507 msgid "Show _Vertically" msgstr "Afficher _verticalement" -#: ../src/main_window.c:510 +#: ../src/main_window.c:511 msgid "H_ide" msgstr "_Cacher" -#: ../src/main_window.c:547 +#: ../src/main_window.c:548 msgid "Rotate _Right" msgstr "Tourner vers la _droite" -#: ../src/main_window.c:548 +#: ../src/main_window.c:549 msgid "Rotate _Left" msgstr "Tourner vers la _gauche" #. Create 'Go' menu -#: ../src/main_window.c:569 +#: ../src/main_window.c:570 msgid "_Go" msgstr "A_ller" #. Create 'Help' menu -#: ../src/main_window.c:600 +#: ../src/main_window.c:601 msgid "_Help" msgstr "A_ide" -#: ../src/main_window.c:1398 +#: ../src/main_window.c:933 +msgid "One or more images have been modified, do you want to save the changes?" +msgstr "" + +#: ../src/main_window.c:1420 msgid "Image viewer Preferences" msgstr "Préférences du visualiseur d’images" -#: ../src/main_window.c:1416 +#: ../src/main_window.c:1438 msgid "Behaviour" msgstr "Comportement" -#: ../src/main_window.c:1420 +#: ../src/main_window.c:1442 msgid "Slideshow" msgstr "Diaporama" -#: ../src/main_window.c:1424 +#: ../src/main_window.c:1446 msgid "Display" msgstr "Affichage" -#: ../src/main_window.c:1429 +#: ../src/main_window.c:1451 msgid "Scaling" msgstr "Taille d'image" -#: ../src/main_window.c:1431 +#: ../src/main_window.c:1453 msgid "Don't scale over 100% when maximizing the window." msgstr "" "Adapter l'image lors de l'agrandissement de la fenêtre\n" "(jamais au-delà de 100%)" -#: ../src/main_window.c:1441 +#: ../src/main_window.c:1463 msgid "Background Color" msgstr "Couleur d'arrière plan" -#: ../src/main_window.c:1443 +#: ../src/main_window.c:1465 msgid "_Override Background Color:" msgstr "_Choisir une couleur d’arrière plan :" -#: ../src/main_window.c:1466 +#: ../src/main_window.c:1488 msgid "Image Cache" msgstr "Cache Image" -#: ../src/main_window.c:1469 +#: ../src/main_window.c:1491 msgid "Cache size:" msgstr "Taille du cache :" -#: ../src/main_window.c:1470 +#: ../src/main_window.c:1492 msgid "MB" msgstr "Mo" -#: ../src/main_window.c:1486 +#: ../src/main_window.c:1508 msgid "Timeout" msgstr "Durée" -#: ../src/main_window.c:1489 +#: ../src/main_window.c:1511 msgid "Preload" msgstr "Préchargement" -#: ../src/main_window.c:1492 +#: ../src/main_window.c:1514 msgid "Thumbnails" msgstr "Miniatures" -#: ../src/main_window.c:1498 +#: ../src/main_window.c:1520 msgid "" "The time period an individual image is displayed during a slideshow\n" "(in seconds)" @@ -195,7 +199,7 @@ "La durée d’affichage d’une image individuelle durant le diaporama\n" "(en secondes)" -#: ../src/main_window.c:1502 +#: ../src/main_window.c:1524 msgid "" "Preload images during slideshow\n" "(uses more memory)" @@ -203,23 +207,23 @@ "Précharger les images durant le diaporama\n" "(nécessite plus de mémoire vive)" -#: ../src/main_window.c:1503 +#: ../src/main_window.c:1525 msgid "_Preload images" msgstr "_Précharger les images" -#: ../src/main_window.c:1505 +#: ../src/main_window.c:1527 msgid "Hide the thumbnails bar during slideshow" msgstr "Cacher les miniatures durant le diaporama" -#: ../src/main_window.c:1506 +#: ../src/main_window.c:1528 msgid "_Hide thumbnails" msgstr "_Cacher les miniatures" -#: ../src/main_window.c:1572 +#: ../src/main_window.c:1594 msgid "Developer:" msgstr "Développeur :" -#: ../src/main_window.c:1582 +#: ../src/main_window.c:1604 msgid "" "Ristretto is a fast and lightweight picture-viewer for the Xfce desktop " "environment." @@ -227,23 +231,23 @@ "Ristretto est un visualiseur d’images léger et rapide pour l’environnement " "de bureau Xfce." -#: ../src/main_window.c:1590 +#: ../src/main_window.c:1612 msgid "translator-credits" msgstr "Mike Massonnet " -#: ../src/main_window.c:1616 +#: ../src/main_window.c:1638 msgid "Open image" msgstr "Ouvrir une image" -#: ../src/main_window.c:1634 +#: ../src/main_window.c:1656 msgid "Could not open file" msgstr "Impossible d’ouvrir le fichier" -#: ../src/main_window.c:1656 +#: ../src/main_window.c:1678 msgid "Open folder" msgstr "Ouvrir un répertoire" -#: ../src/main_window.c:1731 +#: ../src/main_window.c:1753 msgid "" "Are you sure you want to clear ristretto's list of recently opened documents?" msgstr "" Modified: ristretto/trunk/po/hu.po =================================================================== --- ristretto/trunk/po/hu.po 2008-06-01 19:17:17 UTC (rev 4878) +++ ristretto/trunk/po/hu.po 2008-06-01 22:32:04 UTC (rev 4879) @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: ristretto\n" "Report-Msgid-Bugs-To: xfce-i18n at xfce.org\n" -"POT-Creation-Date: 2008-05-24 15:06+0200\n" +"POT-Creation-Date: 2008-06-02 00:31+0200\n" "PO-Revision-Date: 2008-05-12 09:05+0100\n" "Last-Translator: SZERVÁC Attila \n" "Language-Team: Hungarian \n" @@ -36,154 +36,158 @@ "%s: %s\n" "A %s --help adja az elérhető lehetőségek litáját.\n" -#: ../src/main.c:448 ../src/main_window.c:1614 ../src/main_window.c:1654 -#: ../src/main_window.c:1691 +#: ../src/main.c:448 ../src/main_window.c:1636 ../src/main_window.c:1676 +#: ../src/main_window.c:1713 msgid "Opening file(s)..." msgstr "Fájl(ok) megnyitása..." #. Create 'File' menu -#: ../src/main_window.c:339 +#: ../src/main_window.c:340 msgid "_File" msgstr "_Fájl" -#: ../src/main_window.c:346 +#: ../src/main_window.c:347 msgid "O_pen Folder" msgstr "Ma_ppa megnyitása" -#: ../src/main_window.c:347 +#: ../src/main_window.c:348 msgid "_Recently used" msgstr "Utóbbiak" -#: ../src/main_window.c:352 +#: ../src/main_window.c:353 msgid "Close _all" msgstr "" #. Create 'Edit' menu -#: ../src/main_window.c:382 +#: ../src/main_window.c:383 msgid "_Edit" msgstr "Sz_erkeszt" -#: ../src/main_window.c:387 ../src/main_window.c:685 +#: ../src/main_window.c:388 ../src/main_window.c:686 msgid "Open with..." msgstr "Megnyitás ezzel..." -#: ../src/main_window.c:395 ../src/main_window.c:696 +#: ../src/main_window.c:396 ../src/main_window.c:697 msgid "No applications available" msgstr "Nincs elérhető alkalmazás" #. Create 'View' menu -#: ../src/main_window.c:404 +#: ../src/main_window.c:405 msgid "_View" msgstr "Nézet" -#: ../src/main_window.c:411 +#: ../src/main_window.c:412 msgid "Show _Toolbar" msgstr "_Eszközsáv mutatása" -#: ../src/main_window.c:412 +#: ../src/main_window.c:413 msgid "Thumbnail _Viewer" msgstr "Előkép _néző" -#: ../src/main_window.c:416 +#: ../src/main_window.c:417 msgid "_Zooming" msgstr "_Nagyítás" -#: ../src/main_window.c:417 +#: ../src/main_window.c:418 msgid "_Rotate" msgstr "_Forgat" -#: ../src/main_window.c:424 +#: ../src/main_window.c:425 msgid "_Set as wallpaper" msgstr "_Tapétaként beállít" -#: ../src/main_window.c:502 +#: ../src/main_window.c:503 msgid "Show _Horizontally" msgstr "_Vízszintesen mutat" -#: ../src/main_window.c:506 +#: ../src/main_window.c:507 msgid "Show _Vertically" msgstr "_Függőlegesen mutat" -#: ../src/main_window.c:510 +#: ../src/main_window.c:511 msgid "H_ide" msgstr "R_ejt" -#: ../src/main_window.c:547 +#: ../src/main_window.c:548 msgid "Rotate _Right" msgstr "_Jobbra forgat" -#: ../src/main_window.c:548 +#: ../src/main_window.c:549 msgid "Rotate _Left" msgstr "_Balra forgat" #. Create 'Go' menu -#: ../src/main_window.c:569 +#: ../src/main_window.c:570 msgid "_Go" msgstr "U_grás" #. Create 'Help' menu -#: ../src/main_window.c:600 +#: ../src/main_window.c:601 msgid "_Help" msgstr "_Súgó" -#: ../src/main_window.c:1398 +#: ../src/main_window.c:933 +msgid "One or more images have been modified, do you want to save the changes?" +msgstr "" + +#: ../src/main_window.c:1420 msgid "Image viewer Preferences" msgstr "Kép-néző jellemzői" -#: ../src/main_window.c:1416 +#: ../src/main_window.c:1438 msgid "Behaviour" msgstr "Viselkedés" -#: ../src/main_window.c:1420 +#: ../src/main_window.c:1442 msgid "Slideshow" msgstr "Vetítés" -#: ../src/main_window.c:1424 +#: ../src/main_window.c:1446 msgid "Display" msgstr "Kijelző" -#: ../src/main_window.c:1429 +#: ../src/main_window.c:1451 msgid "Scaling" msgstr "Méretezés" -#: ../src/main_window.c:1431 +#: ../src/main_window.c:1453 msgid "Don't scale over 100% when maximizing the window." msgstr "Ne méretezz 100% fölé teljes méretnél." -#: ../src/main_window.c:1441 +#: ../src/main_window.c:1463 msgid "Background Color" msgstr "A háttér színe" -#: ../src/main_window.c:1443 +#: ../src/main_window.c:1465 msgid "_Override Background Color:" msgstr "Háttérszín _felülbírálása:" -#: ../src/main_window.c:1466 +#: ../src/main_window.c:1488 msgid "Image Cache" msgstr "Kép gyorstár" -#: ../src/main_window.c:1469 +#: ../src/main_window.c:1491 msgid "Cache size:" msgstr "Gyorstár mérete:" -#: ../src/main_window.c:1470 +#: ../src/main_window.c:1492 msgid "MB" msgstr "MB" -#: ../src/main_window.c:1486 +#: ../src/main_window.c:1508 msgid "Timeout" msgstr "Időhatár" -#: ../src/main_window.c:1489 +#: ../src/main_window.c:1511 msgid "Preload" msgstr "Előtöltés" -#: ../src/main_window.c:1492 +#: ../src/main_window.c:1514 #, fuzzy msgid "Thumbnails" msgstr "Előkép _néző" -#: ../src/main_window.c:1498 +#: ../src/main_window.c:1520 msgid "" "The time period an individual image is displayed during a slideshow\n" "(in seconds)" @@ -191,7 +195,7 @@ "Ez egyes képek megjelenítési ideje vetítéskor\n" "(másodpercekben)" -#: ../src/main_window.c:1502 +#: ../src/main_window.c:1524 msgid "" "Preload images during slideshow\n" "(uses more memory)" @@ -199,45 +203,45 @@ "Képek előtöltése vetítéskor\n" "(több memóriát eszik)" -#: ../src/main_window.c:1503 +#: ../src/main_window.c:1525 msgid "_Preload images" msgstr "Képek _előtöltése" -#: ../src/main_window.c:1505 +#: ../src/main_window.c:1527 msgid "Hide the thumbnails bar during slideshow" msgstr "" -#: ../src/main_window.c:1506 +#: ../src/main_window.c:1528 msgid "_Hide thumbnails" msgstr "" -#: ../src/main_window.c:1572 +#: ../src/main_window.c:1594 msgid "Developer:" msgstr "Fejlesztő:" -#: ../src/main_window.c:1582 +#: ../src/main_window.c:1604 msgid "" "Ristretto is a fast and lightweight picture-viewer for the Xfce desktop " "environment." msgstr "A Ristretto egy gyors, könnyű nézegető az Xfce asztali környezethez." -#: ../src/main_window.c:1590 +#: ../src/main_window.c:1612 msgid "translator-credits" msgstr "SZERVÁC Attila" -#: ../src/main_window.c:1616 +#: ../src/main_window.c:1638 msgid "Open image" msgstr "Kép megnyitása" -#: ../src/main_window.c:1634 +#: ../src/main_window.c:1656 msgid "Could not open file" msgstr "Nem tudtam megnyitni a fájlt" -#: ../src/main_window.c:1656 +#: ../src/main_window.c:1678 msgid "Open folder" msgstr "Mappa megnyitása" -#: ../src/main_window.c:1731 +#: ../src/main_window.c:1753 msgid "" "Are you sure you want to clear ristretto's list of recently opened documents?" msgstr "Tényleg törlöd a legutóbbi dokumentumok listáját?" Modified: ristretto/trunk/po/it.po =================================================================== --- ristretto/trunk/po/it.po 2008-06-01 19:17:17 UTC (rev 4878) +++ ristretto/trunk/po/it.po 2008-06-01 22:32:04 UTC (rev 4879) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ristretto\n" "Report-Msgid-Bugs-To: xfce-i18n at xfce.org\n" -"POT-Creation-Date: 2008-05-24 15:06+0200\n" +"POT-Creation-Date: 2008-06-02 00:31+0200\n" "PO-Revision-Date: 2007-12-22 10:52+0100\n" "Last-Translator: Fabio Vergnani \n" "Language-Team: Italian\n" @@ -40,156 +40,160 @@ "Prova %s --help per vedere una lista completa di opzioni per linea di " "comando.\n" -#: ../src/main.c:448 ../src/main_window.c:1614 ../src/main_window.c:1654 -#: ../src/main_window.c:1691 +#: ../src/main.c:448 ../src/main_window.c:1636 ../src/main_window.c:1676 +#: ../src/main_window.c:1713 #, fuzzy msgid "Opening file(s)..." msgstr "_Apri con..." #. Create 'File' menu -#: ../src/main_window.c:339 +#: ../src/main_window.c:340 msgid "_File" msgstr "_File" -#: ../src/main_window.c:346 +#: ../src/main_window.c:347 msgid "O_pen Folder" msgstr "A_pri cartella" -#: ../src/main_window.c:347 +#: ../src/main_window.c:348 msgid "_Recently used" msgstr "Apri _recenti" -#: ../src/main_window.c:352 +#: ../src/main_window.c:353 msgid "Close _all" msgstr "" #. Create 'Edit' menu -#: ../src/main_window.c:382 +#: ../src/main_window.c:383 msgid "_Edit" msgstr "_Modifica" -#: ../src/main_window.c:387 ../src/main_window.c:685 +#: ../src/main_window.c:388 ../src/main_window.c:686 msgid "Open with..." msgstr "_Apri con..." -#: ../src/main_window.c:395 ../src/main_window.c:696 +#: ../src/main_window.c:396 ../src/main_window.c:697 msgid "No applications available" msgstr "Nesuna applicazione disponibile" #. Create 'View' menu -#: ../src/main_window.c:404 +#: ../src/main_window.c:405 msgid "_View" msgstr "_Visualizza" -#: ../src/main_window.c:411 +#: ../src/main_window.c:412 msgid "Show _Toolbar" msgstr "Mostra barra degli _strumenti" -#: ../src/main_window.c:412 +#: ../src/main_window.c:413 msgid "Thumbnail _Viewer" msgstr "_Visualizzazione miniature" -#: ../src/main_window.c:416 +#: ../src/main_window.c:417 msgid "_Zooming" msgstr "_Zoom" -#: ../src/main_window.c:417 +#: ../src/main_window.c:418 msgid "_Rotate" msgstr "_Ruota" -#: ../src/main_window.c:424 +#: ../src/main_window.c:425 msgid "_Set as wallpaper" msgstr "" -#: ../src/main_window.c:502 +#: ../src/main_window.c:503 msgid "Show _Horizontally" msgstr "Mostra _Orizzontalmente" -#: ../src/main_window.c:506 +#: ../src/main_window.c:507 msgid "Show _Vertically" msgstr "Mostra _Verticalmente" -#: ../src/main_window.c:510 +#: ../src/main_window.c:511 msgid "H_ide" msgstr "_Nascondi" -#: ../src/main_window.c:547 +#: ../src/main_window.c:548 msgid "Rotate _Right" msgstr "Ruota a _Destra" -#: ../src/main_window.c:548 +#: ../src/main_window.c:549 msgid "Rotate _Left" msgstr "Ruota a _Sinistra" #. Create 'Go' menu -#: ../src/main_window.c:569 +#: ../src/main_window.c:570 msgid "_Go" msgstr "V_ai" #. Create 'Help' menu -#: ../src/main_window.c:600 +#: ../src/main_window.c:601 msgid "_Help" msgstr "A_iuto" -#: ../src/main_window.c:1398 +#: ../src/main_window.c:933 +msgid "One or more images have been modified, do you want to save the changes?" +msgstr "" + +#: ../src/main_window.c:1420 msgid "Image viewer Preferences" msgstr "Preferenze del visualizzatore" -#: ../src/main_window.c:1416 +#: ../src/main_window.c:1438 msgid "Behaviour" msgstr "Comportamento" -#: ../src/main_window.c:1420 +#: ../src/main_window.c:1442 msgid "Slideshow" msgstr "Presentazione" -#: ../src/main_window.c:1424 +#: ../src/main_window.c:1446 msgid "Display" msgstr "Apparenza" -#: ../src/main_window.c:1429 +#: ../src/main_window.c:1451 msgid "Scaling" msgstr "" -#: ../src/main_window.c:1431 +#: ../src/main_window.c:1453 msgid "Don't scale over 100% when maximizing the window." msgstr "" -#: ../src/main_window.c:1441 +#: ../src/main_window.c:1463 msgid "Background Color" msgstr "Colore sfondo" -#: ../src/main_window.c:1443 +#: ../src/main_window.c:1465 msgid "_Override Background Color:" msgstr "_Imposta colore sfondo :" -#: ../src/main_window.c:1466 +#: ../src/main_window.c:1488 #, fuzzy msgid "Image Cache" msgstr "Visualizzatore di immagini" -#: ../src/main_window.c:1469 +#: ../src/main_window.c:1491 msgid "Cache size:" msgstr "" -#: ../src/main_window.c:1470 +#: ../src/main_window.c:1492 msgid "MB" msgstr "" -#: ../src/main_window.c:1486 +#: ../src/main_window.c:1508 msgid "Timeout" msgstr "Durata" -#: ../src/main_window.c:1489 +#: ../src/main_window.c:1511 msgid "Preload" msgstr "Precarica" -#: ../src/main_window.c:1492 +#: ../src/main_window.c:1514 #, fuzzy msgid "Thumbnails" msgstr "_Visualizzazione miniature" -#: ../src/main_window.c:1498 +#: ../src/main_window.c:1520 msgid "" "The time period an individual image is displayed during a slideshow\n" "(in seconds)" @@ -197,7 +201,7 @@ "Il tempo per cui viene mostrata una immagine durante una presentazione\n" "(in secondi)" -#: ../src/main_window.c:1502 +#: ../src/main_window.c:1524 msgid "" "Preload images during slideshow\n" "(uses more memory)" @@ -205,23 +209,23 @@ "Precarica le immagini durante le presentazioni\n" "(usa più memoria)" -#: ../src/main_window.c:1503 +#: ../src/main_window.c:1525 msgid "_Preload images" msgstr "_Precarica le immagini" -#: ../src/main_window.c:1505 +#: ../src/main_window.c:1527 msgid "Hide the thumbnails bar during slideshow" msgstr "" -#: ../src/main_window.c:1506 +#: ../src/main_window.c:1528 msgid "_Hide thumbnails" msgstr "" -#: ../src/main_window.c:1572 +#: ../src/main_window.c:1594 msgid "Developer:" msgstr "Sviluppatore :" -#: ../src/main_window.c:1582 +#: ../src/main_window.c:1604 msgid "" "Ristretto is a fast and lightweight picture-viewer for the Xfce desktop " "environment." @@ -229,23 +233,23 @@ "Ristretto è un visualizzatore di immagini leggero e veloce per l'ambiente " "desktop XFCE." -#: ../src/main_window.c:1590 +#: ../src/main_window.c:1612 msgid "translator-credits" msgstr "Fabio Vergnani " -#: ../src/main_window.c:1616 +#: ../src/main_window.c:1638 msgid "Open image" msgstr "Apri un'immagine" -#: ../src/main_window.c:1634 +#: ../src/main_window.c:1656 msgid "Could not open file" msgstr "Impossibile aprire il file" -#: ../src/main_window.c:1656 +#: ../src/main_window.c:1678 msgid "Open folder" msgstr "Apri cartella" -#: ../src/main_window.c:1731 +#: ../src/main_window.c:1753 msgid "" "Are you sure you want to clear ristretto's list of recently opened documents?" msgstr "Sei sicuro di voler cancellare la lista dei documenti recenti?" Modified: ristretto/trunk/po/lv.po =================================================================== --- ristrett