SUBSIM Radio Room Forums



SUBSIM: The Web's #1 resource for all submarine & naval simulations since 1997

Go Back   SUBSIM Radio Room Forums > Silent Hunter 3 - 4 - 5 > SH5 Mods Workshop
Forget password? Reset here

Reply
 
Thread Tools Display Modes
Old 10-29-12, 12:55 PM   #1
Trevally.
Navy Seal
 
Join Date: Apr 2007
Location: AN1536 (Orkney)
Posts: 5,451
Downloads: 166
Uploads: 28


Default

Here is some info for the type C (see page 14 for speed)
http://www.uboatarchive.net/Manual.htm

For patrol speeds - most think that 7knots surfaced is the best speed.
If you then dive to schorkel depth - your speed will change to 4 to 5 knots - I guess this is the same engine revs so may be the best speed.
I would use the same test for decks awash - set speed on surface (7knots) set decks awash and check speed.
__________________
Trevally Mods for SH5
Trevally. is offline   Reply With Quote
Old 10-29-12, 03:04 PM   #2
Paco
Captain
 
Join Date: May 2005
Location: Kassel, Germany
Posts: 542
Downloads: 345
Uploads: 0
Default

Thanks Trevally.

So I set the depths to the following values:

Code:
        SUB_SNORKEL_DEPTH   = 15  metres                                             
        SUB_PERISCOPE_DEPTH = 13  metres                                             
        SUB_DECKSAWASH_DEPTH = 6 metres
Paco is offline   Reply With Quote
Old 10-29-12, 05:23 PM   #3
Paco
Captain
 
Join Date: May 2005
Location: Kassel, Germany
Posts: 542
Downloads: 345
Uploads: 0
Default Output-options / Concatenating phrases

I have defined two different Output-options:

1) You get the informations from Your Crew regarding course-, speed-corrections and depths-changes. Speed and Depthoutputs are optional.

In the Messagebox, that looks like:

Quote:
EN:
Going to Decks awash. Herr Kaleun. New heading is S. Herr Kaleun. Reaching next Waypoint in 188 nm. That takes 27 hours. Herr Kaleun.
.
.
.
Heading 1 Dec to starboard. Herr Kaleun.

DE:
Gehen auf Vorfluttiefe. Herr Kaleun. Gehen auf Kurs S. Herr Kaleun. Nächster Kurswechsel in 188 sm. Marschzeit dahin 27 Stunden. Herr Kaleun.
.
.
.
Drehen 1 Dez nach Steuerbord. Herr Kaleun.
2.) A dialogstyle. The captain orders, and the crew confirms. For depth-changes, there is also a prepare-command given:

Quote:
EN:
Prepare for Diving. XO. Ready for Diving. Herr Kaleun. Snorkeldepth. XO. Going to Snorkeldepth. Herr Kaleun. New Speed 4 knots. XO. Going to 4 knots. Herr Kaleun. We need to change the heading. Navigator. New heading is SE. Herr Kaleun. Reaching next Waypoint in 186 nm. That takes 47 hours. Herr Kaleun.
.
.
.
Please check the heading. Navigator. Heading 1 Dec to starboard. Herr Kaleun.

DE:
Klar für Unterwasserfahrt. LI. Boot klar für Unterwasserfahrt. Herr Kaleun. Schnorcheltiefe. LI. Gehen auf Schnorcheltiefe. Herr Kaleun. Neue Fahrt 4 Knoten. LI. Gehen auf 4 Knoten. Herr Kaleun. Zeit den Kurs zu wechseln. ObStrMn. Gehen auf Kurs SO. Herr Kaleun. Nächster Kurswechsel in 186 sm. Marschzeit dahin 47 Stunden. Herr Kaleun.
.
.
.
Kontrollieren sie den Kurs. ObStrMn. Drehen 1 Dez nach Steuerbord. Herr Kaleun.
Based on my first tests, I have not defined whole phrases, but I concatenating them from different pieces of words, which are defined in a "text-library".

From the example above, I hope You can have a look at this library and give me some hints for the english-, french- and italian version.

Here comes the part from the script:

Code:
if LANGUAGE == 'DE':
        SUB_HEADING_COMPASS_STYLE = ('NNO','NO','ONO','OSO','SO','SSO','SSW','SW','WSW','WNW','NW','NNW','N','O','S','W')
        
        TEXT = { 'SHA_START'              : 'Gehen auf Marschweg', 
                 'SHA_FINAL'              : 'Sind am Ziel',
                 'SHA_INBOUND'            : 'Einmarsch',
                 'SHA_OUTBOUND'           : 'Ausmarsch',
                 'BLANK'                  : ' ',
                 'BIGREGBLANK'            : ' ',                                 # Set to NULL for BIGREG-Dez-Style
                 'KOMMATA'                : '.',
                 'POINT'                  : '.',
                 'PORT'                   : 'Backbord',
                 'STARBOARD'              : 'Steuerbord',
                 'DEGREE'                 : 'Grad',
                 'NEW_HEADING_IS'         : 'Gehen auf Kurs',
                 'HEADING_IS_FINE'        : 'Bleiben auf Kurs',
                 'WE_ARE_THERE'           : 'Ziel erreicht',
                 'HEADING'                : 'Drehen',
                 'DEC_TO'                 : 'Dez nach',
                 'DEGREE_TO'              : 'Grad nach',
                 'REACHING_NEXT_WP'       : 'Nächster Kurswechsel in',
                 'SM'                     : 'sm',
                 'KN'                     : 'Knoten',
                 'METRES'                 : 'Meter',
                 'THAT_TAKES'             : 'Marschzeit dahin',
                 'HOURS'                  : 'Stunden',
                 'MINUTES'                : 'Minuten',
                 'LEFT_BRACKET'           : '(',
                 'RIGHT_BRACKET'          : ')',
                 'DOUBLEPOINT'            : ':',
                 'SUBROUTE'               : 'Marschweg',
                 'DISTANCE'               : 'Strecke',
                 'TRAVELTIME'             : 'Marschdauer',
                 'CHECK_HEADING'          : 'Kontrollieren sie den Kurs',
                 'NEW_HEADING'            : 'Zeit den Kurs zu wechseln',
                 'ALL_STOP'               : 'Maschinen stop',
                 'STOPPING'               : 'Maschinen stop',
                 'NEW_SPEED'              : 'Neue Fahrt',
                 'NEW_SPEED_IS'           : 'Gehen auf',
                 'PREPARE'                : 'Klar',
                 'READY'                  : 'Boot klar',
                 'GO_TO'                  : 'Neue Tiefe',
                 'GOING_TO'               : 'Gehen auf',
                 'FOR'                    : 'für',
                 'TO_SURFACE'             : 'Überwasserfahrt',
                 'TO_DIVE'                : 'Unterwasserfahrt',
                 'TO_TESTDIVE'            : 'Testdive',
                 'TO_CHANGE_DEPTH'        : 'Tiefenänderung',
                 'TO_SNORKEL_DEPTH'       : 'Schnorcheltiefe',
                 'TO_PERISCOPE_DEPTH'     : 'Sehrohrtiefe',
                 'TO_DECKSAWASH_DEPTH'    : 'Vorfluttiefe',
                 'SURFACE'                : 'Auftauchen',
                 'CHANGE_DEPTH'           : 'Neue Tiefe ist',
                 'SNORKEL_DEPTH'          : 'Schnorcheltiefe',
                 'PERISCOPE_DEPTH'        : 'Sehrohrtiefe',
                 'DECKSAWASH_DEPTH'       : 'Vorfluttiefe',  
                 'SURFACEING'             : 'Tauchen auf',
                 'XO'                     : 'LI',
                 'NAVIGATOR'              : 'ObStrMn',
                 'HERR_KALEUN'            : 'Herr Kaleun'
        }               

elif LANGUAGE == "FR":
        SUB_HEADING_COMPASS_STYLE = ('NNE','NE','ENE','ESE','SE','SSE','SSO','SO','WSO ','WNO','NO','NNO','N','E','S','O')
        
        TEXT = { 'SHA_START'              : 'Joining Subroute', 
                 'SHA_FINAL'              : 'We have been arrived.',
                 'SHA_INBOUND'            : 'Inbound',
                 'SHA_OUTBOUND'           : 'Outbound',
                 'BLANK'                  : ' ',
                 'BIGREGBLANK'            : '',                                 # Set to NULL for BIGREG-Dez-Style
                 'KOMMATA'                : '.',
                 'POINT'                  : '.',
                 'PORT'                   : 'Babord',
                 'STARBOARD'              : 'Tribord',
                 'DEGREE'                 : 'Degré',
                 'NEW_HEADING_IS'         : 'Cap au',
                 'HEADING_IS_FINE'        : 'Maintenez le cap',
                 'WE_ARE_THERE'           : 'Position atteinte',
                 'HEADING'                : 'La barre',
                 'DEC_TO'                 : '0 a',
                 'DEGREE_TO'              : 'Gardez le cap',
                 'REACHING_NEXT_WP'       : 'Reaching next Waypoint in',
                 'SM'                     : 'nm',
                 'KN'                     : 'knots',
                 'METRES'                 : 'metres',
                 'THAT_TAKES'             : 'That tooks',
                 'HOURS'                  : 'hours',
                 'MINUTES'                : 'minutes',
                 'LEFT_BRACKET'           : '(',
                 'RIGHT_BRACKET'          : ')',
                 'DOUBLEPOINT'            : ':',
                 'SUBROUTE'               : 'Subroute',
                 'DISTANCE'               : 'Distance',
                 'TRAVELTIME'             : 'Traveltime',
                 'CHECK_HEADING'          : 'Please check the heading',
                 'NEW_HEADING'            : 'We need to change the heading',
                 'ALL_STOP'               : 'All stop',
                 'STOPPING'               : 'Stopping',
                 'NEW_SPEED'              : 'New Speed',
                 'NEW_SPEED_IS'           : 'Going to',
                 'PREPARE'                : 'Prepare',
                 'READY'                  : 'Ready',
                 'GO_TO'                  : 'Go to',
                 'GOING_TO'               : 'Going to',
                 'FOR'                    : 'for',
                 'TO_SURFACE'             : 'Surfacing',
                 'TO_DIVE'                : 'Diving',
                 'TO_TESTDIVE'            : 'Testdive',
                 'TO_CHANGE_DEPTH'        : 'Depthchanging',
                 'TO_SNORKEL_DEPTH'       : 'Snorkeldepth',
                 'TO_PERISCOPE_DEPTH'     : 'Persicopedepth',
                 'TO_DECKSAWASH_DEPTH'    : 'Decks awash',
                 'SURFACE'                : 'Surfaceing',
                 'CHANGE_DEPTH'           : 'New depth is',
                 'SNORKEL_DEPTH'          : 'Snorkeldepth',
                 'PERISCOPE_DEPTH'        : 'Persicopedepth',
                 'DECKSAWASH_DEPTH'       : 'Decks awash',  
                 'SURFACEING'             : 'Surfacing',                 
                 'XO'                     : 'XO',
                 'NAVIGATOR'              : 'Navigator',
                 'HERR_KALEUN'            : 'commandant'
        }               

elif LANGUAGE == "IT":
        SUB_HEADING_COMPASS_STYLE = ('NNE','NE','ENE','ESE','SE','SSE','SSO','SO','OSO','ONO','NO','NNO','N','E','S','O')
        
        TEXT = { 'SHA_START'              : 'Joining Subroute', 
                 'SHA_FINAL'              : 'We have been arrived.',
                 'SHA_INBOUND'            : 'Inbound',
                 'SHA_OUTBOUND'           : 'Outbound',
                 'BLANK'                  : ' ',
                 'BIGREGBLANK'            : ' ',                                # Set to NULL for BIGREG-Dez-Style
                 'KOMMATA'                : '.',
                 'POINT'                  : '.',
                 'PORT'                   : 'sinistra',
                 'STARBOARD'              : 'dritta',
                 'DEGREE'                 : 'gradi',
                 'NEW_HEADING_IS'         : 'Nuova rotta:',
                 'HEADING_IS_FINE'        : 'Rimaniamo in rotta',
                 'WE_ARE_THERE'           : 'We are there',
                 'HEADING'                : 'Heading',
                 'DEC_TO'                 : 'decine a',
                 'DEGREE_TO'              : 'gradi a',
                 'REACHING_NEXT_WP'       : 'Reaching next Waypoint in',
                 'SM'                     : 'nm',
                 'KN'                     : 'knots',
                 'METRES'                 : 'metres',                 
                 'THAT_TAKES'             : 'That tooks',
                 'HOURS'                  : 'hours',
                 'MINUTES'                : 'minutes',
                 'LEFT_BRACKET'           : '(',
                 'RIGHT_BRACKET'          : ')',
                 'DOUBLEPOINT'            : ':',
                 'SUBROUTE'               : 'Subroute',
                 'DISTANCE'               : 'Distance',
                 'TRAVELTIME'             : 'Traveltime',
                 'CHECK_HEADING'          : 'Please check the heading',
                 'NEW_HEADING'            : 'We need to change the heading',
                 'ALL_STOP'               : 'All stop',
                 'STOPPING'               : 'Stopping',
                 'NEW_SPEED'              : 'New Speed',
                 'NEW_SPEED_IS'           : 'Going to',
                 'PREPARE'                : 'Prepare',
                 'READY'                  : 'Ready',
                 'GO_TO'                  : 'Go to',
                 'GOING_TO'               : 'Going to',
                 'FOR'                    : 'for',
                 'TO_SURFACE'             : 'Surfacing',
                 'TO_DIVE'                : 'Diving',
                 'TO_TESTDIVE'            : 'Testdive',
                 'TO_CHANGE_DEPTH'        : 'Depthchanging',
                 'TO_SNORKEL_DEPTH'       : 'Snorkeldepth',
                 'TO_PERISCOPE_DEPTH'     : 'Persicopedepth',
                 'TO_DECKSAWASH_DEPTH'    : 'Decks awash',
                 'SURFACE'                : 'Surfaceing',
                 'CHANGE_DEPTH'           : 'New depth is',
                 'SNORKEL_DEPTH'          : 'Snorkeldepth',
                 'PERISCOPE_DEPTH'        : 'Persicopedepth',
                 'DECKSAWASH_DEPTH'       : 'Decks awash',     
                 'SURFACEING'             : 'Surfacing',         
                 'XO'                     : 'XO',                 
                 'NAVIGATOR'              : 'Navigator',
                 'HERR_KALEUN'            : 'Signore'
        }               

else:
        SUB_HEADING_COMPASS_STYLE = ('NNE','NE','ENE','ESE','SE','SSE','SSW','SW','WSW','WNW','NW','NNW','N','E','S','W')

        TEXT = { 'SHA_START'              : 'Joining Subroute', 
                 'SHA_FINAL'              : 'We have been arrived.',
                 'SHA_INBOUND'            : 'Inbound',
                 'SHA_OUTBOUND'           : 'Outbound',
                 'BLANK'                  : ' ',
                 'BIGREGBLANK'            : ' ',                                # Set to NULL for BIGREG-Dez-Style
                 'KOMMATA'                : '.',
                 'POINT'                  : '.',
                 'PORT'                   : 'port',
                 'STARBOARD'              : 'starboard',
                 'DEGREE'                 : 'degree',
                 'NEW_HEADING_IS'         : 'New heading is',
                 'HEADING_IS_FINE'        : 'Heading is fine',
                 'WE_ARE_THERE'           : 'We are there',
                 'HEADING'                : 'Heading',
                 'DEC_TO'                 : 'Dec to',
                 'DEGREE_TO'              : 'degree to',
                 'REACHING_NEXT_WP'       : 'Reaching next Waypoint in',
                 'SM'                     : 'nm',
                 'KN'                     : 'knots',
                 'METRES'                 : 'metres',
                 'THAT_TAKES'             : 'That takes',
                 'HOURS'                  : 'hours',
                 'MINUTES'                : 'minutes',
                 'LEFT_BRACKET'           : '(',
                 'RIGHT_BRACKET'          : ')',
                 'DOUBLEPOINT'            : ':',
                 'SUBROUTE'               : 'Subroute',
                 'DISTANCE'               : 'Distance',
                 'TRAVELTIME'             : 'Traveltime',
                 'CHECK_HEADING'          : 'Please check the heading',
                 'NEW_HEADING'            : 'We need to change the heading',
                 'ALL_STOP'               : 'All stop',
                 'STOPPING'               : 'Stopping',
                 'NEW_SPEED'              : 'New Speed',
                 'NEW_SPEED_IS'           : 'Going to',
                 'PREPARE'                : 'Prepare',
                 'READY'                  : 'Ready',
                 'GO_TO'                  : 'Go to',
                 'GOING_TO'               : 'Going to',
                 'FOR'                    : 'for',
                 'TO_SURFACE'             : 'Surfacing',
                 'TO_DIVE'                : 'Diving',
                 'TO_TESTDIVE'            : 'Testdive',
                 'TO_CHANGE_DEPTH'        : 'Depthchanging',
                 'TO_SNORKEL_DEPTH'       : 'Snorkeldepth',
                 'TO_PERISCOPE_DEPTH'     : 'Persicopedepth',
                 'TO_DECKSAWASH_DEPTH'    : 'Decks awash',
                 'SURFACE'                : 'Surfaceing',
                 'CHANGE_DEPTH'           : 'New depth is',
                 'SNORKEL_DEPTH'          : 'Snorkeldepth',
                 'PERISCOPE_DEPTH'        : 'Persicopedepth',
                 'DECKSAWASH_DEPTH'       : 'Decks awash',  
                 'SURFACEING'             : 'Surfacing',                 
                 'XO'                     : 'XO',
                 'NAVIGATOR'              : 'Navigator',
                 'HERR_KALEUN'            : 'Herr Kaleun'
        }
The first three Variables on top are for the correspondending SHA-file:

The example from a real route from Kiel to a position near to Danzig:

Quote:
[AS]
AF34-AN98
[DESCRIPTION]
Subroute AF34-AN98: Distance 1316 nm. Traveltime 187 hours (25 minutes).
[DESCRIPTION_END]
[CATEGORY]
U-Marschwege
[SUBCATEGORY]
AN98 Inbound
[COMMANDS]
Print_message,0,0,Joining Subroute,0,0,0,5
Ahead_one_third,0,0,0,0,0,0,2
Navigate_from_file,0,0,AF34-AN98,0,0,0,10
Set_Time_Compression,1,0,0,0,0,0,10
Print_message,0,0,We have been arrived.,0,0,0,5
[COMMANDS_END]
You find the SHA_* Variables in bold.


What I actually do:

I have defined the routes for the coastal-waters campaign. The last run to build sha- and shn-files returns:

Quote:
Done!
Routes from Queuefile : 58
Distance over all : 96925 nm
Given Waypoints by files : 1014
Calculated Waypoints : 5746
The distance between the waypoints are < 30 km and they are randomized within 2000 (given WP) and 1000 (calculated WP) mtr around
their calculated (ideal-)positions.

58 routes are in- and outbound-routes, that means that I have defined 29 different routes from Kiel and Wilhelmshaven to destinations in the baltic-, north-, nordic- and celtic-sea. To give the Mod a little more military- or mysterious touch, I named the routes by the KM-Grids of their start- and end-points (see the [AS]-section above).

If You want to travel from A to B, You have to look into a briefcase with charts and Maps to find the name of the needed route. Than You can find the route in the automation-menu and only have to activate it.

The Screenshot below is a preview of some sheets from the briefcase:



I hope that I was able to give a short insight of my work to You,
Paco

Last edited by Paco; 10-29-12 at 06:00 PM. Reason: misspelling
Paco is offline   Reply With Quote
Old 10-30-12, 09:03 AM   #4
gap
Navy Seal
 
Join Date: Jan 2011
Location: CJ8937
Posts: 8,215
Downloads: 793
Uploads: 10
Default

Quote:
Originally Posted by Paco View Post
I hope that I was able to give a short insight of my work to You,
Paco
Definitely yes, Paco, keep up your great work!

Talking about the dialogs, I wish to help with the Italian translation, but it is an hard task to translate the short sentences of your script without a context. Could you please provide us with some more examples of complete dialogs, besides the ones you have already posted?

The best would be if you could list every text entry (in English/German) in all its possible combinations
gap is offline   Reply With Quote
Old 10-30-12, 05:13 PM   #5
Paco
Captain
 
Join Date: May 2005
Location: Kassel, Germany
Posts: 542
Downloads: 345
Uploads: 0
Default Comments at a calculated Waypoint

Thanks gap for the feedback.

Ok, I begin with the easier part, the comments on calculated waypoints. That are the WPs, where only little corrections for sub-heading are required.

There are thre possible status:
#1 need to turn a little bit to the left.
#2 no correction required
#3 need to turn a little bit to the right.

If You want to get the comments from Your Crew only, the sentences are build from the following Variables:

## Get the correction exact in degrees:

#1
Quote:
TEXT['HEADING'] + value + TEXT['DEGREE_TO'] + TEXT['PORT']
#2
Quote:
TEXT['HEADING_IS_FINE']
#3
Quote:
TEXT['HEADING'] + value + TEXT['DEGREE_TO'] + TEXT['STARBOARD']
## Get the correction only in decimal-style:

#1
Quote:
TEXT['HEADING'] + dec-value + TEXT['BIGREGBLANK'] + TEXT['DEC_TO'] + TEXT['PORT']
#2
Quote:
TEXT['HEADING_IS_FINE']
#3
Quote:
TEXT['HEADING'] + dec-value + TEXT['BIGREGBLANK'] + TEXT['DEC_TO'] + TEXT['STARBOARD']
BIGREGBLANK: As BIGREG mentioned, he would like to get the comment given in 10-degree-steps and not as the word "dez/dec". If You define it as the word "dez/dec", You have to set BIGREGBLANK = " " (blank). If You decide to use something like "10,20,30" degree, BIGREGBLANK must be "" (NULL)
After this sentence, we always add the recipient:

Quote:
TEXT['HERR_KALEUN']
Example in german and english:

Quote:
DE:
Drehen 1 Dez nach Steuerbord. Herr Kaleun.
Bleiben auf Kurs. Herr Kaleun.
Drehen 1 Dez nach Backbord. Herr Kaleun.

EN:
Heading 1 Dec to starboard. Herr Kaleun.
Heading is fine. Herr Kaleun.
Heading 1 Dec to port. Herr Kaleun.
Or, with exact degrees:
Quote:
DE:
Drehen 3 Grad nach Backbord. Herr Kaleun.
Bleiben auf Kurs. Herr Kaleun.
Drehen 4 Grad nach Steuerbord. Herr Kaleun.

EN:
Heading 4 degree to starboard. Herr Kaleun.
Heading is fine. Herr Kaleun.
Heading 2 degree to port. Herr Kaleun.
Dialog-style:

At a calculated Waypoint, I designed the dialog very simple:

Before the sentence from above, the captain commands his navigator to check the course:

Quote:
TEXT['CHECK_HEADING'] + TEXT['NAVIGATOR']
Example:

Quote:
DE:
Kontrollieren sie den Kurs. ObStrMn.

EN:
Please check the heading. Navigator.
With enabling the italian- or french-output, I currently get these sentences:

Quote:
IT:
Please check the heading. Navigator. Heading 5 gradi a sinistra. Signore.
Please check the heading. Navigator. Heading 4 gradi a dritta. Signore.
Please check the heading. Navigator. Rimaniamo in rotta. Signore.
.
Please check the heading. Navigator. Heading 1 decine a dritta. Signore.
Please check the heading. Navigator. Rimaniamo in rotta. Signore.
Please check the heading. Navigator. Heading 1 decine a sinistra. Signore.


FR:
Please check the heading. Navigator. La barre 4 Gardez le cap Babord. commandant.
Please check the heading. Navigator. Maintenez le cap. commandant.
Please check the heading. Navigator. La barre 1 Gardez le cap Tribord. commandant.
.
Please check the heading. Navigator. La barre 10 a Babord. commandant.
Please check the heading. Navigator. Maintenez le cap. commandant.
Please check the heading. Navigator. La barre 10 a Tribord. commandant.
For the Masterwaypoints, I'll write an extra post.

At This Point, I think, the captain should not ask the navigator to check the course, but rather order him to go 10 degree to port. (It is perhaps the behaviour, which was wanted by BIGREG here: http://www.subsim.com/radioroom/show...3&postcount=34 ).

What do You think?

Cheers,
Paco.
Paco is offline   Reply With Quote
Old 10-30-12, 06:25 PM   #6
gap
Navy Seal
 
Join Date: Jan 2011
Location: CJ8937
Posts: 8,215
Downloads: 793
Uploads: 10
Default

Thank you Paco,

here's an update of the italian dialogs, based on your inputs:

Code:
TEXT = {         'SHA_START'              : 'Joining Subroute', 
                 'SHA_FINAL'              : 'We have been arrived.',
                 'SHA_INBOUND'            : 'Inbound',
                 'SHA_OUTBOUND'           : 'Outbound',
                 'BLANK'                  : ' ',
                 'BIGREGBLANK'            : '',                                # NULL
                 'KOMMATA'                : ',',
                 'POINT'                  : '.',
                 'PORT'                   : 'sinistra',
                 'STARBOARD'              : 'dritta',
                 'DEGREE'                 : 'grado',
                 'DEGREES'                : 'gradi',
                 'NEW_HEADING_IS'         : 'Nuova rotta:',
                 'HEADING_IS_FINE'        : 'Timoniere, alla via così! Rimaniamo in rotta',
                 'WE_ARE_THERE'           : 'Siamo a destinazione',
                 'HEADING'                : 'Viriamo',
                 'DEC_TO'                 : 'gradi di barra a',
                 'DEGREE_TO'              : 'gradi di barra a',
                 'REACHING_NEXT_WP'       : 'La prossima tappa dista',
                 'SM'                     : 'nm',
                 'KN'                     : 'nodi',
                 'METRES'                 : 'mt',                 
                 'THAT_TAKES'             : 'La raggiungeremo fra',
                 'HOURS'                  : 'h',
                 'MINUTES'                : 'min',
                 'LEFT_BRACKET'           : '(',
                 'RIGHT_BRACKET'          : ')',
                 'DOUBLEPOINT'            : ':',
                 'SUBROUTE'               : 'Subroute',
                 'DISTANCE'               : 'Distance',
                 'TRAVELTIME'             : 'Traveltime',
                 'CHECK_HEADING'          : 'Per favore verificate la rotta',
                 'NEW_HEADING'            : 'Dobbiamo rivedere la rotta',
                 'ALL_STOP'               : 'Ferma tutto',
                 'STOPPING'               : 'Macchine ferme',
                 'NEW_SPEED'              : 'Nuova velocità:',
                 'NEW_SPEED_IS'           : 'Procediamo a',
                 'PREPARE'                : 'Prepararsi',
                 'READY'                  : 'Siamo pronti',
                 'GO_TO'                  : 'Portiamoci a',
                 'GOING_TO'               : 'Stiamo raggiungendo',
                 'FOR'                    : '',
                 'TO_SURFACE'             : 'all'emersione',
                 'TO_DIVE'                : 'all'immersione',
                 'TO_TESTDIVE'            : 'all'esercitazione di immersione',
                 'TO_CHANGE_DEPTH'        : 'al cambio di profondità',
                 'TO_SNORKEL_DEPTH'       : 'Snorkeldepth',
                 'TO_PERISCOPE_DEPTH'     : 'Persicopedepth',
                 'TO_DECKSAWASH_DEPTH'    : 'Decks awash',
                 'SURFACE'                : 'Emersione',
                 'CHANGE_DEPTH'           : 'New depth is',
                 'SNORKEL_DEPTH'          : 'quota snorkel',
                 'PERISCOPE_DEPTH'        : 'quota periscopica',
                 'DECKSAWASH_DEPTH'       : 'filo d'acqua',     
                 'SURFACEING'             : 'Emersione in corso',         
                 'XO'                     : 'Ufficiale in seconda',                 
                 'NAVIGATOR'              : 'Ufficiale di rotta',
                 'HERR_KALEUN'            : 'Comandante'
Notice that many entries are still in English: I will wait for further explainations by you before translating them too

P.S: is there any special formatting for decimal marks?

Last edited by gap; 11-01-12 at 05:48 PM.
gap is offline   Reply With Quote
Old 10-30-12, 06:47 PM   #7
Paco
Captain
 
Join Date: May 2005
Location: Kassel, Germany
Posts: 542
Downloads: 345
Uploads: 0
Default



Now it looks like:

Quote:
Per favore verificate la rotta. Ufficiale di navigazione. Viriamo 1 decine di gradi a sinistra. Comandante.
Per favore verificate la rotta. Ufficiale di navigazione. Rimaniamo in rotta. Comandante.
Per favore verificate la rotta. Ufficiale di navigazione. Viriamo 1 decine di gradi a dritta. Comandante.

or


Viriamo 1 gradi di barra a dritta. Comandante.
Rimaniamo in rotta. Comandante.
Viriamo 2 gradi di barra a sinistra. Comandante.
The Value for the comma has to be a point, because I am not able to hide it from the automation-function. And there it is the field-separator...


decimal marks: You mean something like: 1.000 or 1,000 instead of 1000? No, not at the moment, sorry.
Paco is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 08:58 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright © 1995- 2025 Subsim®
"Subsim" is a registered trademark, all rights reserved.