<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    For #2, you could use:<br>
    <br>
    load_textdomain( $domain, $mofile );<br>
    <br>
    Using load_theme_textdomain() multiple times would be problematic
    because it doesn't prefix the mofile name with $domain by default
    like with plugins.<br>
    <br>
    <div class="moz-cite-prefix">On 7/27/2013 11:40 AM, Chip Bennett
      wrote:<br>
    </div>
    <blockquote
cite="mid:CAPdLKqfUY55iTBPvEb8SDSRYxPVxb2qDZtVF8sr0R98hXK0=YQ@mail.gmail.com"
      type="cite">
      <div dir="ltr">That depends: do the "bunch of Themes" *use* a
        framework?
        <div><br>
        </div>
        <div>And, related question (because internationalization isn't
          my strong suit): can a Theme make multiple calls to
          load_theme_textdomain()?</div>
        <div><br>
        </div>
        <div>If possible, this would be an elegant solution for a Theme
          shop that has several Themes that all use the same code
          library (framework):</div>
        <div><br>
        </div>
        <div>1) Theme bootstraps the framework</div>
        <div>
          2) Framework calls load_theme_textdomain(
          $framework_textdomain, $framework_path )</div>
        <div>3) Theme calls load_theme_textdomain( $theme_textdomain,
          $theme_path )</div>
        <div><br>
        </div>
        <div>Would this even work? If not, why not? And if not, could it
          be *made* to work?</div>
      </div>
      <div class="gmail_extra"><br>
        <br>
        <div class="gmail_quote">On Sat, Jul 27, 2013 at 9:27 AM,
          Srikanth Koneru <span dir="ltr"><<a moz-do-not-send="true"
              href="mailto:tskk79@gmail.com" target="_blank">tskk79@gmail.com</a>></span>
          wrote:<br>
          <blockquote class="gmail_quote" style="margin:0 0 0
            .8ex;border-left:1px #ccc solid;padding-left:1ex">
            <div dir="ltr">I was hoping theme shops with a bunch of
              themes can get same exemption as frameworks.<br>
            </div>
            <div class="HOEnZb">
              <div class="h5">
                <div class="gmail_extra"><br>
                  <br>
                  <div class="gmail_quote">On Sat, Jul 27, 2013 at 6:43
                    PM, Edward Caissie <span dir="ltr"><<a
                        moz-do-not-send="true"
                        href="mailto:edward.caissie@gmail.com"
                        target="_blank">edward.caissie@gmail.com</a>></span>
                    wrote:<br>
                    <blockquote class="gmail_quote" style="margin:0 0 0
                      .8ex;border-left:1px #ccc solid;padding-left:1ex">
                      <div dir="ltr">I would still lean towards the
                        general rule of thumb as Theme Name ~> theme
                        slug = prefix = textdomain to maintain a
                        consistency within the project's code.<span><font
                            color="#888888"><br>
                          </font></span></div>
                      <div class="gmail_extra"><span><font
                            color="#888888"><br clear="all">
                            <div>Edward Caissie<br>
                              aka Cais.</div>
                          </font></span>
                        <div>
                          <div>
                            <br>
                            <br>
                            <div class="gmail_quote">On Sat, Jul 27,
                              2013 at 6:55 AM, Thomas from ThemeZee <span
                                dir="ltr"><<a moz-do-not-send="true"
                                  href="mailto:contact@themezee.com"
                                  target="_blank">contact@themezee.com</a>></span>
                              wrote:<br>
                              <blockquote class="gmail_quote"
                                style="margin:0 0 0 .8ex;border-left:1px
                                #ccc solid;padding-left:1ex">
                                <div dir="ltr">Author slug as function
                                  prefix should be fine. Beside the
                                  unique text domain the handle (name of
                                  stylesheet) used in wp_register_style
                                  should also be unique. Can cause some
                                  problems with child themes if you use
                                  the author slug there and the user has
                                  multiple themes of your theme shop
                                  installed. <br>
                                </div>
                                <div>
                                  <div>
                                    <div class="gmail_extra"><br>
                                      <br>
                                      <div class="gmail_quote">2013/7/27
                                        Emil Uzelac <span dir="ltr"><<a
                                            moz-do-not-send="true"
                                            href="mailto:emil@uzelac.me"
                                            target="_blank">emil@uzelac.me</a>></span><br>
                                        <blockquote class="gmail_quote"
                                          style="margin:0 0 0
                                          .8ex;border-left:1px #ccc
                                          solid;padding-left:1ex">
                                          <p dir="ltr">There you go :-)
                                            I was thinking that some
                                            special case Themes do that,
                                            but I was wrong.</p>
                                          <div>
                                            <div>
                                              <div class="gmail_quote">On
                                                Jul 27, 2013 3:06 AM,
                                                "Otto" <<a
                                                  moz-do-not-send="true"
href="mailto:otto@ottodestruct.com" target="_blank">otto@ottodestruct.com</a>>
                                                wrote:<br
                                                  type="attribution">
                                                <blockquote
                                                  class="gmail_quote"
                                                  style="margin:0 0 0
                                                  .8ex;border-left:1px
                                                  #ccc
                                                  solid;padding-left:1ex">
                                                  Function prefix, sure.
                                                  Text domain, no. This
                                                  should be unique.
                                                  Prefix<br>
                                                  the text domain if you
                                                  like.<br>
                                                  <br>
                                                  -Otto<br>
                                                  <br>
                                                  <br>
                                                  On Sat, Jul 27, 2013
                                                  at 1:34 AM, Srikanth
                                                  Koneru <<a
                                                    moz-do-not-send="true"
href="mailto:tskk79@gmail.com" target="_blank">tskk79@gmail.com</a>>
                                                  wrote:<br>
                                                  > Can the text
                                                  domain and function
                                                  prefix be same for all
                                                  my themes and can it<br>
                                                  > possibly be my
                                                  theme shop name?<br>
                                                  > It will be easy
                                                  to maintain themes and
                                                  create new ones.<br>
                                                  ><br>
                                                  >
                                                  _______________________________________________<br>
                                                  > theme-reviewers
                                                  mailing list<br>
                                                  > <a
                                                    moz-do-not-send="true"
href="mailto:theme-reviewers@lists.wordpress.org" target="_blank">theme-reviewers@lists.wordpress.org</a><br>
                                                  > <a
                                                    moz-do-not-send="true"
href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers"
                                                    target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
                                                  ><br>
_______________________________________________<br>
                                                  theme-reviewers
                                                  mailing list<br>
                                                  <a
                                                    moz-do-not-send="true"
href="mailto:theme-reviewers@lists.wordpress.org" target="_blank">theme-reviewers@lists.wordpress.org</a><br>
                                                  <a
                                                    moz-do-not-send="true"
href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers"
                                                    target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
                                                </blockquote>
                                              </div>
                                            </div>
                                          </div>
                                          <br>
_______________________________________________<br>
                                          theme-reviewers mailing list<br>
                                          <a moz-do-not-send="true"
                                            href="mailto:theme-reviewers@lists.wordpress.org"
                                            target="_blank">theme-reviewers@lists.wordpress.org</a><br>
                                          <a moz-do-not-send="true"
                                            href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers"
                                            target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
                                          <br>
                                        </blockquote>
                                      </div>
                                      <br>
                                    </div>
                                  </div>
                                </div>
                                <br>
_______________________________________________<br>
                                theme-reviewers mailing list<br>
                                <a moz-do-not-send="true"
                                  href="mailto:theme-reviewers@lists.wordpress.org"
                                  target="_blank">theme-reviewers@lists.wordpress.org</a><br>
                                <a moz-do-not-send="true"
                                  href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers"
                                  target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
                                <br>
                              </blockquote>
                            </div>
                            <br>
                          </div>
                        </div>
                      </div>
                      <br>
                      _______________________________________________<br>
                      theme-reviewers mailing list<br>
                      <a moz-do-not-send="true"
                        href="mailto:theme-reviewers@lists.wordpress.org"
                        target="_blank">theme-reviewers@lists.wordpress.org</a><br>
                      <a moz-do-not-send="true"
                        href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers"
                        target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
                      <br>
                    </blockquote>
                  </div>
                  <br>
                </div>
              </div>
            </div>
            <br>
            _______________________________________________<br>
            theme-reviewers mailing list<br>
            <a moz-do-not-send="true"
              href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
            <a moz-do-not-send="true"
              href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers"
              target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
            <br>
          </blockquote>
        </div>
        <br>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
theme-reviewers mailing list
<a class="moz-txt-link-abbreviated" href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a>
<a class="moz-txt-link-freetext" href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>