@@ -270,6 +270,7 @@ const translations = {
270270 // @context Status or button indicating that an action or process has been completed. Should reflect completion.
271271 done: 'Done',
272272 more: 'More',
273+ other: 'Other',
273274 debitCard: 'Debit card',
274275 bankAccount: 'Bank account',
275276 personalBankAccount: 'Personal bank account',
@@ -6443,8 +6444,32 @@ const translations = {
64436444 },
64446445 hr: {
64456446 title: 'HR',
6447+ connections: 'Connections',
64466448 subtitle: 'Connect HR tools and keep employee approvals in sync.',
6447- settingsTitle: 'Gusto settings',
6449+ connect: 'Connect',
6450+ syncNow: 'Sync now',
6451+ disconnect: 'Disconnect',
6452+ disconnectTitle: (providerName: string) => `Disconnect ${providerName}`,
6453+ disconnectPrompt: (providerName: string) => `Are you sure you want to disconnect ${providerName}?`,
6454+ lastSync: (relativeDate: string) => `Last synced ${relativeDate}`,
6455+ syncError: (providerName: string) => `Can't connect to ${providerName}`,
6456+ connectionDescription: (providerName: string) => `Connect ${providerName} to keep employee approvals in sync with your workspace.`,
6457+ approvalMode: 'Approval mode',
6458+ finalApprover: 'Final approver',
6459+ notSet: 'Not set',
6460+ approvalModeDescription: (providerName: string) => `Members and managers are set up to sync with ${providerName}.`,
6461+ approvalModeWarningTitle: 'Change approval mode?',
6462+ approvalModeWarningPrompt: (providerName: string, helpSiteURL: string) =>
6463+ `Are you sure you would like to change the approval mode for this workspace? Learn more about the different ${providerName}-enabled workflow modes in our <a href="${helpSiteURL}">help site</a>.`,
6464+ approvalModeWarningConfirm: 'Change approval mode',
6465+ approvalModes: {
6466+ basic: {label: 'Basic approval', description: 'All users submit to a single person for processing and approval.'},
6467+ manager: {
6468+ label: 'Manager approval',
6469+ description: (providerName: string) => `Employees submit reports to their direct manager configured in ${providerName}.`,
6470+ },
6471+ custom: {label: 'Custom approval', description: "I'll manually setup approval workflows in Expensify."},
6472+ },
64486473 syncStageName: ({stage}: SyncStageNameConnectionsParams) => {
64496474 switch (stage) {
64506475 case 'gustoSyncTitle':
@@ -6459,6 +6484,8 @@ const translations = {
64596484 return 'Loading data from TriNet';
64606485 case 'zenefitsSyncProvisioning':
64616486 return 'Provisioning employees in policy';
6487+ case 'mergeHRSyncTitle':
6488+ return 'Synchronizing HR Employees';
64626489 case 'jobDone':
64636490 return 'Waiting for imported data to load';
64646491 default: {
@@ -6468,36 +6495,6 @@ const translations = {
64686495 },
64696496 gusto: {
64706497 title: 'Gusto',
6471- connect: 'Connect',
6472- syncNow: 'Sync now',
6473- disconnect: 'Disconnect',
6474- lastSync: (relativeDate: string) => `Last synced ${relativeDate}`,
6475- syncError: "Can't connect to Gusto",
6476- disconnectTitle: 'Disconnect Gusto',
6477- disconnectPrompt: 'Are you sure you want to disconnect Gusto?',
6478- connectionDescription: 'Connect Gusto to keep employee approvals in sync with your workspace.',
6479- approvalMode: 'Approval mode',
6480- finalApprover: 'Final approver',
6481- notSet: 'Not set',
6482- approvalModeDescription: 'Members and managers are set up to sync with Gusto.',
6483- approvalModeWarningTitle: 'Change approval mode?',
6484- approvalModeWarningPrompt: (helpSiteURL: string) =>
6485- `Are you sure you would like to change the approval mode for this workspace? Learn more about the different Gusto-enabled workflow modes in our <a href="${helpSiteURL}">help site</a>.`,
6486- approvalModeWarningConfirm: 'Change approval mode',
6487- approvalModes: {
6488- basic: {
6489- label: 'Basic approval',
6490- description: 'All users submit to a single person for processing and approval.',
6491- },
6492- manager: {
6493- label: 'Manager approval',
6494- description: 'Employees submit reports to their direct manager configured in Gusto.',
6495- },
6496- custom: {
6497- label: 'Custom approval',
6498- description: 'I’ll manually setup approval workflows in Expensify.',
6499- },
6500- },
65016498 syncResults: {
65026499 title: 'Gusto sync results',
65036500 successTitle: 'Successfully synced your Gusto connection!',
@@ -6510,42 +6507,8 @@ const translations = {
65106507 }),
65116508 },
65126509 },
6513- merge: {
6514- approvalMode: 'Approval mode',
6515- finalApprover: 'Final approver',
6516- },
65176510 zenefits: {
65186511 title: 'TriNet',
6519- connect: 'Connect',
6520- syncNow: 'Sync now',
6521- disconnect: 'Disconnect',
6522- lastSync: (relativeDate: string) => `Last synced ${relativeDate}`,
6523- syncError: "Can't connect to TriNet",
6524- disconnectTitle: 'Disconnect TriNet',
6525- disconnectPrompt: 'Are you sure you want to disconnect TriNet?',
6526- connectionDescription: 'Connect TriNet to keep employee approvals in sync with your workspace.',
6527- approvalMode: 'Approval mode',
6528- finalApprover: 'Final approver',
6529- notSet: 'Not set',
6530- approvalModeDescription: 'Members and managers are set up to sync with TriNet.',
6531- approvalModeWarningTitle: 'Change approval mode?',
6532- approvalModeWarningPrompt: (helpSiteURL: string) =>
6533- `Are you sure you would like to change the approval mode for this workspace? Learn more about the different TriNet-enabled workflow modes in our <a href="${helpSiteURL}">help site</a>.`,
6534- approvalModeWarningConfirm: 'Change approval mode',
6535- approvalModes: {
6536- basic: {
6537- label: 'Basic approval',
6538- description: 'All users submit to a single person for processing and approval.',
6539- },
6540- manager: {
6541- label: 'Manager approval',
6542- description: 'Employees submit reports to their direct manager configured in TriNet.',
6543- },
6544- custom: {
6545- label: 'Custom approval',
6546- description: "I'll manually setup approval workflows in Expensify.",
6547- },
6548- },
65496512 },
65506513 },
65516514 export: {
0 commit comments