mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-02 23:50:24 +02:00
* updated message file from Karl-Michael Schindler
git-svn-id: trunk@2151 -
This commit is contained in:
parent
1318b95a06
commit
629b765688
@ -248,7 +248,7 @@ scan_t_back_in=02043_TL_Wieder zur
|
|||||||
% When you use (\var{-vt}) the compiler tells you when it has finished
|
% When you use (\var{-vt}) the compiler tells you when it has finished
|
||||||
% reading an include file.
|
% reading an include file.
|
||||||
scan_w_unsupported_app_type=02044_W_Nicht unterst<73>tzter Anwendungstyp: $1
|
scan_w_unsupported_app_type=02044_W_Nicht unterst<73>tzter Anwendungstyp: $1
|
||||||
% You get this warning, ff you specify an unknown application type
|
% You get this warning, if you specify an unknown application type
|
||||||
% with the directive \var{\{\$APPTYPE\}}
|
% with the directive \var{\{\$APPTYPE\}}
|
||||||
scan_w_app_type_not_support=02045_W_APPTYPE wird vom Zielbetriebssystem nicht unterst<73>tzt
|
scan_w_app_type_not_support=02045_W_APPTYPE wird vom Zielbetriebssystem nicht unterst<73>tzt
|
||||||
% The \var{\{\$APPTYPE\}} directive is supported by win32 applications only.
|
% The \var{\{\$APPTYPE\}} directive is supported by win32 applications only.
|
||||||
@ -320,6 +320,8 @@ scan_c_switching_to_utf8=02071_C_UTF-8 Signatur gefunden, verwende UTF-8 Kode
|
|||||||
% so it interprets it as an UTF-8 file
|
% so it interprets it as an UTF-8 file
|
||||||
scan_e_compile_time_typeerror=02072_E_Compile time Ausdruck: Erwartete $1 aber erhielt $2 bei $3
|
scan_e_compile_time_typeerror=02072_E_Compile time Ausdruck: Erwartete $1 aber erhielt $2 bei $3
|
||||||
% Type check of a compile time expression failed.
|
% Type check of a compile time expression failed.
|
||||||
|
scan_n_app_type_not_support=02073_N_APPTYPE wird vom Zielbetriebssystem nicht unterst<73>tzt
|
||||||
|
% The \var{\{\$APPTYPE\}} directive is supported by certain operating systems only.
|
||||||
% \end{description}
|
% \end{description}
|
||||||
#
|
#
|
||||||
# Parser
|
# Parser
|
||||||
@ -1170,14 +1172,14 @@ type_w_mixed_signed_unsigned=04035_W_Mischen von signed Ausdr
|
|||||||
% expression (+, -, *, div, mod) in which both signed numbers and longwords appear,
|
% expression (+, -, *, div, mod) in which both signed numbers and longwords appear,
|
||||||
% then everything has to be evaluated in 64bit which is slower than normal
|
% then everything has to be evaluated in 64bit which is slower than normal
|
||||||
% 32bit arithmetic. You can avoid this by typecasting one operand so it
|
% 32bit arithmetic. You can avoid this by typecasting one operand so it
|
||||||
% matches the resulttype of the other one.
|
% matches the result type of the other one.
|
||||||
type_w_mixed_signed_unsigned2=04036_W_Mischen von signed Ausdr<64>cken und kardinalen Typen hier kann einen Bereichspr<70>fungsfehler verursachen
|
type_w_mixed_signed_unsigned2=04036_W_Mischen von signed Ausdr<64>cken und kardinalen Typen hier kann einen Bereichspr<70>fungsfehler verursachen
|
||||||
% If you use a binary operator (and, or, xor) and one of
|
% If you use a binary operator (and, or, xor) and one of
|
||||||
% the operands is a longword while the other one is a signed expression, then,
|
% the operands is a longword while the other one is a signed expression, then,
|
||||||
% if range checking is turned on, you may get a range check error because in
|
% if range checking is turned on, you may get a range check error because in
|
||||||
% such a case both operands are converted to longword before the operation is
|
% such a case both operands are converted to longword before the operation is
|
||||||
% carried out. You can avoid this by typecasting one operand so it
|
% carried out. You can avoid this by typecasting one operand so it
|
||||||
% matches the resulttype of the other one.
|
% matches the result type of the other one.
|
||||||
type_e_typecast_wrong_size_for_assignment=04037_E_Typecast hat verschiedene Gr”ssen ($1 -> $2) in der Zuweisung
|
type_e_typecast_wrong_size_for_assignment=04037_E_Typecast hat verschiedene Gr”ssen ($1 -> $2) in der Zuweisung
|
||||||
% Type casting to a type with a different size is not allowed when the variable is
|
% Type casting to a type with a different size is not allowed when the variable is
|
||||||
% used for assigning.
|
% used for assigning.
|
||||||
@ -1254,7 +1256,7 @@ type_e_illegal_count_var=04058_E_Loop-Variable muss einen ordinalen Typ haben
|
|||||||
#
|
#
|
||||||
# Symtable
|
# Symtable
|
||||||
#
|
#
|
||||||
# 05055 is the last used one
|
# 05060 is the last used one
|
||||||
#
|
#
|
||||||
% \section{Symbol handling}
|
% \section{Symbol handling}
|
||||||
% This section lists all the messages that concern the handling of symbols.
|
% This section lists all the messages that concern the handling of symbols.
|
||||||
@ -1398,6 +1400,16 @@ sym_h_uninitialized_variable=05058_H_Die Variable "$1" scheint nicht initialisie
|
|||||||
% be used (i.e. appears in the right-hand-side of an expression) when it
|
% be used (i.e. appears in the right-hand-side of an expression) when it
|
||||||
% was not initialized first (i.e. appeared in the left-hand side of an
|
% was not initialized first (i.e. appeared in the left-hand side of an
|
||||||
% assigment)
|
% assigment)
|
||||||
|
sym_w_function_result_uninitialized=05059_W_Die Ergebnisvariable der Funktion scheint nicht initialisiert zu sein
|
||||||
|
% This message is displayed if the compiler thinks that the function result
|
||||||
|
% variable will be used (i.e. appears in the right-hand-side of an expression)
|
||||||
|
% before it is initialized (i.e. appeared in the left-hand side of an
|
||||||
|
% assigment)
|
||||||
|
sym_h_function_result_uninitialized=05060_H_Die Ergebnisvariable der Funktion scheint nicht initialisiert zu sein
|
||||||
|
% This message is displayed if the compiler thinks that the function result
|
||||||
|
% variable will be used (i.e. appears in the right-hand-side of an expression)
|
||||||
|
% before it is initialized (i.e. appeared in the left-hand side of an
|
||||||
|
% assigment)
|
||||||
% \end{description}
|
% \end{description}
|
||||||
#
|
#
|
||||||
# Codegenerator
|
# Codegenerator
|
||||||
@ -1833,7 +1845,7 @@ execinfo_x_codesize=09130_X_Gr
|
|||||||
execinfo_x_initdatasize=09131_X_Gr”sse der initialisierten Daten: $1 Bytes
|
execinfo_x_initdatasize=09131_X_Gr”sse der initialisierten Daten: $1 Bytes
|
||||||
execinfo_x_uninitdatasize=09132_X_Gr”sse der nicht initialisierten Daten: $1 Bytes
|
execinfo_x_uninitdatasize=09132_X_Gr”sse der nicht initialisierten Daten: $1 Bytes
|
||||||
execinfo_x_stackreserve=09133_X_Stack Bereich "reserved": $1 Bytes
|
execinfo_x_stackreserve=09133_X_Stack Bereich "reserved": $1 Bytes
|
||||||
execinfo_x_stackcommit=09134_X_Stack Bereich "commited": $1 Bytes
|
execinfo_x_stackcommit=09134_X_Stack Bereich "committed": $1 Bytes
|
||||||
|
|
||||||
#
|
#
|
||||||
# Unit loading
|
# Unit loading
|
||||||
@ -2052,13 +2064,13 @@ option_no_nested_response_file=11003_E_Verschachtelte Response-Dateien werden ni
|
|||||||
% you cannot nest response files with the \var{@file} command-line option.
|
% you cannot nest response files with the \var{@file} command-line option.
|
||||||
option_no_source_found=11004_F_Kein Name f<>r Quelldatei auf der Kommandzeile
|
option_no_source_found=11004_F_Kein Name f<>r Quelldatei auf der Kommandzeile
|
||||||
% The compiler expects a source file name on the command line.
|
% The compiler expects a source file name on the command line.
|
||||||
option_no_option_found=11005_N_Keine Angeben in Konfigurationsdatei "$1" gefunden
|
option_no_option_found=11005_N_Keine Angaben in Konfigurationsdatei "$1" gefunden
|
||||||
% The compiler didn't find any option in that config file.
|
% The compiler didn't find any option in that config file.
|
||||||
option_illegal_para=11006_E_Ung<6E>ltiger Parameter: $1
|
option_illegal_para=11006_E_Ung<6E>ltiger Parameter: $1
|
||||||
% You specified an unknown option.
|
% You specified an unknown option.
|
||||||
option_help_pages_para=11007_H_-? zeigt Hilfetext an
|
option_help_pages_para=11007_H_-? zeigt Hilfetext an
|
||||||
% When an unknown option is given, this message is diplayed.
|
% When an unknown option is given, this message is diplayed.
|
||||||
option_too_many_cfg_files=11008_F_Zu viele verschachtelte Konfigurtionsdateien
|
option_too_many_cfg_files=11008_F_Zu viele verschachtelte Konfigurationsdateien
|
||||||
% You can only nest up to 16 config files.
|
% You can only nest up to 16 config files.
|
||||||
option_unable_open_file=11009_F_Kann Datei nicht ”ffnen $1
|
option_unable_open_file=11009_F_Kann Datei nicht ”ffnen $1
|
||||||
% The option file cannot be found.
|
% The option file cannot be found.
|
||||||
@ -2111,18 +2123,20 @@ option_using_env=11027_T_Optionen werden aus dem environment $1 gelesen
|
|||||||
option_handling_option=11028_D_Handling der Option "$1"
|
option_handling_option=11028_D_Handling der Option "$1"
|
||||||
% Debug info that an option is found and will be handled
|
% Debug info that an option is found and will be handled
|
||||||
option_help_press_enter=11029__*** Dr<44>cken sie die ENTER Taste ***
|
option_help_press_enter=11029__*** Dr<44>cken sie die ENTER Taste ***
|
||||||
option_start_reading_configfile=11030_H_Beginn des Lesens der config Datei $1
|
option_start_reading_configfile=11030_H_Beginn des Lesens der Konfigurationsdatei $1
|
||||||
% Starting of config file parsing.
|
% Starting of config file parsing.
|
||||||
option_end_reading_configfile=11031_H_Ende des Lesens der config Datei $1
|
option_end_reading_configfile=11031_H_Ende des Lesens der Konfigurationsdatei $1
|
||||||
% End of config file parsing.
|
% End of config file parsing.
|
||||||
option_interpreting_option=11032_D_Option "$1" interpretieren
|
option_interpreting_option=11032_D_Option "$1" interpretieren
|
||||||
option_interpreting_firstpass_option=11036_D_firstpass Option "$1" interpretieren
|
option_interpreting_firstpass_option=11036_D_firstpass Option "$1" interpretieren
|
||||||
option_interpreting_file_option=11033_D_Datei Option "$1" interpretieren
|
option_interpreting_file_option=11033_D_Datei Option "$1" interpretieren
|
||||||
option_read_config_file=11034_D_config Datei "$1" lesen
|
option_read_config_file=11034_D_Konfigurationsdatei "$1" lesen
|
||||||
option_found_file=11035_D_Name der Quelldatei "$1" gefunden
|
option_found_file=11035_D_Name der Quelldatei "$1" gefunden
|
||||||
% Additional infos about options, displayed
|
% Additional infos about options, displayed
|
||||||
% when you have debug option turned on.
|
% when you have debug option turned on.
|
||||||
option_code_page_not_available=11039_E_Unbekannte code page
|
option_code_page_not_available=11039_E_Unbekannte code page
|
||||||
|
option_config_is_dir=11040_F_Konfigurationsdatei $1 ist ein Verzeichnis
|
||||||
|
% Directories can not be used as configuration files.
|
||||||
%\end{description}
|
%\end{description}
|
||||||
# EndOfTeX
|
# EndOfTeX
|
||||||
|
|
||||||
@ -2254,7 +2268,7 @@ S*2Aas_assembliere mit Hilfe von GNU AS
|
|||||||
*g2gg_Verwende gsym
|
*g2gg_Verwende gsym
|
||||||
*g2gh_Heaptrace-Unit einbinden
|
*g2gh_Heaptrace-Unit einbinden
|
||||||
*g2gl_line info Unit einbinden, um mehr backtrace Informationen anzuzeigen
|
*g2gl_line info Unit einbinden, um mehr backtrace Informationen anzuzeigen
|
||||||
*g2gv_erzeuge tracable mit valgrind
|
*g2gv_erzeuge ein mit valgrind trace-bares Programm
|
||||||
*g2gw_erzeuge dwarf Informationen
|
*g2gw_erzeuge dwarf Informationen
|
||||||
**1i_zeige alle Information <20>ber den Compiler
|
**1i_zeige alle Information <20>ber den Compiler
|
||||||
**2iD_zeige Compilerdatum
|
**2iD_zeige Compilerdatum
|
||||||
@ -2274,10 +2288,11 @@ S*2Aas_assembliere mit Hilfe von GNU AS
|
|||||||
**2Mgpc_versuche zu gpc kompatibel zu sein
|
**2Mgpc_versuche zu gpc kompatibel zu sein
|
||||||
**2Mmacpas_versuche zu den MacIntosh Pascal-Dialekten kompatibel zu sein
|
**2Mmacpas_versuche zu den MacIntosh Pascal-Dialekten kompatibel zu sein
|
||||||
**1n_Standard-Konfigurationsdatei ignorieren
|
**1n_Standard-Konfigurationsdatei ignorieren
|
||||||
**1N<x>node tree Optimierung
|
**1N<x>_node tree Optimierung
|
||||||
**2Nu_unroll loops
|
**2Nu_unroll loops
|
||||||
**1o<x>_die erzeugte, ausf<73>hrbare Datei bekommt den Namen <x>
|
**1o<x>_die erzeugte, ausf<73>hrbare Datei bekommt den Namen <x>
|
||||||
**1O<x>_Optimierungen:
|
**1O<x>_Optimierungen:
|
||||||
|
3*2Oa_<type>=<values> Ausrichtung (alignment) von Mengen
|
||||||
3*2Og_erzeuge k<>rzeren Code
|
3*2Og_erzeuge k<>rzeren Code
|
||||||
3*2OG_erzeuge schnelleren Code (Voreinstellung)
|
3*2OG_erzeuge schnelleren Code (Voreinstellung)
|
||||||
**2Or_halte bestimmte Variablen in den Registern
|
**2Or_halte bestimmte Variablen in den Registern
|
||||||
|
Loading…
Reference in New Issue
Block a user