Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0a7bea9b36d9fd1e105f8e5c66ac75cb94af8c47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#################################################################################
#  Copyright (c) 2007 Red Hat, Inc., (c) 2008 Nokia Inc
#
#  This program and the accompanying materials
#  are made available under the terms of the Eclipse Public License 2.0
#  which accompanies this distribution, and is available at
#  https://www.eclipse.org/legal/epl-2.0/
#
#  SPDX-License-Identifier: EPL-2.0
# 
#  Contributors:
#      Red Hat Incorporated - initial API and implementation
#      Nokia Inc - refactoring
#################################################################################
UnmatchedRightParenthesis=Unmatched right parenthesis
UnmatchedLeftParenthesis=Unmatched left parenthesis
UnmatchedRightQuote=Unmatched right quote, expected {0}
UnmatchedLeftQuote=Unmatched left quote, expected {0}
UnmatchedCloseComment=Unmatched end of comment, expected {0}
UnterminatedString=Unterminated string, expected {0}

AutoconfMacroArgsTooFew=The autoconf version {0} definition of macro "{1}" requires at least {2} arguments
AutoconfMacroArgsTooMany=The autoconf version {0} definition of macro "{1}" may have a maximum of {2} arguments
M4MacroArgsTooFew=The m4 macro "{0}" requires at least {1} arguments
M4MacroArgsTooMany=The m4 macro "{0}" may have a maximum of {1} arguments
MissingSpecifier=Missing "{0}" specifier
InvalidSpecifier=The specifier "{0}" should be separated from condition by semicolon or newline
InvalidTermination=The specifier "{0}" should appear after semicolon or newline
UnterminatedConstruct=This "{0}" construct is unterminated
MissingCondition=Missing condition for {0} specifier
InvalidElif=The "elif" keyword should appear in an "if" or "elif" construct
InvalidElse=The "else" keyword should appear in an "if" or "elif" construct
InvalidFi=The "fi" keyword should terminate an "if", "elif", or "else" construct
InvalidEsac=The "esac" keyword should terminate a "case" statement
InvalidDone=The "done" keyword should terminate a "for", "while", "until", or "select" statement
InvalidDo=The "do" keyword should appear in a "for", "while", "until", or "select" statement
InvalidThen=The "then" keyword should appear in an "if" or "elif" statement
InvalidIn=The "in" keyword should appear in a "case" statement
UnterminatedCaseCondition=Case condition is not terminated before "esac" keyword
ImproperCaseCondition=Case condition expected to end with ")"
UnterminatedInlineDocument=Inline document started with "<<" is unterminated
IncompleteInlineMarker=Inline document marker has incomplete quote
MissingInlineMarker=Inline document specification is missing end marker
AutoconfAnnotationHover.multipleMarkers=Multiple markers at this line

AC_INIT_badVersionNumber =The second argument of AC_INIT must be a version number

ShowToolTip.label=Show T&ooltip Description
ContentAssistProposal.label=Co&ntent Assist
ContentAssistProposal.tooltip=Content Assist
ContentAssistProposal.description=Content Assist

Back to the top