Updating browser messages to Spanish.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2015-03-14 16:50:28 +00:00
parent 9aefc0d6af
commit c5c9c0c3a9

View File

@ -1067,7 +1067,7 @@ GrafoscopioBrowser >> treeOn: constructor [
ifTrue: [treePresentation selection addNodeAfter]. ifTrue: [treePresentation selection addNodeAfter].
treePresentation update] treePresentation update]
icon: GLMUIThemeExtraIcons glamorousZoomIn icon: GLMUIThemeExtraIcons glamorousZoomIn
entitled: 'Add node'; entitled: 'Adicionar nodo';
"Removing nodes" "Removing nodes"
act: [:treePresentation | act: [:treePresentation |
(treePresentation selection isNotNil) (treePresentation selection isNotNil)
@ -1076,7 +1076,7 @@ GrafoscopioBrowser >> treeOn: constructor [
ifFalse: [treePresentation entity removeLast]. ifFalse: [treePresentation entity removeLast].
treePresentation update] treePresentation update]
icon: GLMUIThemeExtraIcons glamorousZoomOut icon: GLMUIThemeExtraIcons glamorousZoomOut
entitled: 'Remove node'; entitled: 'Remover nodo';
"Move nodes in the same hierarchy" "Move nodes in the same hierarchy"
act: [:treePresentation | act: [:treePresentation |
@ -1084,32 +1084,32 @@ GrafoscopioBrowser >> treeOn: constructor [
ifTrue: [treePresentation selection moveBefore]. ifTrue: [treePresentation selection moveBefore].
treePresentation update] treePresentation update]
icon: GLMUIThemeExtraIcons glamorousUp icon: GLMUIThemeExtraIcons glamorousUp
entitled: 'Move node up'; entitled: 'Mover nodo hacia arriba';
act: [:treePresentation | act: [:treePresentation |
(treePresentation selection isNotNil) (treePresentation selection isNotNil)
ifTrue: [treePresentation selection moveAfter]. ifTrue: [treePresentation selection moveAfter].
treePresentation update] treePresentation update]
icon: GLMUIThemeExtraIcons glamorousDown icon: GLMUIThemeExtraIcons glamorousDown
entitled: 'Move node down'; entitled: 'Mover nodo hacia abajo';
act: [:treePresentation | act: [:treePresentation |
(treePresentation selection isNotNil) (treePresentation selection isNotNil)
ifTrue: [treePresentation selection promote]. ifTrue: [treePresentation selection promote].
treePresentation update] treePresentation update]
icon: GLMUIThemeExtraIcons glamorousLeft icon: GLMUIThemeExtraIcons glamorousLeft
entitled: 'Move node left'; entitled: 'Mover nodo hacia la izquierda';
act: [:treePresentation | act: [:treePresentation |
(treePresentation selection isNotNil) (treePresentation selection isNotNil)
ifTrue: [treePresentation selection demote]. ifTrue: [treePresentation selection demote].
treePresentation update] treePresentation update]
icon: GLMUIThemeExtraIcons glamorousRight icon: GLMUIThemeExtraIcons glamorousRight
entitled: 'Move node rigt'; entitled: 'Mover nodo hacia la derecha';
act: [ :treePresentation | treePresentation update ] act: [ :treePresentation | treePresentation update ]
icon: GLMUIThemeExtraIcons glamorousRefresh icon: GLMUIThemeExtraIcons glamorousRefresh
entitled: 'Update'; entitled: 'Actualizar vista del árbol actual';
act: [self saveWorkingTree] act: [self saveWorkingTree]
icon: GLMUIThemeExtraIcons glamorousSave icon: GLMUIThemeExtraIcons glamorousSave