Skip to content

Commit 022523f

Browse files
committed
Renamed VIA feature to Artificial Intelligence
1 parent b5cb336 commit 022523f

File tree

6 files changed

+7
-15
lines changed

6 files changed

+7
-15
lines changed

logicaldoc-core/pom.xml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,6 @@
9898
<artifactId>commons-el</artifactId>
9999
<scope>provided</scope>
100100
</dependency>
101-
<!-- dependency> <groupId>commons-discovery</groupId>
102-
<artifactId>commons-discovery</artifactId>
103-
<scope>provided</scope> </dependency -->
104101
<dependency>
105102
<groupId>commons-lang</groupId>
106103
<artifactId>commons-lang</artifactId>
@@ -145,10 +142,6 @@
145142
<artifactId>sqltool</artifactId>
146143
<scope>provided</scope>
147144
</dependency>
148-
<!-- dependency> <groupId>xerces</groupId>
149-
<artifactId>xercesImpl</artifactId>
150-
<scope>provided</scope> <exclusions> <exclusion> <groupId>xml-apis</groupId>
151-
<artifactId>xml-apis</artifactId> </exclusion> </exclusions> </dependency -->
152145
<dependency>
153146
<groupId>org.jdom</groupId>
154147
<artifactId>jdom2</artifactId>
@@ -196,7 +189,7 @@
196189
<groupId>org.springframework</groupId>
197190
<artifactId>spring-context-support</artifactId>
198191
<scope>provided</scope>
199-
</dependency>
192+
</dependency>
200193
<dependency>
201194
<groupId>org.hibernate</groupId>
202195
<artifactId>hibernate-core</artifactId>
@@ -224,7 +217,6 @@
224217
<dependency>
225218
<groupId>net.sf.ehcache.internal</groupId>
226219
<artifactId>ehcache-core</artifactId>
227-
<version>${ehcache.version}</version>
228220
</dependency>
229221
<dependency>
230222
<groupId>org.slf4j</groupId>

logicaldoc-gui/src/main/java/com/logicaldoc/gui/common/client/Feature.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public class Feature {
105105

106106
public static final int CLOUD_STORE = 46;
107107

108-
public static final int VIA = 47;
108+
public static final int ARTIFICIAL_INTELLIGENCE = 47;
109109

110110
public static final int AUTOMATION = 48;
111111

logicaldoc-gui/src/main/java/com/logicaldoc/gui/frontend/client/settings/SettingsMenu.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ private void addVia() {
112112
via.setWidth100();
113113
via.setHeight(25);
114114
via.addClickHandler((ClickEvent event) -> AdminScreen.get().setContent(new VIASettingsPanel()));
115-
if (Feature.visible(Feature.VIA) && Menu.enabled(Menu.VIA)) {
115+
if (Feature.visible(Feature.ARTIFICIAL_INTELLIGENCE) && Menu.enabled(Menu.VIA)) {
116116
addMember(via);
117-
if (!Feature.enabled(Feature.VIA))
117+
if (!Feature.enabled(Feature.ARTIFICIAL_INTELLIGENCE))
118118
setFeatureDisabled(via);
119119
}
120120
}

logicaldoc-i18n/src/main/resources/i18n/messages.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ feature.Feature_43=Google Drive
783783
feature.Feature_44=SMB Storage
784784
feature.Feature_45=Format Conversion
785785
feature.Feature_46=Cloud Storage
786-
feature.Feature_47=Virtual Intelligence Assistant
786+
feature.Feature_47=Artificial Intelligence
787787
feature.Feature_48=Automation
788788
feature.Feature_49=Zonal OCR
789789
feature.Feature_50=Show Disabled

logicaldoc-i18n/src/main/resources/i18n/messages_en.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ feature.Feature_43=Google Drive
783783
feature.Feature_44=SMB Storage
784784
feature.Feature_45=Format Conversion
785785
feature.Feature_46=Cloud Storage
786-
feature.Feature_47=Virtual Intelligence Assistant
786+
feature.Feature_47=Artificial Intelligence
787787
feature.Feature_48=Automation
788788
feature.Feature_49=Zonal OCR
789789
feature.Feature_50=Show Disabled

logicaldoc-i18n/src/main/resources/i18n/messages_en_US.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ feature.Feature_43=Google Drive
783783
feature.Feature_44=SMB Storage
784784
feature.Feature_45=Format Conversion
785785
feature.Feature_46=Cloud Storage
786-
feature.Feature_47=Virtual Intelligence Assistant
786+
feature.Feature_47=Artificial Intelligence
787787
feature.Feature_48=Automation
788788
feature.Feature_49=Zonal OCR
789789
feature.Feature_50=Show Disabled

0 commit comments

Comments
 (0)