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

chore: Update app name to blinky #102

Open
wants to merge 5 commits into
base: develop
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ android {
applicationId "com.blinkapplication"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 4
versionName '1.1'
versionCode 5
versionName '2.0'
}
signingConfigs {
debug {
Expand Down
Binary file modified android/app/release/app-release.aab
Binary file not shown.
4 changes: 2 additions & 2 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

<application
android:name="com.blinkapplication.MainApplication"
android:label="B.Link"
android:label="blinky"
tools:replace="android:label"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:theme="@style/AppTheme">
<activity
android:name="com.blinkapplication.MainActivity"
android:label="B.Link"
android:label="blinky"
tools:replace="android:label"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
android:launchMode="singleTask"
Expand Down
10 changes: 8 additions & 2 deletions ios/BLinkApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,10 @@
"-DFOLLY_CFG_NO_COROUTINES=1",
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
);
OTHER_LDFLAGS = "$(inherited) ";
OTHER_LDFLAGS = (
"$(inherited)",
" ",
);
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
USE_HERMES = true;
Expand Down Expand Up @@ -901,7 +904,10 @@
"-DFOLLY_CFG_NO_COROUTINES=1",
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
);
OTHER_LDFLAGS = "$(inherited) ";
OTHER_LDFLAGS = (
"$(inherited)",
" ",
);
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
USE_HERMES = true;
Expand Down
2 changes: 1 addition & 1 deletion ios/BLinkApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>B.Link</string>
<string>blinky</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "BLink",
"version": "1.1.1",
"version": "2.0.0",
"private": true,
"scripts": {
"android": "react-native run-android",
Expand Down
Binary file modified src/assets/images/img-apple-en.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/images/img-apple-ko.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/images/img-google-en.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/images/img-google-ko.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/images/img-linksaving_wordmark-blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/img-linksaving_wordmark-white.png
Binary file not shown.
Binary file modified src/assets/images/img-onboarding.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/components/auth/AppleLogin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@ const styles = StyleSheet.create({
borderRadius: 100,
},
logoImage: {
width: 168,
height: 23,
width: 162,
height: 27,
},
logoImageEn: {
width: 180,
height: 23,
width: 182,
height: 27,
},
logoText: {
color: '#fff',
Expand Down
8 changes: 4 additions & 4 deletions src/components/auth/GoogleLogin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ const styles = StyleSheet.create({
borderColor: '#CCD4DD',
},
logoImage: {
width: 184,
height: 23,
width: 176,
height: 27,
},
logoImageEn: {
width: 200,
height: 23,
width: 197,
height: 27,
},
logoText: {
color: '#000',
Expand Down
7 changes: 3 additions & 4 deletions src/components/common/LogoHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const LogoHeader = () => {
return (
<View style={styles.container}>
<Image
source={require('@/assets/images/img-linksaving_wordmark-blue.png')}
source={require('@/assets/images/img-linksaving_wordmark-gray.png')}
style={styles.logoImage}
/>
</View>
Expand All @@ -22,8 +22,7 @@ const styles = StyleSheet.create({
flexDirection: 'row',
},
logoImage: {
marginLeft: 4,
width: 67,
height: 24,
width: 80,
height: 26,
},
});
6 changes: 3 additions & 3 deletions src/components/home/ScreenHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const ScreenHeader = ({toggleSideBar, isBookmark}: ScreenHeaderProps) => {
/>
) : (
<Image
source={require('@/assets/images/img-linksaving_wordmark-blue.png')}
source={require('@/assets/images/img-linksaving_wordmark-gray.png')}
style={styles.logoImage}
/>
)}
Expand All @@ -46,8 +46,8 @@ const styles = StyleSheet.create({
flexDirection: 'row',
},
logoImage: {
width: 67,
height: 24,
width: 80,
height: 26,
},
logoImage2: {
width: 80,
Expand Down
2 changes: 1 addition & 1 deletion src/constants/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const THEME_INFOS = [
},
{
id: 3,
name: '๋ธ”๋งํ‚ค',
name: '๋งํ‚ค',
price: 'Free',
color: '#6D96FF',
},
Expand Down
6 changes: 3 additions & 3 deletions src/constants/unauth-default-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
{
"id": 178,
"folderName": "๊ธฐ๋ณธ ํด๋”",
"title": "๐Ÿ‘‹B.Link์— ์˜ค์‹  ๊ฒƒ์„ ํ™˜์˜ํ•ด์š”!",
"contents": "ํด๋ฆญํ•ด B.Link๋ฅผ ๋” ์•Œ์•„๋ณด์‹ค๋ž˜์š”?โœจ",
"title": "๐Ÿ‘‹๋ธ”๋งํ‚ค์— ์˜ค์‹  ๊ฒƒ์„ ํ™˜์˜ํ•ด์š”!",
"contents": "ํด๋ฆญํ•ด ๋ธ”๋งํ‚ค๋ฅผ ๋” ์•Œ์•„๋ณด์‹ค๋ž˜์š”?โœจ",
"createdAt": "2024.08.18",
"url": "https://yellow-harbor-c53.notion.site/B-Link-e3e97b00d5d045889a39b2bdf430805c?pvs=4",
"imageUrl": "",
Expand All @@ -12,7 +12,7 @@
{
"id": 178,
"folderName": "Basic Folder",
"title": "๐Ÿ‘‹ Welcome to B.Link! โœจ",
"title": "๐Ÿ‘‹ Welcome to blinky! โœจ",
"contents": "Tap here to see what awaits you!",
"createdAt": "2024-08-18",
"url": "https://yellow-harbor-c53.notion.site/Welcome-to-B-Link-02556e48d0ce428e80f29e4f96c92855",
Expand Down
13 changes: 7 additions & 6 deletions src/i18n/en/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,18 @@
"ํ…Œ๋งˆ": "Themes",
"ํ™˜๊ฒฝ ์„ค์ •": "Settings",
"์„ค์ • ์•ฑ์œผ๋กœ ์ด๋™๋ฉ๋‹ˆ๋‹ค": "Taking you to the Settings app",
"์„ค์ • > ๋ชฉ๋ก์—์„œ B.Link ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”.": "Please change the language in: Settings > B.Link > Language.",
"์„ค์ • > ๋ชฉ๋ก์—์„œ ๋ธ”๋งํ‚ค ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”.": "Please change the language in: Settings > blinky > Language.",
"์ง€์›": "Support",
"ํœด์ง€ํ†ต": "Trash",
"๋กœ๊ทธ์•„์›ƒ": "Sign Out",
"์‚ญ์ œ ์‹ ์ฒญ๋œ ๊ณ„์ •์ž…๋‹ˆ๋‹ค.": "This account is pending deletion.",
"๊ณ„์† ์ด์šฉํ•˜์‹œ๋ ค๋ฉด ๊ณ„์ • ๊ด€๋ฆฌ > ์‚ญ์ œ ์‹ ์ฒญ์„ ์ทจ์†Œํ•ด์ฃผ์„ธ์š”": "To continue using B.Link, please cancel the deletion request in Manage Account > Cancel Deletion.",
"๊ณ„์† ์ด์šฉํ•˜์‹œ๋ ค๋ฉด ๊ณ„์ • ๊ด€๋ฆฌ > ์‚ญ์ œ ์‹ ์ฒญ์„ ์ทจ์†Œํ•ด์ฃผ์„ธ์š”": "To continue using blinky, please cancel the deletion request in Manage Account > Cancel Deletion.",
"์ •๋ณด๊ฐ€ ๊ณง ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค.": "Your information will be deleted.",
"์ €์žฅ ํ˜„ํ™ฉ": "Saved Content",
"๊ณ„์ • ์‚ญ์ œ ์œ ์˜์‚ฌํ•ญ": "Delete Account Notice",
"๊ณ„์ • ์‚ญ์ œ ์œ ์˜์‚ฌํ•ญ์„ ์ˆ™์ง€ํ–ˆ์Šต๋‹ˆ๋‹ค.": "I have read and understood the notice.",
"๊ณ„์ • ์‚ญ์ œ": "Delete Account",
"์‚ญ์ œ ์‹ ์ฒญ์ผ yyyy-mm-dd ๋กœ๋ถ€ํ„ฐ 7์ผ ์ด๋‚ด ์‚ญ์ œ ์‹ ์ฒญ์„ ์ทจ์†Œํ•˜๋ฉด ์›๋ž˜์˜ ๊ณ„์ • ์ •๋ณด๋กœ B.Link๋ฅผ ๊ณ„์† ์ด์šฉํ•˜์‹ค ์ˆ˜ ์žˆ์–ด์š”.": "If you cancel your deletion request within 7 days from yyyy-mm-dd, you can continue using B.Link with your original account information.",
"์‚ญ์ œ ์‹ ์ฒญ์ผ yyyy-mm-dd ๋กœ๋ถ€ํ„ฐ 7์ผ ์ด๋‚ด ์‚ญ์ œ ์‹ ์ฒญ์„ ์ทจ์†Œํ•˜๋ฉด ์›๋ž˜์˜ ๊ณ„์ • ์ •๋ณด๋กœ ์•ฑ์„ ๊ณ„์† ์ด์šฉํ•˜์‹ค ์ˆ˜ ์žˆ์–ด์š”.": "If you cancel your deletion request within 7 days from yyyy-mm-dd, you can continue using the app with your original account information.",
"๊ณ„์ • ์‚ญ์ œ ์ฒ ํšŒํ•˜๊ธฐ": "Cancel Delete Account",
"ํœด์ง€ํ†ต์œผ๋กœ ์ด๋™๋œ ๋งํฌ๊ฐ€ ์•„์ง ์—†์–ด์š”": "No links in the Trash yet.",
"์ตœ๊ทผ ์‚ญ์ œ์ˆœ": "Newest Deleted First",
Expand All @@ -109,12 +109,13 @@
"ํ…Œ๋งˆ๋Š” ์ฆ‰์‹œ ์ ์šฉ๋ผ์š”": "The theme will be applied immediately",
"๊ธฐ๋ณธ": "Default",
"๋‹คํฌ๋ชจ๋“œ": "Dark Mode",
"๋ธ”๋งํ‚ค": "Blinky",
"๋ธ”๋งํ‚ค": "blinky",
"๋งํ‚ค": "Linky",
"ํœด์ง€ํ†ต์œผ๋กœ ์ด๋™๋œ ํ›„ 7์ผ ๋’ค์—๋Š” ์™„์ „ํžˆ ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค.": "After 7 days in the Trash, the link will be permanently deleted.",
"๋กœ๊ทธ์ธ ํ•œ ๊ณ„์ •": "Logged in as",
"ํ•€": "Pin",
"๊ณ„์ •์„ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?": "Are you sure you want to delete your account?",
"- [๊ณ„์ • ์‚ญ์ œ]๋ฅผ ํด๋ฆญํ•  ๊ฒฝ์šฐ, ํ•ด๋‹น ๊ณ„์ •์œผ๋กœ B.Link์— ์ €์žฅํ•œ ๋ชจ๋“  ๋งํฌ์™€ ํด๋”๊ฐ€ ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค.\n": "- When you click [Delete Account], all links and folders saved in B.Link under your account will be deleted.\n",
"- [๊ณ„์ • ์‚ญ์ œ]๋ฅผ ํด๋ฆญํ•  ๊ฒฝ์šฐ, ํ•ด๋‹น ๊ณ„์ •์œผ๋กœ ์•ฑ์— ์ €์žฅํ•œ ๋ชจ๋“  ๋งํฌ์™€ ํด๋”๊ฐ€ ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค.\n": "- When you click [Delete Account], all links and folders saved in the app under your account will be deleted.\n",
"- ์‚ฌ์šฉ์ž๊ฐ€ ๋‹ค๋ฅธ ์กฐ์น˜๋ฅผ ์ทจํ•˜์ง€ ์•Š๋”๋ผ๋„ ๊ณ„์ • ์ •๋ณด๋ฅผ ํฌํ•จํ•œ ์‚ฌ์šฉ ๊ธฐ๋ก ๋“ฑ ๋ชจ๋“  ์ •๋ณด๋Š” ์‹œ์Šคํ…œ์— ์˜ํ•ด ์ž๋™์ ์œผ๋กœ ์•ˆ์ „ํ•˜๊ฒŒ ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค.\n": "- Without further action, all information, including account details and usage records, will be automatically and securely deleted by the system.\n",
"- ๊ณ„์ •์ด ์‚ญ์ œ๋œ ํ›„์—๋Š” ๊ฐ™์€ ๊ณ„์ •์œผ๋กœ ์žฌ๊ฐ€์ž…ํ•˜๋”๋ผ๋„ ์‚ญ์ œ๋œ ์ •๋ณด๋Š” ๋ณต๊ตฌํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค.\n": "- Once the account is deleted, even if you re-register with the same account, the deleted data cannot be recovered.\n",
"- ๋‹จ, ์‚ฌ์šฉ์ž๊ฐ€ ์ €์žฅํ•œ ์ •๋ณด๋ฅผ ์‹ค์ˆ˜๋กœ ์žƒ์ง€ ์•Š๋„๋ก ํ•˜๊ธฐ ์œ„ํ•ด ๊ณ„์ • ์‚ญ์ œ๋ฅผ ์ฒ ํšŒํ•  ์ˆ˜ ์žˆ๋Š” ๊ธฐํšŒ๋ฅผ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค.\n": "- However, to prevent accidental loss of your saved information, we offer the opportunity to reverse the account deletion.\n",
Expand Down Expand Up @@ -142,5 +143,5 @@
"์ƒ์„ฑ๋˜์—ˆ์Šต๋‹ˆ๋‹ค": "Created",
"์ œ๋ชฉ์„ ์ž…๋ ฅํ•ด์ฃผ์„ธ์š”.": "Please enter a title.",
"์„ค์ • ์•ฑ์œผ๋กœ ์ด๋™ํ•ฉ๋‹ˆ๋‹ค": "Moving to the Settings page",
"์„ค์ • > ๋ชฉ๋ก์—์„œ B.Link ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”": "Please change the language in: Settings > B.Link > Language"
"์„ค์ • > ๋ชฉ๋ก์—์„œ ๋ธ”๋งํ‚ค ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”": "Please change the language in: Settings > blinky > Language"
}
9 changes: 5 additions & 4 deletions src/i18n/ko/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"๊ณ„์ • ๊ด€๋ฆฌ": "๊ณ„์ • ๊ด€๋ฆฌ",
"ํ…Œ๋งˆ": "ํ…Œ๋งˆ",
"์„ค์ • ์•ฑ์œผ๋กœ ์ด๋™๋ฉ๋‹ˆ๋‹ค": "์„ค์ • ์•ฑ์œผ๋กœ ์ด๋™๋ฉ๋‹ˆ๋‹ค",
"์„ค์ • > ๋ชฉ๋ก์—์„œ B.Link ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”.": "์„ค์ • > ๋ชฉ๋ก์—์„œ B.Link ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”.",
"์„ค์ • > ๋ชฉ๋ก์—์„œ ๋ธ”๋งํ‚ค ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”.": "์„ค์ • > ๋ชฉ๋ก์—์„œ ๋ธ”๋งํ‚ค ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”.",
"์ง€์›": "์ง€์›",
"๋กœ๊ทธ์•„์›ƒ": "๋กœ๊ทธ์•„์›ƒ",
"๊ณ„์† ์ด์šฉํ•˜์‹œ๋ ค๋ฉด ๊ณ„์ • ๊ด€๋ฆฌ > ์‚ญ์ œ ์‹ ์ฒญ์„ ์ทจ์†Œํ•ด์ฃผ์„ธ์š”": "๊ณ„์† ์ด์šฉํ•˜์‹œ๋ ค๋ฉด ๊ณ„์ • ๊ด€๋ฆฌ > ์‚ญ์ œ ์‹ ์ฒญ์„ ์ทจ์†Œํ•ด์ฃผ์„ธ์š”.",
Expand All @@ -78,7 +78,7 @@
"๊ณ„์ • ์‚ญ์ œ ์œ ์˜์‚ฌํ•ญ์„ ์ˆ™์ง€ํ–ˆ์Šต๋‹ˆ๋‹ค.": "๊ณ„์ • ์‚ญ์ œ ์œ ์˜์‚ฌํ•ญ์„ ์ˆ™์ง€ํ–ˆ์Šต๋‹ˆ๋‹ค.",
"๊ณ„์ • ์‚ญ์ œ": "๊ณ„์ • ์‚ญ์ œ",
"์‚ญ์ œ ์‹ ์ฒญ๋œ ๊ณ„์ •์ž…๋‹ˆ๋‹ค.": "์‚ญ์ œ ์‹ ์ฒญ๋œ ๊ณ„์ •์ž…๋‹ˆ๋‹ค.",
"์‚ญ์ œ ์‹ ์ฒญ์ผ yyyy-mm-dd ๋กœ๋ถ€ํ„ฐ 7์ผ ์ด๋‚ด ์‚ญ์ œ ์‹ ์ฒญ์„ ์ทจ์†Œํ•˜๋ฉด ์›๋ž˜์˜ ๊ณ„์ • ์ •๋ณด๋กœ B.Link๋ฅผ ๊ณ„์† ์ด์šฉํ•˜์‹ค ์ˆ˜ ์žˆ์–ด์š”.": "์‚ญ์ œ ์‹ ์ฒญ์ผ yyyy-mm-dd ๋กœ๋ถ€ํ„ฐ 7์ผ ์ด๋‚ด ์‚ญ์ œ ์‹ ์ฒญ์„ ์ทจ์†Œํ•˜๋ฉด ์›๋ž˜์˜ ๊ณ„์ • ์ •๋ณด๋กœ B.Link๋ฅผ ๊ณ„์† ์ด์šฉํ•˜์‹ค ์ˆ˜ ์žˆ์–ด์š”.",
"์‚ญ์ œ ์‹ ์ฒญ์ผ yyyy-mm-dd ๋กœ๋ถ€ํ„ฐ 7์ผ ์ด๋‚ด ์‚ญ์ œ ์‹ ์ฒญ์„ ์ทจ์†Œํ•˜๋ฉด ์›๋ž˜์˜ ๊ณ„์ • ์ •๋ณด๋กœ ์•ฑ์„ ๊ณ„์† ์ด์šฉํ•˜์‹ค ์ˆ˜ ์žˆ์–ด์š”.": "์‚ญ์ œ ์‹ ์ฒญ์ผ yyyy-mm-dd ๋กœ๋ถ€ํ„ฐ 7์ผ ์ด๋‚ด ์‚ญ์ œ ์‹ ์ฒญ์„ ์ทจ์†Œํ•˜๋ฉด ์›๋ž˜์˜ ๊ณ„์ • ์ •๋ณด๋กœ ์•ฑ์„ ๊ณ„์† ์ด์šฉํ•˜์‹ค ์ˆ˜ ์žˆ์–ด์š”.",
"๊ณ„์ • ์‚ญ์ œ ์ฒ ํšŒํ•˜๊ธฐ": "๊ณ„์ • ์‚ญ์ œ ์ฒ ํšŒํ•˜๊ธฐ",
"ํœด์ง€ํ†ต": "ํœด์ง€ํ†ต",
"ํœด์ง€ํ†ต์œผ๋กœ ์ด๋™๋œ ๋งํฌ๊ฐ€ ์•„์ง ์—†์–ด์š”": "ํœด์ง€ํ†ต์œผ๋กœ ์ด๋™๋œ ๋งํฌ๊ฐ€ ์•„์ง ์—†์–ด์š”",
Expand Down Expand Up @@ -106,10 +106,11 @@
"๊ธฐ๋ณธ": "๊ธฐ๋ณธ",
"๋‹คํฌ๋ชจ๋“œ": "๋‹คํฌ๋ชจ๋“œ",
"๋ธ”๋งํ‚ค": "๋ธ”๋งํ‚ค",
"๋งํ‚ค": "๋งํ‚ค",
"ํœด์ง€ํ†ต์œผ๋กœ ์ด๋™๋œ ํ›„ 7์ผ ๋’ค์—๋Š” ์™„์ „ํžˆ ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค.": "ํœด์ง€ํ†ต์œผ๋กœ ์ด๋™๋œ ํ›„ 7์ผ ๋’ค์—๋Š” ์™„์ „ํžˆ ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค.",
"๋กœ๊ทธ์ธ ํ•œ ๊ณ„์ •": "๋กœ๊ทธ์ธ ํ•œ ๊ณ„์ •",
"ํ•€": "ํ•€",
"- ๊ณ„์ •์ด ์‚ญ์ œ๋  ๋•Œ์—๋Š” ํ•ด๋‹น ๊ณ„์ •์œผ๋กœ B.Link์— ์ €์žฅํ•œ ๋ชจ๋“  ๋งํฌ์™€ ํด๋”๊ฐ€ ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค.\n": "- ๊ณ„์ •์ด ์‚ญ์ œ๋  ๋•Œ์—๋Š” ํ•ด๋‹น ๊ณ„์ •์œผ๋กœ B.Link์— ์ €์žฅํ•œ ๋ชจ๋“  ๋งํฌ์™€ ํด๋”๊ฐ€ ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค.\n",
"- ๊ณ„์ •์ด ์‚ญ์ œ๋  ๋•Œ์—๋Š” ํ•ด๋‹น ๊ณ„์ •์œผ๋กœ ์•ฑ์— ์ €์žฅํ•œ ๋ชจ๋“  ๋งํฌ์™€ ํด๋”๊ฐ€ ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค.\n": "- ๊ณ„์ •์ด ์‚ญ์ œ๋  ๋•Œ์—๋Š” ํ•ด๋‹น ๊ณ„์ •์œผ๋กœ ์•ฑ์— ์ €์žฅํ•œ ๋ชจ๋“  ๋งํฌ์™€ ํด๋”๊ฐ€ ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค.\n",
"- ๊ณ„์ •์ด ์‚ญ์ œ๋œ ํ›„์—๋Š” ๊ฐ™์€ ๊ณ„์ •์œผ๋กœ ์žฌ๊ฐ€์ž…ํ•˜๋”๋ผ๋„ ์‚ญ์ œ๋œ ์ •๋ณด๋Š” ๋ณต๊ตฌํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค.\n": "- ๊ณ„์ •์ด ์‚ญ์ œ๋œ ํ›„์—๋Š” ๊ฐ™์€ ๊ณ„์ •์œผ๋กœ ์žฌ๊ฐ€์ž…ํ•˜๋”๋ผ๋„ ์‚ญ์ œ๋œ ์ •๋ณด๋Š” ๋ณต๊ตฌํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค.\n",
"- ๊ณ„์ • ์‚ญ์ œ๋ฅผ ์ฒ ํšŒํ•˜๊ณ  ์‹ถ๋‹ค๋ฉด ๊ณ„์ • ์‚ญ์ œ๋ฅผ ์‹ ์ฒญํ•œ ์ง€ 7์ผ์ด ๊ฒฝ๊ณผํ•˜๊ธฐ ์ „ ์š”์ฒญํ•ด์ฃผ์„ธ์š”.\n": "- ๊ณ„์ • ์‚ญ์ œ๋ฅผ ์ฒ ํšŒํ•˜๊ณ  ์‹ถ๋‹ค๋ฉด ๊ณ„์ • ์‚ญ์ œ๋ฅผ ์‹ ์ฒญํ•œ ์ง€ 7์ผ์ด ๊ฒฝ๊ณผํ•˜๊ธฐ ์ „ ์š”์ฒญํ•ด์ฃผ์„ธ์š”.\n",
"- ๊ณ„์ • ์‚ญ์ œ ์ฒ ํšŒ๋Š” [My] > [๊ณ„์ • ๊ด€๋ฆฌ] > [๊ณ„์ • ์‚ญ์ œ]์—์„œ ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.": "- ๊ณ„์ • ์‚ญ์ œ ์ฒ ํšŒ๋Š” [My] > [๊ณ„์ • ๊ด€๋ฆฌ] > [๊ณ„์ • ์‚ญ์ œ]์—์„œ ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.",
Expand All @@ -131,5 +132,5 @@
"์ƒ์„ฑ๋˜์—ˆ์Šต๋‹ˆ๋‹ค": "์ƒ์„ฑ๋˜์—ˆ์Šต๋‹ˆ๋‹ค",
"์ œ๋ชฉ์„ ์ž…๋ ฅํ•ด์ฃผ์„ธ์š”.": "์ œ๋ชฉ์„ ์ž…๋ ฅํ•ด์ฃผ์„ธ์š”.",
"์„ค์ • ์•ฑ์œผ๋กœ ์ด๋™ํ•ฉ๋‹ˆ๋‹ค": "์„ค์ • ์•ฑ์œผ๋กœ ์ด๋™ํ•ฉ๋‹ˆ๋‹ค",
"์„ค์ • > ๋ชฉ๋ก์—์„œ B.Link ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”": "์„ค์ • > ๋ชฉ๋ก์—์„œ B.Link ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”"
"์„ค์ • > ๋ชฉ๋ก์—์„œ ๋ธ”๋งํ‚ค ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”": "์„ค์ • > ๋ชฉ๋ก์—์„œ ๋ธ”๋งํ‚ค ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”"
}
2 changes: 1 addition & 1 deletion src/screens/stack-screens/AccountDelete.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const AccountDelete = () => {
<Text style={styles.infoText}>
<Text style={styles.infoText}>
{t(
'- [๊ณ„์ • ์‚ญ์ œ]๋ฅผ ํด๋ฆญํ•  ๊ฒฝ์šฐ, ํ•ด๋‹น ๊ณ„์ •์œผ๋กœ B.Link์— ์ €์žฅํ•œ ๋ชจ๋“  ๋งํฌ์™€ ํด๋”๊ฐ€ ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค.\n',
'- [๊ณ„์ • ์‚ญ์ œ]๋ฅผ ํด๋ฆญํ•  ๊ฒฝ์šฐ, ํ•ด๋‹น ๊ณ„์ •์œผ๋กœ ์•ฑ์— ์ €์žฅํ•œ ๋ชจ๋“  ๋งํฌ์™€ ํด๋”๊ฐ€ ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค.\n',
)}
</Text>
<Text style={styles.infoText}>
Expand Down
31 changes: 14 additions & 17 deletions src/screens/stack-screens/Onboarding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,10 @@ const Onboarding = () => {
<View style={styles.bodyContainer}>
{locale === 'KO' ? (
<Text style={styles.bodyText}>
๋‹ค์‹œ ๋ณด๊ณ  ์‹ถ์€ <Text style={styles.blueText}>๋งํฌ</Text>๋ฅผ{' '}
<Text style={styles.blueText}>๋ถ๋งˆํฌ</Text>
์ค‘์š”ํ•œ ๋งํฌ ํ•œ๋ฒˆ์— ์ €์žฅ ํ•œ๋ˆˆ์— ํ™•์ธ
</Text>
) : (
<Text style={styles.bodyText}>
<Text style={styles.blueText}>B</Text>ookmark your
<Text style={styles.blueText}> Link</Text>s in a
</Text>
<Text style={styles.bodyText}>Bookmark links in a blink</Text>
)}
<Image
source={require('@/assets/images/img-linksaving_wordmark-blue.png')}
Expand Down Expand Up @@ -78,24 +74,25 @@ const styles = StyleSheet.create({
alignItems: 'center',
},
bodyText: {
paddingBottom: 12,
color: '#6B7684',
...FONTS.BODY1_MEDIUM,
},
blueText: {
color: '#4A7DFF',
...FONTS.BODY1_MEDIUM,
marginBottom: 20,
color: '#8AABFF',
...FONTS.BODY2_SEMIBOLD,
textAlign: 'center',
width: '100%',
flexShrink: 0,
includeFontPadding: false,
textAlignVertical: 'center',
},
gapImage: {
height: 24,
height: 20,
},
logoImage: {
width: 200,
height: 67.61,
height: 68.09,
},
onboardingImage: {
width: 212,
height: 212,
width: 220,
height: 220,
},

loginContainer: {
Expand Down
2 changes: 1 addition & 1 deletion src/screens/stack-screens/Setting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const Setting = () => {
modalId={modalId}
headerText={t('์„ค์ • ์•ฑ์œผ๋กœ ์ด๋™ํ•ฉ๋‹ˆ๋‹ค')}
bodyText={t(
'์„ค์ • > ๋ชฉ๋ก์—์„œ B.Link ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”',
'์„ค์ • > ๋ชฉ๋ก์—์„œ ๋ธ”๋งํ‚ค ์„ ํƒ > ์–ธ์–ด์—์„œ ์–ธ์–ด๋ฅผ ๋ณ€๊ฒฝํ•ด์ฃผ์„ธ์š”',
)}
leftText={t('์ทจ์†Œ')}
rightText={t('ํ™•์ธ')}
Expand Down