Skip to content

Commit

Permalink
Merge branch 'main' into fix/43486-new-message-shows-every-time-add-n…
Browse files Browse the repository at this point in the history
…ew-message
  • Loading branch information
bernhardoj committed Jul 8, 2024
2 parents 126d3ce + 2bf0359 commit 76d15b5
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
versionCode 1009000502
versionName "9.0.5-2"
versionCode 1009000504
versionName "9.0.5-4"
// Supported language variants must be declared here to avoid from being removed during the compilation.
// This also helps us to not include unnecessary language variants in the APK.
resConfigs "en", "es"
Expand Down
2 changes: 1 addition & 1 deletion ios/NewExpensify/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>9.0.5.2</string>
<string>9.0.5.4</string>
<key>FullStory</key>
<dict>
<key>OrgId</key>
Expand Down
2 changes: 1 addition & 1 deletion ios/NewExpensifyTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>9.0.5.2</string>
<string>9.0.5.4</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion ios/NotificationServiceExtension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleShortVersionString</key>
<string>9.0.5</string>
<key>CFBundleVersion</key>
<string>9.0.5.2</string>
<string>9.0.5.4</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionPointIdentifier</key>
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "new.expensify",
"version": "9.0.5-2",
"version": "9.0.5-4",
"author": "Expensify, Inc.",
"homepage": "https://new.expensify.com",
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",
Expand Down Expand Up @@ -155,7 +155,7 @@
"react-native-linear-gradient": "^2.8.1",
"react-native-localize": "^2.2.6",
"react-native-modal": "^13.0.0",
"react-native-onyx": "2.0.55",
"react-native-onyx": "2.0.56",
"react-native-pager-view": "6.2.3",
"react-native-pdf": "6.7.3",
"react-native-performance": "^5.1.0",
Expand Down
4 changes: 2 additions & 2 deletions src/languages/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ export default {
timezonePage: {
timezone: 'Timezone',
isShownOnProfile: 'Your timezone is shown on your profile.',
getLocationAutomatically: 'Automatically determine your location.',
getLocationAutomatically: 'Automatically determine your location',
},
updateRequiredView: {
updateRequired: 'Update required',
Expand Down Expand Up @@ -2404,7 +2404,7 @@ export default {
jobs: 'projects',
label: (importFields: string[], importType: string) => `${importFields.join(' and ')}, ${importType}`,
},
importTaxDescription: 'Import tax groups from NetSuite',
importTaxDescription: 'Import tax groups from NetSuite.',
importCustomFields: {
customSegments: 'Custom segments/records',
customLists: 'Custom lists',
Expand Down
6 changes: 3 additions & 3 deletions src/languages/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ export default {
timezonePage: {
timezone: 'Zona horaria',
isShownOnProfile: 'Tu zona horaria se muestra en tu perfil.',
getLocationAutomatically: 'Detecta tu ubicación automáticamente.',
getLocationAutomatically: 'Detecta tu ubicación automáticamente',
},
updateRequiredView: {
updateRequired: 'Actualización requerida',
Expand Down Expand Up @@ -1374,7 +1374,7 @@ export default {
groupMembersListTitle: 'Directorio de los miembros del grupo.',
lastMemberTitle: '¡Atención!',
lastMemberWarning: 'Ya que eres la última persona aquí, si te vas, este chat quedará inaccesible para todos los miembros. ¿Estás seguro de que quieres salir del chat?',
defaultReportName: ({displayName}: {displayName: string}) => `Chat de group de ${displayName}`,
defaultReportName: ({displayName}: {displayName: string}) => `Chat de groupo de ${displayName}`,
},
languagePage: {
language: 'Idioma',
Expand Down Expand Up @@ -2445,7 +2445,7 @@ export default {
jobs: 'proyectos',
label: (importFields: string[], importType: string) => `${importFields.join(' y ')}, ${importType}`,
},
importTaxDescription: 'Importar grupos de impuestos desde NetSuite',
importTaxDescription: 'Importar grupos de impuestos desde NetSuite.',
importCustomFields: {
customSegments: 'Segmentos/registros personalizados',
customLists: 'Listas personalizado',
Expand Down
4 changes: 2 additions & 2 deletions src/pages/ReportDetailsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -645,10 +645,10 @@ function ReportDetailsPage({policies, report, session, personalDetails}: ReportD
<ScrollView style={[styles.flex1]}>
<View style={[styles.reportDetailsTitleContainer, styles.pb0]}>
{renderedAvatar}
{isExpenseReport && !shouldShowTitleField && nameSectionExpenseIOU}
{isExpenseReport && (!shouldShowTitleField || !titleField) && nameSectionExpenseIOU}
</View>

{isExpenseReport && shouldShowTitleField && nameSectionTitleField}
{isExpenseReport && shouldShowTitleField && titleField && nameSectionTitleField}

{!isExpenseReport && nameSectionGroupWorkspace}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/workspace/upgrade/UpgradeIntro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function UpgradeIntro({feature, onUpgrade, buttonDisabled, loading}: Props) {
<Text style={[styles.textNormal, styles.textSupporting, styles.mb4]}>{translate(feature.description)}</Text>
<Text style={[styles.textNormal, styles.textSupporting]}>
{translate(`workspace.upgrade.${feature.id}.pricing.onlyAvailableOnPlan`)}
<Text style={[styles.textWhite, styles.textBold]}>{translate(`workspace.upgrade.${feature.id}.pricing.amount`)}</Text>
<Text style={[styles.themeTextColor, styles.textBold]}>{translate(`workspace.upgrade.${feature.id}.pricing.amount`)}</Text>
{translate(`workspace.upgrade.${feature.id}.pricing.perActiveMember`)}
</Text>
</View>
Expand Down

0 comments on commit 76d15b5

Please sign in to comment.