Skip to content

Commit

Permalink
Changed 'back to page editor' button.
Browse files Browse the repository at this point in the history
  • Loading branch information
tHerrmann committed Sep 26, 2013
1 parent 4a44367 commit 5f89509
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ GUI_TOOLBAR_COPY_LOCALE_0 =Sprache kopieren
GUI_TOOLBAR_CLIPBOARD_0 =Ablage
GUI_TOOLBAR_EDIT_0 =Bearbeiten
GUI_TOOLBAR_INFO_0 =Element-Info
GUI_TOOLBAR_INHERITED_0 =Geerbt
GUI_TOOLBAR_EXIT_0 =Beenden
GUI_TOOLBAR_MOVE_TO_0 =In Seite einfügen
GUI_TOOLBAR_MOVE_IN_0 =Auf der Seite verschieben
Expand All @@ -61,7 +62,7 @@ GUI_TOOLBAR_SAVE_0 =Seite speichern
GUI_TOOLBAR_SELECTION_0 =Bearbeitungspunkte anzeigen
GUI_TOOLBAR_SITEMAP_0 =Sitemap-Editor öffnen
GUI_TOOLBAR_TOGGLE_HELP_0 =Hilfetexte anzeigen
GUI_TOOLBAR_BACK_0 =Seiten-Editor öffnen
GUI_TOOLBAR_BACK_0 =Zurück zum Seiten-Editor
GUI_TOOLBAR_SHOWSMALL_0 =Kleine Elemente bearbeiten
GUI_TOOLBAR_ELEMENT_INFO_0 =Seiten-Info

Expand Down
3 changes: 3 additions & 0 deletions src-gwt/org/opencms/gwt/client/Messages.java
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,9 @@ public final class Messages {
/** Message constant for key in the resource bundle. */
public static final String GUI_TOOLBAR_BACK_0 = "GUI_TOOLBAR_BACK_0";

/** Message constant for key in the resource bundle. */
public static final String GUI_TOOLBAR_INHERITED_0 = "GUI_TOOLBAR_INHERITED_0";

/** Message constant for key in the resource bundle. */
public static final String GUI_TOOLBAR_CLIPBOARD_0 = "GUI_TOOLBAR_CLIPBOARD_0";

Expand Down
2 changes: 1 addition & 1 deletion src-gwt/org/opencms/gwt/client/ui/I_CmsButton.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public enum ButtonData {
INFO(BUTTON_CSS.toolbarInfo(), Messages.get().key(Messages.GUI_TOOLBAR_INFO_0)),

/** Inherited element button. */
INHERITED(BUTTON_CSS.toolbarInherited(), "Inherited"),
INHERITED(BUTTON_CSS.toolbarInherited(), Messages.get().key(Messages.GUI_TOOLBAR_INHERITED_0)),

/** Toolbar button. */
MOVE(BUTTON_CSS.toolbarMove(), Messages.get().key(Messages.GUI_TOOLBAR_MOVE_IN_0)),
Expand Down
4 changes: 2 additions & 2 deletions src-gwt/org/opencms/gwt/client/ui/css/I_CmsBigIconBundle.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ public interface I_CmsBigIconBundle extends ClientBundle {
* Access method.<p>
* @return an image resource
*/
@Source("images/icons/big/backBigIconDeactivated.png")
@Source("images/icons/big/resetBigIconActive.png")
ImageResource backBigIconActive();

/**
* Access method.<p>
* @return an image resource
*/
@Source("images/icons/big/backBigIconDeactivated.png")
@Source("images/icons/big/resetBigIconDeactivated.png")
ImageResource backBigIconDeactivated();

/**
Expand Down
3 changes: 2 additions & 1 deletion src/org/opencms/gwt/clientmessages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ GUI_TOOLBAR_COPY_LOCALE_0 =Copy locale
GUI_TOOLBAR_CLIPBOARD_0 =Clipboard
GUI_TOOLBAR_EDIT_0 =Edit
GUI_TOOLBAR_INFO_0 =Element info
GUI_TOOLBAR_INHERITED_0 =Inherited
GUI_TOOLBAR_EXIT_0 =Exit
GUI_TOOLBAR_MOVE_TO_0 =Move to page
GUI_TOOLBAR_MOVE_IN_0 =Move in page
Expand All @@ -61,7 +62,7 @@ GUI_TOOLBAR_SAVE_0 =Save page
GUI_TOOLBAR_SELECTION_0 =Toggle edit points
GUI_TOOLBAR_SITEMAP_0 =Open sitemap editor
GUI_TOOLBAR_TOGGLE_HELP_0 =Toggle help bubbles
GUI_TOOLBAR_BACK_0 =Open page editor
GUI_TOOLBAR_BACK_0 =Back to page editor
GUI_TOOLBAR_SHOWSMALL_0 =Edit small elements
GUI_TOOLBAR_ELEMENT_INFO_0 =Page info

Expand Down

0 comments on commit 5f89509

Please sign in to comment.