Bug 365769

Summary: Two mistakes in the Dolphin doc
Product: [Applications] dolphin Reporter: Antoni Bella <antonibella5>
Component: generalAssignee: Dolphin Bug Assignee <dolphin-bugs-null>
Status: RESOLVED NOT A BUG    
Severity: normal CC: lueck
Priority: NOR    
Version First Reported In: 15.12.3   
Target Milestone: ---   
Platform: Kubuntu   
OS: Linux   
Latest Commit: Version Fixed In:
Sentry Crash Report:

Description Antoni Bella 2016-07-17 11:53:06 UTC
Hi,

  I've been reviewing my translation and I have seen the following:

- This should be: to the left of a folder opens

In the <quote>bread crumb</quote> mode, which is the default, each folder name in the path to the current folder is a button which can be clicked to
quickly open that folder. Moreover, clicking the <quote>&gt;</quote> sign to the right of a folder opens a menu which allows you to quickly open a subfolder of that folder.

- This menu item should be 'Paste':

<shortcut> <keycombo action="simul">&Ctrl;<keycap>V</keycap></keycombo> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Paste Clipboard Contents...</guimenuitem>

Pastes the currently copied/cut items to the current folder. If the clipboard does not contain files or folders, the clipboard contents (such as text or image data) will be pasted into a new file. The name of this file has to be entered in a dialog.
##

  It would also be desirable menu items were described in the order of appearance.
  
  Regards
  Toni

Reproducible: Always
Comment 1 Burkhard Lück 2016-07-19 19:00:47 UTC
(In reply to Antoni Bella from comment #0)
> - This should be: to the left of a folder opens
> 
> In the <quote>bread crumb</quote> mode, which is the default, each folder
> name in the path to the current folder is a button which can be clicked to
> quickly open that folder. Moreover, clicking the <quote>&gt;</quote> sign to
> the right of a folder opens a menu which allows you to quickly open a
> subfolder of that folder.
> 
Clicking on ">" at the right of "Home" shows all subfolders of Home, so roght is correct here from my pov

> - This menu item should be 'Paste':
> 
> <shortcut> <keycombo action="simul">&Ctrl;<keycap>V</keycap></keycombo>
> </shortcut> <guimenu>Edit</guimenu> <guimenuitem>Paste Clipboard
> Contents...</guimenuitem>
> 
This item is in fact Edit ->Paste Clipboard Contents
Where do you see Edit ->Paste ?
> 
>   It would also be desirable menu items were described in the order of
> appearance.
>   
That is the way the items are already described on
https://docs.kde.org/trunk5/en/applications/dolphin/command-reference.html
Comment 2 Antoni Bella 2016-07-20 11:15:46 UTC
(In reply to Burkhard Lueck from comment #1)
>
> Clicking on ">" at the right of "Home" shows all subfolders of Home, so
> roght is correct here from my pov
>

 I'm see '> Home' and '> Home > Subfolder' but no '> Home >'
 
> This item is in fact Edit ->Paste Clipboard Contents
> Where do you see Edit ->Paste ?

trunk/l10n-kf5/ca/messages/applications/dolphin.po:169(#30)
#: dolphinmainwindow.cpp:1017
msgctxt "@action:inmenu Edit"
msgid "Paste"
msgstr "Enganxa"

> That is the way the items are already described on
> https://docs.kde.org/trunk5/en/applications/dolphin/command-reference.html

OK. I needed a pause...
Comment 3 Burkhard Lück 2016-07-20 13:12:11 UTC
(In reply to Antoni Bella from comment #2)
> (In reply to Burkhard Lueck from comment #1)
> >
> > Clicking on ">" at the right of "Home" shows all subfolders of Home, so
> > right is correct here from my pov
> >
> 
>  I'm see '> Home' and '> Home > Subfolder' but no '> Home >'
>  
If I click in "> Home > Downloads" on the ">" at the right of "Home" I see
a list of folders which are subfolder of "Home"

> > This item is in fact Edit ->Paste Clipboard Contents
> > Where do you see Edit ->Paste ?
> 
> trunk/l10n-kf5/ca/messages/applications/dolphin.po:169(#30)
> #: dolphinmainwindow.cpp:1017
> msgctxt "@action:inmenu Edit"
> msgid "Paste"
> msgstr "Enganxa"
> 
dolphinmainwindow.cpp
    // The text of the paste-action is modified dynamically by Dolphin
    // (e. g. to "Paste One Folder"). To prevent that the size of the toolbar changes
    // due to the long text, the text "Paste" is used:
    paste->setIconText(i18nc("@action:inmenu Edit", "Paste"));

Please  observe "is modified dynamically" in the comment, i. e. you will never see "Paste" in the GUI and especially not in the Edit menu.

> > That is the way the items are already described on
> > https://docs.kde.org/trunk5/en/applications/dolphin/command-reference.html
> 
> OK. I needed a pause...
Comment 4 Antoni Bella 2016-07-24 12:10:24 UTC
(In reply to Burkhard Lueck from comment #3)
> (In reply to Antoni Bella from comment #2)
> > 
> >  I'm see '> Home' and '> Home > Subfolder' but no '> Home >'
> >  
> If I click in "> Home > Downloads" on the ">" at the right of "Home" I see
> a list of folders which are subfolder of "Home"
> 

  Assumed.

> dolphinmainwindow.cpp
>     // The text of the paste-action is modified dynamically by Dolphin
>     // (e. g. to "Paste One Folder"). To prevent that the size of the
> toolbar changes
>     // due to the long text, the text "Paste" is used:
>     paste->setIconText(i18nc("@action:inmenu Edit", "Paste"));
> 
> Please  observe "is modified dynamically" in the comment, i. e. you will
> never see "Paste" in the GUI and especially not in the Edit menu.
> 

  Yes.
Paste -> (clipboard empty)

> > > That is the way the items are already described on
> > > https://docs.kde.org/trunk5/en/applications/dolphin/command-reference.html
> > 
> > OK. I needed a pause...

  We can close this bug. Thank you for your work.