Browse Source

feat(platform-other): Add custom SDK instructions (#57586)

ArthurKnaus 1 year ago
parent
commit
3e6607bc83
1 changed files with 9 additions and 1 deletions
  1. 9 1
      static/app/views/projectInstall/otherPlatformsInfo.tsx

+ 9 - 1
static/app/views/projectInstall/otherPlatformsInfo.tsx

@@ -49,7 +49,7 @@ export function OtherPlatformsInfo({
       </CodeSnippet>
       <Suggestion>
         {t(
-          'Since it can be a lot work creating a Sentry SDK from scratch, we suggest you review the following SDKs which are applicable for a wide variety of applications:'
+          'Since it can be a lot of work creating a Sentry SDK from scratch, we suggest you review the following SDKs which are applicable for a wide variety of applications:'
         )}
         <List symbol="bullet">
           <ListItem>
@@ -89,6 +89,14 @@ export function OtherPlatformsInfo({
           }
         )}
       </div>
+      <div>
+        {tct(
+          'Your favorite language or framework still cannot be found? Then we encourage you to consider [link:writing your own SDK].',
+          {
+            link: <ExternalLink href="https://develop.sentry.dev/sdk" />,
+          }
+        )}
+      </div>
     </Wrapper>
   );
 }