Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo committed Dec 8, 2023
1 parent f9c490c commit b82de9b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
11 changes: 10 additions & 1 deletion apps/meteor/packages/rocketchat-i18n/i18n/en.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -1143,6 +1143,7 @@
"Contact_Info": "Contact Information",
"Content": "Content",
"Continue": "Continue",
"Continue_Adding": "Continue Adding?",
"Continuous_sound_notifications_for_new_livechat_room": "Continuous sound notifications for new omnichannel room",
"convert-team": "Convert Team",
"convert-team_description": "Permission to convert team to channel",
Expand Down Expand Up @@ -1452,6 +1453,7 @@
"CROWD_Reject_Unauthorized": "Reject Unauthorized",
"Crowd_Remove_Orphaned_Users": "Remove Orphaned Users",
"Crowd_sync_interval_Description": "The interval between synchronizations. Example `every 24 hours` or `on the first day of the week`, more examples at [Cron Text Parser](http://bunkat.github.io/later/parsers.html#text)",
"CSV": "CSV",
"Current_Chats": "Current Chats",
"Current_File": "Current File",
"Current_Import_Operation": "Current Import Operation",
Expand Down Expand Up @@ -2185,6 +2187,7 @@
"Failed_To_Load_Import_History": "Failed to load import history",
"Failed_To_Load_Import_Operation": "Failed to load import operation",
"Failed_To_Start_Import": "Failed to start import operation",
"Failed_To_upload_Import_File": "Failed to upload import file",
"Failed_to_validate_invite_token": "Failed to validate invite token",
"Failure": "Failure",
"False": "False",
Expand Down Expand Up @@ -2493,6 +2496,7 @@
"Highlights": "Highlights",
"Highlights_How_To": "To be notified when someone mentions a word or phrase, add it here. You can separate words or phrases with commas. Highlight Words are not case sensitive.",
"Highlights_List": "Highlight words",
"HipChat (tar.gz)": "HipChat (tar.gz)",
"History": "History",
"Hold_Time": "Hold Time",
"Hold": "Hold",
Expand Down Expand Up @@ -2548,6 +2552,7 @@
"Impersonate_user_description": "When enabled, integration posts as the user that triggered integration",
"Import": "Import",
"Import_New_File": "Import New File",
"Import_Operation_Failed": "Import operation failed",
"Import_requested_successfully": "Import Requested Successfully",
"Import_Type": "Import Type",
"Importer_Archived": "Archived",
Expand Down Expand Up @@ -4008,6 +4013,8 @@
"pdf_success_message": "PDF Transcript successfully generated",
"pdf_error_message": "Error generating PDF Transcript",
"Peer_Password": "Peer Password",
"Pending Avatars": "Pending Avatars",
"Pending Files": "Pending Files",
"People": "People",
"Permalink": "Permalink",
"Permissions": "Permissions",
Expand Down Expand Up @@ -4779,6 +4786,7 @@
"SLA_Policy": "SLA Policy",
"SLA_Policies": "SLA Policies",
"SLA_removed": "SLA removed",
"Slack": "Slack",
"Slack_Users": "Slack's Users CSV",
"SlackBridge_APIToken": "API Tokens (Legacy)",
"SlackBridge_UseLegacy": "Use Legacy API Tokens",
Expand Down Expand Up @@ -4885,6 +4893,7 @@
"Started_a_video_call": "Started a Video Call",
"Started_At": "Started At",
"Statistics": "Statistics",
"Statistics_reporting": "Send Statistics to Rocket.Chat",
"Statistics_reporting_Description": "By sending your statistics, you'll help us identify how many instances of Rocket.Chat are deployed, as well as how good the system is behaving, so we can further improve it. Don't worry, as no user information is sent and all the information we receive is kept confidential.",
"Stats_Active_Guests": "Activated Guests",
"Stats_Active_Users": "Activated Users",
Expand Down Expand Up @@ -6233,4 +6242,4 @@
"Seat_limit_reached": "Seat limit reached",
"Seat_limit_reached_Description": "Your workspace reached its contractual seat limit. Buy more seats to add more users.",
"Buy_more_seats": "Buy more seats"
}
}
7 changes: 6 additions & 1 deletion apps/meteor/server/settings/general.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,12 @@ export const createGeneralSettings = () =>
public: true,
});
});

await this.section('Reporting', async function () {
return this.add('Statistics_reporting', true, {
type: 'boolean',
hidden: true,
});
});
await this.section('Notifications', async function () {
await this.add('Notifications_Max_Room_Members', 100, {
type: 'int',
Expand Down

0 comments on commit b82de9b

Please sign in to comment.