Révision 1337
tmp/org.txm.annotation.kr.rcp/src/org/txm/annotation/kr/rcp/concordance/KRAnnotation.java (revision 1337) | ||
---|---|---|
21 | 21 |
import org.eclipse.jface.viewers.SelectionChangedEvent; |
22 | 22 |
import org.eclipse.jface.viewers.TableViewer; |
23 | 23 |
import org.eclipse.jface.viewers.TableViewerColumn; |
24 |
import org.eclipse.osgi.util.NLS; |
|
24 | 25 |
import org.eclipse.swt.SWT; |
25 | 26 |
import org.eclipse.swt.events.KeyEvent; |
26 | 27 |
import org.eclipse.swt.events.KeyListener; |
... | ... | |
59 | 60 |
import org.txm.concordance.rcp.editors.ConcordanceEditor; |
60 | 61 |
import org.txm.concordance.rcp.editors.ConcordanceEditor.ConcordanceColumnSizeControlListener; |
61 | 62 |
import org.txm.concordance.rcp.messages.ConcordanceUIMessages; |
63 |
import org.txm.core.messages.TXMCoreMessages; |
|
62 | 64 |
import org.txm.core.results.TXMResult; |
63 | 65 |
import org.txm.rcp.IImageKeys; |
64 | 66 |
import org.txm.rcp.commands.OpenBrowser; |
... | ... | |
215 | 217 |
|
216 | 218 |
typesList.addAll(krtypes); |
217 | 219 |
|
218 |
Log.warning(KRAnnotationUIMessages.availableAnnotationTypesDDot+typesList);
|
|
220 |
Log.warning(NLS.bind(KRAnnotationUIMessages.availableAnnotationTypesDDotP0, typesList));
|
|
219 | 221 |
break; |
220 | 222 |
} |
221 | 223 |
|
... | ... | |
515 | 517 |
List<Match> matches = concordance.getMatches(); |
516 | 518 |
affectMatchesToSelection(matches); |
517 | 519 |
} catch (CqiClientException e1) { |
518 |
Log.severe(KRAnnotationUIMessages.errorWhileAnnotatingConcordanceDDot+e1);
|
|
520 |
Log.severe(NLS.bind(KRAnnotationUIMessages.errorWhileAnnotatingConcordanceDDotP0, e1.getLocalizedMessage()));
|
|
519 | 521 |
Log.printStackTrace(e1); |
520 | 522 |
return; |
521 | 523 |
} |
... | ... | |
610 | 612 |
deleteAnnotationValues(matches, type, this); |
611 | 613 |
} |
612 | 614 |
} catch(Exception e) { |
613 |
Log.severe(KRAnnotationUIMessages.errorWhileAnnotatingConcordanceSelectionDDot+e);
|
|
615 |
Log.severe(NLS.bind(KRAnnotationUIMessages.errorWhileAnnotatingConcordanceSelectionDDotP0, e));
|
|
614 | 616 |
Log.printStackTrace(e); |
615 | 617 |
return Status.CANCEL_STATUS; |
616 | 618 |
} catch(ThreadDeath td) { |
... | ... | |
688 | 690 |
return; |
689 | 691 |
} |
690 | 692 |
} catch (Exception e1) { |
691 |
System.out.println(KRAnnotationUIMessages.errorWhileDeletingAnnotationDDot+e1);
|
|
693 |
System.out.println(NLS.bind(KRAnnotationUIMessages.errorWhileDeletingAnnotationDDotP0, e1));
|
|
692 | 694 |
Log.printStackTrace(e1); |
693 | 695 |
return; |
694 | 696 |
} |
... | ... | |
722 | 724 |
ConfirmDialog dialog = new ConfirmDialog(Display.getCurrent().getActiveShell(), |
723 | 725 |
"confirm_annotate", //$NON-NLS-1$ |
724 | 726 |
KRAnnotationUIMessages.confirmAnnotationAffectation, |
725 |
KRAnnotationUIMessages.youAreAboutToAnnotate+matches.size()+KRAnnotationUIMessages.elementsContinue);
|
|
727 |
NLS.bind(KRAnnotationUIMessages.youAreAboutToAnnotateP0ElementsContinue, matches.size()));
|
|
726 | 728 |
|
727 | 729 |
if (dialog.open() == ConfirmDialog.CANCEL) { |
728 | 730 |
System.out.println("Annotation aborted by user."); //$NON-NLS-1$ |
... | ... | |
733 | 735 |
}); |
734 | 736 |
|
735 | 737 |
// get value from combo text value |
736 |
Log.warning(KRAnnotationUIMessages.lookingForTypedValueWithIdEquals+svalue);
|
|
738 |
Log.warning(NLS.bind(KRAnnotationUIMessages.lookingForTypedValueWithIdEqualsP0, svalue));
|
|
737 | 739 |
final KnowledgeRepository kr = KnowledgeRepositoryManager.getKnowledgeRepository(type.getKnowledgeRepository()); |
738 | 740 |
value_to_add = kr.getValue(type, svalue); |
739 | 741 |
|
... | ... | |
783 | 785 |
|
784 | 786 |
// did we had problems ? |
785 | 787 |
if (existingAnnots!=null && existingAnnots.size() > 0) { |
786 |
String message = KRAnnotationUIMessages.couldNotAnnotateTheValue+value_to_add.getStandardName()+ |
|
787 |
KRAnnotationUIMessages.onCertainSequences; |
|
788 |
String message = NLS.bind(KRAnnotationUIMessages.couldNotAnnotateTheValueP0OnCertainSequences, value_to_add.getStandardName()); |
|
788 | 789 |
for (Match m : existingAnnots.keySet()) { |
789 |
message += KRAnnotationUIMessages.theSequence+m+KRAnnotationUIMessages.isOverlappingWith;
|
|
790 |
message += NLS.bind(KRAnnotationUIMessages.theSequenceP0IsOverlappingWith, m);
|
|
790 | 791 |
|
791 | 792 |
for (Annotation existingAnnot : existingAnnots.get(m)) { |
792 | 793 |
if (existingAnnot.getStart() < m.getStart()){ |
793 |
message += KRAnnotationUIMessages.theEndOfAStructure+existingAnnot.getType()+KRAnnotationUIMessages.at+existingAnnot.getStart()+KRAnnotationUIMessages.ConcordancesEditor_67+existingAnnot.getEnd()+KRAnnotationUIMessages.ConcordancesEditor_68;
|
|
794 |
message += TXMCoreMessages.bind(KRAnnotationUIMessages.theEndOfAStructureP0AtP1P2, existingAnnot.getType(), existingAnnot.getStart(), existingAnnot.getEnd());
|
|
794 | 795 |
} else { |
795 |
message += KRAnnotationUIMessages.theStartOfAStructure+existingAnnot.getType()+KRAnnotationUIMessages.at+existingAnnot.getStart()+KRAnnotationUIMessages.ConcordancesEditor_67+existingAnnot.getEnd()+KRAnnotationUIMessages.ConcordancesEditor_68;
|
|
796 |
message += TXMCoreMessages.bind(KRAnnotationUIMessages.theStartOfAStructureP0AtP1P2, existingAnnot.getType(), existingAnnot.getStart(), existingAnnot.getEnd());
|
|
796 | 797 |
} |
797 | 798 |
} |
798 | 799 |
} |
... | ... | |
812 | 813 |
} |
813 | 814 |
concordance.reloadCurrentLines(); |
814 | 815 |
} catch (Exception e1) { |
815 |
System.out.println(KRAnnotationUIMessages.errorWhileAffectionAnnotationDDot+e1);
|
|
816 |
System.out.println(NLS.bind(KRAnnotationUIMessages.errorWhileAffectionAnnotationDDotP0, e1));
|
|
816 | 817 |
Log.printStackTrace(e1); |
817 | 818 |
return; |
818 | 819 |
} |
tmp/org.txm.annotation.kr.rcp/src/org/txm/annotation/kr/rcp/concordance/WordAnnotationToolbar.java (revision 1337) | ||
---|---|---|
20 | 20 |
import org.eclipse.jface.viewers.SelectionChangedEvent; |
21 | 21 |
import org.eclipse.jface.viewers.TableViewer; |
22 | 22 |
import org.eclipse.jface.viewers.TableViewerColumn; |
23 |
import org.eclipse.osgi.util.NLS; |
|
23 | 24 |
import org.eclipse.swt.SWT; |
24 | 25 |
import org.eclipse.swt.events.KeyEvent; |
25 | 26 |
import org.eclipse.swt.events.KeyListener; |
... | ... | |
54 | 55 |
import org.txm.concordance.rcp.editors.ConcordanceEditor; |
55 | 56 |
import org.txm.concordance.rcp.editors.ConcordanceEditor.ConcordanceColumnSizeControlListener; |
56 | 57 |
import org.txm.concordance.rcp.messages.ConcordanceUIMessages; |
58 |
import org.txm.core.messages.TXMCoreMessages; |
|
57 | 59 |
import org.txm.core.results.TXMResult; |
58 | 60 |
import org.txm.rcp.IImageKeys; |
59 | 61 |
import org.txm.rcp.editors.TXMEditor; |
... | ... | |
170 | 172 |
ConfirmDialog dialog = new ConfirmDialog(Display.getCurrent().getActiveShell(), |
171 | 173 |
"confirm_annotate", //$NON-NLS-1$ |
172 | 174 |
KRAnnotationUIMessages.confirmAnnotationAffectation, |
173 |
KRAnnotationUIMessages.youAreAboutToAnnotate+matches.size()+KRAnnotationUIMessages.elementsContinue);
|
|
175 |
NLS.bind(KRAnnotationUIMessages.youAreAboutToAnnotateP0ElementsContinue, matches.size()));
|
|
174 | 176 |
|
175 | 177 |
if (dialog.open() == ConfirmDialog.CANCEL) { |
176 | 178 |
System.out.println("Annotation aborted by user."); //$NON-NLS-1$ |
... | ... | |
181 | 183 |
}); |
182 | 184 |
|
183 | 185 |
// get value from combo text value |
184 |
Log.warning(KRAnnotationUIMessages.lookingForTypedValueWithIdEquals+svalue);
|
|
186 |
Log.warning(NLS.bind(KRAnnotationUIMessages.lookingForTypedValueWithIdEqualsP0, svalue));
|
|
185 | 187 |
final KnowledgeRepository kr = KnowledgeRepositoryManager.getKnowledgeRepository(type.getKnowledgeRepository()); |
186 | 188 |
value_to_add = kr.getValue(type, svalue); |
187 | 189 |
|
... | ... | |
210 | 212 |
|
211 | 213 |
// did we had problems ? |
212 | 214 |
if (existingAnnots!=null && existingAnnots.size() > 0) { |
213 |
String message = KRAnnotationUIMessages.couldNotAnnotateTheValue+value_to_add.getStandardName()+ |
|
214 |
KRAnnotationUIMessages.onCertainSequences; |
|
215 |
String message = NLS.bind(KRAnnotationUIMessages.couldNotAnnotateTheValueP0OnCertainSequences, value_to_add.getStandardName()); |
|
215 | 216 |
for (Match m : existingAnnots.keySet()) { |
216 |
message += KRAnnotationUIMessages.theSequence+m+KRAnnotationUIMessages.isOverlappingWith;
|
|
217 |
message += NLS.bind(KRAnnotationUIMessages.theSequenceP0IsOverlappingWith, m);
|
|
217 | 218 |
|
218 | 219 |
for (Annotation existingAnnot : existingAnnots.get(m)) { |
219 | 220 |
if (existingAnnot.getStart() < m.getStart()){ |
220 |
message += KRAnnotationUIMessages.theEndOfAStructure+existingAnnot.getType()+KRAnnotationUIMessages.at+existingAnnot.getStart()+KRAnnotationUIMessages.ConcordancesEditor_67+existingAnnot.getEnd()+KRAnnotationUIMessages.ConcordancesEditor_68;
|
|
221 |
message += TXMCoreMessages.bind(KRAnnotationUIMessages.theEndOfAStructureP0AtP1P2, existingAnnot.getType(), existingAnnot.getStart(), existingAnnot.getEnd());
|
|
221 | 222 |
} else { |
222 |
message += KRAnnotationUIMessages.theStartOfAStructure+existingAnnot.getType()+KRAnnotationUIMessages.at+existingAnnot.getStart()+KRAnnotationUIMessages.ConcordancesEditor_67+existingAnnot.getEnd()+KRAnnotationUIMessages.ConcordancesEditor_68;
|
|
223 |
message += TXMCoreMessages.bind(KRAnnotationUIMessages.theStartOfAStructureP0AtP1P2, existingAnnot.getType(), existingAnnot.getStart(), existingAnnot.getEnd());
|
|
223 | 224 |
} |
224 | 225 |
} |
225 | 226 |
} |
... | ... | |
239 | 240 |
} |
240 | 241 |
concordance.reloadCurrentLines(); |
241 | 242 |
} catch (Exception e1) { |
242 |
System.out.println(KRAnnotationUIMessages.errorWhileAffectionAnnotationDDot+e1);
|
|
243 |
System.out.println(NLS.bind(KRAnnotationUIMessages.errorWhileAffectionAnnotationDDotP0, e1));
|
|
243 | 244 |
Log.printStackTrace(e1); |
244 | 245 |
return; |
245 | 246 |
} |
... | ... | |
276 | 277 |
return; |
277 | 278 |
} |
278 | 279 |
} catch (Exception e1) { |
279 |
System.out.println(KRAnnotationUIMessages.errorWhileDeletingAnnotationDDot+e1);
|
|
280 |
System.out.println(NLS.bind(KRAnnotationUIMessages.errorWhileDeletingAnnotationDDotP0, e1));
|
|
280 | 281 |
Log.printStackTrace(e1); |
281 | 282 |
return; |
282 | 283 |
} |
... | ... | |
305 | 306 |
try { |
306 | 307 |
affectAnnotationValues(matches, type, svalue, this); |
307 | 308 |
} catch(Exception e) { |
308 |
Log.severe(KRAnnotationUIMessages.errorWhileAnnotatingConcordanceSelectionDDot+e);
|
|
309 |
Log.severe(NLS.bind(KRAnnotationUIMessages.errorWhileAnnotatingConcordanceSelectionDDotP0, e));
|
|
309 | 310 |
Log.printStackTrace(e); |
310 | 311 |
return Status.CANCEL_STATUS; |
311 | 312 |
} catch(ThreadDeath td) { |
... | ... | |
407 | 408 |
|
408 | 409 |
typesList.addAll(krtypes); |
409 | 410 |
|
410 |
Log.warning(KRAnnotationUIMessages.availableAnnotationTypesDDot+typesList);
|
|
411 |
Log.warning(NLS.bind(KRAnnotationUIMessages.availableAnnotationTypesDDotP0, typesList));
|
|
411 | 412 |
|
412 | 413 |
annotationArea = new GLComposite(parent, SWT.NONE, KRAnnotationUIMessages.concordanceAnnotationArea); |
413 | 414 |
annotationArea.getLayout().numColumns = 12; |
... | ... | |
531 | 532 |
List<Match> matches = concordance.getMatches(); |
532 | 533 |
affectMatchesToSelection(matches); |
533 | 534 |
} catch (CqiClientException e1) { |
534 |
Log.severe(KRAnnotationUIMessages.errorWhileAnnotatingConcordanceDDot+e1);
|
|
535 |
Log.severe(NLS.bind(KRAnnotationUIMessages.errorWhileAnnotatingConcordanceDDotP0, e1.getLocalizedMessage()));
|
|
535 | 536 |
Log.printStackTrace(e1); |
536 | 537 |
return; |
537 | 538 |
} |
tmp/org.txm.annotation.kr.rcp/src/org/txm/annotation/kr/rcp/concordance/SimpleKRAnnotation.java (revision 1337) | ||
---|---|---|
18 | 18 |
import org.eclipse.jface.viewers.IStructuredSelection; |
19 | 19 |
import org.eclipse.jface.viewers.TableViewer; |
20 | 20 |
import org.eclipse.jface.viewers.TableViewerColumn; |
21 |
import org.eclipse.osgi.util.NLS; |
|
21 | 22 |
import org.eclipse.swt.SWT; |
22 | 23 |
import org.eclipse.swt.events.KeyEvent; |
23 | 24 |
import org.eclipse.swt.events.KeyListener; |
... | ... | |
52 | 53 |
import org.txm.concordance.rcp.editors.ConcordanceEditor; |
53 | 54 |
import org.txm.concordance.rcp.editors.ConcordanceEditor.ConcordanceColumnSizeControlListener; |
54 | 55 |
import org.txm.concordance.rcp.messages.ConcordanceUIMessages; |
56 |
import org.txm.core.messages.TXMCoreMessages; |
|
55 | 57 |
import org.txm.core.results.TXMResult; |
56 | 58 |
import org.txm.rcp.IImageKeys; |
57 | 59 |
import org.txm.rcp.editors.TXMEditor; |
... | ... | |
195 | 197 |
} |
196 | 198 |
annotations.setViewAnnotation(tagAnnotationType); |
197 | 199 |
|
198 |
Log.warning(KRAnnotationUIMessages.availableAnnotationTypesDDot+typesList);
|
|
200 |
Log.warning(NLS.bind(KRAnnotationUIMessages.availableAnnotationTypesDDotP0, typesList));
|
|
199 | 201 |
|
200 | 202 |
annotationArea = new GLComposite(parent, SWT.NONE, KRAnnotationUIMessages.concordanceAnnotationArea); |
201 | 203 |
annotationArea.getLayout().numColumns = 12; |
... | ... | |
330 | 332 |
List<Match> matches = concordance.getMatches(); |
331 | 333 |
affectMatchesToSelection(matches); |
332 | 334 |
} catch (CqiClientException e1) { |
333 |
Log.severe(KRAnnotationUIMessages.errorWhileAnnotatingConcordanceDDot+e1);
|
|
335 |
Log.severe(NLS.bind(KRAnnotationUIMessages.errorWhileAnnotatingConcordanceDDotP0, e1.getLocalizedMessage()));
|
|
334 | 336 |
Log.printStackTrace(e1); |
335 | 337 |
return; |
336 | 338 |
} |
... | ... | |
403 | 405 |
deleteAnnotationValues(matches, type, this); |
404 | 406 |
} |
405 | 407 |
} catch(Exception e) { |
406 |
Log.severe(KRAnnotationUIMessages.errorWhileAnnotatingConcordanceSelectionDDot+e);
|
|
408 |
Log.severe(NLS.bind(KRAnnotationUIMessages.errorWhileAnnotatingConcordanceSelectionDDotP0, e));
|
|
407 | 409 |
Log.printStackTrace(e); |
408 | 410 |
return Status.CANCEL_STATUS; |
409 | 411 |
} catch(ThreadDeath td) { |
... | ... | |
475 | 477 |
return; |
476 | 478 |
} |
477 | 479 |
} catch (Exception e1) { |
478 |
System.out.println(KRAnnotationUIMessages.errorWhileDeletingAnnotationDDot+e1);
|
|
480 |
System.out.println(NLS.bind(KRAnnotationUIMessages.errorWhileDeletingAnnotationDDotP0, e1));
|
|
479 | 481 |
Log.printStackTrace(e1); |
480 | 482 |
return; |
481 | 483 |
} |
... | ... | |
508 | 510 |
ConfirmDialog dialog = new ConfirmDialog(Display.getCurrent().getActiveShell(), |
509 | 511 |
"confirm_annotate", //$NON-NLS-1$ |
510 | 512 |
KRAnnotationUIMessages.confirmAnnotationAffectation, |
511 |
KRAnnotationUIMessages.youAreAboutToAnnotate+matches.size()+KRAnnotationUIMessages.elementsContinue);
|
|
513 |
NLS.bind(KRAnnotationUIMessages.youAreAboutToAnnotateP0ElementsContinue, matches.size()));
|
|
512 | 514 |
|
513 | 515 |
if (dialog.open() == ConfirmDialog.CANCEL) { |
514 | 516 |
System.out.println("Annotation aborted by user."); //$NON-NLS-1$ |
... | ... | |
519 | 521 |
}); |
520 | 522 |
|
521 | 523 |
// get value from combo text value |
522 |
Log.warning(KRAnnotationUIMessages.lookingForTypedValueWithIdEquals+svalue);
|
|
524 |
Log.warning(NLS.bind(KRAnnotationUIMessages.lookingForTypedValueWithIdEqualsP0, svalue));
|
|
523 | 525 |
final KnowledgeRepository kr = KnowledgeRepositoryManager.getKnowledgeRepository(type.getKnowledgeRepository()); |
524 | 526 |
value_to_add = kr.getValue(type, svalue); |
525 | 527 |
|
... | ... | |
561 | 563 |
return; |
562 | 564 |
} |
563 | 565 |
|
564 |
Log.info(KRAnnotationUIMessages.aFFECT+value_to_add+KRAnnotationUIMessages.toSELECTIONEquals+matches);
|
|
566 |
Log.info(NLS.bind(KRAnnotationUIMessages.AffectP0ToSelectionEqualsP1, value_to_add, matches));
|
|
565 | 567 |
|
566 | 568 |
// finally we can 'try' to create the annotations \o/ |
567 | 569 |
try { |
... | ... | |
569 | 571 |
|
570 | 572 |
// did we had problems ? |
571 | 573 |
if (existingAnnots!=null && existingAnnots.size() > 0) { |
572 |
String message = KRAnnotationUIMessages.couldNotAnnotateTheValue+value_to_add.getStandardName()+ |
|
573 |
KRAnnotationUIMessages.onCertainSequences; |
|
574 |
String message = NLS.bind(KRAnnotationUIMessages.couldNotAnnotateTheValueP0OnCertainSequences, value_to_add.getStandardName()); |
|
574 | 575 |
for (Match m : existingAnnots.keySet()) { |
575 |
message += KRAnnotationUIMessages.theSequence+m+KRAnnotationUIMessages.isOverlappingWith;
|
|
576 |
message += NLS.bind(KRAnnotationUIMessages.theSequenceP0IsOverlappingWith, m);
|
|
576 | 577 |
|
577 | 578 |
for (Annotation existingAnnot : existingAnnots.get(m)) { |
578 | 579 |
if (existingAnnot.getStart() < m.getStart()){ |
579 |
message += KRAnnotationUIMessages.theEndOfAStructure+existingAnnot.getType()+KRAnnotationUIMessages.at+existingAnnot.getStart()+KRAnnotationUIMessages.ConcordancesEditor_67+existingAnnot.getEnd()+KRAnnotationUIMessages.ConcordancesEditor_68;
|
|
580 |
message += TXMCoreMessages.bind(KRAnnotationUIMessages.theEndOfAStructureP0AtP1P2, existingAnnot.getType(), existingAnnot.getStart(), existingAnnot.getEnd());
|
|
580 | 581 |
} else { |
581 |
message += KRAnnotationUIMessages.theStartOfAStructure+existingAnnot.getType()+KRAnnotationUIMessages.at+existingAnnot.getStart()+KRAnnotationUIMessages.ConcordancesEditor_67+existingAnnot.getEnd()+KRAnnotationUIMessages.ConcordancesEditor_68;
|
|
582 |
message += TXMCoreMessages.bind(KRAnnotationUIMessages.theStartOfAStructureP0AtP1P2, existingAnnot.getType(), existingAnnot.getStart(), existingAnnot.getEnd());
|
|
582 | 583 |
} |
583 | 584 |
} |
584 | 585 |
} |
... | ... | |
595 | 596 |
annotManager.checkData(); |
596 | 597 |
} |
597 | 598 |
} catch (Exception e1) { |
598 |
System.out.println(KRAnnotationUIMessages.errorWhileAffectionAnnotationDDot+e1);
|
|
599 |
System.out.println(NLS.bind(KRAnnotationUIMessages.errorWhileAffectionAnnotationDDotP0, e1));
|
|
599 | 600 |
Log.printStackTrace(e1); |
600 | 601 |
return; |
601 | 602 |
} |
tmp/org.txm.annotation.kr.rcp/src/org/txm/annotation/kr/rcp/messages/messages.properties (revision 1337) | ||
---|---|---|
3 | 3 |
aboutAnnotations=About annotations |
4 | 4 |
addANewCategory=Add a new category |
5 | 5 |
affect=Affect |
6 |
aFFECT=AFFECT
|
|
6 |
AffectP0ToSelectionEqualsP1=Affect {0} to selection={1}
|
|
7 | 7 |
all=All |
8 | 8 |
allLines=all lines |
9 | 9 |
annotatingConcordanceSelection=Annotating concordance selection... |
10 | 10 |
annotationCanceledByUser=Annotation canceled by user. |
11 | 11 |
at=, at [ |
12 |
availableAnnotationTypesDDot=Available annotation types\:
|
|
12 |
availableAnnotationTypesDDotP0=Available annotation types\: {0}
|
|
13 | 13 |
availableValuesForP0=Available values for {0} |
14 | 14 |
category=Category |
15 | 15 |
closeTheToolbarWithoutSaving=Close the toolbar without saving |
... | ... | |
17 | 17 |
ConcordancesEditor_67=\ - |
18 | 18 |
ConcordancesEditor_68=]\n |
19 | 19 |
confirmAnnotationAffectation=Confirm annotation affectation |
20 |
couldNotAnnotateTheValue=Could not annotate the value '
|
|
20 |
couldNotAnnotateTheValueP0OnCertainSequences=Could not annotate the value {0} on certain sequences.\n
|
|
21 | 21 |
delete=Delete |
22 |
elementsContinue=\ elements. Continue ? |
|
23 | 22 |
enterAValueForAnId=Enter a value for an id |
24 | 23 |
errorDDotNoSuitableKnowledgeRepositoryFound=Error\: no suitable KnowledgeRepository found |
25 |
errorWhileAffectionAnnotationDDot=Error while affection annotation\: |
|
26 |
errorWhileAnnotatingConcordanceDDot=Error while annotating concordance\: |
|
27 |
errorWhileAnnotatingConcordanceSelectionDDot=Error while annotating concordance selection\: |
|
28 |
errorWhileDeletingAnnotationDDot=Error while deleting annotation\: |
|
29 |
isOverlappingWith=\ is overlapping with \n |
|
24 |
errorWhileAffectionAnnotationDDotP0=Error while affection annotation\: {0} |
|
25 |
errorWhileAnnotatingConcordanceDDotP0=Error while annotating concordance\: {0} |
|
26 |
errorWhileAnnotatingConcordanceSelectionDDotP0=Error while annotating concordance selection\: {0} |
|
27 |
errorWhileDeletingAnnotationDDotP0=Error while deleting annotation\: {0} |
|
30 | 28 |
keywordsAnnotation=Keywords annotation |
31 | 29 |
listOfCategories=List of categories |
32 |
lookingForTypedValueWithIdEquals=Looking for TypedValue with id\=
|
|
33 |
motsPropritsInfDfaut=Mots (propri�t�s) <- d�faut
|
|
30 |
lookingForTypedValueWithIdEqualsP0=Looking for TypedValue with id\={0}
|
|
31 |
motsPropritsInfDfaut=Words (property) <- defaut
|
|
34 | 32 |
newCategory=New category |
35 | 33 |
newValueP0ForCategoryP1=New value {0} for category {1} |
36 |
nomDeLaPropritPatternEqualsazaz09Plus=Nom de la propri�t� pattern\=[a-z][-a-z0-9]+
|
|
37 |
nouvelleProprit=Nouvelle propri�t�
|
|
34 |
nomDeLaPropritPatternEqualsazaz09Plus=Property name pattern\=[a-z][-a-z0-9]+
|
|
35 |
nouvelleProprit=New property
|
|
38 | 36 |
noValueFoundWithTheP0Id=No value found with the {0} id. |
39 | 37 |
oK=OK |
40 |
onCertainSequences='.\n on certain sequences. \n |
|
41 | 38 |
openTheListOfCategories=Open the list of categories |
42 | 39 |
pleaseEnterTheNewTypeName=Please enter the new type name |
43 | 40 |
proceedToAnnotation=Proceed to annotation |
... | ... | |
45 | 42 |
saveTheAnnotations=Save the annotations |
46 | 43 |
selectAValueAmongTheList=Select a value among the list |
47 | 44 |
selectedLines=selected lines |
48 |
squencesDeMotsCatgorie=S�quences de mots (cat�gorie)
|
|
49 |
squencesDeMotsCatgorievaleur=S�quences de mots (cat�gorie/valeur)
|
|
50 |
theEndOfAStructure=\t\t- the end of a structure
|
|
51 |
theSequence=\t- The sequence
|
|
52 |
theStartOfAStructure=\t\t- the start of a structure
|
|
45 |
squencesDeMotsCatgorie=Words sequence (category)
|
|
46 |
squencesDeMotsCatgorievaleur=Words sequence (category/value)
|
|
47 |
theEndOfAStructureP0AtP1P2=\t\t- the end of a structure {0} at [{1}\-{2}]\n
|
|
48 |
theSequenceP0IsOverlappingWith=\t- The sequence {0} is overlapping with \n
|
|
49 |
theStartOfAStructureP0AtP1P2=\t\t- the start of a structure {0} at [{1}\-{2}]\n
|
|
53 | 50 |
theValueP0IsNotAssociatedWithTheCategoryP1AssociateIt=The value {0} is not associated with the category {1}. Associate it ? |
54 |
toSELECTIONEquals=\ to SELECTION\= |
|
55 | 51 |
valueEquals=value\= |
56 | 52 |
withTheCategory=with the category |
57 |
youAreAboutToAnnotate=You are about to annotate |
|
53 |
youAreAboutToAnnotateP0ElementsContinue=You are about to annotate {0} elements. Continue ? |
tmp/org.txm.annotation.kr.rcp/src/org/txm/annotation/kr/rcp/messages/KRAnnotationUIMessages.java (revision 1337) | ||
---|---|---|
24 | 24 |
} |
25 | 25 |
|
26 | 26 |
public static String availableValuesForP0; |
27 |
public static String elementsContinue; |
|
27 |
|
|
28 | 28 |
public static String newValueP0ForCategoryP1; |
29 | 29 |
public static String theValueP0IsNotAssociatedWithTheCategoryP1AssociateIt; |
30 | 30 |
public static String addANewCategory; |
... | ... | |
36 | 36 |
public static String enterAValueForAnId; |
37 | 37 |
public static String selectedLines; |
38 | 38 |
public static String annotatingConcordanceSelection; |
39 |
public static String errorWhileAnnotatingConcordanceSelectionDDot; |
|
39 |
public static String errorWhileAnnotatingConcordanceSelectionDDotP0;
|
|
40 | 40 |
public static String allLines; |
41 |
public static String errorWhileAnnotatingConcordanceDDot; |
|
42 |
public static String errorWhileDeletingAnnotationDDot; |
|
43 |
public static String lookingForTypedValueWithIdEquals; |
|
41 |
public static String errorWhileAnnotatingConcordanceDDotP0;
|
|
42 |
public static String errorWhileDeletingAnnotationDDotP0;
|
|
43 |
public static String lookingForTypedValueWithIdEqualsP0;
|
|
44 | 44 |
public static String noValueFoundWithTheP0Id; |
45 |
public static String aFFECT; |
|
46 |
public static String toSELECTIONEquals; |
|
47 |
public static String couldNotAnnotateTheValue; |
|
48 |
public static String onCertainSequences; |
|
49 |
public static String theSequence; |
|
50 |
public static String isOverlappingWith; |
|
51 |
public static String theEndOfAStructure; |
|
45 |
public static String AffectP0ToSelectionEqualsP1; |
|
46 |
public static String couldNotAnnotateTheValueP0OnCertainSequences; |
|
47 |
public static String theSequenceP0IsOverlappingWith; |
|
48 |
public static String theEndOfAStructureP0AtP1P2; |
|
52 | 49 |
public static String at; |
53 | 50 |
public static String ConcordancesEditor_67; |
54 | 51 |
public static String ConcordancesEditor_68; |
55 |
public static String theStartOfAStructure; |
|
52 |
public static String theStartOfAStructureP0AtP1P2;
|
|
56 | 53 |
public static String aboutAnnotations; |
57 |
public static String errorWhileAffectionAnnotationDDot; |
|
54 |
public static String errorWhileAffectionAnnotationDDotP0;
|
|
58 | 55 |
public static String saveTheAnnotations; |
59 | 56 |
public static String openTheListOfCategories; |
60 | 57 |
public static String selectAValueAmongTheList; |
... | ... | |
64 | 61 |
public static String withTheCategory; |
65 | 62 |
public static String oK; |
66 | 63 |
public static String confirmAnnotationAffectation; |
67 |
public static String youAreAboutToAnnotate; |
|
64 |
public static String youAreAboutToAnnotateP0ElementsContinue;
|
|
68 | 65 |
public static String listOfCategories; |
69 | 66 |
public static String squencesDeMotsCatgorievaleur; |
70 | 67 |
public static String closeTheToolbarWithoutSaving; |
71 | 68 |
public static String annotationCanceledByUser; |
72 |
public static String availableAnnotationTypesDDot; |
|
69 |
public static String availableAnnotationTypesDDotP0;
|
|
73 | 70 |
public static String errorDDotNoSuitableKnowledgeRepositoryFound; |
74 | 71 |
public static String concordanceAnnotationArea; |
75 | 72 |
public static String squencesDeMotsCatgorie; |
Formats disponibles : Unified diff