Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 90b8891b922c5e0ac039b67ba255b33da4ba6f1f (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
###############################################################################
# Copyright (c) 2011 Institute for Software, HSR Hochschule fuer Technik  
# Rapperswil, University of applied sciences and others.
#
# 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: 
# 	  Martin Schwab & Thomas Kallenberg - initial API and implementation
#     Sergey Prigogin (Google) 
#     Thomas Corbat (IFS)
###############################################################################
DeclaratorFinder_NestedFunction=Nested function declarations not supported
DeclaratorFinder_NoDeclarator=Cannot work without declarator
DeclaratorFinder_MultipleDeclarators=Cannot work with multiple declarators
RefactoringJob_UndoName=Toggle function definition
ToggleFileCreator_CanNotCreateNewFile=Cannot create new file ''{0}''
ToggleFileCreator_CreateNewFilePrompt=Create a new file ''{0}'' and move {1}?
ToggleFileCreator_NewImplFile=New Implementation file?
ToggleFileCreator_NoTuForSibling=Cannot find translation unit for sibling file
ToggleFromClassToInHeaderStrategy_DefAndDecInsideClass=Definition and Declaration both inside class. Behavior is undefined.
ToggleFromImplementationToHeaderOrClassStrategy_CanNotCreateNewFile=Cannot create new File
ToggleFromImplementationToHeaderOrClassStrategy_CanNotToggle=Not a free function. Cannot decide where to toggle
ToggleFromInHeaderToClassStrategy_CanNotToggleTemplateFreeFunction=Cannot toggle template free function
EditGroupName=Toggle function body placement
ToggleFromInHeaderToImplementationStrategy_CanNotCreateImplFile=Cannot create new Implementation File
ToggleRefactoring_AnalyseSelection=analyzing user text selection
ToggleRefactoring_CalculateModifications=calculating required code modifications
ToggleRefactoring_CanNotSaveFiles=Cannot save files
ToggleRefactoring_InvalidSelection=Invalid selection
ToggleRefactoring_NoIndex=Cannot work without the index
ToggleRefactoring_SyntaxError=Source code contains syntax errors.
ToggleRefactoring_WaitingForIndexer=waiting for indexer
ToggleRefactoringContext_MultipleDeclarations=Multiple declarations would result in ambiguous results
ToggleRefactoringContext_MultipleDefinitions=One-definition-rule broken
ToggleRefactoringContext_NoDefinitionFound=Cannot work without definition
ToggleRefactoringContext_NoTuFound=Cannot work without translation unit
ToggleStrategyFactory_NoDefinitionFound=Cannot work without function definition
ToggleStrategyFactory_UnsupportedSituation=Unsupported situation for moving function body.

Back to the top