summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* compress-dialog: fix dialog width changesRazvan Chitu2016-10-042-20/+52
| | | | | | | | | The compress dialog has a width allocation request that can be smaller than the width of description labels in various languages other than english. In order to fix this, use a label widget for each description and group them in a homogeneous GtkStack. https://bugzilla.gnome.org/show_bug.cgi?id=771435
* search-hit: port to use G_DECLARE* type declarationsVinayak2016-10-042-55/+44
| | | | | | | | | | | | | Currently we are using the old GObject class declarations, which have two problems. One problem is that we cannot use smart pointers like g_autoptr. The other problem is the boilerplate code generated that makes the code less readable, so harder to understand. To fix this use G_DECLARE* type. https://bugzilla.gnome.org/show_bug.cgi?id=771842
* batch-rename-dialog: Update tooltip on label changeAlexandru Pandelea2016-10-041-2/+2
| | | | | | | | The tooltip is not updated if the label will be changed. To fix this, update the tooltip text each time the label changes. https://bugzilla.gnome.org/show_bug.cgi?id=772191
* batch-rename-dialog: revealer for auto numberingSirbu Lavinia Stefania2016-10-032-31/+37
| | | | | | | | | | | | | | | | Currently we have a big padding that initially has no meaning. The problem is that when using the rename for multiple files, we initially have an extra padding due to auto numbering. Even if the automatic numbering is not used, the space for the toggle button used for the numbering options is now blank and waiting for a possible use of the automatic option. Add a GtkReaveler that contains a child represented by a GtkBox. The GtkBox contains a label and the toggle button for choosing an option of automatic renaming. The child is revealed only when necesarry, more specifically when the automatic numbering option is added. https://bugzilla.gnome.org/show_bug.cgi?id=771813
* Updated Finnish translationJiri Grönroos2016-10-021-131/+136
|
* Updated Kazakh translationBaurzhan Muftakhidinov2016-10-011-3/+3
|
* files-view: allow compression of compressed filesRazvan Chitu2016-09-301-3/+1
| | | | | | | There are situations when compressing several archives into one is useful, so Nautilus should allow it. https://bugzilla.gnome.org/show_bug.cgi?id=771805
* files-view: remove unused variableRazvan Chitu2016-09-301-2/+0
|
* Revert "batch-rename-dialog: revealer for auto numbering"Carlos Soriano2016-09-292-29/+20
| | | | This reverts commit b37950722078595699b127b154ea07e9c57cbc09.
* general: rework clipboard handlingCarlos Soriano2016-09-2912-600/+469
| | | | | | | | | | | | | | | | | | | | | | | We were using a custom clipboard monitor, due to some old behaviour in 2004 where not all X servers supported XFIXES, which allows to monitor global clipboard changes between processes, which are needed in Nautilus for copy, paste and link operations, and their availability check. Since Nautilus was a single process, it was working for most of the time. However recently we split the desktop in a different process, so we were not able to correctly set the GDK action for clipboard, since we were relying on sharing the same clipboard in the same process. In order to fix this, this patch reworks the clipboard handling to a more modern way, using the owner-changed signal present in XFIXES. This fixes the clipboard changing between the desktop and Nautilus and interproccess clipboard handling, fixes small corner cases, and in the way this patch makes the code design and ownership of clipboard more clearer. https://bugzilla.gnome.org/show_bug.cgi?id=771046
* batch-rename-dialog: revealer for auto numberingSirbu Lavinia Stefania2016-09-292-20/+29
| | | | | | | | | | | | | | Currently we have a big padding that initially has no meaning. The problem is that when using the rename for multiple files, we initially have an extra padding due to auto numbering. Even if the automatic numbering is not used, the space for the toggle button used for the numbering options is now blank and waiting for a possible use of the automatic option. Add a GtkReaveler that contains the toggle button and reveals his child only when necesarry, when the automatic numbering option is added. https://bugzilla.gnome.org/show_bug.cgi?id=771813
* batch rename: show name when hovering over filesSirbu Lavinia Stefania2016-09-291-2/+2
| | | | | | | | | | | | | When we rename a group of files, we can see the names of the files inside a window with a certain dimension, so we see the part of the name that fits the window. The problem is that we cannot see the entire name of a file if the name is too long. Add a tooltip text on the label containing the name of a file. https://bugzilla.gnome.org/show_bug.cgi?id=771467
* bookmark-list: port to G_DECLARE* type declarationSirbu Lavinia Stefania2016-09-292-28/+15
| | | | | | | | | | | | | Currently we are using the old GObject class declarations, which have two problems. One problem is that we cannot use smart pointers like g_autoptr. The other problem is the boilerplate code generated that makes the code less readable, so harder to understand. To fix this use G_DECLARE* type. https://bugzilla.gnome.org/show_bug.cgi?id=771838
* location-entry: remove unused variableCarlos Soriano2016-09-291-2/+0
|
* nautilus-file: remove unused variableCarlos Soriano2016-09-291-3/+0
|
* batch-rename-dialog: use strlen for gtk_editable_insert_textCarlos Soriano2016-09-271-1/+1
| | | | | | | | | | | | | We were using utf8_lenght, which is the right approach to know the number of characters. However, gtk_editable_insert_text expects bytes rather than number of characters. This was causing languages that have unicode characters in the tags to have a buggy batch rename dialog. To fix it, use strlen so we get the number of bytes. https://bugzilla.gnome.org/show_bug.cgi?id=772063
* Updated French translationCharles Monzat2016-09-261-133/+138
|
* Updated Croatian translationgogo2016-09-241-5538/+3642
|
* nautilus.1: flag deprecated optionsErnestas Kulik2016-09-241-11/+9
| | | | | | | Some command-line options have been deprecated and should be advertised as such. https://bugzilla.gnome.org/show_bug.cgi?id=771887
* Updated Basque languageInaki Larranaga Murgoitio2016-09-231-1738/+1975
|
* Updated Hungarian translationBalázs Meskó2016-09-231-131/+136
|
* Updated Brazilian Portuguese translationRafael Fontenelle2016-09-231-131/+136
|
* Updated Vietnamese translationTrần Ngọc Quân2016-09-231-136/+141
| | | | Signed-off-by: Trần Ngọc Quân <vnwildman@gmail.com>
* Updated Friulian translationFabio Tomat2016-09-221-142/+148
|
* bookmark-list: free file content after useGeorges Basile Stavracas Neto2016-09-221-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=770306
* search-popover: unref date time when row is destroyedGeorges Basile Stavracas Neto2016-09-221-1/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=770306
* files-view: release selection listGeorges Basile Stavracas Neto2016-09-221-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=770306
* query-editor: destroy the search tags on finalizeGeorges Basile Stavracas Neto2016-09-221-0/+14
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=770306
* canvas-view-container: free attribute quark listGeorges Basile Stavracas Neto2016-09-221-0/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=770306
* file: fix memory leak in nautilus_file_is_remoteGeorges Basile Stavracas Neto2016-09-221-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=770306
* Updated Hebrew translationYosef Or Boczko2016-09-221-180/+234
|
* Updated Swedish translationAnders Jonsson2016-09-221-130/+135
|
* Updated Slovak translationDušan Kazik2016-09-221-131/+137
|
* Updated German translationMario Blättermann2016-09-221-131/+137
|
* Updated Kazakh translationBaurzhan Muftakhidinov2016-09-221-131/+136
|
* Updated Polish translationPiotr Drąg2016-09-221-130/+135
|
* Updated Korean translationChangwoo Ryu2016-09-221-139/+148
|
* Updated Czech translationMarek Černocký2016-09-221-130/+135
|
* gtkplacesview: update to last codeCarlos Soriano2016-09-223-1973/+1845
| | | | | | | We were missing a string marked as translated. Also, this files shouldn't have the nautilus style since they are a copy pasted code, so this patch just copied them and therefore the changes look bigger than what it should be.
* application: update commentCarlos Soriano2016-09-221-2/+2
|
* Revert "application: use ellipsis instead of three dots"Carlos Soriano2016-09-221-1/+1
| | | | This reverts commit d8b38a3d5cc594186f72057dc2919c37caaad162.
* application: update comment about command line handlingCarlos Soriano2016-09-221-2/+2
|
* application: use ellipsis instead of three dotsCarlos Soriano2016-09-221-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=771819
* nautilus-files-view: modify initial conditionsvictoryang2016-09-221-1/+6
| | | | | | | | | | When icons are enabled on desktop, we should be able to "eject" the mountable devices on the selection menu. We were not setting the actions visiblity correctly, which makes for example the "eject" selection menu item not showing up. This patch sets the correct initial conditions. https://bugzilla.gnome.org/show_bug.cgi?id=768355
* batch-rename-utilities: remove unused functionCarlos Soriano2016-09-221-12/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=770586
* batch-rename-utilities: fix variable typeCarlos Soriano2016-09-221-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=770586
* batch-rename-dialog: remove unused varsCarlos Soriano2016-09-221-2/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=770586
* Fix to Catalan translationJordi Mas2016-09-211-1/+3
|
* file: complete operation if all files skippedAlexandru Pandelea2016-09-211-0/+5
| | | | | | | | | If all files are skipped, then the batch rename operation would not end appropriately. To fix this, end the operation when all files are skipped. https://bugzilla.gnome.org/show_bug.cgi?id=771398
* file: mark file with error on batch rename as skippedAlexandru Pandelea2016-09-211-6/+7
| | | | | | | Files that give an error on renaming shouldn't be added to the undo list, so those should be marked as skipped. https://bugzilla.gnome.org/show_bug.cgi?id=771487