Skip to content

Commit

Permalink
fix en
Browse files Browse the repository at this point in the history
  • Loading branch information
devthejo committed Mar 17, 2018
1 parent c263114 commit 37a4c2b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Zome.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ def LH.[](key)
end

zome_extension = SketchupExtension.new('Zome', 'Zome/main.rb')
zome_extension.version = '1.3.0'
zome_extension.version = '1.3.1'
zome_extension.copyright = '2018'
zome_extension.description = LH['Zome Creator - PolarZonahedron']
zome_extension.description = LH['Zome Creator - PolarZonohedron']
zome_extension.creator = 'Jo Takion <[email protected]>'
Sketchup.register_extension(zome_extension, true)

Expand Down
Binary file modified Zome.rbz
Binary file not shown.
14 changes: 7 additions & 7 deletions Zome/main.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#https://github.com/takion/zome-polar-rhombizonahedron [email protected]
#https://github.com/takion/zome-polar-rhombizonohedron [email protected]

require 'sketchup.rb'
module Takion
Expand Down Expand Up @@ -28,7 +28,7 @@ def initialize
def start
@mo = Sketchup.active_model
Sketchup::set_status_text(LH["Zome modelisation in progress..."])
@mo.start_operation LH["PolarZonahedron - Structure Processing"]
@mo.start_operation LH["PolarZonohedron - Structure Processing"]
@t1 = Time.now
@entities = @mo.active_entities.add_group.entities
end
Expand Down Expand Up @@ -151,7 +151,7 @@ def rapport_complet params
#msg += " "+LH["Segments total length"]+": #{segments_lenth} \n"
msg += " "+LH["Number of Ties"]+": #{@tirants_nb} \n"

msg += "\n© "+LH["Zome Creator - OpenSource software developed by Jo"]+" - [email protected] \nhttps://github.com/takion/zome-polar-rhombizonahedron/"
msg += "\n© "+LH["Zome Creator - OpenSource software developed by Jo"]+" - [email protected] \nhttps://github.com/takion/zome-polar-rhombizonohedron/"

return msg
end
Expand Down Expand Up @@ -184,7 +184,7 @@ def zome_al
end
}
begin
results = UI.inputbox prompts,defaults,drops,LH['Polar Zonahedron based on shape angle and edges']
results = UI.inputbox prompts,defaults,drops,LH['Polar Zonohedron based on shape angle and edges']
return unless results
0.upto(config.length-1){ |i|
@gen_zome[config[i][0]] = results[i]
Expand Down Expand Up @@ -254,7 +254,7 @@ def zome_ah
end
}
begin
results = UI.inputbox prompts,defaults,drops,LH['PolarZonahedron by shapes angle and height']
results = UI.inputbox prompts,defaults,drops,LH['PolarZonohedron by shapes angle and height']
return unless results
0.upto(config.length-1){ |i|
@gen_zome[config[i][0]] = results[i]
Expand Down Expand Up @@ -330,7 +330,7 @@ def zome_ad
end
}
begin
results = UI.inputbox prompts,defaults,drops,LH['PolarZonahedron by shapes angle and diameter']
results = UI.inputbox prompts,defaults,drops,LH['PolarZonohedron by shapes angle and diameter']
return unless results
0.upto(config.length-1){ |i|
@gen_zome[config[i][0]] = results[i]
Expand Down Expand Up @@ -402,7 +402,7 @@ def zome_dh
end
}
begin
results = UI.inputbox prompts,defaults,drops,LH['Polar Zonahedron based on diameter and height']
results = UI.inputbox prompts,defaults,drops,LH['Polar Zonohedron based on diameter and height']
return unless results
0.upto(config.length-1){ |i|
@gen_zome[config[i][0]] = results[i]
Expand Down
12 changes: 6 additions & 6 deletions Zome/resources/fr/Zome.strings
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"Zome Creator - PolarZonahedron"="Créateur de Zome - RhombiZonaèdre Polaire";
"Zome Creator - PolarZonohedron"="Créateur de Zome - RhombiZonaèdre Polaire";
"by diameter and height"="par diamètre et hauteur";
"by angle and edges"="par angle et arête";
"by angle and height"="par angle et hauteur";
"by angle and diameter"="angle et diametre";
"Zome modelisation in progress..."="Modélisation du Zome en cours ...";
"PolarZonahedron - Structure Processing"="RhombiZonaèdre Polaire - Modélisation de la Structure";
"PolarZonohedron - Structure Processing"="RhombiZonaèdre Polaire - Modélisation de la Structure";
"Faces"="Face";
"Squelette"="Squelette";
"Horizontal"="Horizontal";
Expand Down Expand Up @@ -47,8 +47,8 @@
"Height at the top"="Hauteur au Sommet";
"Horizontal|None"="Horizontal|Aucun";
"Angle between the axes and the edge of the top layer"="Angle entre l'axe et l'arête du dernier niveaux";
"Polar Zonahedron"="RhombiZonaèdre Polaire";
"PolarZonahedron by shapes angle and height"="Zonaèdre Polaire sur Angle de forme et Hauteur";
"PolarZonahedron by shapes angle and diameter"="Zonaèdre Polaire sur Angle de forme et Diamètre";
"Polar Zonohedron"="RhombiZonaèdre Polaire";
"PolarZonohedron by shapes angle and height"="Zonaèdre Polaire sur Angle de forme et Hauteur";
"PolarZonohedron by shapes angle and diameter"="Zonaèdre Polaire sur Angle de forme et Diamètre";
"Polar Zonohedron based on diameter and height"="Zonaèdre Polaire sur Diamètre et Hauteur";
"Polar Zonahedron based on shape angle and edges"="Zonaèdre Polaire sur Angle de forme et Arête";
"Polar Zonohedron based on shape angle and edges"="Zonaèdre Polaire sur Angle de forme et Arête";

0 comments on commit 37a4c2b

Please sign in to comment.