Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: remove experimental warning in file command #764

Merged
merged 1 commit into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public void act(Outputter out, ProjectProperties properties, ProjectClient clien
}
);
out.println(OK.withIcon(String.format(RESOURCE_BUNDLE.getString("message.downloaded_file"), filePath)));
out.println(WARNING.withIcon(RESOURCE_BUNDLE.getString("message.experimental_command")));
}

private void saveToFile(String destPath, URL url) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ public void act(Outputter out, ProjectProperties properties, ProjectClient clien
saveToFile(Utils.normalizePath(Utils.joinPaths(properties.getBasePath(), destPath)), url, out);
out.println(OK.withIcon(String.format(RESOURCE_BUNDLE.getString("message.downloaded_file"), destPath)));
}
out.println(WARNING.withIcon(RESOURCE_BUNDLE.getString("message.experimental_command")));
}

private void saveToFile(String destPath, URL url, Outputter out) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ public void act(Outputter out, ProjectProperties properties, ProjectClient clien
} else {
out.println(fileFullPath);
}
out.println(WARNING.withIcon(RESOURCE_BUNDLE.getString("message.experimental_command")));
}

private List<String> filterExcludedLanguages(List<String> excludedLanguages, CrowdinProjectFull project) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ public void act(Outputter out, ProjectProperties properties, ProjectClient clien
} else {
out.println(file.getPath());
}
out.println(WARNING.withIcon(RESOURCE_BUNDLE.getString("message.experimental_command")));
}

private Long getStorageId(ProjectClient client) {
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/messages/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,6 @@ error.branch_required_string_project=Branch is required for string-based project
message.new_version_text=New version of Crowdin CLI is available! %s -> %s
message.new_version_text.2=Changelog: @|cyan https://github.com/crowdin/crowdin-cli/releases/latest|@
message.new_version_text.3=Please update for the best experience!
message.experimental_command=This command is experimental. Experimental features are not covered by semver and might change in the future. If you have any feedback, feel free to raise a discussion: https://github.com/crowdin/crowdin-cli/discussions/713
message.uploading_file=File @|bold '%s'|@
message.uploading_file_skipped=File @|bold '%s'|@ was skipped since it is empty
message.file_being_updated=File @|bold '%s'|@ is currently being updated
Expand Down
3 changes: 0 additions & 3 deletions website/mantemplates/crowdin-file-download.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,3 @@ include::{includedir}/{command}.adoc[tag=picocli-generated-man-section-commands]
include::{includedir}/{command}.adoc[tag=picocli-generated-man-section-options]

include::{includedir}/{command}.adoc[tag=picocli-generated-man-section-footer]

=== Notes
This command is experimental. Experimental features are not covered by semver and might change in the future. If you have any feedback, feel free to raise a discussion: https://github.com/crowdin/crowdin-cli/discussions/713
3 changes: 0 additions & 3 deletions website/mantemplates/crowdin-file-upload.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,3 @@ include::{includedir}/{command}.adoc[tag=picocli-generated-man-section-commands]
include::{includedir}/{command}.adoc[tag=picocli-generated-man-section-options]

include::{includedir}/{command}.adoc[tag=picocli-generated-man-section-footer]

=== Notes
This command is experimental. Experimental features are not covered by semver and might change in the future. If you have any feedback, feel free to raise a discussion: https://github.com/crowdin/crowdin-cli/discussions/713
Loading