[Xfce4-commits] [apps/xfdashboard] branch master updated (7128b3d -> 540c013)

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a change to branch master
in repository apps/xfdashboard.

  from  7128b3d   Move utility functions to get paths to config files, 
cache files or data files for plugins to XfdashboardPlugin class
   new  540c013   Add keywords to AppData

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 data/appdata/xfdashboard.appdata.xml.in |8 
 1 file changed, 8 insertions(+)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfdashboard] 01/01: Add keywords to AppData

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit 540c01306290be8105c87f55631bc27225400e7e
Author: Stephan Haller 
Date:   Sun Jan 24 13:37:09 2016 +0100

Add keywords to AppData
---
 data/appdata/xfdashboard.appdata.xml.in |8 
 1 file changed, 8 insertions(+)

diff --git a/data/appdata/xfdashboard.appdata.xml.in 
b/data/appdata/xfdashboard.appdata.xml.in
index 6519a2e..cc69c74 100644
--- a/data/appdata/xfdashboard.appdata.xml.in
+++ b/data/appdata/xfdashboard.appdata.xml.in
@@ -50,6 +50,14 @@
ModernToolkit

 
+   
+   window management
+   application management
+   organize
+   search tool
+   search
+   
+




-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfdashboard] branch master updated (540c013 -> 11f855a)

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a change to branch master
in repository apps/xfdashboard.

  from  540c013   Add keywords to AppData
   new  11f855a   Calculate relevance of each matching application to 
search terms in applications search provider

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 xfdashboard/applications-search-provider.c |  132 ++--
 1 file changed, 103 insertions(+), 29 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfdashboard] 01/01: Calculate relevance of each matching application to search terms in applications search provider

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit 11f855a21f9a80f364c2d2beda4f0e92ba51b75d
Author: Stephan Haller 
Date:   Sun Jan 24 14:34:40 2016 +0100

Calculate relevance of each matching application to search terms in 
applications search provider

It does only the calculation but the result set is still ordered 
alphabetically.

This commit addresses isseu GH #106
---
 xfdashboard/applications-search-provider.c |  132 ++--
 1 file changed, 103 insertions(+), 29 deletions(-)

diff --git a/xfdashboard/applications-search-provider.c 
b/xfdashboard/applications-search-provider.c
index 2cc71d1..5a8c53a 100644
--- a/xfdashboard/applications-search-provider.c
+++ b/xfdashboard/applications-search-provider.c
@@ -70,6 +70,7 @@ static GHashTable*
_xfdashboard_applications_search_provider_statistics=NULL;
 static gchar*  
_xfdashboard_applications_search_provider_statistics_filename=NULL;
 static guint   
_xfdashboard_applications_search_provider_statistics_shutdownSignalID=0;
 static guint   
_xfdashboard_applications_search_provider_statistics_applicationLaunchedSignalID=0;
+static guint   
_xfdashboard_applications_search_provider_statistics_launches_max=0;
 
 typedef struct _XfdashboardApplicationsSearchProviderStatistics
XfdashboardApplicationsSearchProviderStatistics;
 struct _XfdashboardApplicationsSearchProviderStatistics
@@ -162,8 +163,14 @@ static void 
_xfdashboard_applications_search_provider_on_application_launched(Xf
if(!stats) 
stats=_xfdashboard_applications_search_provider_statistics_new();
else 
_xfdashboard_applications_search_provider_statistics_ref(stats);
 
-   /* Increase launch counter */
+   /* Increase launch counter and remember it has highest launch counter 
if it
+* is now higher than the one we remembered.
+*/
stats->launchCounter++;
+   
if(stats->launchCounter>_xfdashboard_applications_search_provider_statistics_launches_max)
+   {
+   
_xfdashboard_applications_search_provider_statistics_launches_max=stats->launchCounter;
+   }
 
/* Store updated statistics */

g_hash_table_insert(_xfdashboard_applications_search_provider_statistics,
@@ -451,6 +458,11 @@ static gboolean 
_xfdashboard_applications_search_provider_load_statistics(Xfdash
error->message);
g_clear_error(&error);
}
+
+   
if(stats->launchCounter>_xfdashboard_applications_search_provider_statistics_launches_max)
+   {
+   
_xfdashboard_applications_search_provider_statistics_launches_max=stats->launchCounter;
+   }
}
 
/* Store statistics data for application in hash-table */
@@ -524,6 +536,9 @@ static void 
_xfdashboard_applications_search_provider_destroy_statistics(void)

_xfdashboard_applications_search_provider_statistics_filename=NULL;
}
 
+   /* Reset other variables */
+   _xfdashboard_applications_search_provider_statistics_launches_max=0;
+
/* Unlock for thread-safety */
G_UNLOCK(_xfdashboard_applications_search_provider_statistics_lock);
 }
@@ -547,6 +562,9 @@ static void 
_xfdashboard_applications_search_provider_create_statistics(Xfdashbo
/* Lock for thread-safety */
G_LOCK(_xfdashboard_applications_search_provider_statistics_lock);
 
+   /* Initialize non-critical variables */
+   _xfdashboard_applications_search_provider_statistics_launches_max=0;
+
/* Create hash-table for statistics */
_xfdashboard_applications_search_provider_statistics=
g_hash_table_new_full(g_str_hash,
@@ -711,30 +729,49 @@ static void 
_xfdashboard_applications_search_provider_on_drag_end(ClutterDragAct
}
 }
 
-/* Check if given app info matches search terms */
-static gboolean 
_xfdashboard_applications_search_provider_is_match(XfdashboardApplicationsSearchProvider
 *self,
-   
gchar **inSearchTerms,
-   
GAppInfo *inAppInfo)
+/* Check if given app info matches search terms and return relevance as 
fraction
+ * between 0.0 (no match at all) and 1.0 (complete match).
+ */
+static gfloat 
_xfdashboard_applications_search_provider_match(XfdashboardApplicationsSearchProvider
 *self,
+   
gchar 

[Xfce4-commits] [apps/xfdashboard] branch master updated (11f855a -> 4ea33c5)

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a change to branch master
in repository apps/xfdashboard.

  from  11f855a   Calculate relevance of each matching application to 
search terms in applications search provider
   new  4ea33c5   Simplify usage of global statistics variable by using a 
struct including all variables instead of declaring thousands of single global 
variables.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 xfdashboard/applications-search-provider.c |  119 +++-
 1 file changed, 64 insertions(+), 55 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfdashboard] 01/01: Simplify usage of global statistics variable by using a struct including all variables instead of declaring thousands of single global variables.

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit 4ea33c505f14177c89fd9fd510b67455bdbf3221
Author: Stephan Haller 
Date:   Sun Jan 24 14:53:50 2016 +0100

Simplify usage of global statistics variable by using a struct including 
all variables instead of declaring thousands of single global variables.
---
 xfdashboard/applications-search-provider.c |  119 +++-
 1 file changed, 64 insertions(+), 55 deletions(-)

diff --git a/xfdashboard/applications-search-provider.c 
b/xfdashboard/applications-search-provider.c
index 5a8c53a..d83900b 100644
--- a/xfdashboard/applications-search-provider.c
+++ b/xfdashboard/applications-search-provider.c
@@ -65,12 +65,21 @@ struct _XfdashboardApplicationsSearchProviderPrivate
 #define XFDASHBOARD_APPLICATIONS_SEARCH_PROVIDER_STATISTICS_ENTRIES_COUNT  
"Count"
 #define XFDASHBOARD_APPLICATIONS_SEARCH_PROVIDER_STATISTICS_LAUNCH_COUNT_GROUP 
"Launch Counts"
 
+typedef struct _XfdashboardApplicationsSearchProviderGlobal
XfdashboardApplicationsSearchProviderGlobal;
+struct _XfdashboardApplicationsSearchProviderGlobal
+{
+   gchar   
*filename;
+
+   GHashTable  *stats;
+
+   guint   
shutdownSignalID;
+   guint   
applicationLaunchedSignalID;
+
+   guint   
maxLaunches;
+};
+
 
G_LOCK_DEFINE_STATIC(_xfdashboard_applications_search_provider_statistics_lock);
-static GHashTable* 
_xfdashboard_applications_search_provider_statistics=NULL;
-static gchar*  
_xfdashboard_applications_search_provider_statistics_filename=NULL;
-static guint   
_xfdashboard_applications_search_provider_statistics_shutdownSignalID=0;
-static guint   
_xfdashboard_applications_search_provider_statistics_applicationLaunchedSignalID=0;
-static guint   
_xfdashboard_applications_search_provider_statistics_launches_max=0;
+XfdashboardApplicationsSearchProviderGlobal
_xfdashboard_applications_search_provider_statistics={0, };
 
 typedef struct _XfdashboardApplicationsSearchProviderStatistics
XfdashboardApplicationsSearchProviderStatistics;
 struct _XfdashboardApplicationsSearchProviderStatistics
@@ -123,13 +132,13 @@ static XfdashboardApplicationsSearchProviderStatistics* 
_xfdashboard_application
 {
XfdashboardApplicationsSearchProviderStatistics *stats;
 
-   
g_return_val_if_fail(_xfdashboard_applications_search_provider_statistics, 
NULL);
+   
g_return_val_if_fail(_xfdashboard_applications_search_provider_statistics.stats,
 NULL);
g_return_val_if_fail(inAppID && *inAppID, NULL);
 
/* Lookup statistics data by application ID. If this application could 
not be found,
 * then return NULL pointer.
 */
-   
if(!g_hash_table_lookup_extended(_xfdashboard_applications_search_provider_statistics,
 inAppID, NULL, (gpointer*)&stats))
+   
if(!g_hash_table_lookup_extended(_xfdashboard_applications_search_provider_statistics.stats,
 inAppID, NULL, (gpointer*)&stats))
{
stats=NULL;
}
@@ -167,13 +176,13 @@ static void 
_xfdashboard_applications_search_provider_on_application_launched(Xf
 * is now higher than the one we remembered.
 */
stats->launchCounter++;
-   
if(stats->launchCounter>_xfdashboard_applications_search_provider_statistics_launches_max)
+   
if(stats->launchCounter>_xfdashboard_applications_search_provider_statistics.maxLaunches)
{
-   
_xfdashboard_applications_search_provider_statistics_launches_max=stats->launchCounter;
+   
_xfdashboard_applications_search_provider_statistics.maxLaunches=stats->launchCounter;
}
 
/* Store updated statistics */
-   
g_hash_table_insert(_xfdashboard_applications_search_provider_statistics,
+   
g_hash_table_insert(_xfdashboard_applications_search_provider_statistics.stats,
g_strdup(appID),

_xfdashboard_applications_search_provider_statistics_ref(stats));
 
@@ -201,10 +210,10 @@ static gboolean 
_xfdashboard_applications_search_provider_save_statistics(GError
error=NULL;
 
/* If we have no filename do not store statistics but do not return 
error */
-   if(!_xfdashboard_applications_search_provider_statistics_filename) 
return(TRUE);
+   if(!_xfdashboard_applications_search_provider_statistics.filename) 
return(TRUE);
 
/* Create parent folders for key file if not available */
-   
fileFolder=g_path_get_dirname(_xf

[Xfce4-commits] [apps/xfdashboard] branch master updated (4ea33c5 -> 9aa8fbc)

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a change to branch master
in repository apps/xfdashboard.

  from  4ea33c5   Simplify usage of global statistics variable by using a 
struct including all variables instead of declaring thousands of single global 
variables.
   new  9aa8fbc   Add missing new-line in g_print

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 xfdashboard/window-content.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfdashboard] 01/01: Add missing new-line in g_print

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit 9aa8fbc59bb88fb052251ff2da8f9767052cf5e5
Author: Stephan Haller 
Date:   Sun Jan 24 14:55:41 2016 +0100

Add missing new-line in g_print
---
 xfdashboard/window-content.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfdashboard/window-content.c b/xfdashboard/window-content.c
index 1afcc23..49bc27b 100644
--- a/xfdashboard/window-content.c
+++ b/xfdashboard/window-content.c
@@ -230,7 +230,7 @@ static void 
_xfdashboard_window_content_destroy_resume_queue(void)
{
content=XFDASHBOARD_WINDOW_CONTENT(iter->data);

window=xfdashboard_window_content_get_window(content);
-   g_print("Window content in resume queue: Item 
%s@%p for window '%s'",
+   g_print("Window content in resume queue: Item 
%s@%p for window '%s'\n",

G_OBJECT_TYPE_NAME(content), content,

xfdashboard_window_tracker_window_get_title(window));
}

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (2ff69c8 -> 35d1f2b)

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a change to branch master
in repository xfce/xfce4-power-manager.

  from  2ff69c8   Fix keyboard-brightness icon names (Bug #12292)
   new  35d1f2b   Draw border around device details

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 settings/xfpm-settings.c |3 +++
 1 file changed, 3 insertions(+)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-power-manager] 01/01: Draw border around device details

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a commit to branch master
in repository xfce/xfce4-power-manager.

commit 35d1f2b25293f446361603dfe9b4a21c7594b9a5
Author: Simon Steinbeiss 
Date:   Sun Jan 24 16:03:56 2016 +0100

Draw border around device details
---
 settings/xfpm-settings.c |3 +++
 1 file changed, 3 insertions(+)

diff --git a/settings/xfpm-settings.c b/settings/xfpm-settings.c
index a154775..0d1d04f 100644
--- a/settings/xfpm-settings.c
+++ b/settings/xfpm-settings.c
@@ -2187,6 +2187,7 @@ xfpm_settings_dialog_new (XfconfChannel *channel, 
gboolean auth_suspend,
 GtkWidget *hbox;
 GtkWidget *frame;
 GtkWidget *switch_widget;
+GtkStyleContext *context;
 GtkListStore *list_store;
 GtkTreeViewColumn *col;
 GtkCellRenderer *renderer;
@@ -2281,6 +2282,8 @@ xfpm_settings_dialog_new (XfconfChannel *channel, 
gboolean auth_suspend,
 device_details_notebook = gtk_notebook_new ();
 
 gtk_notebook_set_show_tabs (GTK_NOTEBOOK (device_details_notebook), FALSE);
+context = gtk_widget_get_style_context (GTK_WIDGET 
(device_details_notebook));
+gtk_style_context_add_class (context, "frame");
 hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 3);
 
 viewport = gtk_viewport_new (NULL, NULL);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/gigolo] branch master updated (ba629ef -> ed035d0)

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/gigolo.

  from  ba629ef   I18n: Update translation he (100%).
   new  ed035d0   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/ristretto] branch master updated (6c5a232 -> 79f51c8)

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/ristretto.

  from  6c5a232   Remember last location in save-copy dialog.
   new  79f51c8   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po |   38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/mousepad] 01/01: I18n: Update translation he (100%).

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/mousepad.

commit 6097a0bf8ee1efa702bd3e096542a9329f684580
Author: Elishai Eliyahu 
Date:   Mon Jan 25 00:30:41 2016 +0100

I18n: Update translation he (100%).

306 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/he.po |  186 +++---
 1 file changed, 93 insertions(+), 93 deletions(-)

diff --git a/po/he.po b/po/he.po
index a8f88c3..45f157d 100644
--- a/po/he.po
+++ b/po/he.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-07-15 06:30+0200\n"
-"PO-Revision-Date: 2016-01-20 17:30+\n"
+"PO-Revision-Date: 2016-01-24 21:57+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-apps/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -300,12 +300,12 @@ msgstr "רצף בייטים לא חוקי בקלט המרה"
 #: ../mousepad/mousepad-file.c:881
 #, c-format
 msgid "The file \"%s\" you tried to reload does not exist anymore"
-msgstr ""
+msgstr "הקובץ \"%s\" שניסית להעלות מחדש אינו קיים יותר"
 
 #: ../mousepad/mousepad-file.c:922
 #, c-format
 msgid "Failed to read the status of \"%s\""
-msgstr ""
+msgstr "נכשל לקרוא את הסטטוס של \"%s\" "
 
 #: ../mousepad/mousepad-language-action.c:229
 msgid "Plain Text"
@@ -436,7 +436,7 @@ msgstr "גופן"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:29
 msgid "Colour scheme"
-msgstr ""
+msgstr "ערכת נושא צבע "
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:30
 msgid "View"
@@ -444,15 +444,15 @@ msgstr "תצוגה"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:31
 msgid "Tab width:"
-msgstr ""
+msgstr "רוחב לשונית:"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:32
 msgid "Tab mode:"
-msgstr ""
+msgstr "מצב לשונית:"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:33
 msgid "Enable automatic indentation"
-msgstr ""
+msgstr "אפשר הפנמה אוטומטית"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:34
 msgid "Indentation"
@@ -476,7 +476,7 @@ msgstr "הצג שורת מצב"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:39
 msgid "Show full filename in title bar"
-msgstr ""
+msgstr "הצג שם קובץ מלא בסרגל הכותרת"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:40
 msgid "Remember window size"
@@ -512,15 +512,15 @@ msgstr "סרגל כלים"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:48
 msgid "Always show tabs even with one file"
-msgstr ""
+msgstr "תמיד הצג לשוניות גם עם קובץ אחד"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:49
 msgid "Cycled notebook tab switching"
-msgstr ""
+msgstr "העברה מחזורית של לשונית מחברת"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:50
 msgid "Notebook tabs"
-msgstr ""
+msgstr "לשוניות מחברת"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:51
 msgid "Window"
@@ -553,22 +553,22 @@ msgstr "הדפס מספרי _שורה"
 
 #: ../mousepad/mousepad-print.c:652
 msgid "Numbering interval:"
-msgstr ""
+msgstr "מרווח מספור:"
 
 #: ../mousepad/mousepad-print.c:660
 msgid ""
 "The interval at which to print line numbers. For example a value of 1 will "
 "print a line number on each line, a value of 2 will print a line number on "
 "every other line, and so on."
-msgstr ""
+msgstr "המרווח שבו להדפיס מספרי שורות. לדוגמה ערך של 1 ידפיס מספר שורה בכל 
שורה, ערך של 2 ידפיס מספר שורה שורה כן שורה לא, וכו'."
 
 #: ../mousepad/mousepad-print.c:672
 msgid "Enable text _wrapping"
-msgstr ""
+msgstr "אפשר כיסוי טקסט"
 
 #: ../mousepad/mousepad-print.c:679
 msgid "Enable _syntax highlighting"
-msgstr ""
+msgstr "אפשר הבלטת תחביר"
 
 #: ../mousepad/mousepad-print.c:691
 msgid "Fonts"
@@ -606,19 +606,19 @@ msgstr "החלף _עם:"
 
 #: ../mousepad/mousepad-replace-dialog.c:202
 msgid "Search _direction:"
-msgstr ""
+msgstr "כיוון חיפוש:"
 
 #: ../mousepad/mousepad-replace-dialog.c:211
 msgid "Up"
-msgstr ""
+msgstr "למעלה"
 
 #: ../mousepad/mousepad-replace-dialog.c:212
 msgid "Down"
-msgstr ""
+msgstr "למטה"
 
 #: ../mousepad/mousepad-replace-dialog.c:213
 msgid "Both"
-msgstr ""
+msgstr "שניהם"
 
 #. case sensitive
 #: ../mousepad/mousepad-replace-dialog.c:222
@@ -628,11 +628,11 @@ msgstr "ה_תאם אותיות גדולות/קטנות"
 #. match whole word
 #: ../mousepad/mousepad-replace-dialog.c:229
 msgid "_Match whole word"
-msgstr ""
+msgstr "התאם מילה שלמה"
 
 #: ../mousepad/mousepad-replace-dialog.c:240
 msgid "Replace _all in:"
-msgstr ""
+msgstr "החלף הכל ב:"
 
 #: ../mousepad/mousepad-replace-dialog.c:248
 msgid "Selection"
@@ -671,7 +671,7 @@ msgstr "ה_קודם"
 
 #: ../mousepad/mousepad-search-bar.c:242
 msgid "Highlight _All"
-msgstr ""
+msgstr "הבלט הכל"
 
 #. overflow menu item for when window is too narrow to show the tool bar item
 #: ../mousepad/mousepad-search-bar.c:255 ../mousepad/mousepad-search-bar.c:266
@@ -689,7 +689,7 @@ msgstr "טיפוס קובץ: אין"
 
 #: ../mousepad/mousepad-statusbar.c:165
 msgid "Toggle the overwrite mode"
-msgstr ""
+msgstr "החלף מצב שכתוב"
 
 #. over

[Xfce4-commits] [apps/mousepad] branch master updated (3b1b4df -> 6097a0b)

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/mousepad.

  from  3b1b4df   I18n: Update translation he (69%).
   new  6097a0b   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po |  186 +++---
 1 file changed, 93 insertions(+), 93 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/ristretto] 01/01: I18n: Update translation he (100%).

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/ristretto.

commit 79f51c82c1003aa770885141cf1eb5a8cb97ff5c
Author: Elishai Eliyahu 
Date:   Mon Jan 25 00:30:48 2016 +0100

I18n: Update translation he (100%).

188 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/he.po |   38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/po/he.po b/po/he.po
index 620038d..c9ab5b8 100644
--- a/po/he.po
+++ b/po/he.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
 "POT-Creation-Date: 2015-03-02 18:31+0100\n"
-"PO-Revision-Date: 2016-01-20 20:04+\n"
+"PO-Revision-Date: 2016-01-24 22:51+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-apps/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -509,7 +509,7 @@ msgstr "לא יכול לשמור קובץ"
 #: ../src/main_window.c:3336
 #, c-format
 msgid "Are you sure you want to delete image '%s' from disk?"
-msgstr ""
+msgstr "האם אתה בטוח שאתה רוצה למחוק מהדיסק את התמונה '%s'?"
 
 #: ../src/main_window.c:3354
 #, c-format
@@ -517,12 +517,12 @@ msgid ""
 "An error occurred when deleting image '%s' from disk.\n"
 "\n"
 "%s"
-msgstr ""
+msgstr "אירעה תקלה בעת מחיקה מהדיסק של תמונה '%s'.\n\n%s"
 
 #: ../src/main_window.c:3370
 #, c-format
 msgid "Are you sure you want to send image '%s' to trash?"
-msgstr ""
+msgstr "האם אתה בטוח שאתה רוצה לשלוח לאשפה את התמונה '%s'? "
 
 #: ../src/main_window.c:3388
 #, c-format
@@ -530,7 +530,7 @@ msgid ""
 "An error occurred when sending image '%s' to trash.\n"
 "\n"
 "%s"
-msgstr ""
+msgstr "אירעה תקלה בעת שליחה לאשפה של תמונה '%s' .\n\n%s"
 
 #: ../src/main_window.c:3718
 msgid "Edit with"
@@ -539,7 +539,7 @@ msgstr "ערוך בעזרת"
 #: ../src/main_window.c:3736
 #, c-format
 msgid "Open %s and other files of type %s with:"
-msgstr ""
+msgstr "פתח %s וקבצים אחרים מסוג %s עם:"
 
 #: ../src/main_window.c:3741
 msgid "Use as _default for this kind of file"
@@ -762,15 +762,15 @@ msgstr "סוג: "
 
 #: ../src/properties_dialog.c:183
 msgid "Modified:"
-msgstr ""
+msgstr "שונה:"
 
 #: ../src/properties_dialog.c:184
 msgid "Accessed:"
-msgstr ""
+msgstr "ניגש:"
 
 #: ../src/properties_dialog.c:185
 msgid "Size:"
-msgstr ""
+msgstr "גודל:"
 
 #: ../src/properties_dialog.c:309
 msgid "General"
@@ -783,13 +783,13 @@ msgstr "תמונה"
 #: ../src/properties_dialog.c:541
 #, c-format
 msgid "Date taken:"
-msgstr ""
+msgstr "תאריך נלקח:"
 
 #: ../src/properties_dialog.c:553 ../src/properties_dialog.c:565
 #: ../src/properties_dialog.c:577
 #, c-format
 msgid "%s"
-msgstr ""
+msgstr "%s"
 
 #: ../src/properties_dialog.c:639
 #, c-format
@@ -804,7 +804,7 @@ msgid ""
 "\n"
 "Install Tumbler or another thumbnailing daemon\n"
 "to resolve this issue."
-msgstr ""
+msgstr "שירות תמונות מוקטנות אינו ניתן להשגה,\nמסיבה זו, התמונות המוקטנות לא 
ניתנות\nליצירה.\n\nהתקן Tumbler או דמון הקטנת תמונות אחר \nעל מנת 
לפתור את הבעיה הזו."
 
 #: ../src/thumbnailer.c:470
 msgid "Do _not show this message again"
@@ -824,11 +824,11 @@ msgstr "רוויה:"
 
 #: ../src/xfce_wallpaper_manager.c:397
 msgid "Apply to all workspaces"
-msgstr ""
+msgstr "יישם לכל מרחבי העבודה"
 
 #: ../src/xfce_wallpaper_manager.c:404 ../src/gnome_wallpaper_manager.c:246
 msgid "Set as wallpaper"
-msgstr ""
+msgstr "קבע כרקע"
 
 #: ../src/xfce_wallpaper_manager.c:557 ../src/gnome_wallpaper_manager.c:313
 msgid "Auto"
@@ -852,7 +852,7 @@ msgstr "מותאם"
 
 #: ../src/xfce_wallpaper_manager.c:572
 msgid "Zoomed"
-msgstr ""
+msgstr "בוצע זום"
 
 #: ../ristretto.desktop.in.h:1
 msgid "Ristretto Image Viewer"
@@ -868,20 +868,20 @@ msgid ""
 "scroll through images, run a slideshow of images, open images with other "
 "applications like an image-editor or configure an image as the desktop "
 "wallpaper."
-msgstr ""
+msgstr "מציג תמונות Ristretto הוא תוכנה הניתנת לשימוש לצפייה ודפדוף בתמונות, 
להרצת מצגת, לפתיחת תמונות עם תוכנות אחרות כמו עורך תמונות או להגדרת תמונה כרקע 
שולחן עבודה."
 
 #: ../ristretto.appdata.xml.in.h:3
 msgid ""
 "This version comes with the improvements such as thumbnail usage as appicon "
 "and update to the first image in the image-list when receiving a ready-"
 "signal, required to show the thumbnail once it's generated."
-msgstr ""
+msgstr "גרסה זו באה עם שיפורים כמו שימוש תמונות מוקטנות כ- appicon ועדכון 
לתמונה הראשונה ברשימת התמונות בעת קבלת איתות מוכן, הנדרש להצגת התמונה המוקטנת 
לאחר יצירתה."
 
 #: ../ristretto.appdata.xml.in.h:4
 msgid ""
 "This release contains lots of translation-updates, and a crash when "
 "configuring the 'limit-quality' property."
-msgstr ""
+msgstr "גרסה זו כוללת הרבה עדכוני תרגום, וקריסה בעת הגדרת תכונת גבול-איכות."
 
 #: ../ristretto.appdata.xml.in.h:5
 msgid ""
@@ -895,4 +895,4 @@ msgid ""
 "statusbar to indicate when it is busy and progressive loading of directories"
 " to pr

[Xfce4-commits] [apps/xfce4-taskmanager] 01/01: I18n: Update translation he (100%).

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/xfce4-taskmanager.

commit 171d955a5e2bdb8029807be783f99356e053c943
Author: GenghisKhan 
Date:   Mon Jan 25 00:30:58 2016 +0100

I18n: Update translation he (100%).

75 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/he.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/he.po b/po/he.po
index ba60627..f28da61 100644
--- a/po/he.po
+++ b/po/he.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-12-20 00:31+0100\n"
-"PO-Revision-Date: 2016-01-21 19:02+\n"
+"PO-Revision-Date: 2016-01-24 21:55+\n"
 "Last-Translator: GenghisKhan \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-apps/language/he/)\n"
 "MIME-Version: 1.0\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfce4-taskmanager] branch master updated (2be284c -> 171d955)

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/xfce4-taskmanager.

  from  2be284c   I18n: Update translation he (100%).
   new  171d955   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/gigolo] 01/01: I18n: Update translation he (100%).

2016-01-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/gigolo.

commit ed035d0e9f4ad4bd078547fd595f07a89f6bdd92
Author: GenghisKhan 
Date:   Mon Jan 25 00:30:37 2016 +0100

I18n: Update translation he (100%).

142 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/he.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/he.po b/po/he.po
index 6be2575..c8bf233 100644
--- a/po/he.po
+++ b/po/he.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 20:23+0200\n"
-"PO-Revision-Date: 2016-01-20 17:50+\n"
+"PO-Revision-Date: 2016-01-24 21:07+\n"
 "Last-Translator: GenghisKhan \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-apps/language/he/)\n"
 "MIME-Version: 1.0\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits