[ios] ge0 as http url sharing

This commit is contained in:
Dmitry Kunin 2013-04-26 12:55:15 +03:00 committed by Alex Zolotarev
parent 85e15d8387
commit f1a5a3200e
13 changed files with 172 additions and 89 deletions

View file

@ -307,22 +307,33 @@
{
MFMailComposeViewController * mailVC = [[[MFMailComposeViewController alloc] init] autorelease];
//TODO create subject
[mailVC setSubject:NSLocalizedString(@"share_bookmarks_email_subject", nil)];
NSString * httpGe0Url = [shortUrl stringByReplacingCharactersInRange:NSMakeRange(0, 6) withString:@"http://ge0.me/"];
if ([textFieldText isEqualToString:NSLocalizedString(@"my_position", nil)])
[mailVC setMessageBody:[NSString stringWithFormat:NSLocalizedString(@"my_position_share_email", nil), shortUrl] isHTML:NO];
{
[mailVC setMessageBody:[NSString stringWithFormat:NSLocalizedString(@"my_position_share_email", nil), textFieldText, shortUrl, httpGe0Url] isHTML:NO];
[mailVC setSubject:NSLocalizedString(@"my_position_share_email_subject", nil)];
}
else
[mailVC setMessageBody:[NSString stringWithFormat:NSLocalizedString(@"bookmark_share_email", nil), textFieldText, shortUrl] isHTML:NO];
{
[mailVC setMessageBody:[NSString stringWithFormat:NSLocalizedString(@"bookmark_share_email", nil), textFieldText, shortUrl, httpGe0Url] isHTML:NO];
[mailVC setSubject:NSLocalizedString(@"bookmark_share_email_subject", nil)];
}
mailVC.mailComposeDelegate = self;
[self presentModalViewController:mailVC animated:YES];
}
-(void)sendMessageWith:(NSString *)textFieldText andUrl:(NSString *)shortUrl
{
NSString * httpGe0Url = [shortUrl stringByReplacingCharactersInRange:NSMakeRange(0, 6) withString:@"http://ge0.me/"];
MFMessageComposeViewController * messageVC = [[[MFMessageComposeViewController alloc] init] autorelease];
if ([textFieldText isEqualToString:NSLocalizedString(@"my_position", nil)])
[messageVC setBody:[NSString stringWithFormat:NSLocalizedString(@"my_position_share_sms", nil), shortUrl]];
[messageVC setBody:[NSString stringWithFormat:NSLocalizedString(@"my_position_share_sms", nil), shortUrl, httpGe0Url]];
else
[messageVC setBody:[NSString stringWithFormat:NSLocalizedString(@"bookmark_share_sms", nil), shortUrl]];
[messageVC setBody:[NSString stringWithFormat:NSLocalizedString(@"bookmark_share_sms", nil), shortUrl, httpGe0Url]];
messageVC.messageComposeDelegate = self;
[self presentModalViewController:messageVC animated:YES];
}

View file

@ -419,17 +419,23 @@
/* No, thanks */
"no_thanks" = "Ne, díky";
/* Share one specific bookmark using SMS, %@ contains ge0:// link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "I pinned %@\nMake sure you have installed http://mapswith.me/app";
/* Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "Značka na mapě. Otevřete %1$@ nebo %2$@";
/* Share my position using SMS, %@ contains ge0:// link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "I'm here %@\nMake sure you have installed http://mapswith.me/app";
/* Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "Jsem zde. Otevřete %1$@ nebo %2$@";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link */
"bookmark_share_email" = "Hi,\n\nI pinned %1$@ at MapsWithMe, offline maps of the World. Click %2$@ to see the place on the map.\n\nBefore opening, please make sure you have MapsWithMe app installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
/* Subject for emailed bookmark */
"bookmark_share_email_subject" = "Podívej se na mou značku na mapě MapsWithMe";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me */
"bookmark_share_email" = "Ahoj,\n\nUmístil jsem značku %1$@ na MapsWithMe, světové mapy bez internetového připojení. Klikni na jeden z těchto odkazů %2$@ , %3$@ a uvidíš toto místo na mapě.\n\nDěkuji.";
/* Subject for emailed position */
"my_position_share_email_subject" = "Podívejte se na moji aktuální polohu na mapě na MapsWithMe";
/* Share my position using EMail, %@ is ge0:// link WITHOUT NAME */
"my_position_share_email" = "Hi,\n\nClick %@ to see my position on the map. Before opening, please make sure you have MapsWithMe offline maps installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
"my_position_share_email" = "Ahoj,\n\nnyní jsem zde: %1$@ . Klikni na jeden z těchto odkazů %2$@, %3$@ a uvidíš toto místo na mapě.\n\nDěkuji.";
/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */
"share" = "Share with friends";

View file

@ -419,17 +419,23 @@
/* No, thanks */
"no_thanks" = "Nein, Danke";
/* Share one specific bookmark using SMS, %@ contains ge0:// link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "I pinned %@\nMake sure you have installed http://mapswith.me/app";
/* Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "Meine Nadel auf der Karte sehen. Klicke auf den Link %1$@ oder %2$@";
/* Share my position using SMS, %@ contains ge0:// link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "I'm here %@\nMake sure you have installed http://mapswith.me/app";
/* Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "Sieh, wo ich gerade bin. Klicke auf den Link %1$@ oder %2$@";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link */
"bookmark_share_email" = "Hi,\n\nI pinned %1$@ at MapsWithMe, offline maps of the World. Click %2$@ to see the place on the map.\n\nBefore opening, please make sure you have MapsWithMe app installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
/* Subject for emailed bookmark */
"bookmark_share_email_subject" = "Schau dir meine Nadel auf der MapsWithMe-Karte an";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me */
"bookmark_share_email" = "Hi,\n\nich habe gepinnt: %1$@ auf MapsWithMe, Offline-Weltkarten. Klicke auf diesen Link %2$@ oder diesen %3$@, um den Ort auf der Karte zu sehen.\n\nVielen Dank.";
/* Subject for emailed position */
"my_position_share_email_subject" = "Sieh dir meinen aktuellen Standort auf der Karte MapsWithMe an";
/* Share my position using EMail, %@ is ge0:// link WITHOUT NAME */
"my_position_share_email" = "Hi,\n\nClick %@ to see my position on the map. Before opening, please make sure you have MapsWithMe offline maps installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
"my_position_share_email" = "Hi,\n\nich bin gerade hier: %1$@ . Klicke auf diesen Link %2$@ oder diesen %3$@, um meinen Standort auf der Karte zu sehen.\n\nVielen Dank.";
/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */
"share" = "Share with friends";

View file

@ -419,17 +419,23 @@
/* No, thanks */
"no_thanks" = "No, thanks";
/* Share one specific bookmark using SMS, %@ contains ge0:// link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "I pinned %@\nMake sure you have installed http://mapswith.me/app";
/* Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "Look at my pin on MapsWithMe map. Open the link: %1$@ or %2$@";
/* Share my position using SMS, %@ contains ge0:// link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "I'm here %@\nMake sure you have installed http://mapswith.me/app";
/* Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "See where I am now. Open the link: %1$@ or %2$@";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link */
"bookmark_share_email" = "Hi,\n\nI pinned %1$@ at MapsWithMe, offline maps of the World. Click %2$@ to see the place on the map.\n\nBefore opening, please make sure you have MapsWithMe app installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
/* Subject for emailed bookmark */
"bookmark_share_email_subject" = "Look at my pin on MapsWithMe map";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me */
"bookmark_share_email" = "Hi,\n\nI pinned: %1$@ at MapsWithMe, world offline maps. Click this link %2$@ or this one %3$@ to see the place on the map.\n\nThanks.";
/* Subject for emailed position */
"my_position_share_email_subject" = "Look at my current location on MapsWithMe map";
/* Share my position using EMail, %@ is ge0:// link WITHOUT NAME */
"my_position_share_email" = "Hi,\n\nClick %@ to see my position on the map. Before opening, please make sure you have MapsWithMe offline maps installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
"my_position_share_email" = "Hi,\n\nI'm here now: %1$@. Click this link %2$@ or this one %3$@ to see the place on the map.\n\nThanks.";
/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */
"share" = "Share with friends";

View file

@ -419,17 +419,23 @@
/* No, thanks */
"no_thanks" = "No, gracias";
/* Share one specific bookmark using SMS, %@ contains ge0:// link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "I pinned %@\nMake sure you have installed http://mapswith.me/app";
/* Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "Ve mi alfiler en mapa. Abre %1$@ o %2$@";
/* Share my position using SMS, %@ contains ge0:// link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "I'm here %@\nMake sure you have installed http://mapswith.me/app";
/* Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "Mira dónde estoy. Abre %1$@ o %2$@";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link */
"bookmark_share_email" = "Hi,\n\nI pinned %1$@ at MapsWithMe, offline maps of the World. Click %2$@ to see the place on the map.\n\nBefore opening, please make sure you have MapsWithMe app installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
/* Subject for emailed bookmark */
"bookmark_share_email_subject" = "Mira mi alfiler en el mapa de MapsWithMe";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me */
"bookmark_share_email" = "Hola:\n\nMarqué con un alfiler: %1$@ en MapsWithMe, mapas del mundo sin conexión. Haz clic en este enlace %2$@ o este %3$@ para ver el sitio en el mapa.\n\nGracias.";
/* Subject for emailed position */
"my_position_share_email_subject" = "Mira mi ubicación actual en el mapa en MapsWithMe";
/* Share my position using EMail, %@ is ge0:// link WITHOUT NAME */
"my_position_share_email" = "Hi,\n\nClick %@ to see my position on the map. Before opening, please make sure you have MapsWithMe offline maps installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
"my_position_share_email" = "Hola:\n\nAhora estoy aquí: %1$@. Haz clic en este enlace %2$@ o esta %3$@ para verlo en el mapa. \n\nGracias.";
/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */
"share" = "Share with friends";

View file

@ -419,17 +419,23 @@
/* No, thanks */
"no_thanks" = "Non, Merci";
/* Share one specific bookmark using SMS, %@ contains ge0:// link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "I pinned %@\nMake sure you have installed http://mapswith.me/app";
/* Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "Voir ma punaise sur la carte. Ouvrir %1$@ ou %2$@";
/* Share my position using SMS, %@ contains ge0:// link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "I'm here %@\nMake sure you have installed http://mapswith.me/app";
/* Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "Localisez-moi maintenant. Ouvrir %1$@ ou %2$@";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link */
"bookmark_share_email" = "Hi,\n\nI pinned %1$@ at MapsWithMe, offline maps of the World. Click %2$@ to see the place on the map.\n\nBefore opening, please make sure you have MapsWithMe app installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
/* Subject for emailed bookmark */
"bookmark_share_email_subject" = "Voir mon épingle sur la carte MapsWithMe";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me */
"bookmark_share_email" = "Salut,\n\nJ'ai épinglé : %1$@XX à MapsWithMe, les cartes du monde hors ligne. clique sur ce lien %2$@ ou sur celui-ci %3$@ pour visualiser l'endroit sur la carte.\n\nMerci.";
/* Subject for emailed position */
"my_position_share_email_subject" = "Consultez ma localisation actuelle sur la carte MapsWithMe";
/* Share my position using EMail, %@ is ge0:// link WITHOUT NAME */
"my_position_share_email" = "Hi,\n\nClick %@ to see my position on the map. Before opening, please make sure you have MapsWithMe offline maps installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
"my_position_share_email" = "Salut,\n\nJe me trouve actuellement là : %1$@. Clique sur ce lien %2$@ ou sur celui-ci %3$@ pour visualiser l'endroit sur la carte.\n\nMerci.";
/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */
"share" = "Share with friends";

View file

@ -419,17 +419,23 @@
/* No, thanks */
"no_thanks" = "No, grazie";
/* Share one specific bookmark using SMS, %@ contains ge0:// link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "I pinned %@\nMake sure you have installed http://mapswith.me/app";
/* Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "Vedi pin sulla mappa. Apri %1$@ o %2$@";
/* Share my position using SMS, %@ contains ge0:// link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "I'm here %@\nMake sure you have installed http://mapswith.me/app";
/* Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "Vedi dove sono ora. Apri %1$@ o %2$@";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link */
"bookmark_share_email" = "Hi,\n\nI pinned %1$@ at MapsWithMe, offline maps of the World. Click %2$@ to see the place on the map.\n\nBefore opening, please make sure you have MapsWithMe app installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
/* Subject for emailed bookmark */
"bookmark_share_email_subject" = "Dai uno sguardo al mio pin sulla mappa di MapsWithMe";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me */
"bookmark_share_email" = "Ciao,\n\nHo segnato: %1$@ su MapsWithMe, le mappe del mondo offline. Clicca su questo link %2$@ oppure su questo %3$@ per vedere il posto sulla mappa.\n\nGrazie.";
/* Subject for emailed position */
"my_position_share_email_subject" = "Guarda dove mi trovo attualmente sulla mappa MapsWithMe";
/* Share my position using EMail, %@ is ge0:// link WITHOUT NAME */
"my_position_share_email" = "Hi,\n\nClick %@ to see my position on the map. Before opening, please make sure you have MapsWithMe offline maps installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
"my_position_share_email" = "Ciao,\n\nSono qui adesso: %1$@. Clicca su questo link %2$@ oppure su questo %3$@ per vedere il posto sulla mappa.\n\nGrazie.";
/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */
"share" = "Share with friends";

View file

@ -419,17 +419,23 @@
/* No, thanks */
"no_thanks" = "いいえ";
/* Share one specific bookmark using SMS, %@ contains ge0:// link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "I pinned %@\nMake sure you have installed http://mapswith.me/app";
/* Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "私のピンはマップのここに。%1$@ または %2$@ 開いてください";
/* Share my position using SMS, %@ contains ge0:// link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "I'm here %@\nMake sure you have installed http://mapswith.me/app";
/* Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "私は今ここにいます。%1$@ または %2$@ を開いてください。";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link */
"bookmark_share_email" = "Hi,\n\nI pinned %1$@ at MapsWithMe, offline maps of the World. Click %2$@ to see the place on the map.\n\nBefore opening, please make sure you have MapsWithMe app installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
/* Subject for emailed bookmark */
"bookmark_share_email_subject" = "MapsWithMeマップでピンを見る";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me */
"bookmark_share_email" = "こんにちは。\n\n世界のオフラインマップMapsWithMe でこの場所をピンで留めました: %1$@ 。リンク %2$@ または %3$@ クリックしてその場所をマップで確認してください。\n\nよろしくお願いします";
/* Subject for emailed position */
"my_position_share_email_subject" = "MapsWithMeマップ上での自分の現在地を見る";
/* Share my position using EMail, %@ is ge0:// link WITHOUT NAME */
"my_position_share_email" = "Hi,\n\nClick %@ to see my position on the map. Before opening, please make sure you have MapsWithMe offline maps installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
"my_position_share_email" = "こんにちは。\n\n私は今ここにいます: %1$@ 。リンク %2$@ または %3$@ をクリックしてその場所をマップで確認してください。\n\nよろしくお願いします。";
/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */
"share" = "Share with friends";

View file

@ -419,17 +419,23 @@
/* No, thanks */
"no_thanks" = "평가하지 않겠습니다";
/* Share one specific bookmark using SMS, %@ contains ge0:// link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "I pinned %@\nMake sure you have installed http://mapswith.me/app";
/* Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "지도에서 내 PIN을 참조하십시오. %1$@ 또는 %2$@ 열기";
/* Share my position using SMS, %@ contains ge0:// link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "I'm here %@\nMake sure you have installed http://mapswith.me/app";
/* Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "현재 위치를 알아 보십시오. %1$@ 또는 %2$@ 열기";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link */
"bookmark_share_email" = "Hi,\n\nI pinned %1$@ at MapsWithMe, offline maps of the World. Click %2$@ to see the place on the map.\n\nBefore opening, please make sure you have MapsWithMe app installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
/* Subject for emailed bookmark */
"bookmark_share_email_subject" = "MapsWithMe 지도에서 내 핀 보기";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me */
"bookmark_share_email" = "안녕하세요.\n\n다음 위치에 표시를 하였습니다: 오프라인 세계 지도인 MapsWithMe에서 %1$@ . %2$@ 또는 %3$@ 링크를 클릭하여 지도상에서 해당 장소를 살펴보시기 바랍니다.\n\n감사합니다.";
/* Subject for emailed position */
"my_position_share_email_subject" = "MapsWithMe 지도에서 제 현재 위치를 살펴 보시기 바랍니다";
/* Share my position using EMail, %@ is ge0:// link WITHOUT NAME */
"my_position_share_email" = "Hi,\n\nClick %@ to see my position on the map. Before opening, please make sure you have MapsWithMe offline maps installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
"my_position_share_email" = "안녕하세요.\n\n지금 다음 위치에 있습니다: %1$@ . %2$@ 또는 %3$@ 링크를 클릭하여 지도상에서 해당 장소를 살펴보시기 바랍니다.\n\n감사합니다.";
/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */
"share" = "Share with friends";

View file

@ -419,17 +419,23 @@
/* No, thanks */
"no_thanks" = "Nee, bedankt";
/* Share one specific bookmark using SMS, %@ contains ge0:// link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "I pinned %@\nMake sure you have installed http://mapswith.me/app";
/* Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "Bekijk mijn pin op de kaart. Open %1$@ of %2$@";
/* Share my position using SMS, %@ contains ge0:// link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "I'm here %@\nMake sure you have installed http://mapswith.me/app";
/* Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "Kijk waar ik nu ben. Open %1$@ of %2$@";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link */
"bookmark_share_email" = "Hi,\n\nI pinned %1$@ at MapsWithMe, offline maps of the World. Click %2$@ to see the place on the map.\n\nBefore opening, please make sure you have MapsWithMe app installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
/* Subject for emailed bookmark */
"bookmark_share_email_subject" = "Kijk naar mijn pin op MapsWithMe kaart";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me */
"bookmark_share_email" = "Hoi,\n\nIk heb: %1$@ geprikt bij MapsWithMe, offline wereldkaarten. Klik op deze %2$@ of deze %3$@ om de plaats op de kaart te zien.\n\nBedankt.";
/* Subject for emailed position */
"my_position_share_email_subject" = "Kijk naar mijn huidige locatie op MapsWithMe kaart";
/* Share my position using EMail, %@ is ge0:// link WITHOUT NAME */
"my_position_share_email" = "Hi,\n\nClick %@ to see my position on the map. Before opening, please make sure you have MapsWithMe offline maps installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
"my_position_share_email" = "Hoi,\n\nMomenteel ben ik hier: %1$@. Klik op deze %2$@ of deze %3$@ om de plaats op de kaart te zien.\n\nBedankt.";
/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */
"share" = "Share with friends";

View file

@ -419,17 +419,23 @@
/* No, thanks */
"no_thanks" = "Нет, спасибо";
/* Share one specific bookmark using SMS, %@ contains ge0:// link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "%@ Чтобы открыть, скачай http://mapswith.me/app";
/* Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "Моя метка на карте. Жми %1$@ или %2$@";
/* Share my position using SMS, %@ contains ge0:// link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "Я тут %@ Чтобы открыть, скачай http://mapswith.me/app";
/* Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "Смотри, где я сейчас. Жми %1$@ или %2$@";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link */
"bookmark_share_email" = "Привет!\n\nОткрой ссылку %2$@, для того чтобы посмотреть мою метку %1$@ на карте MapsWithMe.\nЕсли у тебя еще нет приложения MapsWithMe на твоем устройстве, скачай его предварительно по ссылке http://mapswith.me/app\n\nСпасибо!";
/* Subject for emailed bookmark */
"bookmark_share_email_subject" = "Смотри мою метку на карте MapsWithMe";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me */
"bookmark_share_email" = "Привет!\n\nОткрой эту ссылку %2$@ либо эту %3$@, для того чтобы увидеть мою метку %1$@ на карте MapsWithMe.\n\nСпасибо.";
/* Subject for emailed position */
"my_position_share_email_subject" = "Посмотри на карте MapsWithMe, где я сейчас нахожусь";
/* Share my position using EMail, %@ is ge0:// link WITHOUT NAME */
"my_position_share_email" = "Привет!\n\nЯ сейчас здесь: %@ - нажми на ссылку, чтобы увидеть это место на карте MapsWithMe.\nЕсли на твоем устройстве еще нет приложения MapsWithMe, предварительно установи его отсюда: http://mapswith.me/app\n\nСпасибо!";
"my_position_share_email" = "Привет!\n\nЧтобы увидеть на карте MapsWithMe, где я сейчас нахожусь, открой эту ссылку %2$@ или эту %3$@\n\nСпасибо.";
/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */
"share" = "Отправить другу";

View file

@ -419,17 +419,23 @@
/* No, thanks */
"no_thanks" = "Ні, дякую";
/* Share one specific bookmark using SMS, %@ contains ge0:// link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "I pinned %@\nMake sure you have installed http://mapswith.me/app";
/* Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "Моя мітка на карті. Іди %1$@ або %2$@";
/* Share my position using SMS, %@ contains ge0:// link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "I'm here %@\nMake sure you have installed http://mapswith.me/app";
/* Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "Глянь де я зараз. Іди %1$@ або %2$@";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link */
"bookmark_share_email" = "Hi,\n\nI pinned %1$@ at MapsWithMe, offline maps of the World. Click %2$@ to see the place on the map.\n\nBefore opening, please make sure you have MapsWithMe app installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
/* Subject for emailed bookmark */
"bookmark_share_email_subject" = "Поглянь на мою позначку на карті MapsWithMe";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me */
"bookmark_share_email" = "Привіт,\n\nЯ позначив: %1$@ у MapsWithMe, оффлайн карти світу. Натисни на це посилання %2$@ або на це посилання %3$@, щоб побачити місце на карті. \n\nДякую.";
/* Subject for emailed position */
"my_position_share_email_subject" = "Подивись моє поточне місцезнаходження на карті MapsWithMe";
/* Share my position using EMail, %@ is ge0:// link WITHOUT NAME */
"my_position_share_email" = "Hi,\n\nClick %@ to see my position on the map. Before opening, please make sure you have MapsWithMe offline maps installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
"my_position_share_email" = "Привіт,\n\nЯ зараз тут: %1$@. Натисни на це посилання %2$@ або на це посилання %3$@ щоб побачити місце на карті. \n\nДякую.";
/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */
"share" = "Share with friends";

View file

@ -419,17 +419,23 @@
/* No, thanks */
"no_thanks" = "不, 謝了!";
/* Share one specific bookmark using SMS, %@ contains ge0:// link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "I pinned %@\nMake sure you have installed http://mapswith.me/app";
/* Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"bookmark_share_sms" = "Look at my pin on MapsWithMe map. Open the link: %1$@ or %2$@";
/* Share my position using SMS, %@ contains ge0:// link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "I'm here %@\nMake sure you have installed http://mapswith.me/app";
/* Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 */
"my_position_share_sms" = "See where I am now. Open the link: %1$@ or %2$@";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link */
"bookmark_share_email" = "Hi,\n\nI pinned %1$@ at MapsWithMe, offline maps of the World. Click %2$@ to see the place on the map.\n\nBefore opening, please make sure you have MapsWithMe app installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
/* Subject for emailed bookmark */
"bookmark_share_email_subject" = "Look at my pin on MapsWithMe map";
/* Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me */
"bookmark_share_email" = "Hi,\n\nI pinned: %1$@ at MapsWithMe, world offline maps. Click this link %2$@ or this one %3$@ to see the place on the map.\n\nThanks.";
/* Subject for emailed position */
"my_position_share_email_subject" = "Look at my current location on MapsWithMe map";
/* Share my position using EMail, %@ is ge0:// link WITHOUT NAME */
"my_position_share_email" = "Hi,\n\nClick %@ to see my position on the map. Before opening, please make sure you have MapsWithMe offline maps installed. If not, get it here: http://mapswith.me/app\n\nThanks!";
"my_position_share_email" = "Hi,\n\nI'm here now: %1$@. Click this link %2$@ or this one %3$@ to see the place on the map.\n\nThanks.";
/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */
"share" = "Share with friends";