diff --git a/application/main.cpp b/application/main.cpp index daf3ec4..7b46a31 100644 --- a/application/main.cpp +++ b/application/main.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include @@ -12,6 +13,8 @@ int main(int argc, char* argv[]) { tApplication a(argc, argv); a.setApplicationShareDir("thezzz"); a.installTranslators(); + a.addLibraryTranslator(LIBTHEBRANCH_TRANSLATOR); + a.addLibraryTranslator(LIBTHEZZZ_TRANSLATOR); a.setApplicationVersion("1.0"); a.setGenericName(QApplication::translate("main", "REST Client")); diff --git a/application/translations/en_US.ts b/application/translations/en_US.ts index e745d9d..fa29698 100644 --- a/application/translations/en_US.ts +++ b/application/translations/en_US.ts @@ -4,38 +4,44 @@ LandingPage - - + + + Form - - + + + Get Started - - + + + New Workspace - - + + + Create a blank workspace - - + + + Open Workspace - - + + + Open a saved workspace @@ -43,157 +49,180 @@ MainWindow - - + + + theZzz - - + + + File - - + + + Git - - + + + Exit - - + + + Ctrl+Q - - - + + + + New Workspace - - + + + Ctrl+Shift+N - - + + + Open Workspace - - + + + Ctrl+O - - + + + Save As - - + + + Ctrl+Shift+S - - + + + Save - - + + + Ctrl+S - - + + + Commit - - + + + Ctrl+Alt+S - - + + + Push - - + + + Ctrl+Alt+Up - - + + + Pull - - + + + Ctrl+Alt+Down - - + + + Checkout - - + + + Ctrl+Alt+. - - + + + Close Tab - - + + + Ctrl+W - - + + theZzz Workspace (*.zzz) - + No Git Repository Available - + This workspace file is not in a Git repository. Init a Git repository, and then try again. @@ -201,7 +230,7 @@ main - + REST Client diff --git a/application/translations/vi_VN.ts b/application/translations/vi_VN.ts index 73d2130..2cd305d 100644 --- a/application/translations/vi_VN.ts +++ b/application/translations/vi_VN.ts @@ -1,208 +1,238 @@ - + + - + LandingPage - - - - Form + + + + Form + - Bắt đầu - - - Get Started + + + + Get Started + Bắt đầu - Bàn làm việc mới - - - New Workspace + + + + New Workspace + Bàn làm việc mới - Tạo bàn làm việc trống - - - Create a blank workspace + + + + Create a blank workspace + Tạo bàn làm việc trống - Mở bàn làm việc - - - Open Workspace + + + + Open Workspace + Mở bàn làm việc - Mở bàn làm việc đã lưu - - - Open a saved workspace + + + + Open a saved workspace + Mở bàn làm việc đã lưu - - + + MainWindow - theZzz - - - theZzz + + + + theZzz + theZzz - Tệp - - - File + + + + File + Tệp - Git - - - Git + + + + Git + Git - Thoát - - - Exit + + + + Exit + Thoát - Ctrl+Q - - - Ctrl+Q + + + + Ctrl+Q + Ctrl+Q - Bàn làm việc mới - - - - New Workspace + + + + + New Workspace + Bàn làm việc mới - Ctrl+Shift+N - - - Ctrl+Shift+N + + + + Ctrl+Shift+N + Ctrl+Shift+N - Mở bàn làm việc - - - Open Workspace + + + + Open Workspace + Mở bàn làm việc - Ctrl+O - - - Ctrl+O + + + + Ctrl+O + Ctrl+O - Lưu thành - - - Save As + + + + Save As + Lưu thành - Ctrl+Shift+S - - - Ctrl+Shift+S + + + + Ctrl+Shift+S + Ctrl+Shift+S - Lưu - - - Save + + + + Save + Lưu - Ctrl+S - - - Ctrl+S + + + + Ctrl+S + Ctrl+S - - - - Commit + + + + Commit + - Ctrl+Alt+S - - - Ctrl+Alt+S + + + + Ctrl+Alt+S + Ctrl+Alt+S - - - - Push + + + + Push + - Ctrl+Alt+Up - - - Ctrl+Alt+Up + + + + Ctrl+Alt+Up + Ctrl+Alt+Up - - - - Pull + + + + Pull + - Ctrl+Alt+Down - - - Ctrl+Alt+Down + + + + Ctrl+Alt+Down + Ctrl+Alt+Down - - - - Checkout + + + + Checkout + - Ctrl+Alt+. - - - Ctrl+Alt+. + + + + Ctrl+Alt+. + Ctrl+Alt+. - Đóng tab - - - Close Tab + + + + Close Tab + Đóng tab - Ctrl+W - - - Ctrl+W + + + + Ctrl+W + Ctrl+W - Bàn làm việc theZzz (*.zzz) - - - theZzz Workspace (*.zzz) + + + theZzz Workspace (*.zzz) + Bàn làm việc theZzz (*.zzz) - - - No Git Repository Available + + No Git Repository Available + - - - This workspace file is not in a Git repository. Init a Git repository, and then try again. + + This workspace file is not in a Git repository. Init a Git repository, and then try again. + - - + + main - Ứng dụng khách REST - - REST Client + + REST Client + Ứng dụng khách REST - - \ No newline at end of file + + diff --git a/libthezzz/CMakeLists.txt b/libthezzz/CMakeLists.txt index 781b1ab..905c439 100644 --- a/libthezzz/CMakeLists.txt +++ b/libthezzz/CMakeLists.txt @@ -98,7 +98,7 @@ set_target_properties(libthezzz PROPERTIES MACOSX_FRAMEWORK_IDENTIFIER com.vicr123.thezzz VERSION 1.0.0 PUBLIC_HEADER "${HEADERS}" - CNTP_DATA_SUBDIR thetroposphere/libthetroposphere) + CNTP_DATA_SUBDIR thezzz/libthezzz) cntp_translate(libthezzz) target_link_libraries(libthezzz Qt::Widgets libcontemporary) diff --git a/libthezzz/libthezzz_global.h b/libthezzz/libthezzz_global.h index fc93ee4..bb16625 100644 --- a/libthezzz/libthezzz_global.h +++ b/libthezzz/libthezzz_global.h @@ -9,4 +9,6 @@ #define LIBTHEZZZ_EXPORT Q_DECL_IMPORT #endif +#define LIBTHEZZZ_TRANSLATOR "thezzz/libthezzz" + #endif // LIBTHEZZZ_GLOBAL_H diff --git a/libthezzz/translations/en.ts b/libthezzz/translations/en.ts index ed27b68..725aea3 100644 --- a/libthezzz/translations/en.ts +++ b/libthezzz/translations/en.ts @@ -1,489 +1,544 @@ - + + - + BodyProviderEditor - - - Form + + + Form + - - - Body + + + Body + - - - Body + + Body + Short for Body + - - + + DescriptionProviderEditor - - - Form + + + Form + - - - - Description + + + + Description + - - - Title + + + Title + - - - Desc + + Desc + Short for Description + - - + + EndpointProviderEditor - - - Form + + + Form + - - - GET + + + GET + - - - POST + + + POST + - - - PUT + + + PUT + - - - PATCH + + + PATCH + - - - DELETE + + + DELETE + - - - OPTIONS + + + OPTIONS + - - - HEAD + + + HEAD + - - - Endpoint + + + Endpoint + - - + + EnvironmentProvider - - - - Production + + + Production + - - + + EnvironmentProviderEditor - - - Form + + + Form + - - - Environment + + + Environment + - - - Environment Variables allow you to set common variables and set secrets that can be used by other requests in this workspace. + + + Environment Variables allow you to set common variables and set secrets that can be used by other requests in this workspace. + - - - - - Var + + + + + Var + - - - - Variable + + + + Variable + - - - - Secret? + + + + Secret? + - - - Production + + + Production + - - - Staging + + + Staging + - - - baseUrl + + + baseUrl + - - - envthing + + + envthing + - - - envthing2 + + + envthing2 + - - - token + + + token + - - - password + + + password + - - - password2 + + + password2 + - - - - - New Variable... + + + + + New Variable... + - - - Actions + + + Actions + - - - Create New Environment + + + Create New Environment + - - - Env + + Env + Short for Environment + - - - For Environment %1 + + For Environment %1 + - - - Activate Environment + + Activate Environment + - - - - - Delete Environment + + + + Delete Environment + - - - Unable to delete environment + + Unable to delete environment + - - - Every workspace must have at least one environment. + + Every workspace must have at least one environment. + - - - To delete the %1 environment, create a new environment first. + + To delete the %1 environment, create a new environment first. + - - - Do you want to delete the environment %1? + + Do you want to delete the environment %1? + - - - Deleting the environment will also delete all environment variables associated with it. + + Deleting the environment will also delete all environment variables associated with it. + - - - New Environment + + New Environment + - - - What do you want to call the new environment? + + What do you want to call the new environment? + - - + + HeaderProviderEditor - - - Form + + + Form + - - - Headers + + + Headers + - - - Header + + + Header + - - - Value + + + Value + - - - Hdrs + + Hdrs + Short for Headers + - - - - New Header... + + + New Header... + - - + + ReplyBodyWidget - - - Form + + + Form + - - - Raw Body + + + Raw Body + - - - Raw + + Raw + Short for Raw Body + - - + + ReplyHeadersWidget - - - Form + + + Form + - - - Headers + + + Headers + - - - Header + + + Header + - - - Value + + + Value + - - - Hdr + + Hdr + Short for Headers + - - - For header %1 + + For header %1 + - - - Copy Header + + Copy Header + - - - Copy Value + + Copy Value + - - + + WorkspaceFile - - - Untitled Workspace + + Untitled Workspace + - - + + ZzzReplyInspector - - - Form + + + Form + - - - Unable to send request + + + Unable to send request + - - - - - - in %n msec + + in %n msec + + + + - - - Fail + + Fail + - - - Processing... + + Processing... + - - + + ZzzReplyViewer - - - Form + + + Form + - - - Responses + + + Responses + - - + + ZzzRequest - - - - Untitled Request + + + Untitled Request + - - + + ZzzRequestEditor - - - Form + + + Form + - - - Environment Incomplete + + Environment Incomplete + - - - The request cannot be sent because some environment variables used by this request are not set. + + The request cannot be sent because some environment variables used by this request are not set. + - - %n environment variable (%1) needs to be set before the request can be sent. - %n environment variables (%1) need to be set before the request can be sent. - - - %n environment variable(s) (%1) need to be set before the request can be sent. - - - + + %n environment variable(s) (%1) need to be set before the request can be sent. + + %n environment variable (%1) needs to be set before the request can be sent. + %n environment variables (%1) need to be set before the request can be sent. + + + + ZzzRequestFolder - - - - Untitled Request Folder + + + Untitled Request Folder + - - + + ZzzWorkspaceEditor - - - Form + + + Form + - - - - New Request + + + + New Request + - - - - Delete Request Folder + + + Delete Request Folder + - - - Do you want to delete the request folder? + + Do you want to delete the request folder? + - - - Deleting the request folder will also delete all the requests contained within. + + Deleting the request folder will also delete all the requests contained within. + - - - For %1 + + For %1 + - - - New Request Folder + + New Request Folder + - - - Delete + + Delete + - - \ No newline at end of file + + diff --git a/libthezzz/translations/en_US.ts b/libthezzz/translations/en_US.ts index 2a1d619..1b0808d 100644 --- a/libthezzz/translations/en_US.ts +++ b/libthezzz/translations/en_US.ts @@ -1,489 +1,544 @@ - + + - + BodyProviderEditor - - - Form + + + Form + - - - Body + + + Body + - - - Body + + Body + Short for Body + - - + + DescriptionProviderEditor - - - Form + + + Form + - - - - Description + + + + Description + - - - Title + + + Title + - - - Desc + + Desc + Short for Description + - - + + EndpointProviderEditor - - - Form + + + Form + - - - GET + + + GET + - - - POST + + + POST + - - - PUT + + + PUT + - - - PATCH + + + PATCH + - - - DELETE + + + DELETE + - - - OPTIONS + + + OPTIONS + - - - HEAD + + + HEAD + - - - Endpoint + + + Endpoint + - - + + EnvironmentProvider - - - - Production + + + Production + - - + + EnvironmentProviderEditor - - - Form + + + Form + - - - Environment + + + Environment + - - - Environment Variables allow you to set common variables and set secrets that can be used by other requests in this workspace. + + + Environment Variables allow you to set common variables and set secrets that can be used by other requests in this workspace. + - - - - - Var + + + + + Var + - - - - Variable + + + + Variable + - - - - Secret? + + + + Secret? + - - - Production + + + Production + - - - Staging + + + Staging + - - - baseUrl + + + baseUrl + - - - envthing + + + envthing + - - - envthing2 + + + envthing2 + - - - token + + + token + - - - password + + + password + - - - password2 + + + password2 + - - - - - New Variable... + + + + + New Variable... + - - - Actions + + + Actions + - - - Create New Environment + + + Create New Environment + - - - Env + + Env + Short for Environment + - - - For Environment %1 + + For Environment %1 + - - - Activate Environment + + Activate Environment + - - - - - Delete Environment + + + + Delete Environment + - - - Unable to delete environment + + Unable to delete environment + - - - Every workspace must have at least one environment. + + Every workspace must have at least one environment. + - - - To delete the %1 environment, create a new environment first. + + To delete the %1 environment, create a new environment first. + - - - Do you want to delete the environment %1? + + Do you want to delete the environment %1? + - - - Deleting the environment will also delete all environment variables associated with it. + + Deleting the environment will also delete all environment variables associated with it. + - - - New Environment + + New Environment + - - - What do you want to call the new environment? + + What do you want to call the new environment? + - - + + HeaderProviderEditor - - - Form + + + Form + - - - Headers + + + Headers + - - - Header + + + Header + - - - Value + + + Value + - - - Hdrs + + Hdrs + Short for Headers + - - - - New Header... + + + New Header... + - - + + ReplyBodyWidget - - - Form + + + Form + - - - Raw Body + + + Raw Body + - - - Raw + + Raw + Short for Raw Body + - - + + ReplyHeadersWidget - - - Form + + + Form + - - - Headers + + + Headers + - - - Header + + + Header + - - - Value + + + Value + - - - Hdr + + Hdr + Short for Headers + - - - For header %1 + + For header %1 + - - - Copy Header + + Copy Header + - - - Copy Value + + Copy Value + - - + + WorkspaceFile - - - Untitled Workspace + + Untitled Workspace + - - + + ZzzReplyInspector - - - Form + + + Form + - - - Unable to send request + + + Unable to send request + - - - - - - in %n msec + + in %n msec + + + + - - - Fail + + Fail + - - - Processing... + + Processing... + - - + + ZzzReplyViewer - - - Form + + + Form + - - - Responses + + + Responses + - - + + ZzzRequest - - - - Untitled Request + + + Untitled Request + - - + + ZzzRequestEditor - - - Form + + + Form + - - - Environment Incomplete + + Environment Incomplete + - - - The request cannot be sent because some environment variables used by this request are not set. + + The request cannot be sent because some environment variables used by this request are not set. + - - %n environment variable (%1) needs to be set before the request can be sent. - %n environment variables (%1) need to be set before the request can be sent. - - - %n environment variable(s) (%1) need to be set before the request can be sent. - - - + + %n environment variable(s) (%1) need to be set before the request can be sent. + + %n environment variable (%1) needs to be set before the request can be sent. + %n environment variables (%1) need to be set before the request can be sent. + + + + ZzzRequestFolder - - - - Untitled Request Folder + + + Untitled Request Folder + - - + + ZzzWorkspaceEditor - - - Form + + + Form + - - - - New Request + + + + New Request + - - - - Delete Request Folder + + + Delete Request Folder + - - - Do you want to delete the request folder? + + Do you want to delete the request folder? + - - - Deleting the request folder will also delete all the requests contained within. + + Deleting the request folder will also delete all the requests contained within. + - - - For %1 + + For %1 + - - - New Request Folder + + New Request Folder + - - - Delete + + Delete + - - \ No newline at end of file + + diff --git a/libthezzz/translations/he.ts b/libthezzz/translations/he.ts index 2d4a122..b963d8f 100644 --- a/libthezzz/translations/he.ts +++ b/libthezzz/translations/he.ts @@ -1,467 +1,544 @@ - + + - + BodyProviderEditor - - - Form + + + Form + - - - Body + + + Body + - - - Body + + Body + Short for Body + - - + + DescriptionProviderEditor - - - Form + + + Form + - - - - Description + + + + Description + - - - Title + + + Title + - - - Desc + + Desc + Short for Description + - - + + EndpointProviderEditor - - - Form + + + Form + - - - GET + + + GET + - - - POST + + + POST + - - - PUT + + + PUT + - - - PATCH + + + PATCH + - - - DELETE + + + DELETE + - - - OPTIONS + + + OPTIONS + - - - HEAD + + + HEAD + - - - Endpoint + + + Endpoint + - - + + EnvironmentProvider - - - - Production + + + Production + - - + + EnvironmentProviderEditor - - - Form + + + Form + - - - Environment + + + Environment + - - - Environment Variables allow you to set common variables and set secrets that can be used by other requests in this workspace. + + + Environment Variables allow you to set common variables and set secrets that can be used by other requests in this workspace. + - - - - - Var + + + + + Var + - - - - Variable + + + + Variable + - - - - Secret? + + + + Secret? + - - - Production + + + Production + - - - Staging + + + Staging + - - - baseUrl + + + baseUrl + - - - envthing + + + envthing + - - - envthing2 + + + envthing2 + - - - token + + + token + - - - password + + + password + - - - password2 + + + password2 + - - - - - New Variable... + + + + + New Variable... + - - - Actions + + + Actions + - - - Create New Environment + + + Create New Environment + - - - Env + + Env + Short for Environment + - - - For Environment %1 + + For Environment %1 + - - - - - Delete Environment + + Activate Environment + - - - Unable to delete environment + + + + Delete Environment + - - - Every workspace must have at least one environment. + + Unable to delete environment + - - - To delete the %1 environment, create a new environment first. + + Every workspace must have at least one environment. + - - - Do you want to delete the environment %1? + + To delete the %1 environment, create a new environment first. + - - - Deleting the environment will also delete all environment variables associated with it. + + Do you want to delete the environment %1? + - - - New Environment + + Deleting the environment will also delete all environment variables associated with it. + - - - What do you want to call the new environment? + + New Environment + - - + + + What do you want to call the new environment? + + + + HeaderProviderEditor - - - Form + + + Form + - - - Headers + + + Headers + - - - Header + + + Header + - - - Value + + + Value + - - - Hdrs + + Hdrs + Short for Headers + - - - - New Header... + + + New Header... + - - + + ReplyBodyWidget - - - Form + + + Form + - - - Raw Body + + + Raw Body + - - - Raw + + Raw + Short for Raw Body + - - + + ReplyHeadersWidget - - - Form + + + Form + - - - Headers + + + Headers + - - - Header + + + Header + - - - Value + + + Value + - - - Hdr + + Hdr + Short for Headers + - - - For header %1 + + For header %1 + - - - Copy Header + + Copy Header + - - - Copy Value + + Copy Value + - - + + WorkspaceFile - - - Untitled Workspace + + Untitled Workspace + - - + + ZzzReplyInspector - - - Form + + + Form + - - - Unable to send request + + + Unable to send request + - - - - - - - in %n msec + + in %n msec + + + + - - - Fail + + Fail + - - - Processing... + + Processing... + - - + + ZzzReplyViewer - - - Form + + + Form + - - - Responses + + + Responses + - - + + ZzzRequest - - - - Untitled Request + + + Untitled Request + - - + + ZzzRequestEditor - - - Form + + + Form + + + + + Environment Incomplete + - - + + + The request cannot be sent because some environment variables used by this request are not set. + + + + + %n environment variable(s) (%1) need to be set before the request can be sent. + + + + + + + ZzzRequestFolder - - - - Untitled Request Folder + + + Untitled Request Folder + - - + + ZzzWorkspaceEditor - - - Form + + + Form + - - - - New Request + + + + New Request + - - - - Delete Request Folder + + + Delete Request Folder + - - - Do you want to delete the request folder? + + Do you want to delete the request folder? + - - - Deleting the request folder will also delete all the requests contained within. + + Deleting the request folder will also delete all the requests contained within. + - - - For %1 + + For %1 + - - - New Request Folder + + New Request Folder + - - - Delete + + Delete + - - \ No newline at end of file + + diff --git a/libthezzz/translations/vi_VN.ts b/libthezzz/translations/vi_VN.ts index 1729e8f..150b637 100644 --- a/libthezzz/translations/vi_VN.ts +++ b/libthezzz/translations/vi_VN.ts @@ -1,487 +1,562 @@ - + + - + BodyProviderEditor - - - Form + + + Form + - - - Body + + + Body + - - - Body + + Body + Short for Body + - - + + DescriptionProviderEditor - - - Form + + + Form + - Sự miêu tả - - - Description + + + + Description + Sự miêu tả - Tiêu đề - - Title + + + Title + Tiêu đề - m.t - - Desc + Desc + m.t - - + + + Desc + Short for Description + m.t + + + EndpointProviderEditor - - - Form + + + Form + - GET - - GET + + + GET + GET - POST - - POST + + + POST + POST - PUT - - PUT + + + PUT + PUT - PATCH - - PATCH + + + PATCH + PATCH - DELETE - - DELETE + + + DELETE + DELETE - OPTIONS - - OPTIONS + + + OPTIONS + OPTIONS - HEAD - - HEAD + + + HEAD + HEAD - Điểm cuối - - Endpoint + + + Endpoint + Điểm cuối - - + + EnvironmentProvider - Sản xuất - - - Production + + + Production + Sản xuất - - + + EnvironmentProviderEditor - - - Form + + + Form + - Môi trường - - Environment + + + Environment + Môi trường - Biến môi trường cho bạn đặt các biến chung và bí mật có thể được sử dụng bởi các yêu cầu trong bàn làm việc này. - - Environment Variables allow you to set common variables and set secrets that can be used by other requests in this workspace. + + + Environment Variables allow you to set common variables and set secrets that can be used by other requests in this workspace. + Biến môi trường cho bạn đặt các biến chung và bí mật có thể được sử dụng bởi các yêu cầu trong bàn làm việc này. - Biến - - - - Var + + + + + Var + Biến - Biến - - - Variable + + + + Variable + Biến - Bí mật? - - - Secret? + + + + Secret? + Bí mật? - Sản xuất - - Production + + + Production + Sản xuất - - - Staging + + + Staging + - - - baseUrl + + + baseUrl + - - - envthing + + + envthing + - - - envthing2 + + + envthing2 + - - - token + + + token + - - - password + + + password + - - - password2 + + + password2 + - Biến mới... - - - - New Variable... + + + + + New Variable... + Biến mới... - Hoạt động - - Actions + + + Actions + Hoạt động - Tạo môi trường mới - - Create New Environment + + + Create New Environment + Tạo môi trường mới - Môi t. - - Env + Env + Môi t. - Cho môi trường %1 - - For Environment %1 + + Env + Short for Environment + Môi t. - Kích hoạt môi trường - - Activate Environment + + For Environment %1 + Cho môi trường %1 - Xóa môi trường - - - - Delete Environment + + Activate Environment + Kích hoạt môi trường - Không thể xóa môi trường - - Unable to delete environment + + + + Delete Environment + Xóa môi trường - Các bàn làm việc cần ít nhất 1 môi trường. - - Every workspace must have at least one environment. + + Unable to delete environment + Không thể xóa môi trường - Để xóa môi trường %1, vui lòng tạo một môi trường mới. - - To delete the %1 environment, create a new environment first. + + Every workspace must have at least one environment. + Các bàn làm việc cần ít nhất 1 môi trường. - Bạn có muốn xóa môi trường %1 không? - - Do you want to delete the environment %1? + + To delete the %1 environment, create a new environment first. + Để xóa môi trường %1, vui lòng tạo một môi trường mới. - Khi bạn xóa môi trường, tất cả các biến môi trường được liên kết sẽ bị xóa luôn. - - Deleting the environment will also delete all environment variables associated with it. + + Do you want to delete the environment %1? + Bạn có muốn xóa môi trường %1 không? - Môi trường mới - - New Environment + + Deleting the environment will also delete all environment variables associated with it. + Khi bạn xóa môi trường, tất cả các biến môi trường được liên kết sẽ bị xóa luôn. - Bạn muốn gọi môi trường mới là gì? - - What do you want to call the new environment? + + New Environment + Môi trường mới - - + + + What do you want to call the new environment? + Bạn muốn gọi môi trường mới là gì? + + + HeaderProviderEditor - - - Form + + + Form + + + + + + Headers + Tiêu đề - Tiêu đề - - Headers + + + Header + Tiêu đề - Tiêu đề - - Header + + + Value + Giá trị - Giá trị - - Value + Hdrs + T.đề - T.đề - - Hdrs + + Hdrs + Short for Headers + T.đề - Tiêu đề mới... - - - New Header... + + + New Header... + Tiêu đề mới... - - + + ReplyBodyWidget - - - Form + + + Form + + + + + + Raw Body + Nội dung thô - Nội dung thô - - Raw Body + Raw + Thô - Thô - - Raw + + Raw + Short for Raw Body + Thô - - + + ReplyHeadersWidget - - - Form + + + Form + + + + + + Headers + Tiêu đề - Tiêu đề - - Headers + + + Header + Tiêu đề - Tiêu đề - - Header + + + Value + Giá trị - Giá trị - - Value + Hdr + T.đề - T.đề - - Hdr + + Hdr + Short for Headers + T.đề - Cho tiêu đề %1 - - For header %1 + + For header %1 + Cho tiêu đề %1 - Chép tiêu đề - - Copy Header + + Copy Header + Chép tiêu đề - Chép giá trị - - Copy Value + + Copy Value + Chép giá trị - - + + WorkspaceFile - Bàn làm việc không có tiêu đề - - Untitled Workspace + + Untitled Workspace + Bàn làm việc không có tiêu đề - - + + ZzzReplyInspector - - - Form + + + Form + - Không thể gửi yêu cầu - - Unable to send request + + + Unable to send request + Không thể gửi yêu cầu - - trong %n milli-giây - - - in %n msec + + in %n msec + + trong %n milli-giây + - Thất bại - - Fail + + Fail + Thất bại - Đang xử lý... - - Processing... + + Processing... + Đang xử lý... - - + + ZzzReplyViewer - - - Form + + + Form + - Phản ứng - - Responses + + + Responses + Phản ứng - - + + ZzzRequest - Yêu cầu không có tiêu đề - - - Untitled Request + + + Untitled Request + Yêu cầu không có tiêu đề - - + + ZzzRequestEditor - - - Form + + + Form + - Môi trường không đầy - - Environment Incomplete + + Environment Incomplete + Môi trường không đầy - Yêu cầu không thể bị gửi tại vì một số biến môi trường được yêu cầu này sử dụng chưa được đặt. - - The request cannot be sent because some environment variables used by this request are not set. + + The request cannot be sent because some environment variables used by this request are not set. + Yêu cầu không thể bị gửi tại vì một số biến môi trường được yêu cầu này sử dụng chưa được đặt. - - %n biến môi trường (%1) cần đặt trước khi yêu cầu này có thể gửi được. - - - %n environment variable(s) (%1) need to be set before the request can be sent. - - - + + %n environment variable(s) (%1) need to be set before the request can be sent. + + %n biến môi trường (%1) cần đặt trước khi yêu cầu này có thể gửi được. + + + + ZzzRequestFolder - Thư mục yêu cầu không có tiêu đề - - - Untitled Request Folder + + + Untitled Request Folder + Thư mục yêu cầu không có tiêu đề - - + + ZzzWorkspaceEditor - - - Form + + + Form + - Yêu cầu mới - - - New Request + + + + New Request + Yêu cầu mới - Xóa thư mục yêu cầu - - - Delete Request Folder + + + Delete Request Folder + Xóa thư mục yêu cầu - Bạn có muốn xóa thư mục yêu cầu không? - - Do you want to delete the request folder? + + Do you want to delete the request folder? + Bạn có muốn xóa thư mục yêu cầu không? - Xóa thư mục yêu cầu này cũng xóa tất cả các yêu cầu có trong đó. - - Deleting the request folder will also delete all the requests contained within. + + Deleting the request folder will also delete all the requests contained within. + Xóa thư mục yêu cầu này cũng xóa tất cả các yêu cầu có trong đó. - Cho %1 - - For %1 + + For %1 + Cho %1 - Thư mục yêu cầu mới - - New Request Folder + + New Request Folder + Thư mục yêu cầu mới - Xóa - - Delete + + Delete + Xóa - - \ No newline at end of file + +