You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bundle/src/main/java/com/adobe/granite/translation/connector/bootstrap/core/impl/BootstrapTranslationServiceFactoryImpl.java
@Component(label = "Bootstrap Translation Connector Factory", metatype = true, immediate = true, description="Configurable settings for the Bootstrap Translation connector")
46
46
@Properties(value = {
47
47
@Property(name = "service.description", value = "Bootstrap translation service"),
48
48
@Property(name=BootstrapConstants.PREVIEW_ENABLED, label="Enable Preview", boolValue=false, description="Preview Enabled for Translation Objects"),
49
+
@Property(name=BootstrapConstants.PSEUDO_L10N_DISABLED, label="Disable Psuedo L10n", boolValue=false, description="Disable Pseudo localization for Machine translations and use a simple Language prefix instead"),
49
50
@Property(name = TranslationServiceFactory.PROPERTY_TRANSLATION_FACTORY, value = "Bootstrap Connector",
50
51
label = "Bootstrap Translation Factory Name", description = "The Unique ID associated with this "
51
52
+ "Translation Factory Connector"),
@@ -62,6 +63,8 @@ public class BootstrapTranslationServiceFactoryImpl implements TranslationServic
62
63
63
64
protectedBooleanisPreviewEnabled;
64
65
66
+
protectedBooleanisPseudoLocalizationDisabled;
67
+
65
68
protectedStringexportFormat;
66
69
67
70
@Reference
@@ -125,7 +128,7 @@ public TranslationService createTranslationService(TranslationMethod translation
Copy file name to clipboardExpand all lines: bundle/src/main/java/com/adobe/granite/translation/connector/bootstrap/core/impl/BootstrapTranslationServiceImpl.java
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,7 @@ public class BootstrapTranslationServiceImpl extends AbstractTranslationService
0 commit comments